        /* ========== RESET E VARIÁVEIS ========== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            overflow-x: hidden;
            width: 100%;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        
        html::-webkit-scrollbar {
            display: none;
        }
        
        :root {
            --verde-musgo: #2E7D32;
            --verde-claro: #A5D6A7;
            --verde-limao: #00C853;
            --bege-quente: #F3E9DA;
            --terracota: #A05A2C;
            --cinza-escuro: #333;
            --branco: #fff;
            --amarelo: #FFEB3B;
            --amarelo-borda: #FBC02D;
            --dourado: #FFD700;
        }
        
        body {
            font-family: 'Poppins', system-ui, -apple-system, sans-serif;
            color: var(--cinza-escuro);
            background-color: var(--branco);
            line-height: 1.6;
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        
        body::-webkit-scrollbar {
            display: none;
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        /* ========== HEADER FIXO ========== */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            padding: 1rem 0;
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--verde-musgo);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        nav ul {
            list-style: none;
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        
        nav a {
            text-decoration: none;
            color: var(--cinza-escuro);
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav a:hover,
        nav a:focus {
            color: var(--verde-musgo);
            outline: 2px solid var(--verde-limao);
            outline-offset: 4px;
            border-radius: 4px;
        }
        
        .header-cta {
            background: var(--verde-limao);
            color: var(--branco);
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .header-cta:hover,
        .header-cta:focus {
            background: var(--verde-musgo);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 200, 83, 0.3);
        }
        
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--verde-musgo);
        }
        
        /* ========== HERO SECTION ========== */
        .hero {
            margin-top: 80px;
            background: linear-gradient(135deg, var(--bege-quente) 0%, var(--verde-claro) 100%);
            padding: 60px 20px;
        }
        
        .hero-container {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 2rem;
            align-items: center;
        }
        
        .hero-content {
            text-align: center;
            width: 100%;
        }
        
        .hero-content h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--verde-musgo);
            margin-bottom: 1rem;
            line-height: 1.2;
            text-align: center;
        }
        
        .hero-content p {
            font-size: 1.125rem;
            margin-bottom: 1.5rem;
            color: var(--cinza-escuro);
            text-align: center;
        }
        
        .hero-benefits {
            list-style: none;
            margin-bottom: 0;
            display: inline-block;
            text-align: left;
        }
        
        .hero-benefits li {
            font-size: 1.125rem;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .hero-image {
            width: 100%;
            max-width: 500px;
        }
        
        .hero-ctas {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
            width: 100%;
        }
        
        .btn {
            padding: 1rem 2rem;
            font-size: 1.125rem;
            font-weight: 600;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }
        
        .btn-primary {
            background: var(--verde-limao);
            color: var(--branco);
            box-shadow: 0 4px 12px rgba(0, 200, 83, 0.2);
        }
        
        .btn-primary:hover,
        .btn-primary:focus {
            background: var(--verde-musgo);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 200, 83, 0.3);
            outline: 3px solid var(--amarelo-borda);
            outline-offset: 2px;
        }
        
        .btn-secondary {
            background: var(--terracota);
            color: var(--branco);
            box-shadow: 0 4px 12px rgba(160, 90, 44, 0.2);
        }
        
        .btn-secondary:hover,
        .btn-secondary:focus {
            background: #8B4513;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(160, 90, 44, 0.3);
            outline: 3px solid var(--amarelo-borda);
            outline-offset: 2px;
        }
        
        .hero-image img {
            width: 100%;
            height: auto;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        }
        
        /* ========== SECTIONS GERAIS ========== */
        section {
            padding: 80px 20px;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            font-size: 2.25rem;
            font-weight: 700;
            color: var(--verde-musgo);
            text-align: center;
            margin-bottom: 1rem;
        }
        
        .section-subtitle {
            font-size: 1.25rem;
            text-align: center;
            color: var(--cinza-escuro);
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* ========== HISTÓRIA ========== */
        .historia {
            background: var(--bege-quente);
        }
        
        .historia-content {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.25rem;
            line-height: 1.8;
            text-align: center;
            color: var(--cinza-escuro);
        }
        
        /* ========== O QUE VOCÊ VAI APRENDER ========== */
        #conteudo {
            background: linear-gradient(135deg, #f5f5f5 0%, #e8f5e9 100%);
        }
        
        .aprender-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        
        .card {
            background: var(--branco);
            padding: 32px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }
        
        .card-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--verde-musgo);
            margin-bottom: 0.5rem;
        }
        
        /* ========== DEPOIMENTOS ========== */
        .depoimentos {
            background: var(--bege-quente);
        }
        
        .carousel-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }
        
        .carousel {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .depoimento {
            min-width: 100%;
            background: var(--branco);
            padding: 32px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        
        .depoimento-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        
        .depoimento-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--verde-claro);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            overflow: hidden;
        }
        
        .depoimento-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .depoimento-info h4 {
            font-weight: 600;
            color: var(--verde-musgo);
        }
        
        .depoimento-info p {
            color: var(--terracota);
            font-size: 0.9rem;
        }
        
        .depoimento-text {
            font-size: 1.125rem;
            line-height: 1.7;
            color: var(--cinza-escuro);
        }
        
        .carousel-controls {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .carousel-btn {
            background: var(--verde-musgo);
            color: var(--branco);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.25rem;
            transition: all 0.3s;
        }
        
        .carousel-btn:hover,
        .carousel-btn:focus {
            background: var(--verde-limao);
            transform: scale(1.1);
            outline: 2px solid var(--amarelo-borda);
        }
        
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1rem;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--verde-claro);
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .dot.active {
            background: var(--verde-musgo);
            transform: scale(1.3);
        }
        
        /* ========== PLANOS ========== */
        .planos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto 2rem;
        }
        
        .plano-card {
            background: var(--branco);
            padding: 32px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 2px solid var(--verde-claro);
            position: relative;
            transition: all 0.3s;
        }
        
        .plano-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }
        
        .plano-card.destaque {
            border: 3px solid var(--verde-limao);
            box-shadow: 0 8px 30px rgba(0, 200, 83, 0.2);
        }
        
        .plano-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--amarelo);
            color: var(--cinza-escuro);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            border: 2px solid var(--amarelo-borda);
            white-space: nowrap;
        }
        
        .plano-card h3 {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--verde-musgo);
            margin-bottom: 0.5rem;
        }
        
        .plano-preco {
            font-size: 3rem;
            font-weight: 700;
            color: var(--terracota);
            margin-bottom: 1.5rem;
        }
        
        .plano-preco small {
            font-size: 1.5rem;
        }
        
        .plano-features {
            list-style: none;
            margin-bottom: 2rem;
        }
        
        .plano-features li {
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--bege-quente);
            font-size: 1rem;
        }
        
        .plano-card .btn {
            width: 100%;
        }
        
        .plano-card.destaque .btn-primary {
            border: 3px solid var(--dourado);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
        }
        
        .oferta-aviso {
            text-align: center;
            font-size: 1.125rem;
            color: var(--terracota);
            font-weight: 600;
        }
        
        /* ========== GARANTIA ========== */
        .garantia {
            background: var(--verde-claro);
        }
        
        .garantia-content {
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
            background: var(--branco);
            padding: 32px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        
        .garantia-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
        }
        
        .garantia-content h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--verde-musgo);
            margin-bottom: 1rem;
        }
        
        .garantia-content p {
            font-size: 1.25rem;
            line-height: 1.7;
            color: var(--cinza-escuro);
        }
        
        /* ========== FAQ ========== */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: var(--branco);
            margin-bottom: 1rem;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
            overflow: hidden;
        }
        
        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 24px;
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--verde-musgo);
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s;
        }
        
        .faq-question:hover,
        .faq-question:focus {
            background: var(--bege-quente);
            outline: 2px solid var(--verde-limao);
            outline-offset: -2px;
        }
        
        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            font-weight: 700;
            transition: transform 0.3s;
        }
        
        .faq-question[aria-expanded="true"]::after {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .faq-answer-content {
            padding: 0 24px 24px 24px;
            font-size: 1rem;
            line-height: 1.7;
            color: var(--cinza-escuro);
        }
        
        /* ========== FOOTER ========== */
        footer {
            background: var(--verde-musgo);
            color: var(--branco);
            padding: 60px 20px 20px;
        }
        
        .footer-cta {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .footer-cta h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }
        
        .footer-cta .btn {
            background: var(--verde-limao);
            color: var(--branco);
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }
        
        .footer-links a {
            color: var(--branco);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover,
        .footer-links a:focus {
            color: var(--verde-claro);
            outline: 2px solid var(--branco);
            outline-offset: 4px;
            border-radius: 4px;
        }
        
        .footer-legal {
            font-size: 0.875rem;
            line-height: 1.6;
            opacity: 0.9;
            max-width: 800px;
            margin: 2rem auto 1rem;
        }
        
        .footer-copyright {
            font-size: 0.875rem;
            opacity: 0.8;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        /* ========== MOBILE RESPONSIVO ========== */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                background: var(--branco);
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
                transition: left 0.3s;
            }
            
            nav.active {
                left: 0;
            }
            
            nav ul {
                flex-direction: column;
                padding: 2rem;
                gap: 1rem;
            }
            
            nav ul li {
                width: 100%;
            }
            
            nav a {
                display: block;
                padding: 0.75rem;
            }
            
            .hero-content h1 {
                font-size: 1.75rem;
            }
            
            .hero-ctas .btn {
                width: 100%;
            }
            
            .section-title {
                font-size: 1.75rem;
            }
            
            .planos-grid {
                grid-template-columns: 1fr;
            }
            
            #conteudo .container > div {
                grid-template-columns: 1fr !important;
                gap: 1.5rem !important;
            }
            
            #conteudo .section-title,
            #conteudo .section-subtitle {
                text-align: center !important;
            }
            
            #conteudo div[style*="font-size: 1.05rem"] {
                font-size: 1rem !important;
                line-height: 1.8 !important;
            }
            
            #conteudo div[style*="font-size: 1.05rem"] p {
                margin-bottom: 0.5rem !important;
            }
        }
        
        /* ========== UTILITÁRIOS ========== */
        .text-center {
            text-align: center;
        }
        
        /* Acessibilidade - Focus visível */
        *:focus {
            outline: 2px solid var(--verde-limao);
            outline-offset: 2px;
        }
        
        button:focus,
        a:focus {
            outline-width: 3px;
        }
        
        /* ========== NOTIFICAÇÃO DE VENDAS ========== */
        .notification-popup {
            position: fixed;
            top: 80px;
            left: 20px;
            background: var(--branco);
            border-left: 3px solid var(--verde-limao);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
            border-radius: 6px;
            padding: 10px 14px;
            max-width: 280px;
            z-index: 9999;
            transform: translateX(-400px);
            opacity: 0;
            transition: all 0.4s ease;
            display: flex;
            align-items: start;
            gap: 8px;
        }
        
        .notification-popup.show {
            transform: translateX(0);
            opacity: 1;
        }
        
        .notification-icon {
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        
        .notification-content {
            flex: 1;
        }
        
        .notification-name {
            font-weight: 600;
            color: var(--verde-musgo);
            margin-bottom: 2px;
            font-size: 0.85rem;
        }
        
        .notification-details {
            font-size: 0.75rem;
            color: var(--cinza-escuro);
            line-height: 1.3;
        }
        
        .notification-plan {
            font-weight: 600;
            color: var(--terracota);
        }
        
        .notification-time {
            font-size: 0.7rem;
            color: #666;
            margin-top: 2px;
        }
        
        @media (max-width: 768px) {
            .notification-popup {
                left: 10px;
                right: 10px;
                max-width: calc(100% - 20px);
            }
        }
