/* -------------------------------------------------------------
   DESIGN SYSTEM & VARIABLES — ÓTICA GOLDEN MAX
------------------------------------------------------------- */
:root {
    /* Cores do Projeto */
    --color-primary-dark: #1C1243;
    --color-primary: #2E1F63;
    --color-primary-light: #3D2A7A;
    --color-primary-ultra-light: #F4F1FA;
    
    --color-accent-start: #5e3fd3; /* Púrpura vibrante */
    --color-accent-end: #2E1F63; /* Roxo escuro da marca */
    
    --color-bg-light: #FAFAFA;
    --color-bg-white: #FFFFFF;
    
    --color-text-dark: #2D264A;
    --color-text-muted: #6B628A;
    --color-text-light: #FAFAFA;
    
    --color-success: #10B981;
    --color-error: #EF4444;
    --color-whatsapp: #25D366;
    --color-whatsapp-dark: #128C7E;
    
    /* Tipografia */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Sombras e Efeitos */
    --shadow-sm: 0 2px 8px rgba(46, 31, 99, 0.06);
    --shadow-md: 0 8px 24px rgba(46, 31, 99, 0.08);
    --shadow-lg: 0 16px 40px rgba(46, 31, 99, 0.12);
    --shadow-gradient: 0 8px 20px rgba(94, 63, 211, 0.25);
    
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-full: 9999px;
    
    /* Transições */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Container limit */
    --container-max-width: 1200px;
}

/* -------------------------------------------------------------
   RESET & CONFIGURAÇÕES BÁSICAS
------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary-dark);
    font-weight: 700;
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border: none;
    background: none;
    outline: none;
}

button {
    cursor: pointer;
}

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 20px;
    padding-left: 20px;
    max-width: var(--container-max-width);
}

.container-narrow {
    max-width: 760px;
}

.text-center { text-align: center; }
.text-gradient {
    background: linear-gradient(135deg, var(--color-accent-start), var(--color-accent-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* -------------------------------------------------------------
   BOTÕES & LINKS
------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius-full);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.125rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-gradient {
    background: linear-gradient(135deg, var(--color-accent-start), var(--color-accent-end));
    color: var(--color-text-light);
    border: none;
    box-shadow: var(--shadow-gradient);
    z-index: 1;
}

.btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-accent-end), var(--color-accent-start));
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-gradient:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 24px rgba(255, 61, 26, 0.45);
}

.btn-gradient:hover::before {
    opacity: 1;
}

.btn-gradient:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--color-text-light);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.btn-outline-whatsapp {
    border-color: var(--color-whatsapp);
    color: var(--color-whatsapp);
    background-color: transparent;
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-outline-whatsapp:hover {
    background-color: var(--color-whatsapp);
    color: var(--color-text-light);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--color-whatsapp);
    color: var(--color-text-light);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
    border: none;
}

.btn-whatsapp:hover {
    background-color: var(--color-whatsapp-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
}

.btn-link {
    color: var(--color-accent-start);
    font-weight: 600;
    text-decoration: underline;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.btn-link:hover {
    color: var(--color-accent-end);
}

/* -------------------------------------------------------------
   STICKY HEADER
------------------------------------------------------------- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(250, 250, 250, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(46, 31, 99, 0.08);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background-color: rgba(250, 250, 250, 0.96); /* Mantém o fundo claro original no scroll */
    border-bottom: 1px solid rgba(46, 31, 99, 0.08);
    box-shadow: var(--shadow-md);
}

.header-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.main-header.scrolled .header-container {
    height: 70px;
}

.header-logo {
    height: 65px; /* Ajustado para dar excelente visibilidade ao logo quadrado */
    width: auto;
    transition: var(--transition-smooth);
}

.main-header.scrolled .header-logo {
    height: 52px; /* Ajustado para o scroll */
    /* Mantém o logo em suas cores originais ao rolar a página */
}

/* Menu de Navegação */
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-dark);
    position: relative;
    padding: 6px 0;
}

/* Removida a conversão de cor dos links para claro no scroll */

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent-start), var(--color-accent-end));
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-header {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Hamburger mobile */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-primary-dark);
    transition: var(--transition-smooth);
}

/* Removida a conversão de cor das barras do menu mobile para claro no scroll */

