/* Main Styles */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h1 {
    color: #b6d300;
    font-size: 24px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #b6d300;
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #b6d300;
    color: white;
}

.btn-primary:hover {
    background-color: #9cb600;
}

.btn-outline {
    background-color: transparent;
    color: #b6d300;
    border: 2px solid #b6d300;
}

.btn-outline:hover {
    background-color: #b6d300;
    color: white;
}

.btn-large {
    padding: 15px 30px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #b6d300 0%, #7a8500 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

/* Planos */
.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.plano-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
}

.plano-card.featured {
    transform: scale(1.05);
    border: 2px solid #b6d300;
}

.badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #b6d300;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.plano-header h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.price {
    margin-bottom: 20px;
}

.currency {
    font-size: 20px;
    vertical-align: top;
}

.amount {
    font-size: 48px;
    font-weight: bold;
    color: #b6d300;
}

.period {
    color: #666;
}

.plano-description {
    color: #666;
    margin-bottom: 20px;
}

.plano-features {
    text-align: left;
    margin-bottom: 30px;
}

.plano-features ul {
    list-style: none;
}

.plano-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.plano-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.blog-thumbnail {
    height: 200px;
    overflow: hidden;
}

.blog-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-category {
    display: inline-block;
    background-color: #b6d300;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 15px;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.blog-content h3 a {
    color: #2c3e50;
    text-decoration: none;
}

.blog-content h3 a:hover {
    color: #b6d300;
}

.blog-excerpt {
    color: #666;
    margin-bottom: 15px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.read-more {
    color: #b6d300;
    text-decoration: none;
    font-weight: 500;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
}

/* Contact */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-items {
    margin: 30px 0;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item a {
    color: #b6d300;
    text-decoration: none;
}

.business-hours {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b6d300;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group.checkbox input {
    width: auto;
}

.forgot-link {
    margin-left: auto;
    color: #b6d300;
    text-decoration: none;
    font-size: 14px;
}

/* Auth Section */
.auth-section {
    padding: 80px 0;
}

.auth-form {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.auth-links {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.auth-links a {
    color: #b6d300;
    text-decoration: none;
}

/* Dashboard */
.dashboard-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
}

.dashboard-sidebar {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.dashboard-nav ul {
    list-style: none;
}

.dashboard-nav a {
    display: block;
    padding: 12px 15px;
    color: #555;
    text-decoration: none;
    border-radius: 4px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.dashboard-nav a:hover,
.dashboard-nav a.active {
    background-color: #b6d300;
    color: white;
}

.dashboard-main {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.status-card {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.status-card.active {
    background-color: #d4edda;
    color: #155724;
}

.status-card.inactive {
    background-color: #f8d7da;
    color: #721c24;
}

.next-steps {
    margin-bottom: 30px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 10px;
}

.step-number {
    width: 30px;
    height: 30px;
    background-color: #b6d300;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step-text {
    flex: 1;
}

.recent-items {
    margin-bottom: 30px;
}

.items-list {
    margin-bottom: 20px;
}

.item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 10px;
}

.item-info {
    flex: 1;
}

.item-info strong {
    display: block;
    margin-bottom: 5px;
}

.status {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-pending {
    background-color: #fff3cd;
    color: #856404;
}

.status-approved,
.status-paid {
    background-color: #d4edda;
    color: #155724;
}

.status-rejected,
.status-failed {
    background-color: #f8d7da;
    color: #721c24;
}

.status-open {
    background-color: #cce5ff;
    color: #004085;
}

.status-closed {
    background-color: #d4edda;
    color: #155724;
}

/* Page Header */
.page-header {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.page-header p {
    color: #666;
}

/* Page Content */
.page-content {
    padding: 60px 0;
}

.content {
    font-size: 18px;
    line-height: 1.8;
}

.content h2 {
    margin: 30px 0 15px 0;
    color: #2c3e50;
}

.content p {
    margin-bottom: 20px;
}

/* FAQ */
.faq-list {
    max-width: 800px;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

/* Checkout */
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.order-summary {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 20px;
    font-weight: bold;
}

.summary-features {
    margin-top: 30px;
}

.checkout-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.customer-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.payment-option {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
}

.payment-option label {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.terms {
    margin: 20px 0;
}

.checkout-security {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

/* Error 404 */
.error-404 {
    padding: 100px 0;
    text-align: center;
}

.error-content h1 {
    font-size: 120px;
    color: #b6d300;
    margin-bottom: 20px;
}

.error-content h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.error-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Alerts */
.alert {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    padding: 20px 0;
    z-index: 9999;
}

.cookie-consent .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-consent a {
    color: #b6d300;
}

.cookie-consent button {
    background-color: #b6d300;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

/* Footer */
.site-footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
    color: #b6d300;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
}

.footer-section a:hover {
    color: #b6d300;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .about-content,
    .contact-content,
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-sidebar {
        order: 2;
    }
    
    .planos-grid {
        grid-template-columns: 1fr;
    }
    
    .plano-card.featured {
        transform: none;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-consent .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Text Utils */
.text-center {
    text-align: center;
}

.no-items {
    text-align: center;
    padding: 40px;
    color: #666;
}

/* Blog Post */
.blog-post {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.post-header {
    padding: 60px 0;
    text-align: center;
    background-color: #f8f9fa;
}

.post-category {
    display: inline-block;
    background-color: #b6d300;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
}

.post-header h1 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.post-meta {
    color: #666;
}

.post-thumbnail {
    height: 400px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    padding: 60px 0;
}

.content {
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.content h2 {
    margin: 40px 0 20px 0;
    color: #2c3e50;
}

.content p {
    margin-bottom: 20px;
}

.share-buttons {
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.share-buttons h4 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.share-btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 5px;
    border-radius: 4px;
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.share-btn.facebook {
    background-color: #3b5998;
}

.share-btn.twitter {
    background-color: #1da1f2;
}

.share-btn.whatsapp {
    background-color: #25d366;
}

/* Related Posts */
.related-posts {
    background-color: #f8f9fa;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-number,
.prev,
.next {
    display: inline-block;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #555;
    transition: all 0.3s ease;
}

.page-number:hover,
.prev:hover,
.next:hover,
.page-number.active {
    background-color: #b6d300;
    color: white;
    border-color: #b6d300;
}