﻿/* ==========================================
   BASE DESIGN SYSTEM & CONSTANTS
   ========================================== */
:root {
    /* Cores Institucionais Premium */
    --color-bg-matte: #0D0D0D;
    --color-bg-deep: #121212;
    --color-bg-card: rgba(30, 30, 30, 0.45);

    --color-gold: #C8A25A;
    --color-gold-rgb: 200, 162, 90;
    --color-gold-light: #E5C789;
    --color-gold-dark: #9C7B3F;
    --color-gold-dark-rgb: 156, 123, 63;

    --color-white-ice: #F2F2F2;
    --color-text-muted: #A3A3A3;

    /* Sistema de Espaçamento 8pt */
    --space-xs: 0.5rem;
    /* 8px */
    --space-sm: 1rem;
    /* 16px */
    --space-md: 1.5rem;
    /* 24px */
    --space-lg: 2rem;
    /* 32px */
    --space-xl: 3rem;
    /* 48px */
    --space-2xl: 4rem;
    /* 64px */
    --space-3xl: 6rem;
    /* 96px */

    /* Bordas e Sombras */
    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --border-glass: 1px solid rgba(200, 162, 90, 0.15);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(200, 162, 90, 0.2);

    /* Fontes */
    --font-primary: 'Outfit', system-ui, -apple-system, sans-serif;
    --font-accent: 'Playfair Display', Georgia, serif;
}

/* ==========================================
   RESET E BOILERPLATE MODERNO
   ========================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    background-color: var(--color-bg-matte);
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-primary);
    background-color: transparent; /* Permite ver a animação no fundo */
    color: var(--color-white-ice);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    cursor: none; /* Esconde o cursor padrão */
}

/* Garante que elementos interativos ainda mostrem que são clicáveis, mas sem o cursor padrão */
a, button, .btn-primary, .btn-secondary, .nav-link, .logo {
    cursor: none !important;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ==========================================
   CUSTOM MAGNETIC CURSOR
   ========================================== */
.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-gold);
    position: fixed;
    top: 0;
    left: 0;
    left: 0;
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(var(--color-gold-rgb), 0.5);
    position: fixed;
    top: 0;
    left: 0;
    left: 0;
    border-radius: 50%;
    z-index: 9998;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

/* Efeito ao pairar sobre elementos clicáveis */
body.cursor-hover .cursor-outline {
    width: 65px;
    height: 65px;
    background-color: rgba(var(--color-gold-rgb), 0.1);
    border-color: var(--color-gold);
}

body.cursor-hover .cursor-dot {
    transform: translate(-50%, -50%) scale(1.5);
}

@media (max-width: 1024px) {
    body, a, button {
        cursor: auto !important;
    }
    .cursor-dot, .cursor-outline {
        display: none;
    }
}

/* ==========================================
   REUSÁVEIS & UTILITÁRIOS
   ========================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(var(--space-sm), 5vw, var(--space-lg));
}

.text-center {
    text-align: center;
}

.mt-32 {
    margin-top: var(--space-lg);
}

/* Tipografia Responsiva Fluid-Type */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.section-title {
    font-size: clamp(1.75rem, 4.5vw, 2.75rem);
    margin-bottom: var(--space-sm);
}

