* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-blue: #1a2332;
            --primary-gradient: linear-gradient(135deg, #1a2332 0%, #2a3542 100%);
            --accent-gold: #D4AF37;
            --text-dark: #1a2332;
            --text-light: #6b7280;
            --white: #ffffff;
            --off-white: #fafafa;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
            background: var(--white);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Floating Header */
        .floating-header {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 100px;
            padding: 15px 30px;
            box-shadow: 0 10px 40px rgba(26, 35, 50, 0.1);
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 40px;
            border: 1px solid rgba(26, 35, 50, 0.05);
            transition: all 0.3s ease;
        }

        .floating-header:hover {
            box-shadow: 0 15px 50px rgba(26, 35, 50, 0.15);
        }

        .header-logo img {
            height: 35px;
            width: auto;
        }

        .header-nav {
            display: flex;
            gap: 30px;
        }

        .header-nav a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .header-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: width 0.3s ease;
        }

        .header-nav a:hover::after {
            width: 100%;
        }

        .header-cta {
            background: var(--primary-gradient);
            color: var(--white);
            padding: 10px 20px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .header-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(26, 35, 50, 0.3);
        }

        /* Hero Section - Centralizado sem imagem */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 0 80px;
            background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(180deg); }
        }

        .hero-content-single {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 80vh;
            position: relative;
            z-index: 2;
        }

        .hero-text-centered {
            max-width: 800px;
            text-align: center;
            /* Removida animação para carregamento mais rápido no mobile */
        }

        /* Animação apenas para desktop */
        @media (min-width: 769px) {
            .hero-text-centered {
                animation: slideInUp 0.8s ease;
            }
        }

        @keyframes slideInUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-text-centered .hero-badge {
            margin: 0 auto 20px;
        }

        .hero-text-centered .hero-features {
            max-width: 600px;
            margin: 0 auto 40px;
        }

        .hero-text-centered .hero-cta-group {
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--white);
            padding: 8px 20px;
            border-radius: 50px;
            margin-bottom: 20px;
            box-shadow: 0 5px 20px rgba(26, 35, 50, 0.1);
            font-size: 0.85rem;
            color: var(--text-dark);
            font-weight: 600;
        }

        .hero-badge .badge-icon {
            width: 8px;
            height: 8px;
            background: #10b981;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.5); opacity: 0.5; }
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 900;
            line-height: 1.1;
            color: var(--primary-blue);
            margin-bottom: 25px;
        }

        .hero-title .highlight {
            background: linear-gradient(135deg, var(--accent-gold) 0%, #f4e4a1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-light);
            margin-bottom: 30px;
            line-height: 1.7;
        }

        .hero-features {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 40px;
        }

        .hero-feature {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1rem;
            color: var(--text-dark);
        }

        .hero-feature i {
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-gold);
            font-size: 0.9rem;
        }

        .hero-cta-group {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .cta-primary {
            background: var(--primary-gradient);
            color: var(--white);
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(26, 35, 50, 0.3);
        }

        .cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(26, 35, 50, 0.4);
        }

        .cta-secondary {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .cta-secondary:hover {
            gap: 12px;
            color: var(--accent-gold);
        }

        /* Botão Calcule seu IMC com destaque dourado */
        [data-quiz-trigger] {
            background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
            color: var(--white);
            border: 2px solid #D4AF37;
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        [data-quiz-trigger]:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
            background: linear-gradient(135deg, #B8941F 0%, #9C7A19 100%);
        }

        [data-quiz-trigger]::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;
        }

        [data-quiz-trigger]:hover::before {
            left: 100%;
        }

        /* Adicionar animação de pulso para chamar atenção */
        @keyframes pulseGold {
            0%, 100% { 
                box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
            }
            50% { 
                box-shadow: 0 12px 40px rgba(212, 175, 55, 0.6);
            }
        }

        [data-quiz-trigger].header-cta {
            animation: pulseGold 3s infinite;
        }

        /* Trust Badges */
        .trust-section {
            padding: 60px 0;
            background: var(--white);
            border-bottom: 1px solid #f0f0f0;
        }

        .trust-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 60px;
        }

        .trust-item {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .trust-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-gold);
            font-size: 1.3rem;
        }

        .trust-text h3 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 2px;
            color: var(--text-dark);
        }

        .trust-text p {
            font-size: 0.85rem;
            color: var(--text-light);
        }

        /* Problem Agitation Section */
        .problem-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
        }

        .problem-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .section-badge {
            display: inline-block;
            background: var(--primary-gradient);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 900;
            color: var(--text-dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            line-height: 1.7;
        }

        .problem-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            max-width: 900px;
            margin: 0 auto;
        }

        .problem-card {
            background: var(--white);
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(26, 35, 50, 0.08);
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .problem-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(26, 35, 50, 0.12);
            border-color: var(--accent-gold);
        }

        .problem-card-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ef4444;
            font-size: 1.3rem;
            margin-bottom: 20px;
        }

        .problem-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 12px;
        }

        .problem-card p {
            font-size: 0.95rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Solution Section */
        .solution-section {
            padding: 100px 0;
            background: var(--white);
            position: relative;
        }

        .solution-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .solution-visual {
            position: relative;
        }

        .solution-card {
            background: var(--primary-gradient);
            padding: 50px;
            border-radius: 30px;
            color: var(--white);
            position: relative;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(26, 35, 50, 0.3);
        }

        .solution-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 50%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .solution-card-content {
            position: relative;
            z-index: 2;
        }

        .solution-card-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 30px;
        }

        .solution-card h3 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .solution-features {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .solution-feature {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .solution-feature i {
            color: var(--accent-gold);
        }

        .solution-text {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .solution-step {
            display: flex;
            gap: 20px;
            align-items: start;
        }

        .solution-step-number {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-gold);
            font-weight: 700;
            flex-shrink: 0;
        }

        .solution-step-content h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .solution-step-content p {
            font-size: 0.95rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Specialists Section */
        .specialists-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
        }

        .specialists-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 60px;
        }

        .specialist-card {
            background: var(--white);
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(26, 35, 50, 0.1);
            transition: all 0.3s ease;
        }

        .specialist-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(26, 35, 50, 0.15);
        }

        .specialist-image {
            height: 300px;
            background: var(--primary-gradient);
            position: relative;
            overflow: hidden;
        }

        .specialist-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.9;
        }

        .specialist-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--accent-gold);
            color: var(--white);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
        }

        .specialist-content {
            padding: 40px;
        }

        .specialist-name {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 5px;
        }

        .specialist-title {
            color: var(--accent-gold);
            font-weight: 600;
            margin-bottom: 20px;
        }

        .specialist-bio {
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .specialist-achievements {
            display: flex;
            gap: 30px;
            padding-top: 20px;
            border-top: 1px solid #f0f0f0;
        }

        .achievement {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .achievement i {
            color: var(--accent-gold);
        }

        .achievement span {
            font-size: 0.9rem;
            color: var(--text-dark);
            font-weight: 600;
        }

        /* Social Proof Section */
        .social-proof-section {
            padding: 100px 0;
            background: var(--white);
        }

        .testimonials-slider {
            margin-top: 60px;
            position: relative;
            min-height: 400px;
        }

        .testimonial-slide {
            display: none;
            opacity: 0;
            transition: opacity 0.5s ease;
            background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
            padding: 50px;
            border-radius: 30px;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
        }

        .testimonial-slide.active {
            display: block;
            opacity: 1;
            animation: fadeInTestimonial 0.5s ease;
        }

        @keyframes fadeInTestimonial {
            from { 
                opacity: 0; 
                transform: translateY(20px); 
            }
            to { 
                opacity: 1; 
                transform: translateY(0); 
            }
        }

        .testimonial-slide::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 40px;
            font-size: 6rem;
            color: var(--accent-gold);
            opacity: 0.3;
            font-family: 'Playfair Display', serif;
        }

        .testimonial-content {
            position: relative;
            z-index: 2;
        }

        .testimonial-text {
            font-size: 1.3rem;
            color: var(--text-dark);
            line-height: 1.8;
            margin-bottom: 30px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }

        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--primary-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            font-size: 1.3rem;
            overflow: hidden;
        }

        .testimonial-info h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 5px;
        }

        .testimonial-info .stars {
            color: #fbbf24;
        }

        .testimonial-info p {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .testimonial-nav {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 40px;
        }

        .testimonial-nav-btn {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid var(--accent-gold);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonial-nav-btn.active,
        .testimonial-nav-btn:hover {
            background: var(--accent-gold);
            transform: scale(1.2);
        }

        .testimonial-nav-btn.active {
            position: relative;
        }

        .testimonial-nav-btn.active::before {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            border: 2px solid var(--accent-gold);
            border-radius: 50%;
            top: -6px;
            left: -6px;
            animation: pulseNav 3s infinite;
        }

        @keyframes pulseNav {
            0%, 100% { 
                transform: scale(1); 
                opacity: 1; 
            }
            50% { 
                transform: scale(1.3); 
                opacity: 0.3; 
            }
        }

        /* Results Gallery */
        .results-gallery {
            margin-top: 80px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .result-card {
            background: var(--white);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(26, 35, 50, 0.08);
            transition: all 0.3s ease;
        }

        .result-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(26, 35, 50, 0.12);
        }

        .result-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-blue);
            margin-bottom: 5px;
        }

        .result-label {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        /* FAQ Section */
        .faq-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            margin-top: 60px;
        }

        .faq-item {
            background: var(--white);
            margin-bottom: 20px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(26, 35, 50, 0.08);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 10px 30px rgba(26, 35, 50, 0.12);
        }

        .faq-question {
            padding: 25px 30px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
        }

        .faq-icon {
            transition: transform 0.3s ease;
            color: var(--accent-gold);
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item.active .faq-answer {
            padding: 25px 30px;
            max-height: 500px;
        }

        /* Final CTA */
        .final-cta {
            padding: 120px 0;
            background: var(--primary-gradient);
            position: relative;
            overflow: hidden;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
        }

        .final-cta-content {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .final-cta-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--white);
            margin-bottom: 20px;
        }

        .final-cta-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .final-cta-button {
            background: var(--white);
            color: var(--primary-blue);
            padding: 20px 50px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .final-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            background: var(--accent-gold);
            color: var(--white);
        }

        .urgency-text {
            margin-top: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            color: var(--accent-gold);
            font-weight: 600;
        }

        .urgency-text .pulse-dot {
            width: 10px;
            height: 10px;
            background: var(--accent-gold);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        /* Footer */
        .footer {
            background: #0a0f18;
            color: var(--white);
            padding: 80px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-brand h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            font-weight: 800;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .social-links a:hover {
            background: var(--accent-gold);
            border-color: var(--accent-gold);
            transform: translateY(-3px);
        }

        .footer-column h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--accent-gold);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 12px;
        }

        .footer-column a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .footer-column a:hover {
            color: var(--white);
            padding-left: 5px;
        }

        .footer-bottom {
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        .footer-badges {
            display: flex;
            gap: 20px;
        }

        .footer-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.85rem;
        }

        .footer-badge i {
            color: var(--accent-gold);
        }

        /* WhatsApp Float Button */
        .whatsapp-float {
            position: fixed;
            width: 70px;
            height: 70px;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
            z-index: 999;
            text-decoration: none;
            transition: all 0.3s ease;
            animation: pulseWhatsApp 3s infinite;
        }

        @keyframes pulseWhatsApp {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
            }
            50% { 
                transform: scale(1.05);
                box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
            }
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-float::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
            border-radius: 50%;
            animation: ripple 2s infinite;
            z-index: -1;
        }

        @keyframes ripple {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }

        /* Video Float Button */
        .video-float {
            position: fixed;
            width: 90px;
            height: 160px;
            bottom: 120px;
            right: 30px;
            background: #000;
            border-radius: 20px;
            z-index: 998;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 3px solid var(--accent-gold);
        }

        .video-float:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }

        .video-float video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-float-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(26, 35, 50, 0.9) 0%, rgba(212, 175, 55, 0.8) 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .video-float:hover .video-float-overlay {
            background: linear-gradient(135deg, rgba(26, 35, 50, 0.7) 0%, rgba(212, 175, 55, 0.6) 100%);
        }

        .video-float-overlay i {
            color: var(--white);
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .video-float-overlay span {
            color: var(--white);
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-align: center;
        }

        /* Smart Video Modal */
        .smart-video-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.95);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
        }

        .smart-video-modal.active {
            display: flex;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .smart-video-content {
            position: relative;
            width: 90%;
            max-width: 500px;
            background: var(--primary-gradient);
            border-radius: 30px;
            padding: 5px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
        }

        .smart-video-wrapper {
            background: #000;
            border-radius: 25px;
            overflow: hidden;
            position: relative;
            padding-bottom: 177.78%; /* 16:9 aspect ratio */
        }

        .smart-video-wrapper video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .smart-video-header {
            background: var(--white);
            padding: 20px 30px;
            border-radius: 25px 25px 0 0;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            z-index: 10;
        }

        .smart-video-header h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 5px;
        }

        .smart-video-header p {
            font-size: 0.85rem;
            color: var(--text-light);
        }

        .close-video-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--white);
            color: var(--text-dark);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            z-index: 11;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        .close-video-btn:hover {
            background: var(--accent-gold);
            color: var(--white);
            transform: rotate(90deg);
        }

        /* Auto Popup Video Modal */
        .auto-popup-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.9);
            z-index: 3000;
            display: none;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
        }

        .auto-popup-modal.active {
            display: flex;
            animation: fadeIn 0.5s ease;
        }

        .auto-popup-content {
            background: var(--white);
            border-radius: 30px;
            max-width: 500px;
            width: 90%;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
            position: relative;
        }

        .auto-popup-header {
            background: var(--primary-gradient);
            padding: 30px;
            text-align: center;
            position: relative;
        }

        .auto-popup-header h2 {
            color: var(--white);
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .auto-popup-header p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
        }

        .auto-popup-body {
            padding: 40px;
            text-align: center;
        }

        .auto-popup-video-preview {
            width: 100%;
            height: 250px;
            background: #000;
            border-radius: 20px;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .auto-popup-video-preview:hover {
            transform: scale(1.02);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }

        .auto-popup-video-preview video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .auto-popup-play-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .auto-popup-video-preview:hover .auto-popup-play-overlay {
            background: rgba(0, 0, 0, 0.2);
        }

        .auto-popup-play-btn {
            width: 80px;
            height: 80px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-blue);
            font-size: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

        .auto-popup-video-preview:hover .auto-popup-play-btn {
            transform: scale(1.1);
            background: var(--accent-gold);
            color: var(--white);
        }

        .auto-popup-text {
            margin-bottom: 30px;
        }

        .auto-popup-text h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .auto-popup-text p {
            color: var(--text-light);
            line-height: 1.6;
        }

        .auto-popup-actions {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        .auto-popup-btn {
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-size: 1rem;
        }

        .auto-popup-btn-primary {
            background: var(--primary-gradient);
            color: var(--white);
            flex: 1;
        }

        .auto-popup-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(26, 35, 50, 0.3);
        }

        .auto-popup-btn-secondary {
            background: transparent;
            color: var(--text-light);
            border: 2px solid #e0e0e0;
        }

        .auto-popup-btn-secondary:hover {
            background: #f5f5f5;
        }

        .auto-popup-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.2);
            color: var(--white);
            border: none;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .auto-popup-close:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .floating-header {
                width: calc(100% - 40px);
                padding: 12px 20px;
                gap: 20px;
            }

            .header-nav {
                display: none;
            }

            .hero-content-single {
                min-height: 70vh;
                padding: 20px 0;
            }
            
            .hero-text-centered .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-text-centered .hero-cta-group {
                flex-direction: column;
                align-items: center;
            }
            
            .hero-text-centered .cta-primary,
            .hero-text-centered .cta-secondary {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }

            .trust-container {
                flex-direction: column;
                gap: 30px;
            }

            .problem-grid {
                grid-template-columns: 1fr;
            }

            .solution-content {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .specialists-grid {
                grid-template-columns: 1fr;
            }

            .results-gallery {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .video-float {
                width: 75px;
                height: 130px;
                bottom: 110px;
                right: 20px;
            }

            .whatsapp-float {
                width: 60px;
                height: 60px;
                bottom: 25px;
                right: 20px;
                font-size: 1.8rem;
            }

            .testimonials-container {
                grid-template-columns: 1fr !important;
                gap: 20px !important;
            }
            
            .testimonial-card {
                margin-bottom: 10px !important;
                min-height: 300px !important;
            }
            
            .testimonial-card-text {
                font-size: 0.9rem !important;
                text-align: center !important;
            }
            
            .testimonial-card-author {
                flex-direction: row !important;
                justify-content: center !important;
                gap: 15px !important;
            }

            /* Correções específicas para mobile */
            .quiz-container {
                width: 95%;
                max-height: 95vh;
                border-radius: 20px;
            }
            
            .quiz-header {
                padding: 25px 20px;
            }
            
            .quiz-body {
                padding: 30px 20px;
            }
            
            .form-radio-group {
                flex-direction: column;
            }
            
            .result-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .imc-value {
                font-size: 2.2rem;
            }
            
            .quiz-actions {
                flex-direction: column-reverse;
            }
            
            .quiz-btn {
                width: 100%;
            }

            /* Fix para evitar overflow no mobile */
            body {
                overflow-x: hidden;
            }

            /* Garantir que sections não criem espaço extra */
            section {
                max-width: 100%;
                overflow-x: hidden;
            }

            /* Fix para auto-popup no mobile */
            .auto-popup-content {
                width: 95%;
                margin: 0 auto;
            }

            .auto-popup-video-preview {
                height: 200px;
            }
        }

        @media (max-width: 480px) {
            .hero-text-centered .hero-title {
                font-size: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .final-cta-title {
                font-size: 2.5rem;
            }

            .results-gallery {
                grid-template-columns: 1fr;
            }

            /* Reduzir ainda mais o modal no mobile pequeno */
            .imc-value {
                font-size: 2rem;
            }

            .result-main {
                padding: 20px;
            }

            .result-cta {
                padding: 20px;
            }

            .result-cta h3 {
                font-size: 1.1rem;
            }

            .result-cta p {
                font-size: 0.85rem;
            }
        }

        /* Fix específico para eliminar espaços em branco extras */
        html, body {
            overflow-x: hidden;
            width: 100%;
            position: relative;
        }

        /* Garantir que nenhum elemento ultrapasse a tela */
        * {
            max-width: 100%;
        }

        /* Fix para modals no mobile */
        .quiz-modal,
        .smart-video-modal,
        .auto-popup-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
        }
/* CORREÇÃO ESPECÍFICA PARA DEPOIMENTOS */

/* Reset de estilos que podem estar interferindo */
.social-proof-section .testimonials-container {
    margin-top: 60px !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    position: relative;
    list-style: none !important;
    padding: 0 !important;
}

.social-proof-section .testimonial-card {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%) !important;
    padding: 30px !important;
    border-radius: 20px !important;
    text-align: center !important;
    position: relative !important;
    box-shadow: 0 10px 30px rgba(26, 35, 50, 0.08) !important;
    transition: all 0.5s ease !important;
    opacity: 0.7 !important;
    transform: scale(0.95) !important;
    border: 2px solid transparent !important;
    min-height: 400px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    margin: 0 !important;
    list-style: none !important;
}

