/* ===== POPUP FORMULÁRIO ===== */
        .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .popup-overlay.active {
            display: flex;
        }

        .popup-content {
            background: var(--white);
            max-width: 500px;
            width: 100%;
            border-radius: 20px;
            padding: 3rem 2.5rem;
            position: relative;
            animation: popupSlideIn 0.3s ease-out;
        }

        .popup-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 40px;
            height: 40px;
            background: var(--gray-light);
            border: none;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-dark);
        }

        .popup-close:hover {
            background: var(--primary-green);
            color: var(--white);
            transform: rotate(90deg);
        }

        @keyframes popupSlideIn {
            from {
                opacity: 0;
                transform: translateY(-50px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        
/* ===== ÍCONES SVG ===== */
        .icon {
            width: 48px;
            height: 48px;
            fill: currentColor;
        }

        .icon-pause, .icon-chart, .icon-face-sad, .icon-question {
            color: #fb2b2b;
            
            
        }

        .icon-pause:hover, .icon-chart:hover, .icon-face-sad:hover, .icon-question:hover {
            color: #dc3545;
            transform: scale(1.05);
        }

        .icon-arrow, .icon-clock, .icon-trophy, .icon-bullseye {
            color: var(--primary-black);
             
        }

        .icon-arrow:hover, .icon-clock:hover, .icon-trophy:hover, .icon-bullseye:hover {
            color: var(--gray-light);
            transform: scale(1.05);
        }

        .icon-video, .icon-list, .icon-light, .icon-check {
            color: #01DF3C;
            
        }

        .icon-video:hover, .icon-list:hover, .icon-light:hover, .icon-check:hover {
            color: #ffffff;
            transform: scale(1.05);
        }

        .icon-analytics{
            border-radius: 10px;
            width: 64px;
            height: 64px;
        }

        /* ===== POPUP FORMULÁRIO ===== */
        .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .popup-overlay.active {
            display: flex;
        }

        .popup-content {
            background: var(--white);
            max-width: 500px;
            width: 100%;
            border-radius: 20px;
            padding: 3rem 2.5rem;
            position: relative;
            animation: popupSlideIn 0.3s ease-out;
        }

        .popup-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 40px;
            height: 40px;
            background: var(--gray-light);
            border: none;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-dark);
        }

        .popup-close:hover {
            background: var(--primary-green);
            color: var(--white);
            transform: rotate(90deg);
        }

        @keyframes popupSlideIn {
            from {
                opacity: 0;
                transform: translateY(-50px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        
/* ===== DOR SECTION ===== */
        .dor-section {
            background: radial-gradient(circle at top right, rgba(1, 223, 60, 0.08) 0%, var(--bg-dark-1) 60%);
            padding: 8rem 1rem;
            position: relative;
        }

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

        .section-pre-headline {
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--primary-green);
            margin-bottom: 1.5rem;
            text-align: center;
            font-weight: 700;
        }

        .section-headline {
            font-family: 'Outfit', sans-serif;
            font-size: 2rem;  /* Mobile first: menor */
            font-weight: 900;
            line-height: 1.2;
            color: var(--white);
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--off-white);
            margin-bottom: 3rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }

        .dor-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: 4rem;
        }

        .dor-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid #ff0000a1;
            padding: 3rem 2rem;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .dor-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #e74c3c, #c0392b);
        }

        .dor-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(231, 76, 60, 0.3);
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(231, 76, 60, 0.5);
        }

        .dor-icon-wrapper {
            width: 80px;
            height: 80px;
            margin: 0 auto 2rem;
            background: linear-gradient(135deg, rgba(231, 76, 60, 0.2), rgba(192, 57, 43, 0.2));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            border: 2px solid #e74c3c4d;
        }

        .dor-item strong {
            font-size: 1.25rem;
            color: var(--white);
            font-weight: 700;
            display: block;
        }

        /* ===== SOLUÇÃO SECTION ===== */
        .solucao-section {
            background: radial-gradient(circle at bottom left, rgba(1, 223, 60, 0.1) 0%, var(--bg-dark-2) 60%);
            padding: 8rem 1rem;
        }

        .solucao-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 4rem;
            align-items: center;
            margin-top: 4rem;
        }

        .solucao-image img {
            border-radius: 10px;
            width: 100%;
            height: auto;
        }

        .beneficios-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .beneficio-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            background: rgba(255, 255, 255, 0.03);
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid rgba(1, 223, 60, 0.2);
            transition: all 0.3s ease;
        }

        .beneficio-item:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: var(--primary-green);
            transform: translateX(8px);
        }

        .beneficio-icon {
            color: var(--primary-green);
            font-size: 2rem;
            font-weight: 700;
            filter: drop-shadow(var(--glow-green));
            flex-shrink: 0;
        }

        .beneficio-text {
            flex: 1;
        }

        .beneficio-title {
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--white);
            margin-bottom: 0.5rem;
        }

        .beneficio-desc {
            color: var(--off-white);
        }

        /* ===== PROCESSO SECTION ===== */
        .processo-section {
            background: var(--bg-dark-1);
            padding: 8rem 1rem;
        }

        .processo-cards {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            margin-top: 4rem;
        }

        .processo-card {
            background: rgba(255, 255, 255, 0.03);
            padding: 3rem 2.5rem;
            border-radius: 24px;
            text-align: center;
            transition: all 0.4s ease;
            border: 2px solid rgba(1, 223, 60, 0.2);
            position: relative;
            overflow: hidden;
        }

        .processo-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: var(--primary-green);
            box-shadow: var(--glow-green);
        }

        .processo-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 16px 48px rgba(1, 223, 60, 0.3);
            background: rgba(1, 223, 60, 0.05);
            border-color: var(--primary-green);
        }

        .processo-number {
            font-family: 'Outfit', sans-serif;
            font-size: 4rem;
            font-weight: 900;
            color: var(--primary-green);
            margin-bottom: 1.5rem;
            text-shadow: var(--glow-green);
        }

        .processo-title {
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 1.5rem;
        }

        .processo-desc {
            font-size: 1rem;
            color: var(--off-white);
            line-height: 1.7;
        }

        /* ===== DIFERENCIAIS SECTION ===== */
        .diferenciais-section {
            background: var(--bg-dark-3);
            background-image: url('/assets/img/bg-section-diferenciais.webp');
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 8rem 1rem;
            position: relative;
        }

        .diferenciais-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .diferencial-card {
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(20px);
            padding: 3rem;
            border-radius: 24px;
            transition: all 0.4s ease;
            border: 2px solid rgba(1, 223, 60, 0.3);
        }

        .diferencial-card:hover {
            background: rgba(0, 0, 0, 0.85);
            box-shadow: 0 12px 48px rgba(1, 223, 60, 0.4);
            transform: scale(1.03);
            border-color: var(--primary-green);
        }

        .diferencial-icon-wrapper {
            width: 80px;
            height: 80px;
            background: var(--primary-green);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow-green);
        }

        .diferencial-title {
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 1.5rem;
        }

        .diferencial-desc {
            color: var(--off-white);
            line-height: 1.7;
            font-size: 1rem;
        }

        /* ===== PROVA SOCIAL ===== */
        .prova-section {
            background: radial-gradient(circle at center, rgba(1, 223, 60, 0.08) 0%, var(--bg-dark-1) 70%);
            padding: 8rem 1rem;
        }

        .numeros-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            margin-top: 4rem;
        }

        .numero-item {
            text-align: center;
            padding: 3rem 2rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            border: 2px solid rgba(1, 223, 60, 0.2);
            transition: all 0.3s ease;
        }

        .numero-item:hover {
            background: rgba(1, 223, 60, 0.05);
            border-color: var(--primary-green);
            transform: scale(1.05);
        }

        .numero-value {
            font-family: 'Outfit', sans-serif;
            font-size: 4rem;
            font-weight: 900;
            color: var(--primary-green);
            margin-bottom: 1rem;
            text-shadow: var(--glow-green);
        }

        .numero-label {
            color: var(--off-white);
            font-size: 1.125rem;
            font-weight: 600;
        }

        /* ===== OFERTA SECTION ===== */
        .oferta-section {
            background: radial-gradient(circle at top left, rgba(1, 223, 60, 0.12) 0%, var(--bg-dark-2) 60%);
            padding: 8rem 1rem;
        }

        .oferta-badge {
            background: var(--primary-green);
            color: var(--primary-black);
            font-weight: 900;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 2rem;
            font-size: 1.125rem;
            box-shadow: var(--shadow-green);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .oferta-items {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: 4rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .oferta-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 3rem;
            border-radius: 20px;
            border-left: 6px solid var(--primary-green);
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
        }

        .oferta-item:hover {
            background: rgba(1, 223, 60, 0.08);
            transform: translateX(8px);
        }

        .oferta-item-title {
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .oferta-item p {
            color: var(--off-white);
            line-height: 1.7;
        }

        .graphic-color{
            width: 64px;
            height: 64px;
        }

        /* ===== FAQ SECTION ===== */
        .faq-section {
            background: var(--bg-dark-1);
            padding: 8rem 1rem;
        }

        .faq-list {
            max-width: 900px;
            margin: 4rem auto 0;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            margin-bottom: 1.5rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: rgba(1, 223, 60, 0.5);
        }

        .faq-question {
            padding: 2rem;
            font-weight: 700;
            font-size: 1.125rem;
            color: var(--white);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(1, 223, 60, 0.05);
            color: var(--primary-green);
        }

        .faq-answer {
            padding: 0 2rem 2rem;
            color: var(--off-white);
            line-height: 1.8;
            display: none;
        }

        .faq-answer.show {
            display: block;
        }

        /* ===== URGÊNCIA SECTION ===== */
        .urgencia-section {
            background: radial-gradient(circle at center, rgba(231, 76, 60, 0.15) 0%, var(--bg-dark-3) 60%);
            padding: 8rem 1rem;
            border-top: 2px solid rgba(231, 76, 60, 0.3);
            border-bottom: 2px solid rgba(231, 76, 60, 0.3);
        }

        /* ===== CTA FINAL ===== */
        .cta-final-section {
            background: var(--primary-black);
            color: var(--white);
            padding: 8rem 1rem;
            text-align: center;
            position: relative;
        }

        .cta-final-headline {
            font-family: 'Outfit', sans-serif;
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 2rem;
        }

        .cta-final-form {
            max-width: 600px;
            margin: 4rem auto;
            display: flex;
            justify-content: center;
        }
        
        .cta-final-form .hero-form-wrapper {
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .cta-final-form .form-group label {
            text-align: left;
        }
        
        .cta-final-form .checkbox-group label {
            text-align: left;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: #0a0a0a;
            color: var(--gray-light);
            padding: 4rem 1rem;
            text-align: center;
            border-top: 1px solid rgba(1, 223, 60, 0.2);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-text {
            font-size: 0.875rem;
            margin-top: 1rem;
        }

        .link_footer {
            text-decoration: none;
            color: #0dd836;
        }

        .link_footer:hover {
            text-decoration: none;
            color: #95fd2d;
        }

        /* ===== WHATSAPP FLOAT ===== */
        .whatsapp-float {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 70px;
            height: 70px;
            background: var(--primary-green);
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-green);
            cursor: pointer;
            z-index: 1000;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        .whatsapp-float.show {
            display: flex;
        }

        .whatsapp-float:hover {
            transform: scale(1.15);
            box-shadow: var(--shadow-green-hover);
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 4px 20px rgba(1, 223, 60, 0.4);
            }
            50% {
                box-shadow: 0 4px 32px rgba(1, 223, 60, 0.7);
            }
        }

        

        /* ===== ANIMATIONS ===== */
        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 4px 20px rgba(1, 223, 60, 0.4);
            }
            50% {
                box-shadow: 0 4px 32px rgba(1, 223, 60, 0.7);
            }
        }


        /* ===== RESPONSIVE - MOBILE FIRST ===== */
        
        /* Tablet (768px+) */
        @media (min-width: 768px) {
            .dor-list {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .processo-cards {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .diferenciais-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .numeros-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .solucao-content {
                grid-template-columns: 45% 55%;
            }
            
            .section-headline {
                font-size: 2rem;
            }
        }

        /* Desktop (1024px+) */
        @media (min-width: 1024px) {
            .section-headline {
                font-size: 3rem;
            }
            .cta-final-headline{
                font-size: 3rem;
            }

            .section-text{
                font-size: 1.1rem;
            }
            
            .dor-list {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .diferenciais-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }