  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body { 
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #f0f4f8 100%);
            position: relative;
            overflow-x: hidden;
        }
        
        /* ✨ EFEITO DE LUZ DE FUNDO */
        body::before {
            content: '';
            position: fixed;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            top: -100px;
            right: -100px;
            pointer-events: none;
            z-index: 0;
        }
        
        body::after {
            content: '';
            position: fixed;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            bottom: -50px;
            left: -50px;
            pointer-events: none;
            z-index: 0;
        }

        .section-double-height { 
            padding-top: 10rem; 
            padding-bottom: 10rem;
            position: relative;
            z-index: 1;
        }
        
        .swiper {
            width: 100%;
            min-height: 100svh;
        }
        
        .slide-bg { 
            background-size: cover; 
            background-position: center; 
            display: flex; 
            align-items: center; 
            justify-content: center;
            position: relative;
        }
        
        .slide-overlay {
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(29, 78, 147, 0.8) 100%);
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
        }
        
        /* ✨ DECORATIVOS ANIMADOS */
        .decorative-box {
            position: absolute;
            opacity: 0.15;
            animation: float 6s ease-in-out infinite;
        }
        
        .decorative-box-1 {
            animation-delay: 0s;
        }
        
        .decorative-box-2 {
            animation-delay: 2s;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(20px); }
        }
        
        /* ✨ HEADER COM FUNDO GRADIENTE */
        header {
            background: #113964 !important;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
            border: 1px solid rgba(255, 255, 255, 0.5) !important;
        }
        
        /* LOGO COM FUNDO */
        .logo-header {
            background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
            color: white;
            padding: 8px 16px;
            border-radius: 10px;
            font-weight: 900;
            letter-spacing: -0.5px;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
            transition: all 0.3s ease;
        }
        
        .logo-header:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
        }
        
        header a.cta-btn {
            background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        header a.cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.5s ease;
        }
        
        header a.cta-btn:hover::before {
            left: 100%;
        }
        
        /* HERO SECTION */
        .hero-box {
            background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: slideUp 0.8s ease-out;
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* ✨ HEADLINE REDUZIDO */
        .hero-headline {
            background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 900;
            letter-spacing: -1px;
            font-size: 2.5rem;
        }
        
        @media (min-width: 640px) {
            .hero-headline {
                font-size: 3rem;
            }
        }
        
        @media (min-width: 768px) {
            .hero-headline {
                font-size: 3.75rem;
            }
        }
        
        @media (min-width: 1024px) {
            .hero-headline {
                font-size: 4.5rem;
            }
        }
        
        /* CARDS HERO */
        .hero-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            border: 1px solid rgba(226, 232, 240, 0.8);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
        }
        
        .hero-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .hero-card:hover::before {
            opacity: 1;
        }
        
        .hero-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
            border-color: rgba(59, 130, 246, 0.2);
        }
        
        /* FORM SECTION */
        .form-box {
            background: linear-gradient(135deg, #113964 0%, #113964 50%, #113964 100%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 60px rgba(30, 40, 175, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .form-box::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            top: -100px;
            right: -100px;
            animation: float 8s ease-in-out infinite;
        }
        
        .form-box::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            bottom: -50px;
            left: -50px;
            animation: float 10s ease-in-out infinite reverse;
        }
        
        .form-input {
            background: rgba(255, 255, 255, 0.95) !important;
            border: 1.5px solid rgba(255, 255, 255, 0.2) !important;
            transition: all 0.3s ease;
            position: relative;
            z-index: 10;
        }
        
        .form-input:focus {
            background: rgba(255, 255, 255, 1) !important;
            border-color: #3b82f6 !important;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
            transform: scale(1.01);
        }
        
        .form-input::placeholder {
            color: rgba(31, 41, 55, 0.6);
        }
        
        .submit-btn {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
            position: relative;
            overflow: hidden;
            font-weight: 700;
            letter-spacing: 0.5px;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
            z-index: 10;
        }
        
        .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }
        
        .submit-btn:hover::before {
            left: 100%;
        }
        
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
        }
        
        .submit-btn:active {
            transform: translateY(0);
        }
        
        /* TESTIMONIALS SECTION */
        .testimonial-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            border: 1px solid rgba(226, 232, 240, 0.8);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }
        
        .testimonial-card:hover::before {
            opacity: 1;
        }
        
        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(59, 130, 246, 0.12);
            border-color: rgba(59, 130, 246, 0.2);
        }
        
        .avatar {
            border: 3px solid rgba(59, 130, 246, 0.3);
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
            object-fit: cover;
        }
        
        /* STATS SECTION */
        .stat-item {
            position: relative;
            text-align: center;
            animation: countUp 1s ease-out;
        }
        
        @keyframes countUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .stat-box {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 16px;
            padding: 2.5rem 1.5rem;
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
        }
        
        .stat-box:hover {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
            border-color: rgba(255, 255, 255, 0.4);
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* COMPARISON SECTION */
        .comparison-box {
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            border: 1.5px solid rgba(226, 232, 240, 0.8);
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.4s ease;
            position: relative;
        }
        
        .comparison-box::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
            border-radius: 16px 16px 0 0;
            opacity: 0.5;
        }
        
        .comparison-box-success::after {
            background: linear-gradient(90deg, #10b981 0%, #059669 100%);
        }
        
        .comparison-box:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        }
        
        /* PRICING CARDS */
        .pricing-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            border: 1.5px solid rgba(226, 232, 240, 0.8);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
        }
        
        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        
        .pricing-card:hover::before {
            transform: scaleX(1);
        }
        
        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
            border-color: rgba(59, 130, 246, 0.2);
        }
        
        .pricing-card.featured {
            background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
            color: white;
            border: 1.5px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 20px 60px rgba(37, 99, 235, 0.3);
        }
        
        .pricing-card.featured:hover {
            box-shadow: 0 30px 80px rgba(37, 99, 235, 0.4);
        }
        
        .pricing-badge {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
        }
        
        /* FAQ SECTION */
        .faq-item {
            border: 1.5px solid rgba(226, 232, 240, 0.6);
            transition: all 0.4s ease;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        }
        
        .faq-item:hover {
            border-color: #113964;
            box-shadow: 0 8px 20px rgba(59, 130, 246, 0.1);
            background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
        }
        
        .faq-item[open] {
            border-color: #113964;
            background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
        }
        
        summary {
            color: #1f2937;
        }
        
        summary:hover {
            color: #2563eb;
        }
        
        /* VIDEO SECTION */
        .video-frame {
            border: 1.5px solid rgba(226, 232, 240, 0.8);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            transition: all 0.4s ease;
        }
        
        .video-frame:hover {
            box-shadow: 0 30px 80px rgba(37, 99, 235, 0.2);
            transform: scale(1.02);
        }
        
        /* FOOTER */
        footer {
            background: linear-gradient(135deg, #113964 0%, #113964 100%);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        footer::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            top: -100px;
            right: 10%;
            pointer-events: none;
        }
        
        .footer-link {
            color: rgba(226, 232, 240, 0.8);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .footer-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: #3b82f6;
            transition: width 0.3s ease;
        }
        
        .footer-link:hover {
            color: #3b82f6;
        }
        
        .footer-link:hover::after {
            width: 100%;
        }
        
        .social-icon {
            transition: all 0.3s ease;
            position: relative;
        }
        
        .social-icon:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
        }
        
        /* FLATPICKR CUSTOMIZATION */
        .flatpickr-calendar {
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
            border-radius: 12px !important;
            border: 1px solid rgba(226, 232, 240, 0.8) !important;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
        }
        
        .flatpickr-input {
            width: 100% !important;
            padding: 0.75rem !important;
            border-radius: 0.5rem !important;
            background: rgba(255, 255, 255, 0.95) !important;
            border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
            color: #1f2937 !important;
            font-weight: 500 !important;
            transition: all 0.3s ease !important;
        }
        
        .flatpickr-input:focus {
            outline: none !important;
            border-color: #3b82f6 !important;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
            background: rgba(255, 255, 255, 1) !important;
        }
        
        /* RESPONSIVO */
        @media (max-width: 768px) {
            .hero-headline {
                font-size: 2rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            body::before,
            body::after {
                display: none;
            }
        }
        
        /* SCROLLBAR CUSTOMIZATION */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: #113964;
        }
        
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #113964 0%, #113964 100%);
            border-radius: 10px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
        }