.text-gradient-gold {
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================
   AURA ELECTRIC BACKGROUND ANIMATION (GOLD EDITION)
   ========================================== */
.aura-container {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.aura-glow-base {
    position: absolute;
    bottom: -15%;
    left: 50%;
    width: 120%;
    height: 60vh;
    background: radial-gradient(circle at center, rgba(var(--color-gold-rgb), 0.15) 0%, transparent 70%);
    filter: blur(100px);
    transform: translateX(-50%);
}

.aura-glow-core {
    position: absolute;
    bottom: -10%;
    left: 50%;
    width: 60%;
    height: 40vh;
    background: radial-gradient(circle at center, rgba(var(--color-gold-rgb), 0.1) 0%, transparent 60%);
    filter: blur(60px);
    transform: translateX(-50%);
}

.aura-dot-grid {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(var(--color-gold) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 100%);
}

.aura-beams {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    opacity: 0.2;
}

.aura-beam {
    position: relative;
}

.aura-beam-line {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 1px;
    background: linear-gradient(to top, transparent, var(--color-gold), transparent);
    animation: aura-beam-rise 5s cubic-bezier(0.2, 0, 0.3, 1) infinite;
    opacity: 0;
}

@keyframes aura-beam-rise {
    0% { transform: translateY(110vh) rotate(-1deg); opacity: 0; }
    30% { opacity: 0.8; }
    70% { opacity: 0.8; }
    100% { transform: translateY(-100vh) rotate(1deg); opacity: 0; }
}

.aura-particles-layer {
    position: absolute;
    inset: 0;
    z-index: 4;
}

.aura-particle {
    position: absolute;
    background: var(--color-gold-light);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(1px);
    box-shadow: 0 0 10px var(--color-gold);
    will-change: transform, opacity;
}

@keyframes aura-particle-drift {
    0% { transform: translateY(105vh) scale(0.5); opacity: 0; }
    50% { opacity: 0.8; }
    100% { transform: translateY(-10vh) scale(1.2); opacity: 0; }
}

/* ==========================================
   EFEITOS VISUAIS DE AMBIENTE (Glow & Blur)
   ========================================== */
.ambient-glow-top-left {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(var(--color-gold-rgb), 0.08) 0%, rgba(13, 13, 13, 0) 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.ambient-glow-top-right {
    position: absolute;
    top: 10%;
    right: -10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(var(--color-gold-rgb), 0.06) 0%, rgba(13, 13, 13, 0) 70%);
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

/* ==========================================
   COMPONENTES GLOBAIS REUSÁVEIS
   ========================================== */

/* Seções de Conteúdo Base */
.section-pain,
.section-education,
.section-modules,
.section-audience,
.section-expert,
.section-choose {
    padding: var(--space-3xl) 0;
    position: relative;
    z-index: 2;
}

.section-education,
.section-expert,
.section-choose {
    background-color: transparent;
}

.section-expert,
.section-choose {
    overflow: hidden;
}

/* Glassmorphism Cards Base */
.glass-card,
.module-card {
    background: var(--color-bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: var(--border-glass);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-premium);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover,
.module-card:hover {
    border-color: rgba(var(--color-gold-rgb), 0.4);
    box-shadow: var(--shadow-glow);
}

.glass-card {
    padding: var(--space-md);
}

.glass-card:hover {
    transform: translateY(-5px);
}

/* Base de Ícones para Cards */
.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

/* Base de Textos para Cards */
.pain-card p,
.education-card p,
.module-content p,
.audience-card p,
.choose-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.pain-card h3,
.education-card h3,
.module-content h3,
.audience-card h3 {
    color: var(--color-white-ice);
}

/* ==========================================
   HEADER PREMIUM
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(13, 13, 13, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: var(--space-sm) 0;
}

.header-container {
    display: flex;
    align-items: center;
    max-width: 100%;
    padding: 0 var(--space-lg);
}

.logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    margin-right: var(--space-md);
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo:hover {
    transform: translateY(-1px);
}

.nav-desktop {
    /* Estilo base será flex no desktop */
}

.magnetic-area {
    flex: 0 0 auto;
    margin-left: var(--space-md);
}

.logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(200, 162, 90, 0.25));
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo:hover .logo-img {
    filter: drop-shadow(0 4px 16px rgba(200, 162, 90, 0.5));
}

/* Grupo de Ações Mobile */
.header-actions-mobile {
    display: none;
}

/* Estilo do Botão Mobile */
.mobile-menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(200, 162, 90, 0.2);
    color: var(--color-gold);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 101;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.mobile-menu-toggle:active {
    background: rgba(200, 162, 90, 0.15);
    transform: scale(0.9);
    border-color: var(--color-gold);
}

/* Overlay do Menu Mobile - Correção 100% Eficaz contra Gestos de Deslize Involuntários */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-2xl) 0 var(--space-xl);
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-brand {
    margin-top: var(--space-md);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.5s ease 0.2s;
}

.mobile-menu-overlay.active .mobile-menu-brand {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-logo-horizontal {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(200, 162, 90, 0.3));
}

.mobile-menu-close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(200, 162, 90, 0.2);
    color: var(--color-gold);
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-close:active {
    background: rgba(200, 162, 90, 0.1);
    transform: scale(0.9) rotate(90deg);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    align-items: center;
    width: 85%;
    margin: auto 0;
}

.mobile-nav-link {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s;
}

.mobile-menu-overlay.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

/* Animação em Cascata para os Links do Menu */
.mobile-menu-overlay.active .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-nav-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-nav-link:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu-overlay.active .mobile-nav-link:nth-child(4) { transition-delay: 0.4s; }

.mobile-nav-link .nav-number {
    font-size: 0.9rem;
    color: var(--color-gold);
    font-family: var(--font-primary);
    font-weight: 600;
    border: 1px solid rgba(200, 162, 90, 0.3);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    background: rgba(200, 162, 90, 0.05);
}

.mobile-nav-link:active {
    color: var(--color-gold-light);
    transform: scale(0.98);
}

.mobile-cta {
    margin-top: var(--space-md);
    width: 100%;
    box-shadow: 0 8px 25px rgba(200, 162, 90, 0.2);
}

.mobile-menu-footer {
    width: 85%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: var(--space-lg);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.4s;
}

.mobile-menu-overlay.active .mobile-menu-footer {
    opacity: 1;
    transform: translateY(0);
}

.mobile-footer-title {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.mobile-menu-socials {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

.social-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    color: var(--color-white-ice);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-icon-circle:active {
    border-color: var(--color-gold);
    background: rgba(200, 162, 90, 0.1);
    color: var(--color-gold);
    transform: translateY(-2px);
}

.nav-link:hover {
    color: var(--color-gold);
}

.btn-header {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-white-ice);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-full);
}

.btn-header:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* ==========================================
   BOTÕES & CTAs
   ========================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    color: #0D0D0D;
    padding: 1.1rem 2rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 25px rgba(200, 162, 90, 0.3);
    position: relative;
    overflow: hidden;
    min-height: 56px;
    width: 100%;
    text-align: center;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    transition: 0.5s;
    opacity: 0;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(200, 162, 90, 0.4);
    background: linear-gradient(135deg, #ffffff, var(--color-gold-light));
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    background: transparent;
    color: var(--color-white-ice);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.1rem 2rem;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    width: 100%;
    min-height: 56px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    padding: 140px 0 var(--space-2xl);
    overflow: hidden;
    z-index: 1;
}

/* Imagem de Fundo Hero */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/img/Foto-Headline.png'); background-position: center right;
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: right 15% center;
    opacity: 0.85;
    z-index: -2;
    filter: brightness(1.15) contrast(1.1) saturate(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(13, 13, 13, 1) 0%, rgba(13, 13, 13, 0.7) 45%, rgba(13, 13, 13, 0.05) 100%),
        linear-gradient(0deg, rgba(13, 13, 13, 1) 0%, rgba(13, 13, 13, 0) 50%);
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(200, 162, 90, 0.1);
    border: 1px solid rgba(200, 162, 90, 0.2);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gold-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.gold-icon {
    color: var(--color-gold);
    font-size: 1.2rem;
}

.hero-subtitle {
    margin: var(--space-md) 0 var(--space-lg);
    font-size: clamp(1rem, 3vw, 1.15rem);
    color: var(--color-text-muted);
    font-weight: 400;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

/* Selos */
.hero-seals {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: var(--space-lg);
}

.seal-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.seal-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(200, 162, 90, 0.15);
    border-radius: 50%;
    color: var(--color-gold);
    font-size: 1.2rem;
}

.seal-item span {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.seal-divider {
    display: none;
}

/* Parte Visual do Expert e Mockups */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: var(--space-xl);
}

.expert-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.expert-photo {
    width: 100%;
    height: auto;
    display: block;
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    position: relative;
    z-index: 2;
}

.expert-backlight {
    position: absolute;
    top: 20%;
    right: -20px;
    width: 120px;
    height: 80%;
    background: linear-gradient(180deg, rgba(var(--color-gold-rgb), 0.3), transparent);
    filter: blur(30px);
    z-index: 1;
    border-radius: 50%;
}

/* ==========================================
   SEÇÃO DE DOR (PROBLEMAS COMUNS)
   ========================================== */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.pain-card {
    position: relative;
    overflow: hidden;
}

.pain-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(var(--color-gold-rgb), 0.05), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.pain-card:hover::before {
    opacity: 1;
}

.pain-card .card-icon {
    background: rgba(var(--color-gold-rgb), 0.1);
    border: none;
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
    margin-bottom: var(--space-md);
}

.pain-card h3 {
    font-size: 1.35rem;
    margin-bottom: var(--space-sm);
}

/* Ajuste para o último card centralizar se sobrar sozinho */
@media (min-width: 992px) {
    .pain-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .pain-card {
        flex: 1 1 calc(33.333% - var(--space-lg));
        max-width: calc(33.333% - var(--space-lg));
    }
    .pain-card:nth-child(4),
    .pain-card:nth-child(5) {
        flex: 0 1 calc(33.333% - var(--space-lg));
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .pain-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .pain-card {
        flex: 1 1 calc(50% - var(--space-lg));
        max-width: calc(50% - var(--space-lg));
    }
}

/* ==========================================
   SEÇÃO EDUCAÇÃO / CONTEÚDO
   ========================================== */
.section-header {
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.education-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.education-card {
    text-align: left;
    padding: var(--space-lg);
}

.education-card h3 {
    font-size: 1.25rem;
}

.active-gold {
    border-color: rgba(var(--color-gold-rgb), 0.4);
    background: linear-gradient(180deg, rgba(200, 162, 90, 0.08), rgba(13, 13, 13, 0.4));
}

/* ==========================================
   SEÇÃO MÓDULOS (O QUE VOCÊ VAI APRENDER)
   ========================================== */
.modules-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    max-width: 900px;
    margin: 0 auto;
}

.module-card {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    position: relative;
}

.module-card:hover {
    transform: translateX(15px);
    background: rgba(40, 40, 40, 0.6);
}

.module-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(var(--color-gold-rgb), 0.1);
    font-family: var(--font-primary);
    line-height: 1;
    min-width: 80px;
    transition: all 0.4s ease;
}

.module-card:hover .module-number {
    color: var(--color-gold);
    transform: scale(1.1);
}

.module-content h3 {
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.module-card:hover .module-content h3 {
    color: var(--color-gold-light);
}

.module-tag {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: rgba(var(--color-gold-rgb), 0.1);
    color: var(--color-gold);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    margin-top: var(--space-sm);
    font-weight: 700;
    border: 1px solid rgba(var(--color-gold-rgb), 0.2);
}

/* ==========================================
   SEÇÃO PARA QUEM É (TARGET AUDIENCE)
   ========================================== */
.audience-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
}

.audience-card {
    flex: 1 1 calc(33.333% - var(--space-lg));
    max-width: calc(33.333% - var(--space-lg));
    text-align: center;
    padding: var(--space-xl) var(--space-md);
}

.audience-card:hover {
    transform: translateY(-10px);
}

.audience-card .card-icon {
    background: radial-gradient(circle at center, rgba(var(--color-gold-rgb), 0.2) 0%, transparent 70%);
    border: 1px solid rgba(var(--color-gold-rgb), 0.1);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
    margin: 0 auto var(--space-lg);
    transition: all 0.5s ease;
}

.audience-card:hover .card-icon {
    background: var(--color-gold);
    color: #0d0d0d;
    box-shadow: 0 0 30px rgba(var(--color-gold-rgb), 0.4);
    transform: rotateY(360deg);
}

.audience-card h3 {
    font-size: 1.25rem;
}

@media (max-width: 1024px) {
    .audience-card {
        flex: 1 1 calc(50% - var(--space-lg));
        max-width: calc(50% - var(--space-lg));
    }
}

/* ==========================================
   SOBRE O ESPECIALISTA
   ========================================== */
.expert-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/img/Foto-02.jpg.jpeg');
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center top;
    opacity: 0.6;
    z-index: 0;
    filter: brightness(0.8) contrast(1.1);
}