/* -------------------------------------------------------------
   GATE DE ENTRADA (MODAL INICIAL DE CAPTURA)
------------------------------------------------------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 18, 67, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-smooth);
}

.modal-overlay.gate-active,
.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 480px;
    padding: 40px;
    text-align: center;
    transform: scale(0.9);
    transition: transform var(--transition-smooth);
    border: 1px solid rgba(46, 31, 99, 0.08);
}

.modal-overlay.gate-active .modal-content,
.modal-overlay.active .modal-content {
    transform: scale(1);
}

.gate-logo-container {
    margin-bottom: 25px;
}

.gate-logo {
    height: 60px;
    margin: 0 auto;
}

.gate-card h2 {
    font-size: 1.75rem;
    margin-bottom: 10px;
}

.gate-subtitle {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 25px;
    text-align: left;
    position: relative;
}

.input-group input {
    width: 100%;
    padding: 16px 20px;
    border-radius: var(--border-radius-md);
    background-color: var(--color-bg-light);
    border: 2px solid rgba(46, 31, 99, 0.08);
    font-size: 1.05rem;
    transition: var(--transition-fast);
}

.input-group input:focus {
    border-color: var(--color-primary);
    background-color: var(--color-bg-white);
    box-shadow: 0 0 0 4px rgba(46, 31, 99, 0.1);
}

.input-group .micro-copy {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-style: italic;
}

.error-msg {
    color: var(--color-error);
    font-size: 0.85rem;
    display: none;
    margin-top: 5px;
    font-weight: 500;
}

.input-group.invalid input {
    border-color: var(--color-error);
    background-color: rgba(239, 68, 68, 0.02);
}

.input-group.invalid .error-msg {
    display: block;
}

/* -------------------------------------------------------------
   HERO SECTION
------------------------------------------------------------- */
.hero-section {
    position: relative;
    padding-top: 140px;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    overflow: hidden;
    z-index: 1; /* Cria um contexto de empilhamento local para que o z-index negativo do vídeo não suma sob o body */
}

/* Vídeo de fundo */
.video-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-color: var(--color-primary-dark);
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; /* Centraliza horizontal e verticalmente o personagem no mobile */
    opacity: 1; /* Exibe o vídeo com 100% de brilho e cores originais */
    z-index: 1;
}

/* Overlay gradiente desativado para exibir as cores reais do vídeo */
.gradient-overlay {
    display: none;
}

@keyframes gradientOpacityShift {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Alinhado à esquerda */
    text-align: left; /* Alinhado à esquerda */
    justify-content: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Alinhado à esquerda */
}

.hero-content .badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 6px 16px;
    border-radius: var(--border-radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 25px;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--color-bg-white);
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 0 4px 15px rgba(28, 18, 67, 0.65), 0 2px 4px rgba(28, 18, 67, 0.85); /* Garante leitura sobre cores vivas do vídeo */
}

.hero-title span {
    display: inline-block;
}

.text-highlight {
    color: #C2B5FF; /* Roxo vibrante destacado para sobressair no fundo */
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 580px;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(28, 18, 67, 0.65), 0 1px 3px rgba(28, 18, 67, 0.85); /* Garante leitura sobre cores vivas do vídeo */
}

.hero-ctas {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    justify-content: flex-start; /* Alinhado à esquerda */
}

/* Animação Pulsação no CTA Principal */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 138, 0, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(255, 138, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 138, 0, 0); }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Contador estatístico */
.hero-stats {
    display: flex;
    gap: 40px;
    width: 100%;
}

/* Barra de Estatísticas (Abaixo do Hero) */
.stats-bar-section {
    background-color: var(--color-bg-white);
    padding: 35px 0;
    border-bottom: 1px solid rgba(46, 31, 99, 0.08);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 10;
}