.social-proof-section .testimonial-card.active {
    opacity: 1 !important;
    transform: scale(1) !important;
    box-shadow: 0 20px 50px rgba(26, 35, 50, 0.15) !important;
    border: 2px solid var(--accent-gold) !important;
    background: var(--white) !important;
}

.social-proof-section .testimonial-card::before {
    content: '"' !important;
    position: absolute !important;
    top: 15px !important;
    left: 25px !important;
    font-size: 3rem !important;
    color: var(--accent-gold) !important;
    opacity: 0.3 !important;
    font-family: 'Playfair Display', serif !important;
}

.social-proof-section .testimonial-card-content {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    justify-content: space-between !important;
}

.social-proof-section .testimonial-card-text {
    font-size: 0.9rem !important;
    color: var(--text-dark) !important;
    line-height: 1.6 !important;
    margin-bottom: 25px !important;
    font-style: italic !important;
    flex-grow: 1 !important;
    display: flex !important;
    align-items: center !important;
    text-align: left !important;
    padding-top: 20px !important;
}

.social-proof-section .testimonial-card-author {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    margin-top: auto !important;
}

.social-proof-section .testimonial-card-avatar {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background: var(--primary-gradient) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--white) !important;
    font-weight: 700 !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
}

.social-proof-section .testimonial-card-info {
    text-align: center !important;
}

.social-proof-section .testimonial-card-info h4 {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    margin-bottom: 3px !important;
}

.social-proof-section .testimonial-card-info .stars {
    color: #fbbf24 !important;
    font-size: 0.8rem !important;
    margin-bottom: 3px !important;
}

.social-proof-section .testimonial-card-info p {
    font-size: 0.8rem !important;
    color: var(--text-light) !important;
    margin: 0 !important;
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .social-proof-section .testimonials-container {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .social-proof-section .testimonial-card {
        margin-bottom: 10px !important;
        min-height: 300px !important;
    }
    
    .social-proof-section .testimonial-card-text {
        font-size: 0.9rem !important;
        text-align: center !important;
    }
    
    .social-proof-section .testimonial-card-author {
        flex-direction: row !important;
        justify-content: center !important;
        gap: 15px !important;
    }
}