
* {
    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;
    background: #fff;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    height: 48px;
    width: auto;
}

.logo-small {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    background: none;
    border: none;
    color: #555;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s;
    font-size: 16px;
}

.nav-link:hover {
    color: #00bc00;
}

.desktop-nav {
    display: flex;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-nav-link {
    display: block;
    background: none;
    border: none;
    color: #555;
    font-weight: 500;
    cursor: pointer;
    padding: 10px 0;
    width: 100%;
    text-align: left;
    font-size: 16px;
}

.mobile-nav-link:hover {
    color: #00bc00;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

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

.btn-primary:hover {
    background: #009a00;
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: rgba(0, 188, 0, 0.1);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-cta {
    background: white;
    color: #00bc00;
    padding: 20px 48px;
    font-size: 20px;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.btn-cta:hover {
    background: #f5f5f5;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.arrow {
    margin-left: 8px;
    font-size: 1.2em;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f0fff0 0%, #ffffff 50%, #f0fff0 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 188, 0, 0.05), rgba(0, 188, 0, 0.1));
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    background: rgba(0, 188, 0, 0.1);
    color: #00bc00;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    border: 1px solid rgba(0, 188, 0, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.text-green {
    color: #00bc00;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-description {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
.info-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-section {
    padding: 80px 0;
    background: white;
}

.pricing-section {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #00bc00, #009a00);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.text-white {
    color: white !important;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.text-light {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.card-border {
    border-left: 4px solid #00bc00;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.card-text {
    color: #666;
    line-height: 1.6;
}

.benefits-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.benefits-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 188, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.process-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.process-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.process-number {
    width: 32px;
    height: 32px;
    background: #00bc00;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-weight: 700;
    font-size: 14px;
}

.process-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.process-description {
    color: #666;
    font-size: 14px;
}

.validity-info {
    display: flex;
    justify-content: center;
}

.validity-card {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 188, 0, 0.1);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(0, 188, 0, 0.2);
}

.validity-icon {
    font-size: 1.5rem;
}

.validity-title {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.validity-text {
    color: #666;
    font-size: 14px;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.pricing-card {
    background: #2a2a2a;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #444;
}

.pricing-featured {
    background: linear-gradient(135deg, #00bc00, #009a00);
    border: none;
    position: relative;
    overflow: hidden;
}

.pricing-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
}

.pricing-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.pricing-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.pricing-price {
    font-size: 2rem;
    font-weight: 700;
    color: #00bc00;
    margin-bottom: 8px;
}

.pricing-featured .pricing-price {
    color: white;
}

.pricing-old {
    font-size: 14px;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.pricing-installments {
    font-size: 1.1rem;
    margin-bottom: 16px;
    font-weight: 500;
}

.pricing-description {
    color: #ccc;
}

.pricing-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pricing-category {
    font-size: 1rem;
    color: #00bc00;
    font-weight: 500;
}

.pricing-value {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 12px;
}

.pricing-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.pricing-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
}

/* CTA Section */
.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-features {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.check {
    font-size: 1.2em;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 48px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-logo {
    text-decoration: none;
}

.footer-text {
    text-align: right;
}

.copyright {
    color: #ccc;
    margin-bottom: 4px;
}

.footer-subtitle {
    font-size: 14px;
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-text {
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .btn-cta {
        padding: 16px 32px;
        font-size: 18px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Mobile menu animation */
.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