.stats-bar-section .hero-stats {
    border-top: none;
    padding-top: 0;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stats-bar-section .stat-label {
    color: var(--color-text-muted);
    text-shadow: none;
}

.stats-bar-section .stat-label-bold {
    color: var(--color-primary-dark);
    text-shadow: none;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-accent-start);
    background: linear-gradient(135deg, var(--color-accent-start), var(--color-accent-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-prefix {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-accent-start);
    margin-right: 2px;
}

.stat-plus {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent-end);
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.85;
    margin-top: 5px;
    max-width: 180px;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(28, 18, 67, 0.7); /* Garante leitura sobre o vídeo */
}

.static-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-icon {
    font-size: 2.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-accent-start), var(--color-accent-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
    display: inline-block;
    line-height: 1;
}

.stat-label-bold {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-light);
    margin-top: 5px;
    max-width: 180px;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(28, 18, 67, 0.7); /* Garante leitura sobre o vídeo */
}

/* Indicador de Scroll */
.scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.75;
    transition: opacity var(--transition-fast);
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse-icon {
    width: 24px;
    height: 38px;
    border: 2px solid var(--color-text-light);
    border-radius: var(--border-radius-full);
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-accent-start);
    border-radius: var(--border-radius-full);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 14px); }
}

.scroll-text {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* -------------------------------------------------------------
   SEÇÃO GERAL DE TEXTO / CABEÇALHOS
------------------------------------------------------------- */
section {
    padding: 90px 0;
    position: relative;
}

.alternate-bg {
    background-color: var(--color-primary-dark);
    color: var(--color-text-light);
}

.alternate-bg h2 {
    color: var(--color-text-light);
}

.section-header {
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-accent-start);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.alternate-bg .section-subtitle {
    color: rgba(250, 250, 250, 0.8);
}

/* -------------------------------------------------------------
   FORMULÁRIOS DE AGENDAMENTO (UX RICA)
------------------------------------------------------------- */
.form-wrapper {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 50px;
    position: relative;
    border: 1px solid rgba(46, 31, 99, 0.08);
}

.alternate-bg .form-wrapper {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-light);
}

.interactive-form {
    display: block;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}

.form-group {
    margin-bottom: 25px;
    padding-right: 10px;
    padding-left: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.col-12 { width: 100%; }
.col-md-6 { width: 50%; }

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-primary-dark);
    transition: var(--transition-fast);
}

.alternate-bg .form-group label {
    color: var(--color-text-light);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 20px;
    color: var(--color-primary-light);
    font-size: 1.1rem;
    pointer-events: none;
    transition: var(--transition-fast);
}

.alternate-bg .input-icon {
    color: rgba(255, 255, 255, 0.5);
}

.input-wrapper input,
.input-wrapper select {
    width: 100%;
    padding: 16px 20px 16px 52px;
    border-radius: var(--border-radius-md);
    background-color: var(--color-primary-ultra-light);
    border: 2px solid transparent;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-dark);
    transition: var(--transition-fast);
}

.alternate-bg .input-wrapper input,
.alternate-bg .input-wrapper select {
    background-color: rgba(28, 18, 67, 0.4);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--color-text-light);
}

/* Custom styling para o dropdown */
.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.select-wrapper::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    color: var(--color-primary-light);
    pointer-events: none;
}

.alternate-bg .select-wrapper::after {
    color: rgba(255, 255, 255, 0.5);
}

/* Foco dos inputs */
.input-wrapper input:focus,
.input-wrapper select:focus {
    background-color: var(--color-bg-white);
    border-color: var(--color-primary);
    box-shadow: 0 8px 20px rgba(46, 31, 99, 0.08);
}

.alternate-bg .input-wrapper input:focus,
.alternate-bg .input-wrapper select:focus {
    background-color: var(--color-primary-dark);
    border-color: var(--color-accent-start);
    box-shadow: 0 8px 20px rgba(255, 138, 0, 0.15);
}

.input-wrapper input:focus + .input-icon,
.input-wrapper select:focus + .input-icon {
    color: var(--color-primary);
}

.alternate-bg .input-wrapper input:focus + .input-icon,
.alternate-bg .input-wrapper select:focus + .input-icon {
    color: var(--color-accent-start);
}

