/* ========================================
   RESET & BASE
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Compensa altura do menu fixo */
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1F2937;
    background: #FFFFFF;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #111827;
}

/* ========================================
   HEADER / MENU FIXO
======================================== */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-logo img {
    display: block;
    height: 50px; /* Aumentado de 40px para 50px */
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: #1F2937;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #10B981;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #10B981;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.btn-nav-cta {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #FFFFFF;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Menu hamburguer para mobile seria implementado aqui */
    }
    
    .nav-logo img {
        height: 45px; /* Aumentado de 35px para 45px no mobile */
    }
    
    .btn-nav-cta {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
}

/* ========================================
   HERO SECTION
======================================== */
.hero-section {
    background: #FFFFFF;
    padding: 7rem 0 4rem; /* Top padding aumentado para compensar menu fixo */
    color: #111827;
}

.hero-logo {
    text-align: left;
    margin-bottom: 3rem;
    display: none; /* Escondido no desktop (já tem no menu fixo) */
}

.hero-logo-mobile {
    display: none; /* Escondido por padrão */
}

.hero-logo img {
    max-width: 180px;
    height: auto;
}

/* Mobile: mostrar logo no hero */
@media (max-width: 768px) {
    .hero-logo-mobile {
        display: block;
        text-align: center;
        margin-bottom: 2rem;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-headline {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #111827;
}

.hero-subheadline {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #4B5563;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn-primary, .btn-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #10B981;
    color: #FFFFFF;
}

.btn-primary:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background: #FFFFFF;
    color: #6C5CE7;
}

.btn-secondary:hover {
    background: #F3F4F6;
    transform: translateY(-2px);
}

.hero-info {
    font-size: 0.95rem;
    opacity: 0.9;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ========================================
   PROBLEM SECTION
======================================== */
.problem-section {
    padding: 5rem 0;
    background: #F9FAFB;
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.problem-card {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.problem-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #EF4444, #DC2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
}

.problem-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.problem-card p {
    color: #6B7280;
    font-size: 1.05rem;
}

/* ========================================
   SOLUTION SECTION
======================================== */
.solution-section {
    padding: 5rem 0;
    background: #FFFFFF;
}

.solution-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.solution-block {
    text-align: center;
}

.solution-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #10B981, #059669);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
}

.solution-block h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.solution-block ul {
    list-style: none;
    text-align: left;
    margin: 0 auto;
    max-width: 300px;
}

.solution-block ul li {
    padding: 0.5rem 0;
    color: #4B5563;
    font-size: 1.05rem;
    position: relative;
    padding-left: 2rem;
}

.solution-block ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
    font-size: 1.2rem;
}

/* ========================================
   VIDEO SECTION
======================================== */
.video-section {
    padding: 5rem 0;
    background: #F9FAFB;
}

.video-container {
    max-width: 900px;
    margin: 0 auto 2rem;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info {
    text-align: center;
    font-size: 1.1rem;
    color: #6B7280;
}

/* ========================================
   FEATURES SECTION
======================================== */
.features-section {
    padding: 5rem 0;
    background: #FFFFFF;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.feature-row.reverse {
    grid-template-columns: 1fr 1fr;
}

.feature-row.reverse .feature-text {
    order: 2;
}

.feature-row.reverse .feature-image {
    order: 1;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.feature-text > p {
    font-size: 1.2rem;
    color: #6B7280;
    margin-bottom: 1.5rem;
}

.feature-text ul {
    list-style: none;
}

.feature-text ul li {
    padding: 0.7rem 0;
    color: #4B5563;
    font-size: 1.05rem;
    position: relative;
    padding-left: 2rem;
}

.feature-text ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #6C5CE7;
    font-weight: bold;
    font-size: 1.3rem;
}

/* ========================================
   AUDIENCE SECTION
======================================== */
.audience-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #FFFFFF;
}

.audience-section .section-title {
    color: #FFFFFF;
}

.audience-box {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.audience-list {
    list-style: none;
    margin-bottom: 2rem;
}

.audience-list li {
    font-size: 1.3rem;
    padding: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.check-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.audience-coming-soon {
    text-align: center;
    font-size: 1.1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0.9;
}

/* ========================================
   PRICING SECTION
======================================== */
.pricing-section {
    padding: 2.5rem 0;
    background: #F9FAFB;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    max-width: 380px;
    margin: 0 auto 1.5rem;
}

.pricing-card {
    background: #FFFFFF;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    width: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 3px solid #10B981;
    transform: none;
}

.pricing-card.featured:hover {
    transform: translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #00D9FF;
    color: #FFFFFF;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.75rem;
}

.pricing-badge.highlight {
    background: #10B981;
    font-size: 0.8rem;
    padding: 0.4rem 1.2rem;
}

.pricing-price {
    text-align: center;
    margin: 1rem 0;
}

.price-old {
    display: block;
    font-size: 0.85rem;
    color: #9CA3AF;
    text-decoration: line-through;
    margin-bottom: 0.2rem;
}

.price-currency {
    font-size: 1.2rem;
    font-weight: 600;
    vertical-align: top;
}

.price-value {
    font-size: 2rem;
    font-weight: 800;
    color: #111827;
}

.price-period {
    font-size: 0.95rem;
    color: #6B7280;
}

.price-monthly {
    display: block;
    font-size: 0.95rem;
    color: #6B7280;
    margin-top: 0.3rem;
}

.pricing-savings {
    text-align: center;
    color: #10B981;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 1rem;
}

.pricing-features li {
    padding: 0.35rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4B5563;
    font-size: 0.85rem;
}

.btn-pricing {
    width: 100%;
    padding: 0.75rem;
    font-size: 0.9rem;
    font-weight: 700;
    background: #6C5CE7;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    background: #5B4BC4;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.4);
}

.btn-pricing.featured {
    background: #10B981;
}

.btn-pricing.featured:hover {
    background: #059669;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.pricing-footer {
    text-align: center;
    font-size: 0.85rem;
    color: #6B7280;
}

.pricing-footer p {
    margin: 0.3rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.pricing-footer .pix-icon {
    vertical-align: middle;
    margin-right: 4px;
    flex-shrink: 0;
    display: inline-block;
}

/* ========================================
   GUARANTEE SECTION
======================================== */
.guarantee-section {
    padding: 5rem 0;
    background: #FFFFFF;
}

.guarantee-box {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
    border-radius: 16px;
    border: 5px solid #10B981;
}

.guarantee-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
}

.guarantee-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1.5rem;
}

.guarantee-text {
    font-size: 1.3rem;
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.guarantee-policy {
    font-size: 1rem;
    color: #6B7280;
    font-style: italic;
}

/* ========================================
   FAQ SECTION
======================================== */
.faq-section {
    padding: 5rem 0;
    background: #F9FAFB;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #FFFFFF;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: #111827;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #F9FAFB;
}

.faq-toggle {
    font-size: 1.8rem;
    font-weight: 300;
    color: #6C5CE7;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: #4B5563;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ========================================
   CTA FINAL SECTION
======================================== */
.cta-final-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #6C5CE7 0%, #00D9FF 100%);
    color: #FFFFFF;
    text-align: center;
}

.cta-final-section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.btn-cta {
    padding: 1.3rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    background: #FFFFFF;
    color: #6C5CE7;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-cta.featured {
    background: #10B981;
    color: #FFFFFF;
}

.btn-cta.featured:hover {
    background: #059669;
}

.cta-info {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: #111827;
    color: #FFFFFF;
    padding: 3rem 0 1.5rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-about h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.5;
    color: #FFFFFF;
}

.footer-about p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #D1D5DB;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #10B981;
}

.footer-col p {
    color: #D1D5DB;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.footer-col strong {
    color: #FFFFFF;
    font-weight: 600;
}

.footer-product-line {
    color: #10B981 !important;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem !important;
}

.footer-since {
    color: #10B981 !important;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.footer-brand-line {
    margin-top: 1rem;
    color: #9CA3AF;
    font-size: 0.9rem;
}

.footer-email {
    font-size: 1.05rem;
    margin-bottom: 1.5rem !important;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9CA3AF;
    margin-top: 2rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #10B981;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .social-links {
        justify-content: center !important;
    }
}

/* ========================================
   MODAL
======================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #6B7280;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #111827;
}

.modal-content h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: #111827;
}

.modal-content p {
    color: #6B7280;
    margin-bottom: 1rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #374151;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #E5E7EB;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #6C5CE7;
}

.form-group select {
    margin-bottom: 0.5rem;
}

/* ========================================
   LOADING OVERLAY
======================================== */
.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.loading-overlay.active {
    display: flex;
}

.loading-content {
    text-align: center;
    color: #FFFFFF;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: #10B981;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.loading-subtext {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .feature-row,
    .feature-row.reverse {
        grid-template-columns: 1fr;
    }
    
    .feature-row.reverse .feature-text,
    .feature-row.reverse .feature-image {
        order: initial;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-logo {
        text-align: center;
    }
    
    .hero-logo img {
        max-width: 140px;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-subheadline {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .problem-cards,
    .solution-blocks {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta {
        width: 100%;
        max-width: 400px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-final-section h2 {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.2rem;
    }
}

/* ========================================
   LOGO HERO (MAIOR)
======================================== */
.logo-hero {
    max-width: 500px;
    height: auto;
}

@media (max-width: 768px) {
    .logo-hero {
        max-width: 300px;
    }
}

/* ========================================
   HERO SLIDER
======================================== */
.hero-slider {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-slider .slide {
    display: none;
    width: 100%;
    height: auto;
}

.hero-slider .slide.active {
    display: block;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
}

.slider-btn:hover {
    background: #FFFFFF;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 15px;
}

.slider-btn.next {
    right: 15px;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #FFFFFF;
    width: 30px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .slider-btn.prev {
        left: 10px;
    }
    
    .slider-btn.next {
        right: 10px;
    }
}

/* ========================================
   AUDIENCE SUBTITLE
======================================== */
.audience-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #FFFFFF;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ========================================
   COMMITMENT BOX
======================================== */
.commitment-box {
    max-width: 900px;
    margin: 3rem auto 0;
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.commitment-box h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2rem;
    text-align: center;
}

.commitment-list {
    list-style: none;
}

.commitment-list li {
    padding: 1rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #4B5563;
    font-size: 1.05rem;
    line-height: 1.6;
}

.commitment-list .check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
    color: #10B981;
}

/* ========================================
   COMING SOON SECTION
======================================== */
.coming-soon-section {
    padding: 5rem 0;
    background: #FFFFFF;
}

.coming-soon-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6B7280;
    margin-bottom: 3rem;
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.coming-soon-card {
    background: #F9FAFB;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #E5E7EB;
    transition: all 0.3s ease;
}

.coming-soon-card:hover {
    border-color: #6C5CE7;
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.15);
}

.coming-soon-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.coming-soon-card p {
    color: #6B7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.coming-soon-card.notify-card {
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
    border-color: #10B981;
}

.btn-notify {
    width: 100%;
    padding: 0.8rem;
    background: #10B981;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-notify:hover {
    background: #059669;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .coming-soon-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   CPF INFO
======================================== */
.cpf-info {
    display: block;
    font-size: 0.85rem;
    color: #6B7280;
    margin-top: 0.5rem;
    line-height: 1.5;
}

/* ========================================
   WHATSAPP FLOAT
======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* ========================================
   COOKIE NOTICE
======================================== */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1F2937;
    color: #FFFFFF;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-notice.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: #10B981;
    text-decoration: underline;
}

.btn-cookie {
    padding: 0.7rem 2rem;
    background: #10B981;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-cookie:hover {
    background: #059669;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .btn-cookie {
        width: 100%;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float svg {
        width: 50px;
        height: 50px;
    }
}

/* ========================================
   LGPD NOTICE
======================================== */
.lgpd-notice {
    font-size: 0.9rem;
    color: #10B981;
    margin-top: 0.5rem;
}

/* ========================================
   COMMITMENT MODAL (FORMAL)
======================================== */
.commitment-modal {
    max-width: 900px;
    margin: 0 auto;
    background: #FFFFFF;
    border: 3px solid #10B981;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.commitment-header {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #FFFFFF;
    padding: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.commitment-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: 1px;
}

.commitment-content {
    padding: 3rem 2.5rem;
}

.commitment-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #E5E7EB;
}

.commitment-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.commitment-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

.commitment-text h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.commitment-text p {
    font-size: 1.1rem;
    color: #4B5563;
    line-height: 1.7;
    margin: 0;
}

.commitment-footer {
    background: #F9FAFB;
    padding: 1.5rem 2.5rem;
    text-align: center;
    border-top: 2px solid #E5E7EB;
}

.commitment-footer p {
    margin: 0;
    font-size: 1rem;
    color: #6B7280;
}

.commitment-footer a {
    color: #10B981;
    font-weight: 600;
    text-decoration: none;
}

.commitment-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .commitment-modal {
        border-width: 2px;
    }
    
    .commitment-header {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .commitment-header h3 {
        font-size: 1.3rem;
    }
    
    .commitment-content {
        padding: 2rem 1.5rem;
    }
    
    .commitment-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .commitment-text h4 {
        font-size: 1.2rem;
    }
    
    .commitment-text p {
        font-size: 1rem;
    }
}

/* ========================================
   BTN NOTIFY WHITE
======================================== */
.btn-notify-white {
    margin-top: 1rem;
    padding: 1rem 2.5rem;
    background: #FFFFFF;
    color: #10B981;
    border: 2px solid #FFFFFF;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-notify-white:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.btn-notify-faq {
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    background: #10B981;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-notify-faq:hover {
    background: #059669;
    transform: translateY(-2px);
}

/* ========================================
   CTA FINAL GREEN
======================================== */
.btn-cta-green {
    padding: 1.5rem 3.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    background: #10B981;
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta-green:hover {
    background: #059669;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.btn-cta-green.featured {
    background: linear-gradient(135deg, #10B981 0%, #00D9FF 100%);
}

.btn-cta-green.featured:hover {
    background: linear-gradient(135deg, #059669 0%, #00B8D4 100%);
}

.cta-final-section {
    background: linear-gradient(135deg, #10B981 0%, #00D9FF 100%);
}

/* ========================================
   SOCIAL LINKS
======================================== */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #D1D5DB;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #10B981;
}

.developed-by {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #9CA3AF;
}

.developed-by a {
    color: #10B981;
    text-decoration: none;
    font-weight: 600;
}

.developed-by a:hover {
    text-decoration: underline;
}

/* ========================================
   FONTES MAIORES + ESPAÇAMENTO
======================================== */
body {
    font-size: 18px;
}

section {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.7rem;
    margin-bottom: 3.5rem;
}

.feature-image img {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .feature-image img {
        transform: scale(1);
    }
    
    .btn-notify-white,
    .btn-cta-green {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
    }
}

/* ========================================
   AUDIENCE COMING SOON UPDATE
======================================== */
.audience-coming-soon {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.audience-coming-soon p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* ========================================
   HIDDEN TERMS
======================================== */
.hidden-terms {
    display: none;
}