.expert-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(13,13,13,1) 0%, rgba(13,13,13,0.4) 50%, rgba(13,13,13,1) 100%);
    z-index: 1;
}

.expert-grid {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 850px;
    margin: 0 auto;
    z-index: 2;
    text-align: center;
}

.expert-about-content {
    width: 100%;
}

.photo-frame {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: var(--border-glass);
}

.img-about {
    width: 100%;
    object-fit: cover;
}

.glow-behind-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(var(--color-gold-rgb), 0.15) 0%, transparent 70%);
    z-index: -1;
}

.expert-about-photo {
    min-height: 400px;
}

.expert-about-title {
    font-size: clamp(2.25rem, 5vw, 3rem);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.expert-bio {
    color: var(--color-white-ice);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--space-md);
    opacity: 0.9;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.expert-achievements {
    list-style: none;
    margin: var(--space-xl) 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.expert-achievements li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--color-gold-light);
}

.expert-bio-summary {
    position: relative;
    z-index: 2;
}

/* ==========================================
   SEÇÃO POR QUE ESCOLHER (REFERÊNCIA 01)
   ========================================== */
.section-choose {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.choose-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.choose-header h3 {
    font-size: 1.1rem;
    color: var(--color-white-ice);
    letter-spacing: 0.3em;
    font-weight: 400;
    margin-bottom: var(--space-xs);
}

.choose-header h2 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: var(--color-gold-light);
    font-family: var(--font-accent);
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.choose-header p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    font-weight: 300;
}

.choose-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.choose-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.choose-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(200, 162, 90, 0.3);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    transition: all 0.3s ease;
}

.choose-card:hover {
    border-color: var(--color-gold);
    background: rgba(200, 162, 90, 0.05);
    transform: translateY(-5px);
}

.choose-card .card-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.choose-card .card-header i {
    font-size: 1.5rem;
    color: var(--color-gold);
}

.choose-card .card-header h4 {
    font-size: 1.25rem;
    color: var(--color-gold-light);
}

.choose-visual {
    display: flex;
    justify-content: center;
    position: relative;
    min-height: 500px;
}

.choose-visual img {
    display: none;
}

@media (min-width: 1024px) {
    .choose-grid {
        grid-template-columns: 1fr 1.2fr 1fr;
    }

    .choose-column.left {
        text-align: right;
    }

    .choose-column.left .card-header {
        flex-direction: row-reverse;
    }

    .choose-column.right {
        text-align: left;
    }
}

/* ==========================================
   RODAPÉ SOFISTICADO (ULTRA PREMIUM)
   ========================================== */
.footer {
    background: radial-gradient(circle at top, rgba(var(--color-gold-rgb), 0.02) 0%, #050505 70%);
    border-top: 1px solid transparent;
    border-image: linear-gradient(to right, rgba(255, 255, 255, 0.01), rgba(200, 162, 90, 0.2), rgba(255, 255, 255, 0.01)) 1;
    padding: var(--space-3xl) 0 var(--space-lg);
    position: relative;
    z-index: 2;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
    align-self: flex-start;
    filter: drop-shadow(0 2px 10px rgba(var(--color-gold-rgb), 0.1));
}

.footer-tagline {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: var(--space-xs);
    margin-top: var(--space-xs);
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-btn:hover {
    color: var(--color-gold-light);
    border-color: var(--color-gold);
    background: rgba(200, 162, 90, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(200, 162, 90, 0.2);
}

.footer-links h4,
.footer-info h4 {
    color: var(--color-gold);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-link {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: fit-content;
    position: relative;
    padding-left: 0;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: var(--color-white-ice);
    transform: translateX(3px);
}

.footer-link:hover::after {
    width: 100%;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-info-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-info-item i {
    color: var(--color-gold);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

a.footer-info-item:hover {
    color: var(--color-white-ice);
}

a.footer-info-item:hover i {
    transform: scale(1.2);
}

.footer-bottom {
    margin-top: var(--space-3xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
}

.copyright {
    color: var(--color-white-ice);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: var(--space-xs);
    opacity: 0.8;
}

.disclaimer {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.72rem;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

/* ==========================================
   ANIMATION EFFECTS ON SCROLL
   ========================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.active-reveal {
    opacity: 1;
    transform: translate(0);
}

/* Entradas suaves no carregamento */
.fade-in {
    animation: fadeIn 1s ease forwards;
}

.fade-in-left {
    opacity: 0;
    animation: fadeInLeft 1s ease forwards 0.2s;
}

.fade-in-right {
    opacity: 0;
    animation: fadeInRight 1s ease forwards 0.4s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   SISTEMA DE REVELAÇÃO (Scroll Animations)
   ========================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.active-reveal {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

/* Staggered reveal for grid children */
.pain-grid .reveal {
    transition-delay: calc(0.1s * var(--i, 0));
}

/* ==========================================
   QUERIES DE RESPONSIVIDADE
   ========================================== */

/* MOBILE ONLY (< 768px) */
@media (max-width: 767px) {
    .container {
        padding: 0 var(--space-md);
    }

    /* Reduz espaçamento exagerado de seções */
    .section-pain,
    .section-education,
    .section-modules,
    .section-audience,
    .section-expert,
    .section-choose {
        padding: var(--space-xl) 0;
    }

    /* HERO OPTIMIZATION */
    .hero {
        padding: 150px 0 var(--space-2xl);
    }

    .hero-title {
        font-size: 1.85rem;
        line-height: 1.25;
        letter-spacing: -0.02em;
        text-align: center;
    }

    .hero-subtitle {
        text-align: center;
        margin: var(--space-sm) auto var(--space-lg);
        font-size: 0.95rem;
        line-height: 1.65;
        opacity: 0.9;
        max-width: 340px;
    }

    .badge-tag {
        margin: 0 auto var(--space-xs);
        font-size: 0.75rem;
        padding: 0.35rem 0.75rem;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-actions {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: var(--space-xs);
        margin-bottom: var(--space-md);
    }
    
    .btn-primary, .btn-secondary {
        font-size: 0.95rem;
        padding: 1rem 1.5rem;
        min-height: 52px;
        width: 100%;
        justify-content: center;
        border-radius: var(--radius-md);
    }
    
    .btn-primary {
        background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
        box-shadow: 0 8px 24px rgba(200, 162, 90, 0.25);
        position: relative;
        overflow: hidden;
        animation: pulse-gold-glow 3s infinite alternate;
    }

    @keyframes pulse-gold-glow {
        0% {
            box-shadow: 0 4px 15px rgba(200, 162, 90, 0.2);
        }
        100% {
            box-shadow: 0 8px 30px rgba(200, 162, 90, 0.55);
        }
    }

    .hero-seals {
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: var(--space-sm);
        margin-top: var(--space-sm);
    }

    .seal-item {
        font-size: 0.75rem;
    }

    .seal-divider {
        display: none;
    }

    .hero-bg-image {
        background-position: 65% center;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(13, 13, 13, 0.93) 0%, rgba(13, 13, 13, 0.65) 45%, rgba(13, 13, 13, 0.93) 100%);
    }

    .hero-visual {
        margin-top: var(--space-xs);
        min-height: 160px;
    }

    /* CARD STRUCTURES OPTIMIZATION */
    .glass-card, .module-card {
        padding: var(--space-md) var(--space-sm) !important;
        background: rgba(18, 18, 18, 0.45);
        border: 1px solid rgba(255, 255, 255, 0.04);
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    }

    /* Grid de Dores */
    .pain-grid {
        display: flex;
        flex-direction: column;
        gap: var(--space-xs);
    }

    .pain-card {
        width: 100%;
    }

    .pain-card .card-icon {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
        margin-bottom: var(--space-sm);
    }

    .pain-card h3 {
        font-size: 1.15rem;
        margin-bottom: var(--space-xs);
    }

    /* Grid de Educação */
    .education-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xs);
    }

    .education-card {
        padding: var(--space-md) var(--space-sm);
    }

    .education-card .card-icon {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
        margin-bottom: var(--space-sm);
    }

    .education-card h3 {
        font-size: 1.15rem;
    }

    /* Seção Módulos - Mantendo Row no Mobile */
    .modules-grid {
        gap: var(--space-xs);
    }

    .module-card {
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: var(--space-md) !important;
        text-align: left;
    }

    .module-number {
        font-size: 2rem !important;
        min-width: 40px !important;
        color: rgba(var(--color-gold-rgb), 0.25) !important;
    }

    .module-content h3 {
        font-size: 1.15rem;
    }

    .module-tag {
        margin-top: var(--space-xs);
        padding: 0.25rem 0.65rem;
        font-size: 0.65rem;
    }

    /* Seção Público-Alvo */
    .audience-grid {
        display: flex;
        flex-direction: column;
        gap: var(--space-xs);
    }

    .audience-card {
        flex: 1 1 100% !important;
        max-width: 100% !important;
        padding: var(--space-md) var(--space-sm) !important;
    }

    .audience-card .card-icon {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.35rem !important;
        margin: 0 auto var(--space-sm) !important;
    }

    .audience-card h3 {
        font-size: 1.15rem;
    }

    /* Seção Especialista (Clean-up) */
    .choose-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xs);
    }

    .choose-visual {
        display: none !important;
    }

    .choose-column.left, .choose-column.right {
        text-align: center;
        gap: var(--space-xs);
    }
    
    .choose-card {
        padding: var(--space-md) var(--space-sm);
        background: rgba(18, 18, 18, 0.45);
        border: 1px solid rgba(255, 255, 255, 0.04);
    }
    
    .choose-card .card-header {
        justify-content: center;
        gap: var(--space-xs);
        margin-bottom: var(--space-xs);
    }

    .choose-card .card-header h4 {
        font-size: 1.1rem;
    }

    .choose-card p {
        font-size: 0.85rem;
    }

    .expert-about-title {
        font-size: 1.85rem;
    }

    .expert-bio {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0 var(--space-sm);
    }

    /* HIGH-END MOBILE VISUAL EFFECTS (OPTIMIZED FOR 60FPS) */
    .ambient-glow-top-left, 
    .ambient-glow-top-right, 
    .expert-backlight, 
    .glow-behind-frame {
        opacity: 0.85 !important;
        will-change: opacity;
    }
    
    .aura-beams {
        display: grid !important;
        opacity: 0.15 !important;
    }

    .aura-beam-line {
        will-change: transform, opacity;
    }

    /* FOOTER OPTIMIZATION */
    .footer {
        padding: var(--space-xl) 0 var(--space-md);
        background: radial-gradient(circle at top, rgba(200, 162, 90, 0.04) 0%, #050505 85%);
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-xl);
    }

    .footer-brand {
        align-items: center;
    }

    .footer-logo {
        align-self: center;
        height: 50px;
    }

    .footer-tagline {
        margin: 0 auto;
        font-size: 0.85rem;
        max-width: 280px;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-link:hover {
        transform: none;
    }

    .footer-info {
        align-items: center;
    }

    .footer-info-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: var(--space-xs);
        font-size: 0.85rem;
    }
    
    .footer-info-item i {
        font-size: 1.3rem;
    }

    .footer-bottom {
        margin-top: var(--space-xl);
        padding-top: var(--space-lg);
    }

    .copyright {
        font-size: 0.8rem;
    }

    .disclaimer {
        font-size: 0.68rem;
        padding: 0 var(--space-xs);
    }

    .header-container {
        justify-content: space-between;
        width: 100%;
    }

    .header-actions-mobile {
        display: flex;
        align-items: center;
        gap: var(--space-sm);
        margin-left: auto;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-btn-wrapper {
        position: relative;
        isolation: isolate;
        overflow: hidden;
        border-radius: var(--radius-full);
        width: fit-content;
        height: 38px;
        display: flex;
        align-items: center;
        box-shadow: 0 4px 15px rgba(200, 162, 90, 0.25);
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .mobile-mask-layer-2 {
        border-radius: var(--radius-full);
        content: "";
        height: 100%;
        inset: 0;
        left: 0;
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask-composite: xor;
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 1;
        padding: 1.5px;
        pointer-events: none;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: 1;
    }

    .mobile-animated-border {
        left: 50%;
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 150px;
        height: 150px;
        z-index: 1;
        animation: borderTurnWithTranslate 2.5s infinite linear;
        background-image: conic-gradient(from 0 at 50% 50%,
            var(--color-gold-light) 0deg, rgba(var(--color-gold-rgb), 0) 60deg,
            rgba(var(--color-gold-dark-rgb), 0) 300deg, var(--color-gold) 360deg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: 60%;
    background-repeat: no-repeat;
    }

    .mobile-header-cta-inner {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 1.1rem;
        height: 100%;
        background: linear-gradient(225deg, rgba(var(--color-gold-rgb), .12) 5%, #0a0800 43%, #050400 68%);
        border-radius: var(--radius-full);
        color: var(--color-gold-light);
        font-size: 0.75rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        z-index: 2;
        transition: all 0.3s ease;
        white-space: nowrap;
        text-shadow: 0 0 5px rgba(var(--color-gold-rgb), 0.3);
    }

    .mobile-btn-wrapper:active {
        transform: scale(0.95);
        box-shadow: 0 2px 8px rgba(200, 162, 90, 0.15);
    }

    .mobile-btn-wrapper:active .mobile-header-cta-inner {
        color: #fff;
        background: linear-gradient(225deg, rgba(var(--color-gold-rgb), .3) 5%, #121008 43%, #0d0c08 68%);
    }

    .logo-img {
        height: 36px;
        max-width: 160px;
        width: auto;
        filter: drop-shadow(0 2px 8px rgba(200, 162, 90, 0.25));
    }

    .nav-desktop, .magnetic-area {
        display: none !important;
    }
}

/* TABLET (768px to 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        padding: 0 var(--space-lg);
    }
    
    .hero-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hero-content {
        max-width: 650px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .badge-tag {
        margin: 0 auto var(--space-md);
    }

    .hero-bg-image {
        background-position: 60% center;
    }
    
    .hero-overlay {
        background: linear-gradient(180deg, rgba(13, 13, 13, 0.95) 0%, rgba(13, 13, 13, 0.6) 40%, rgba(13, 13, 13, 0.95) 100%);
    }
    
    .hero-visual {
        margin-top: 0;
        min-height: 350px;
    }

    .choose-grid {
        grid-template-columns: 1fr;
    }
    
    .choose-visual {
        min-height: 300px;
    }

    .choose-column.left, .choose-column.right {
        text-align: center;
    }
    
    .choose-card .card-header {
        justify-content: center;
    }
}

/* TABLET E DESKTOP COMPARTILHADO (>= 768px) */
@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
        justify-content: center;
        flex: 1; 
        gap: var(--space-xl);
    }

    .hero-actions {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: var(--space-md);
    }

    .btn-primary,
    .btn-secondary {
        width: auto;
    }

    .hero-seals {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: var(--space-lg);
    }

    .seal-divider {
        display: block;
        width: 1px;
        height: 20px;
        background-color: rgba(255, 255, 255, 0.15);
    }

    .education-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* DESKTOP (>= 1024px) */
@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: var(--space-2xl);
    }

    .hero {
        padding: 160px 0 var(--space-3xl);
    }

    .hero-visual {
        margin-top: 0;
        justify-content: flex-end;
    }
    
    .hero-actions {
        justify-content: flex-start;
    }
    
    .hero-seals {
        justify-content: flex-start;
    }

    .expert-wrapper {
        max-width: 550px;
    }

    .expert-grid {
        grid-template-columns: 1.5fr 0.8fr;
        gap: var(--space-xl);
    }

    .expert-about-photo {
        min-height: 0;
    }

    .education-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-container {
        grid-template-columns: repeat(3, 1fr);
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
}

/* ==========================================
   COMPONENTE: BOTÃO MAGNÉTICO PREMIUM
   ========================================== */
@keyframes borderTurn {
    0% {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes borderTurnWithTranslate {
    0% {
        transform: translate(-50%, -50%) rotate(0);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Magnetic area — zona invisível que capta o mouse */
.magnetic-area {
    position: relative;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    width: fit-content;
    margin: 0 auto;
}

/* Custom cursor glow */
.cursor-glow {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--color-gold-rgb), 0.8) 0%, rgba(var(--color-gold-rgb), 0) 70%);
    pointer-events: none;
    z-index: 100;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, opacity 0.3s;
    opacity: 0;
}

.magnetic-area:hover .cursor-glow {
    opacity: 1;
}

.magnetic-area:hover .cursor-glow.near {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(var(--color-gold-rgb), 0.6) 0%, rgba(var(--color-gold-rgb), 0) 70%);
}

/* Botão principal */
.btn-wrapper {
    isolation: isolate;
    overflow: hidden;
    border-radius: 14px;
    position: relative;
    width: fit-content;
    --animation-speed: 2.5s;
    box-shadow: 0 10px 40px -10px rgba(var(--color-gold-rgb), 0.3);
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.35s ease;
    will-change: transform;
}

.btn-wrapper.attracted {
    box-shadow: 0 20px 60px -5px rgba(var(--color-gold-rgb), 0.5),
        0 0 100px rgba(var(--color-gold-rgb), 0.15);
}

.btn-wrapper .mask-layer-1,
.btn-wrapper .mask-layer-2 {
    opacity: 1;
}

.mask-layer-1,
.animated-border {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 1;
}

.mask-layer-1:before,
.animated-border:before {
    content: "";
    float: left;
    padding-top: 100%;
}

.mask-layer-1:after,
.animated-border:after {
    clear: both;
    content: "";
    display: block;
}

.mask-layer-1 {
    opacity: 0;
    pointer-events: none;
    transition: 1s ease opacity;
}

.mask-layer-1 * {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.animated-border,
.blur-layer,
.svg-container {
    animation: borderTurn var(--animation-speed) infinite linear;
    background-image: conic-gradient(from 0 at 50% 50%,
            var(--color-gold-light) 0deg, rgba(var(--color-gold-rgb), 0) 60deg,
            rgba(var(--color-gold-dark-rgb), 0) 300deg, var(--color-gold) 360deg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 60%;
    background-repeat: no-repeat;
}

.svg-mask {
    -webkit-mask: url("data:image/svg+xml,%3Csvg width='28' height='24' viewBox='0 0 28 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.0534 15.732C13.8444 15.283 14.2848 14.8489 14.7326 15.051C14.8296 15.0959 14.9043 15.1707 14.949 15.268C15.1506 15.717 14.7177 16.1511 14.2698 15.949C14.1728 15.9041 14.0982 15.8293 14.0534 15.732Z' fill='black'/%3E%3Cpath d='M18.8001 13.5093C19.0016 13.0603 18.5687 12.6263 18.1209 12.8283C18.0239 12.8732 17.9492 12.9481 17.9045 13.0453C17.6955 13.4944 18.1358 13.9284 18.5837 13.7264C18.6807 13.6815 18.7553 13.6066 18.8001 13.5093Z' fill='black'/%3E%3Cpath d='M0.949043 2.732C1.15057 2.28297 0.717663 1.84891 0.269836 2.05097C0.172806 2.09587 0.098162 2.17071 0.0533793 2.268C-0.155607 2.71703 0.284759 3.15109 0.732587 2.94903C0.829616 2.90413 0.90426 2.82929 0.949043 2.732Z' fill='black'/%3E%3Cpath d='M26.9489 7.732C27.151 7.28297 26.7169 6.84891 26.2679 7.05097C26.1706 7.09587 26.0958 7.17071 26.0508 7.268C25.8488 7.71703 26.2828 8.15109 26.7319 7.94903C26.8292 7.90413 26.904 7.82929 26.9489 7.732Z' fill='black'/%3E%3Cpath d='M13.0534 5.732C12.8444 5.28297 13.2848 4.84891 13.7326 5.05097C13.8296 5.09587 13.9043 5.17071 13.949 5.268C14.1506 5.71703 13.7177 6.15109 13.2698 5.94903C13.1728 5.90413 13.0982 5.82929 13.0534 5.732Z' fill='black'/%3E%3Cpath d='M10.0534 17.732C9.84439 17.283 10.2848 16.8489 10.7326 17.051C10.8296 17.0959 10.9043 17.1707 10.949 17.268C11.1506 17.717 10.7177 18.1511 10.2698 17.949C10.1728 17.9041 10.0982 17.8293 10.0534 17.732Z' fill='black'/%3E%3Cpath d='M15.0534 21.732C14.8444 21.283 15.2848 20.8489 15.7326 21.051C15.8296 21.0959 15.9043 21.1707 15.949 21.268C16.1506 21.717 15.7177 22.1511 15.2698 21.949C15.1728 21.9041 15.0982 21.8293 15.0534 21.732Z' fill='black'/%3E%3C/svg%3E");
    mask: url("data:image/svg+xml,%3Csvg width='28' height='24' viewBox='0 0 28 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.0534 15.732C13.8444 15.283 14.2848 14.8489 14.7326 15.051C14.8296 15.0959 14.9043 15.1707 14.949 15.268C15.1506 15.717 14.7177 16.1511 14.2698 15.949C14.1728 15.9041 14.0982 15.8293 14.0534 15.732Z' fill='black'/%3E%3Cpath d='M18.8001 13.5093C19.0016 13.0603 18.5687 12.6263 18.1209 12.8283C18.0239 12.8732 17.9492 12.9481 17.9045 13.0453C17.6955 13.4944 18.1358 13.9284 18.5837 13.7264C18.6807 13.6815 18.7553 13.6066 18.8001 13.5093Z' fill='black'/%3E%3Cpath d='M0.949043 2.732C1.15057 2.28297 0.717663 1.84891 0.269836 2.05097C0.172806 2.09587 0.098162 2.17071 0.0533793 2.268C-0.155607 2.71703 0.284759 3.15109 0.732587 2.94903C0.829616 2.90413 0.90426 2.82929 0.949043 2.732Z' fill='black'/%3E%3Cpath d='M26.9489 7.732C27.151 7.28297 26.7169 6.84891 26.2679 7.05097C26.1706 7.09587 26.0958 7.17071 26.0508 7.268C25.8488 7.71703 26.2828 8.15109 26.7319 7.94903C26.8292 7.90413 26.904 7.82929 26.9489 7.732Z' fill='black'/%3E%3Cpath d='M13.0534 5.732C12.8444 5.28297 13.2848 4.84891 13.7326 5.05097C13.8296 5.09587 13.9043 5.17071 13.949 5.268C14.1506 5.71703 13.7177 6.15109 13.2698 5.94903C13.1728 5.90413 13.0982 5.82929 13.0534 5.732Z' fill='black'/%3E%3Cpath d='M10.0534 17.732C9.84439 17.283 10.2848 16.8489 10.7326 17.051C10.8296 17.0959 10.9043 17.1707 10.949 17.268C11.1506 17.717 10.7177 18.1511 10.2698 17.949C10.1728 17.9041 10.0982 17.8293 10.0534 17.732Z' fill='black'/%3E%3Cpath d='M15.0534 21.732C14.8444 21.283 15.2848 20.8489 15.7326 21.051C15.8296 21.0959 15.9043 21.1707 15.949 21.268C16.1506 21.717 15.7177 22.1511 15.2698 21.949C15.1728 21.9041 15.0982 21.8293 15.0534 21.732Z' fill='black'/%3E%3C/svg%3E");
    mask-repeat: repeat;
    -webkit-mask-repeat: repeat;
}

.blur-layer {
    filter: blur(10px);
    opacity: .25;
}

.animated-border {
    animation-name: borderTurnWithTranslate;
}

.mask-layer-2 {
    border-radius: 14px;
    content: "";
    height: 100%;
    inset: 0;
    left: 0;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    padding: 1.5px;
    pointer-events: none;
    position: absolute;
    top: 0;
    transition: 1s ease opacity;
    width: 100%;
    z-index: 1;
}

.btn-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 2px 24px 2px 2px;
    background: linear-gradient(225deg, rgba(var(--color-gold-rgb), .12) 5%, #0a0800 43%, #050400 68%);
    border: 1px solid rgba(var(--color-gold-rgb), .2);
    border-radius: 14px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
    flex-wrap: nowrap;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-wrapper.attracted .btn-inner {
    border-color: rgba(var(--color-gold-rgb), .5);
    box-shadow: inset 0 0 30px rgba(var(--color-gold-rgb), 0.05);
}

.btn-text {
    position: relative;
    z-index: 2;
    text-align: center;
    background: linear-gradient(271.55deg, rgba(var(--color-gold-rgb), 0.4) 5.88%, rgba(var(--color-gold-rgb), 0) 50.22%, rgba(var(--color-gold-dark-rgb), 0.35) 95.32%);
    border: 1px solid rgba(var(--color-gold-rgb), .35);
    border-radius: 12px;
    padding: 16px 28px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 15px;
    font-weight: 800;
    color: var(--color-gold-light);
    box-shadow: -4px 10px 40px rgba(var(--color-gold-rgb), 0.15);
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-wrapper.attracted .btn-text {
    background: linear-gradient(271.55deg, rgba(var(--color-gold-rgb), 0.6) 5.88%, rgba(var(--color-gold-rgb), 0.05) 50.22%, rgba(var(--color-gold-dark-rgb), 0.6) 95.32%);
    border-color: rgba(var(--color-gold-rgb), .7);
    box-shadow: -4px 10px 60px rgba(var(--color-gold-rgb), 0.4);
    color: #fff;
    text-shadow: 0 0 15px rgba(var(--color-gold-rgb), 0.7);
}

/* Texto interno se move oposto ao botão (parallax) */
.btn-text-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-icon {
    display: inline-block;
    width: 20px;
    height: auto;
    opacity: 0.7;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-wrapper.attracted .btn-icon {
    opacity: 1;
}

/* Label flutuante */
.magnetic-label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(var(--color-gold-rgb), 0.25);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.magnetic-area:hover .magnetic-label {
    opacity: 1;
}

/* Ajuste responsivo para o grid de conteúdo 'Sobre o Especialista' */
@media (min-width: 768px) {
    .expert-about-content .magnetic-area {
        justify-content: flex-start;
        margin-left: -60px;
        margin-right: 0;
    }
}

@media(max-width:480px) {
    .magnetic-area {
        padding: 40px;
    }

    .btn-inner {
        gap: 12px;
        padding: 6px 16px 6px 6px;
    }

    .btn-text {
        font-size: 14px;
        padding: 14px 20px;
    }
}

/* ==========================================
   AJUSTES PREMIUM PARA TELAS GRANDES (IMPACTO DE CAPA)
   ========================================== */
@media (min-width: 1366px) {
    .expert-wrapper {
        max-width: 750px;
        width: 50vw;
        margin-right: -8vw;
    }
}

@media (min-width: 1600px) {
    .expert-wrapper {
        max-width: 950px;
        width: 55vw;
        margin-right: -12vw;
    }
}

@media (min-width: 1920px) {
    .expert-wrapper {
        max-width: 1200px;
        width: 65vw;
        margin-right: -20vw;
    }
}

/* Hero Floating Image */
.hero-floating-img {
    width: 100%;
    max-width: 650px;
    height: auto;
    object-fit: contain;
    animation: floating 6s ease-in-out infinite;
    position: relative;
    z-index: 10;
    /* Soft blend so black background merges with site background */
    mix-blend-mode: screen;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* ======== HERO GRAVYX-STYLE LAYERED EFFECT ======== */
.hero-visual-layered {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.hero-glow-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 161, 255, 0.15) 0%, rgba(212, 175, 55, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(20px);
}

.andre-render-img {
    position: relative;
    z-index: 5;
    max-width: 100%;
    max-height: 120%; transform: scale(1.35) translateY(5%); transform-origin: bottom center;
    object-fit: contain;
    animation: floatAndreLayer 8s ease-in-out infinite;
    /* Sombras realistas via filter p/ imagens com fundo transparente */
    filter: drop-shadow(0 0 18px rgba(212, 175, 55, 0.8)) drop-shadow(0 25px 40px rgba(0,0,0,0.9));
}

.floating-card {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(10, 14, 22, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.25); /* Borda Dourada */
    border-radius: 12px;
    padding: 14px 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.floating-card i {
    font-size: 28px;
    color: #D4AF37; /* Dourado Premium */
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
}

.floating-card .card-text {
    display: flex;
    flex-direction: column;
}

.floating-card .card-text span {
    font-size: 10px;
    color: #8AA3C6;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.floating-card .card-text strong {
    font-size: 16px;
    color: #FFF;
    font-weight: 700;
}

.floating-icon {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(10, 14, 22, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
    color: #D4AF37;
    font-size: 32px;
}

/* POSICIONAMENTO E ANIMA��ES COM BLUR / MOVIMENTO */
.card-1 {
    top: 15%;
    right: -5%;
    animation: floatLayer1 6s ease-in-out infinite;
    filter: blur(0.5px);
}

.card-2 {
    bottom: 20%;
    left: -10%;
    animation: floatLayer2 7s ease-in-out infinite reverse;
}

.icon-3 {
    top: 50%;
    right: -15%;
    animation: floatLayer3 5s ease-in-out infinite;
    filter: blur(2.5px); /* Desfoque de profundidade (frente/fundo) */
    transform: scale(1.2);
}

@keyframes floatAndreLayer {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes floatLayer1 {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-20px) rotate(-2deg); }
}

@keyframes floatLayer2 {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(15px) rotate(3deg); }
}

@keyframes floatLayer3 {
    0%, 100% { transform: translateY(0) rotate(15deg) scale(1.2); }
    50% { transform: translateY(-25px) rotate(-10deg) scale(1.2); }
}

/* Ajustes Mobile */
@media(max-width: 768px) {
    .hero-visual-layered { height: 400px; }
    .card-1 { right: 5%; top: 5%; }
    .card-2 { left: 5%; bottom: 10%; }
    .icon-3 { right: 0; }
}

/* DEPOIMENTOS - MARQUEE ANIMATION */
.section-testimonials {
    padding: var(--space-4xl) 0;
    overflow: hidden;
    position: relative;
    background-color: var(--color-bg);
}

.section-testimonials::before, .section-testimonials::after {
    content: '';
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.section-testimonials::before {
    left: 0;
    background: linear-gradient(to right, var(--color-bg), transparent);
}

.section-testimonials::after {
    right: 0;
    background: linear-gradient(to left, var(--color-bg), transparent);
}

.marquee-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
    width: 100vw;
    margin-left: calc(-50vw + 50%); /* For�ar full width no container */
}

.marquee-row {
    display: flex;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: var(--space-xl);
    padding: 0 var(--space-xl);
    width: max-content;
}

.track-1 {
    animation: scroll-left 50s linear infinite;
}

.track-2 {
    animation: scroll-right 45s linear infinite;
    transform: translateX(calc(-50% - 1.5rem)); /* Start offset for right scroll */
}

.marquee-row:hover .marquee-track {
    animation-play-state: paused;
}

.testimonial-card {
    width: 450px;
    background: rgba(13, 17, 28, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: var(--space-xl) var(--space-2xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
    background: rgba(13, 17, 28, 0.8);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-gold);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    color: var(--color-text);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.stars {
    color: var(--color-gold);
    font-size: 0.9rem;
    display: flex;
    gap: 2px;
}

.testimonial-text {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    font-style: italic;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1.5rem)); /* Half width minus gap */ }
}

@keyframes scroll-right {
    0% { transform: translateX(calc(-50% - 1.5rem)); }
    100% { transform: translateX(0); }
}

@media (max-width: 768px) {
    .testimonial-card { width: 350px; padding: var(--space-md) var(--space-lg); border-radius: 30px; }
    .section-testimonials::before, .section-testimonials::after { width: 50px; }
}