/* Mensagens de validação */
.validation-msg {
    font-size: 0.8rem;
    color: var(--color-error);
    margin-top: 6px;
    font-weight: 500;
    display: none;
    animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-group.invalid .input-wrapper input,
.form-group.invalid .input-wrapper select {
    border-color: var(--color-error);
    background-color: rgba(239, 68, 68, 0.02);
}

.alternate-bg .form-group.invalid .input-wrapper input,
.alternate-bg .form-group.invalid .input-wrapper select {
    border-color: var(--color-error);
    background-color: rgba(239, 68, 68, 0.1);
}

.form-group.invalid .validation-msg {
    display: block;
}

/* Efeito de Sucesso no Input */
.form-group.valid .input-wrapper input,
.form-group.valid .input-wrapper select {
    border-color: var(--color-success);
}

/* Info de segurança */
.form-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.alternate-bg .form-security {
    color: rgba(250, 250, 250, 0.6);
}

.form-security i {
    font-size: 0.95rem;
}

/* Feedback de Sucesso */
.success-feedback {
    display: none;
    text-align: center;
    animation: fadeIn var(--transition-smooth);
}

.success-feedback h3 {
    font-size: 1.8rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.alternate-bg .success-feedback h3 {
    color: var(--color-text-light);
}

.success-feedback p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.alternate-bg .success-feedback p {
    color: rgba(250, 250, 250, 0.8);
}

.success-icon {
    font-size: 4rem;
    color: var(--color-success);
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* -------------------------------------------------------------
   VITRINE DE PRODUTOS
------------------------------------------------------------- */
.vitrine-tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 45px;
}

.vitrine-tabs {
    display: flex;
    background-color: var(--color-primary-ultra-light);
    padding: 6px;
    border-radius: var(--border-radius-full);
    border: 1px solid rgba(46, 31, 99, 0.05);
}

.tab-btn {
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-primary-light);
    border-radius: var(--border-radius-full);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn.active {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    box-shadow: var(--shadow-sm);
}

/* Painéis da vitrine */
.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn var(--transition-smooth);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Grid de Produtos */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

/* Card Individual de Produto */
.product-card {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(46, 31, 99, 0.05);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(46, 31, 99, 0.15);
}

.product-img-wrapper {
    background-color: #F8F7FC;
    position: relative;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 220px;
}

.product-img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-text-light);
    background: linear-gradient(135deg, var(--color-accent-start), var(--color-accent-end));
    padding: 4px 12px;
    border-radius: var(--border-radius-full);
    text-transform: uppercase;
}

.product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.product-description {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(46, 31, 99, 0.05);
    padding-top: 15px;
}

.product-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary-light);
}

/* -------------------------------------------------------------
   CARROSSEL DE MARCAS (INFINITO AUTO-SCROLL)
------------------------------------------------------------- */
.brands-section {
    padding: 15px 0; /* Reduzido de 60px para acomodar de forma justa a altura dos logos */
    overflow: hidden;
}

.brands-title {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.8;
    margin-bottom: 35px;
}

.brands-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.brands-slider-container::before,
.brands-slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brands-slider-container::before {
    left: 0;
    background: linear-gradient(90deg, var(--color-primary-dark), rgba(28, 18, 67, 0));
}

.brands-slider-container::after {
    right: 0;
    background: linear-gradient(-90deg, var(--color-primary-dark), rgba(28, 18, 67, 0));
}

.brands-track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 30px; /* Reduzido de 60px para aproximar os logos */
    animation: infiniteScroll 25s linear infinite;
}

@keyframes infiniteScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); } /* Deslocamento ajustado para metade do novo gap */
}

.brand-slide {
    width: 120px;
    height: 100px; /* Aumentado de 60px para 100px para ampliar os logos proporcionalmente */
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: var(--border-radius-sm);
    mix-blend-mode: multiply; /* Mescla fundos brancos no carrossel */
    filter: grayscale(100%) contrast(150%) brightness(1.2); /* Estética harmonizada */
    opacity: 0.7;
    transition: var(--transition-fast);
}

.brand-slide:hover img {
    filter: none;
    opacity: 1;
}

/* -------------------------------------------------------------
   SEÇÃO DE DIFERENCIAIS TÉCNICOS
------------------------------------------------------------- */
.features-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.features-text h2 {
    font-size: 2.25rem;
    margin-bottom: 25px;
}

.features-text p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(46, 31, 99, 0.04);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(46, 31, 99, 0.1);
}

.feature-icon {
    background-color: var(--color-primary-ultra-light);
    color: var(--color-primary);
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.feature-info h3 {
    font-size: 1.125rem;
    margin-bottom: 6px;
}

.feature-info p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* Vídeo do Laboratório */
.features-video-container {
    position: relative;
    width: 100%;
}

.video-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    aspect-ratio: 16/10;
}

.lab-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background-color: rgba(28, 18, 67, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--color-text-light);
    padding: 10px 20px;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
}

.lab-badge-icon {
    color: var(--color-accent-start);
}

/* -------------------------------------------------------------
   UNIDADE E MAPA / COMO CHEGAR
------------------------------------------------------------- */
.location-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.location-info h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
}

.location-intro {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 35px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.loc-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.loc-icon {
    color: var(--color-accent-start);
    font-size: 1.4rem;
    margin-top: 2px;
}

.loc-text h3 {
    font-size: 1.05rem;
    margin-bottom: 5px;
    color: var(--color-primary-dark);
}

.loc-text p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.link-highlight {
    font-weight: 700;
    color: var(--color-primary);
}

.link-highlight:hover {
    color: var(--color-accent-start);
}

.location-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.location-map-container {
    width: 100%;
}

.map-wrapper {
    height: 420px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(46, 31, 99, 0.08);
}

/* -------------------------------------------------------------
   SOBRE NÓS & PILARES
------------------------------------------------------------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-container {
    position: relative;
    width: 100%;
}

.about-img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background-color: var(--color-bg-white);
    color: var(--color-primary-dark);
    padding: 15px 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid rgba(46, 31, 99, 0.05);
}

.about-badge i {
    color: var(--color-accent-start);
    font-size: 1.1rem;
}

.about-text h2 {
    font-size: 2.25rem;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

.pillar-item {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: var(--border-radius-md);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pillar-icon {
    font-size: 1.4rem;
    color: var(--color-accent-start);
}

.pillar-item h4 {
    color: var(--color-text-light);
    font-size: 1.1rem;
}

.pillar-item p {
    font-size: 0.875rem;
    color: rgba(250, 250, 250, 0.7);
    margin-bottom: 0;
}

/* -------------------------------------------------------------
   AVALIAÇÕES / TESTEMUNHOS
------------------------------------------------------------- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(46, 31, 99, 0.05);
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.review-header {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.review-img {
    max-height: 45px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

.review-stars {
    color: #FBBF24;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.review-author {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary-dark);
}

/* -------------------------------------------------------------
   RODAPÉ (FOOTER)
------------------------------------------------------------- */
.main-footer {
    background-color: var(--color-primary-dark);
    color: rgba(250, 250, 250, 0.8);
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand .footer-logo {
    height: 70px; /* Aumentado para 70px para visibilidade legível */
    width: auto;
    margin-bottom: 20px;
    /* Removemos o filtro de inversão para exibir o logo em suas cores originais */
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-full);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-socials a:hover {
    background-color: var(--color-accent-start);
    color: var(--color-text-light);
    transform: translateY(-3px);
}

.name-edit-session {
    font-size: 0.85rem;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 8px 15px;
    border-radius: var(--border-radius-sm);
    display: inline-block;
}

.name-edit-session button {
    margin-left: 5px;
}

.footer-nav h3,
.footer-contact h3 {
    color: var(--color-text-light);
    font-size: 1.15rem;
    margin-bottom: 25px;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a:hover {
    color: var(--color-accent-start);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 18px;
    font-size: 0.9rem;
}

.footer-contact p i {
    color: var(--color-accent-start);
    font-size: 1rem;
    margin-top: 3px;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    font-size: 0.85rem;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* -------------------------------------------------------------
   POPUP DE SAÍDA (EXIT INTENT MODAL)
------------------------------------------------------------- */
.exit-card {
    max-width: 520px;
    padding: 50px 40px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    line-height: 1;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.close-modal:hover {
    color: var(--color-error);
}

.exit-icon-header {
    background: linear-gradient(135deg, var(--color-accent-start), var(--color-accent-end));
    color: var(--color-text-light);
    width: 70px;
    height: 70px;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    margin: 0 auto 25px;
    box-shadow: var(--shadow-gradient);
}

.exit-card h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.exit-subtitle {
    font-size: 1rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.exit-offer {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

.exit-card .form-wrapper {
    box-shadow: none;
    padding: 0;
    border: none;
    background: transparent;
}

.exit-card .input-group {
    margin-bottom: 18px;
}

.exit-card .input-wrapper input {
    padding-left: 45px;
}

.exit-card .input-wrapper .input-icon {
    left: 18px;
}

.exit-notice {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 12px;
}

/* -------------------------------------------------------------
   EFEITOS DE REVEAL ON SCROLL
------------------------------------------------------------- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-400 {
    transition-delay: 0.4s;
}

/* -------------------------------------------------------------
   MEDIA QUERIES (RESPONSIVIDADE)
------------------------------------------------------------- */

/* Tablet e Telas Médias */
@media (max-width: 1024px) {
    h1 { font-size: 2.75rem; }
    h2 { font-size: 2rem; }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        width: 100%;
    }
    
    .hero-visual {
        height: 380px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .glass-1 { width: 220px; }
    .glass-2 { width: 200px; }
    .glass-3 { width: 150px; }
    
    .features-grid,
    .location-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    
    .features-video-container,
    .location-map-container,
    .about-img-container {
        order: 2; /* Joga os mapas/videos para baixo no mobile/tablet */
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

/* Smartphones / Mobile First */
@media (max-width: 768px) {
    html { font-size: 15px; }
    
    section { padding: 60px 0; }
    
    .hero-section {
        padding-top: 120px;
        padding-bottom: 60px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    /* Hamburger Menu no Mobile */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--color-primary-dark);
        z-index: 99;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(-100%);
        transition: transform var(--transition-smooth);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .nav-link {
        font-size: 1.25rem;
        color: var(--color-text-light);
    }
    
    .btn-header {
        display: none; /* Esconde CTA do header em telas muito pequenas para não quebrar */
    }
    
    /* Alternar hamburger ativo */
    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .col-md-6 {
        width: 100%; /* Inputs em coluna cheia no mobile */
    }
    
    .form-wrapper {
        padding: 30px 20px;
    }
    
    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .stat-item {
        align-items: center;
        flex: 1 1 40%;
    }
    
    .brands-track {
        gap: 20px; /* Reduzido para aproximar logos no mobile */
    }
    
    .brand-slide {
        width: 90px;
        height: 75px; /* Aumentado proporcionalmente para mobile */
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .map-wrapper {
        height: 300px;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
}

/* -------------------------------------------------------------
   SEÇÃO DE TECNOLOGIA DE LENTES (SEO)
   ------------------------------------------------------------- */
.lenses-seo-section {
    background-color: var(--color-bg-light);
    padding: 100px 0;
}

.lenses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.lens-card {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-md);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(46, 31, 99, 0.04);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.lens-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(94, 63, 211, 0.15);
}

.lens-icon-header {
    color: var(--color-accent-start);
    font-size: 2.25rem;
    margin-bottom: 20px;
    line-height: 1;
}

.lens-card h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    color: var(--color-primary-dark);
}

.lens-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.lens-card strong {
    color: var(--color-primary-dark);
}

@media (max-width: 768px) {
    .lenses-seo-section {
        padding: 60px 0;
    }
    .lenses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    .lens-card {
        padding: 30px 20px;
    }
}

/* -------------------------------------------------------------
   SEÇÃO DE PERGUNTAS FREQUENTES (FAQ)
   ------------------------------------------------------------- */
.faq-section {
    background-color: var(--color-bg-white);
    padding: 100px 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--color-bg-light);
    border: 1px solid rgba(46, 31, 99, 0.04);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item.active {
    background-color: var(--color-bg-white);
    border-color: rgba(94, 63, 211, 0.15);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    font-family: var(--font-body);
}

.faq-arrow {
    color: var(--color-accent-start);
    font-size: 1rem;
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth);
}

.faq-answer p {
    padding: 0 28px 24px;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.faq-answer strong {
    color: var(--color-primary-dark);
}

/* -------------------------------------------------------------
   RESPONSIVIDADE EXTRA (FAQ E VÍDEO MOBILE)
   ------------------------------------------------------------- */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    .faq-question {
        padding: 18px 20px;
        font-size: 1.05rem;
    }
    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 0.9rem;
    }
    .video-bg {
        object-position: 70% center; /* Desloca horizontalmente o vídeo em telas menores para focar e centralizar o personagem principal */
    }
}
