/* ==========================================================================
   Reviva Memories - Design System & Stylesheet
   Preview Studio Digital
   ========================================================================== */

/* Variables / Design System */
:root {
    /* Color Palette */
    --bg-main: #140d08; /* Fundo marrom escuro aconchegante e nobre */
    --bg-card: rgba(13, 27, 42, 0.28); /* Fundo dos cards azul marinho/teal translúcido */
    --bg-card-hover: rgba(22, 44, 68, 0.42); /* Hover dos cards */
    --bg-glass: rgba(13, 27, 42, 0.75); /* Fundo de vidro */
    
    --text-primary: #e2eff5; /* Tom champagne areia azulado claro */
    --text-secondary: #b3b3b3; /* Cinza claro sólido para textos descritivos e cards */
    --text-dark: #06111a;
    
    /* Branding Hex Colors */
    --brand-dark: #06111a;
    --brand-gold: #9c7247;
    --brand-gold-glow: rgba(156, 114, 71, 0.25);
    --brand-metallic: linear-gradient(135deg, #9c7247 0%, #c39c6b 50%, #f6e3c5 100%);
    --brand-smoke: #8496a3;
    --brand-metallic-earth: linear-gradient(135deg, #9c7247 0%, #c39c6b 30%, #f6e3c5 70%, #9c7247 100%);
    
    /* Typography */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-handwriting: 'Allura', cursive;
    
    /* Spacing & Borders */
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(156, 114, 71, 0.3);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@font-face {
    font-family: 'Azonix';
    src: url('https://cdn.jsdelivr.net/gh/AlainBarrios/Fonts@master/Azonix.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

input::placeholder, textarea::placeholder {
    transition: color 0.2s ease, opacity 0.2s ease;
}

input:focus::placeholder, textarea:focus::placeholder {
    color: transparent !important;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-primary);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    scroll-snap-type: y mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--brand-gold) var(--bg-main);
    transition: background-color 0.8s ease-in-out;
}

html.intro-active {
    background-color: #000000 !important;
}

html.disable-snap {
    scroll-snap-type: none !important;
}

/* Estilização Personalizada da Barra de Rolagem (Webkit) */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #18110b; /* Fundo marrom escuro nobre e quente */
    border-left: 1px solid rgba(197, 160, 89, 0.15);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #c5a059 0%, #9c7247 100%);
    border-radius: 5px;
    border: 2px solid #18110b;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #e5c378 0%, #c5a059 100%);
}

body {
    overflow-x: hidden;
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -20;
    background-image: url('bg_01.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    filter: blur(10px); /* Ajuste o valor para mais ou menos desfoque */
    transform: scale(1.04); /* Escala ligeiramente para evitar que as bordas da tela fiquem brancas/borradas */
    pointer-events: none;
    transition: opacity 0.8s ease-in-out;
    opacity: 1;
}

/* Estado ativo do slide inicial (mostra a imagem de fundo do site, porém escurecida) */
body.intro-active::before {
    opacity: 0.35 !important;
}



a {
    color: inherit;
    text-decoration: none;
}

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

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section, 
.intro-section,
.hero-section,
.how-it-works, 
.use-cases, 
.testimonials,
.about-section,
.contrate-section,
.faq-section {
    height: 100vh;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    box-sizing: border-box;
    overflow: hidden;
    background: transparent;
}

.intro-title,
.intro-title.hero-title,
.intro-title .title-line-1 {
    font-size: clamp(2.0rem, 3.6vw, 3.8rem) !important;
    font-family: 'Poiret One', cursive, sans-serif !important;
    font-weight: 400 !important;
    line-height: 1.25 !important;
    letter-spacing: 1.2px !important;
    margin: 0 auto !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 1400px !important;
    text-transform: none !important;
}

.intro-title .title-line-1 {
    display: inline-block !important;
    color: #e8d5b7 !important; /* Tom bege dourado nobre dos títulos dos slides */
    text-shadow: none !important;
    text-align: center !important;
}

.intro-title .blur-word {
    font-size: inherit !important;
    font-family: 'Poiret One', cursive, sans-serif !important;
    color: #e8d5b7 !important;
    text-shadow: none !important;
    animation: none !important;
}






.contrate-section {
    height: 100vh;
    box-sizing: border-box;
}

/* Typography Helpers */
.text-gold {
    color: var(--brand-gold);
    /* Gradiente com alto contraste e pontos de brilho branco/dourado reluzente */
    background: linear-gradient(90deg, #c5a059 0%, #fff7d6 20%, #ffd700 40%, #c5a059 60%, #fff7d6 80%, #c5a059 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Animação que desloca a posição da esquerda para a direita */
    animation: goldShimmerLeftToRight 3.5s linear infinite;
    display: inline-block;
}

@keyframes goldShimmerLeftToRight {
    0% {
        background-position: 200% center;
    }
    100% {
        background-position: 0% center;
    }
}

.uppercase-gold {
    display: block;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 6px;
    text-align: center !important;
    text-align-last: center !important;
    width: 100%;
    /* Glow sutil e sofisticado */
    filter: drop-shadow(0 0 8px rgba(197, 160, 89, 0.45));
    animation: goldGlowPulse 3s ease-in-out infinite alternate, goldShimmerLeftToRight 4s linear infinite;
}

@keyframes goldGlowPulse {
    0% {
        filter: drop-shadow(0 0 4px rgba(197, 160, 89, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 10px rgba(229, 195, 120, 0.5));
    }
}

.section-header {
    text-align: center;
    width: 100%;
    margin: 0 auto 36px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-tag {
    display: inline-block;
    font-family: 'Allura', cursive;
    font-size: clamp(1.5rem, 2.8vw, 2.5rem);
    color: #e5c378;
    text-shadow: 0 0 8px rgba(229, 195, 120, 0.6), 0 0 16px rgba(229, 195, 120, 0.3);
    margin-bottom: 8px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    color: var(--text-primary);
    white-space: normal;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.08rem;
    font-weight: 300;
    text-align: center;
    width: 100%;
    margin: 0 auto 16px auto;
    line-height: 1.6;
}

/* Logo Branding Specifics */
.brand-logo {
    display: inline-flex;
    align-items: center;
    position: relative;
    user-select: none;
    transition: transform var(--transition-smooth), filter var(--transition-smooth);
    will-change: transform, filter;
}

.brand-logo:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 0 6px rgba(229, 195, 120, 0.75)) drop-shadow(0 0 12px rgba(197, 160, 89, 0.35));
}

.logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.logo-img-footer {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 6px;
    transition: var(--transition-fast);
}

.mobile-menu-btn:hover {
    color: var(--brand-gold);
}

.mobile-only-contact-btn {
    display: none;
}

.desktop-only-btn {
    display: inline-flex;
}

.desktop-only-br {
    display: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12.5px 26.5px; /* Ajustado compensando a borda de 2.5px */
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 2.5px solid transparent;
    box-shadow: 0 0 12px rgba(229, 195, 120, 0.3), 0 0 25px rgba(156, 114, 71, 0.15); /* Glow sutil mas brilhante */
}

.btn:hover {
    border-color: #e5c378; /* Borda dourada no hover */
    box-shadow: 0 0 15px #e5c378, 0 0 35px rgba(229, 195, 120, 0.7), 0 0 60px rgba(156, 114, 71, 0.5); /* Glow intenso dourado */
}

.btn-primary {
    background: linear-gradient(135deg, #9c7247 0%, #7d5b38 100%);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(229, 195, 120, 0.4), 0 0 30px rgba(156, 114, 71, 0.2);
    font-weight: 600;
    border-color: #9c7247; /* Define cor da borda sólida para evitar artefatos visuais de transparência */
}

.btn-primary:hover {
    transform: translateY(-2px);
    color: #e5c378; /* Texto dourado no hover */
    border-color: #e5c378; /* Borda dourada igual à da galeria */
    box-shadow: 0 0 20px #e5c378, 0 0 45px rgba(229, 195, 120, 0.8), 0 0 75px rgba(156, 114, 71, 0.6);
}

.btn-primary:hover svg {
    stroke: #e5c378 !important;
}

#btn-submit-real-pix:hover,
#btn-submit-real-pix:hover svg,
#btn-submit-real-pix:hover i,
#form-checkout-simulado button:hover svg,
#form-checkout-simulado button:hover i {
    color: #ffffff !important;
    stroke: #ffffff !important;
}

/* Apenas preenche o triângulo de play com dourado - desativado por solicitação */
.btn-primary:hover svg.lucide-play {
    fill: none !important;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border-color: var(--border-subtle);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 10px rgba(229, 195, 120, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #e5c378; /* Borda brilha em dourado */
    box-shadow: 0 0 15px #e5c378, 0 0 35px rgba(229, 195, 120, 0.6);
}

.btn-ghost {
    color: var(--text-secondary);
}

.btn-ghost:hover {
    color: var(--text-primary);
    box-shadow: 0 0 15px rgba(229, 195, 120, 0.5), 0 0 30px rgba(156, 114, 71, 0.3);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.05rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 10px;
    width: auto;
    z-index: 200000;
    padding: 16px 0;
    transition: var(--transition-fast);
    background: transparent;
    border-bottom: none;
    will-change: transform;
}

.nav-container {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
}

.brand-logo {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
}

.nav-links {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 36px !important;
    margin: 0 !important;
}

.nav-links a {
    font-family: 'Azonix', sans-serif;
    color: #b3b3b3;
    font-size: 0.78rem !important;
    font-weight: 300 !important;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a:hover,
.nav-links a:active,
.nav-links a.active {
    color: #e5c378;
    font-weight: 600 !important;
    text-shadow: 0 0 8px #e5c378, 0 0 20px rgba(229, 195, 120, 0.8), 0 0 35px rgba(156, 114, 71, 0.5);
}

/* Dobra 1: Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    background: transparent; /* Alterado de #0b0b0c para transparente */
}

/* Fundo de Vídeo e Galáxia WebGL Globais (Site Inteiro) */
.global-video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -2; /* Atrás de todo o conteúdo e do canvas de estrelas */
    pointer-events: none;

}

.global-galaxy-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1; /* À frente do vídeo de fundo, mas atrás de todo o conteúdo e botões */
    pointer-events: none;
    mix-blend-mode: screen; /* Remove o fundo escuro do shader e mescla as estrelas no vídeo do fundo */
}

body.video-active .global-galaxy-bg {
    z-index: 100005 !important; /* Mesma galáxia única fica visível no modal do vídeo */
}

.global-galaxy-bg canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}




.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3; /* Fica acima de tudo, suavizando o topo e a base */
    /* Mantém apenas o gradiente vertical linear leve para contraste do cabeçalho e rodapé do slide */
    background: linear-gradient(to bottom, rgba(11, 11, 12, 0.6) 0%, transparent 25%, transparent 75%, rgba(11, 11, 12, 0.95) 100%);
    pointer-events: none;
}



.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}


.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    background: rgba(197, 160, 89, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-full);
    color: var(--brand-gold);
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 18px;
    margin-bottom: 12px;
    white-space: nowrap;
}

.hero-title {
    font-family: 'Poiret One', cursive, sans-serif;
    font-size: clamp(1.05rem, 3.2vw, 2.7rem) !important;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 1.2px;
    margin-bottom: 0;
    margin-top: 0;
    text-align: center;
    width: 100%;
    max-width: 100%;
    text-transform: none; /* Mantém a caixa original */
    white-space: nowrap !important;
    
    /* Efeito de revelação com fade-in e desfoque inicial global no título todo */
    opacity: 0;
    filter: blur(12px);
    transform: translateY(4px);
    animation: blurFadeIn 1.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.2s; /* Atraso leve para dar elegância ao carregar */
}

/* Mantém o título do Slide 1 (Abertura / Apresentação) com tamanho original de destaque */
.intro-title {
    font-size: clamp(1.25rem, 4.2vw, 3.4rem) !important;
    white-space: nowrap !important;
}

.hero-title .title-line-1 {
    display: inline-block;
    font-family: 'Poiret One', cursive, sans-serif;
    font-weight: 400;
    letter-spacing: 1.2px;
    color: #e8d5b7; /* Tom de bege dourado mais presente e quente */
    text-align: center;
    white-space: nowrap !important;
}

@keyframes blurFadeIn {
    0% {
        opacity: 0;
        filter: blur(12px);
        transform: translateY(4px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

/* Evita quebras de linha nas frases em telas de Desktop */
@media (min-width: 1025px) and (min-aspect-ratio: 5/4) {
    .hero-title .title-line-1,
    .hero-title .hero-title-sub {
        white-space: nowrap !important;
    }
    .desktop-only-br {
        display: block;
    }
    .hero-subtitle {
        font-size: clamp(0.85rem, 1.1vw, 1.05rem) !important;
        max-width: 1350px !important;
        text-align: justify !important;
        text-align-last: justify !important;
    }
}

.hero-title .title-highlight {
    font-weight: 700;
    background: var(--brand-metallic-earth);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    letter-spacing: 0.5px;
}

.hero-title .hero-title-sub {
    display: block;
    font-family: var(--font-serif);
    font-weight: 300;
    color: var(--text-secondary);
    margin-top: 8px;
    white-space: normal;
    text-align: center;
}

.hero-title .highlight-italic {
    font-family: var(--font-handwriting);
    font-size: 1.45em; /* Aumentado por ser manuscrito */
    font-weight: 400;
    font-style: normal;
    display: inline-block;
    vertical-align: middle;
    text-transform: none;
    padding-right: 15px; /* Adiciona respiro para evitar o corte da cauda da última letra 'l' */
}

.hero-title .highlight-italic .blur-word {
    background: var(--brand-metallic-earth) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

@keyframes revealHandwrittenText {
    0% {
        clip-path: inset(-10px 100% -10px -10px);
    }
    100% {
        clip-path: inset(-10px -20px -10px -10px);
    }
}

/* Estilos legados de máquina de escrever removidos */

.hero-center-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.hero-bottom-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: auto;
    text-align: center;
}

.hero-subtitle {
    font-size: clamp(0.85rem, 1.1vw, 1.05rem); /* Tamanho de fonte ideal para leitura premium */
    color: var(--text-secondary);
    font-weight: 300;
    width: 100%;
    margin: 16px auto 8px auto; /* Aumentado o topo para empurrar o texto para baixo e reduzido o rodapé para aproximar do botão */
    line-height: 1.6;
    max-width: 1350px; /* Alinhado exatamente com o limite lateral do cabeçalho */
    text-align: center; /* Centraliza o texto de forma limpa e harmônica, evitando espaçamentos forçados */
}

.hero-content .slide-actions {
    justify-content: center !important;
    align-items: center !important;
}

.watch-video-btn {
    padding: 6px 14px !important;
    font-size: 0.74rem !important;
    gap: 6px !important;
    transition: var(--transition-smooth) !important;
}

.watch-video-btn svg {
    width: 14px !important;
    height: 14px !important;
    transition: var(--transition-fast) !important;
}

.watch-video-btn:hover {
    background: transparent !important;
    border-color: #e5c378 !important;
    color: #e5c378 !important;
    box-shadow: 0 0 20px #e5c378, 0 0 45px rgba(229, 195, 120, 0.8), 0 0 75px rgba(156, 114, 71, 0.6) !important;
    transform: translateY(-2px) !important;
}

.watch-video-btn:hover svg {
    stroke: #e5c378 !important;
}

/* Thumbnail de Prévia de Vídeo (Substituindo o botão) */
.video-preview-thumbnail {
    position: relative;
    width: 200px;
    height: 112px; /* Proporção 16:9 */
    border-radius: var(--radius-md);
    border: 2px solid var(--border-gold);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 15px var(--brand-gold-glow);
    transition: transform var(--transition-smooth), border-color var(--transition-fast), box-shadow var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.video-preview-thumbnail:hover {
    transform: scale(1.06) translateY(-4px);
    border-color: var(--brand-gold);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(197, 160, 89, 0.5);
}

.preview-video-loop {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
    transition: opacity var(--transition-fast);
}

.video-preview-thumbnail:hover .preview-video-loop {
    opacity: 0.85;
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(11, 11, 12, 0.2) 0%, rgba(11, 11, 12, 0.6) 80%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.play-icon-glow {
    color: #ffffff;
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
    transition: transform var(--transition-smooth), filter var(--transition-fast);
}

.video-preview-thumbnail:hover .play-icon-glow {
    transform: scale(1.15);
    filter: drop-shadow(0 0 12px var(--brand-gold));
    color: var(--brand-gold);
}

/* Wrapper do botão com o alerta/badge de Novo Vídeo */
.video-badge-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    /* Adiciona margem superior para o badge absoluto não cortar o layout no topo */
    margin-top: 10px;
}

.video-new-badge {
    position: absolute;
    top: 0; /* Alinha com o topo do wrapper */
    left: 50%;
    transform: translate(-50%, -50%); /* Centraliza no eixo X e puxa exatamente metade da própria altura para cima no eixo Y */
    z-index: 10;
    font-size: 0.55rem;
    font-weight: 700;
    color: #ffffff; /* Texto branco */
    background: var(--bg-main); /* Fundo igual ao do site */
    border: 1px solid var(--brand-gold); /* Borda dourada nítida */
    padding: 2px 8px;
    border-radius: var(--radius-full);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.9), 0 0 6px rgba(197, 160, 89, 0.3);
    animation: pulseNewBadge 2s infinite ease-in-out;
    transition: opacity var(--transition-fast) ease, transform var(--transition-fast) ease;
    pointer-events: none;
    line-height: 1;
    white-space: nowrap;
}

@keyframes pulseNewBadge {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 2px 6px rgba(197, 160, 89, 0.4);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 0 4px 12px rgba(197, 160, 89, 0.7);
    }
}

/* Ocultar badge e guia Comece aqui se já assistido */
.video-new-badge.watched,
.start-here-guide.watched {
    opacity: 0 !important;
    transform: scale(0.8) !important;
    pointer-events: none !important;
    display: none !important;
}

.hero-content span.section-tag.handwritten-title {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    align-self: center !important;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

/* Dobra 2: Como Funciona */
.how-it-works {
    background-color: transparent;
    position: relative;
    z-index: 2;
}

/* Label exclusivo do slide mobile de cards — oculto no desktop */
/* Alterna texto da section-tag entre desktop e mobile */
.tag-mobile  { display: none !important; }
.tag-desktop { display: inline !important; }

.steps-row,
.cases-row,
.testimonials-row {
    display: contents;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    width: 100%;
    margin: 10px auto 8px auto; /* Equalizado rigorosamente com o respiro da galeria */
    flex: 1 1 auto !important; /* Mesma altura flexível */
    min-height: 220px;
    max-height: 580px;
}

.step-card {
    background: rgba(34, 24, 18, 0.28);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(197, 160, 89, 0.25) !important;
    border-radius: var(--radius-lg);
    padding: 24px 16px;
    position: relative;
    transition: var(--transition-smooth);
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%; /* Estica para ocupar toda a célula do grid */
    box-sizing: border-box;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand-gold) !important;
    background: rgba(46, 33, 24, 0.42) !important;
    box-shadow: 0 10px 30px rgba(229, 195, 120, 0.08), 0 0 20px rgba(229, 195, 120, 0.22) !important;
}

.step-number {
    position: absolute;
    top: 20px;
    right: 18px;
    font-size: 2.1rem;
    font-weight: 800;
    color: rgba(229, 195, 120, 0.15); /* Dourado suave a 15% para melhor visibilidade e elegância */
}

/* =========================================================================
   ANIMAÇÕES & EFEITO GLOW PULSANTE DAS 5 ETAPAS (SEÇÃO EXPERIÊNCIA)
   ========================================================================= */
@keyframes iconGlowPulse {
    0% {
        box-shadow: 0 0 10px rgba(229, 195, 120, 0.25), 0 0 20px rgba(197, 160, 89, 0.15), inset 0 0 8px rgba(229, 195, 120, 0.15);
        border-color: rgba(229, 195, 120, 0.35);
        transform: translateY(0) scale(1);
    }
    50% {
        box-shadow: 0 0 22px rgba(229, 195, 120, 0.7), 0 0 42px rgba(197, 160, 89, 0.4), inset 0 0 14px rgba(229, 195, 120, 0.35);
        border-color: rgba(246, 227, 197, 0.9);
        transform: translateY(-3px) scale(1.06);
    }
    100% {
        box-shadow: 0 0 10px rgba(229, 195, 120, 0.25), 0 0 20px rgba(197, 160, 89, 0.15), inset 0 0 8px rgba(229, 195, 120, 0.15);
        border-color: rgba(229, 195, 120, 0.35);
        transform: translateY(0) scale(1);
    }
}

@keyframes iconSvgGlow {
    0% {
        filter: drop-shadow(0 0 4px rgba(229, 195, 120, 0.5));
        color: #e5c378;
    }
    50% {
        filter: drop-shadow(0 0 10px rgba(246, 227, 197, 0.95)) drop-shadow(0 0 20px rgba(229, 195, 120, 0.75));
        color: #fff6e0;
    }
    100% {
        filter: drop-shadow(0 0 4px rgba(229, 195, 120, 0.5));
        color: #e5c378;
    }
}

.step-icon,
.step-card .step-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: radial-gradient(circle at center, rgba(229, 195, 120, 0.22) 0%, rgba(14, 9, 6, 0.85) 100%);
    border: 1.5px solid rgba(229, 195, 120, 0.45);
    color: #e5c378;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    animation: iconGlowPulse 3.4s ease-in-out infinite;
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
}

.step-card:nth-child(1) .step-icon { animation-delay: 0s; }
.step-card:nth-child(2) .step-icon { animation-delay: 0.65s; }
.step-card:nth-child(3) .step-icon { animation-delay: 1.3s; }
.step-card:nth-child(4) .step-icon { animation-delay: 1.95s; }
.step-card:nth-child(5) .step-icon { animation-delay: 2.6s; }

.step-card .step-icon svg,
.step-card .step-icon i {
    width: 24px;
    height: 24px;
    animation: iconSvgGlow 3.4s ease-in-out infinite;
    transition: all 0.35s ease;
}

.step-card:nth-child(1) .step-icon svg { animation-delay: 0s; }
.step-card:nth-child(2) .step-icon svg { animation-delay: 0.65s; }
.step-card:nth-child(3) .step-icon svg { animation-delay: 1.3s; }
.step-card:nth-child(4) .step-icon svg { animation-delay: 1.95s; }
.step-card:nth-child(5) .step-icon svg { animation-delay: 2.6s; }

.step-card:hover .step-icon {
    transform: translateY(-4px) scale(1.14) !important;
    box-shadow: 0 0 28px rgba(246, 227, 197, 0.85), 0 0 50px rgba(229, 195, 120, 0.6), inset 0 0 16px rgba(229, 195, 120, 0.5) !important;
    border-color: #f6e3c5 !important;
}

.step-card:hover .step-icon svg {
    filter: drop-shadow(0 0 12px #fff6e0) drop-shadow(0 0 24px rgba(246, 227, 197, 0.95)) !important;
    color: #ffffff !important;
}

.steps-subtitle {
    text-align: center;
    max-width: 900px;
    margin: 25px auto 0 auto !important;
    color: #ffffff;
    font-size: clamp(0.85rem, 1.1vw, 1.05rem);
    line-height: 1.6;
}

.step-card h3 {
    font-size: 1.22rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #e5c378; /* Titulo dourado */
    text-shadow: 0 0 8px rgba(229, 195, 120, 0.4); /* Efeito glow sutil */
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.84rem;
    line-height: 1.55;
    text-align: justify;
}

/* Dobra 3: OCASIÕES ESPECIAIS (Todos os 4 Cards na Mesma Tela no Desktop) */
.use-cases {
    background: transparent;
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    margin: 10px auto 8px auto; /* Afasta do título e aproxima do rodapé, igual ao slide 1 */
    flex: 1 1 auto !important; /* Mesma altura flexível */
    min-height: 220px;
    max-height: 580px;
}

.case-card {
    background: rgba(34, 24, 18, 0.28);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(197, 160, 89, 0.25) !important;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
    height: 100%; /* Estica para ocupar toda a célula do grid */
    box-sizing: border-box;
}

.case-card:hover {
    transform: translateY(-6px);
    border-color: var(--brand-gold) !important;
    box-shadow: 0 10px 30px rgba(229, 195, 120, 0.08), 0 0 20px rgba(229, 195, 120, 0.22) !important;
}

.case-image {
    flex: 0 0 50% !important;
    height: 50% !important;
    min-height: 50% !important;
    max-height: 50% !important;
    background-size: cover;
    background-position: center;
    position: relative;
}

.case-badge {
    position: static;
    display: inline-block;
    background: rgba(11, 11, 12, 0.85);
    backdrop-filter: blur(10px);
    color: var(--brand-gold);
    border: 1px solid var(--border-gold);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.74rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 5px;
    align-self: center;
}

.case-content {
    flex: 0 0 50% !important;
    height: 50% !important;
    min-height: 50% !important;
    max-height: 50% !important;
    padding: 8px 18px 12px 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
}

.case-content h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 5px;
    color: #e5c378; /* Titulo dourado */
    text-align: center;
    white-space: nowrap;
    text-shadow: 0 0 8px rgba(229, 195, 120, 0.4); /* Efeito glow sutil */
}

.case-content p {
    color: var(--text-secondary);
    font-size: 0.84rem;
    line-height: 1.45;
    margin: 0;
    text-align: justify;
}

/* Dobra 4: DEPOIMENTOS (Todos os 4 Cards na Mesma Tela no Desktop) */
.testimonials {
    background: transparent;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    margin: 10px auto 8px auto; /* Equalizado rigorosamente com o respiro dos outros slides */
    flex: 1 1 auto !important; /* Mesma altura flexível */
    min-height: 220px;
    max-height: 580px;
}

/* Dobra 5: QUEM SOMOS / AUTORIDADE & PROPÓSITO (Grid Balanceado) */
.about-section {
    background: transparent;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.about-grid-balanced {
    display: grid;
    grid-template-columns: 1fr 0.9fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: 1160px;
    margin: 6px auto 8px auto; /* Afastamento de 6px simétrico à tag animada */
    flex: 1 1 auto !important;
    min-height: 220px;
    max-height: 580px;
    box-sizing: border-box;
    align-items: center;
}

/* Colunas Laterais Flutuantes (Sem caixas de card) */
.about-col-side {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 14px;
    height: 100%;
}

.about-feature-item {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 14px;
    box-sizing: border-box;
    transition: var(--transition-smooth) !important;
}

.about-item-left {
    justify-content: flex-end;
    text-align: right;
}

.about-item-right {
    justify-content: flex-start;
    text-align: left;
}

.about-feature-item .stat-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background: rgba(197, 160, 89, 0.12);
    border: 1.5px solid rgba(197, 160, 89, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e5c378;
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.15);
    flex-shrink: 0;
}

.about-feature-item .stat-icon i {
    width: 18px;
    height: 18px;
}

.about-feature-item .stat-data {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.about-feature-item .stat-data strong {
    font-size: 1.05rem;
    font-weight: 700;
    color: #e5c378; /* Linha de destaque dourada */
    line-height: 1.2;
    white-space: nowrap;
    text-shadow: 0 0 8px rgba(229, 195, 120, 0.3);
}

.about-feature-item .stat-data span {
    font-size: 0.72rem;
    color: #e8d5b7; /* Bege na cor do título do slide */
    letter-spacing: 0.6px;
    text-transform: uppercase;
    font-weight: 500;
    white-space: nowrap;
    line-height: 1.3;
    opacity: 0.88;
}

/* Coluna Central: Card de Vídeo */
.about-card-media-central {
    background: rgba(34, 24, 18, 0.32);
    backdrop-filter: blur(24px);
    border: 1.5px solid rgba(197, 160, 89, 0.28) !important;
    border-radius: var(--radius-lg);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    transition: var(--transition-smooth) !important;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    padding: 0;
}

.about-card-media-central:hover {
    transform: translateY(-5px) !important;
    border-color: #e5c378 !important;
    border-width: 2.5px !important;
    box-shadow: 0 0 20px rgba(229, 195, 120, 0.6), 0 0 40px rgba(156, 114, 71, 0.4), 0 10px 30px rgba(0, 0, 0, 0.6), inset 0 0 15px rgba(229, 195, 120, 0.35) !important;
}

.about-video-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.about-card-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: opacity 0.5s ease;
}

.about-card-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    transition: opacity 0.8s ease-in-out, filter 0.8s ease-in-out;
    opacity: 1;
    will-change: opacity, filter;
    /* Filtro elegante sépia em tons marrom e dourado que harmoniza com a identidade visual */
    filter: sepia(0.65) saturate(1.15) brightness(0.92) contrast(1.08) hue-rotate(-10deg);
}

.about-card-video.full-color {
    filter: none !important;
}

/* Camada de Fade Branco (1 segundo partindo do branco) */
.about-video-white-flash {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 3;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-card-media-central .about-viral-badge {
    position: absolute;
    top: 14px;
    left: 50%;
    bottom: auto;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(11, 11, 12, 0.92);
    backdrop-filter: blur(10px);
    color: #e5c378;
    border: 1px solid var(--border-gold);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 0.76rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    z-index: 4;
}

.about-play-btn {
    position: absolute !important;
    bottom: 14px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 5 !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

/* Quando o mouse passa no card (frame do vídeo), o botão play brilha harmonizado com as bordas */
.about-card-media-central:hover .about-play-btn {
    background: rgba(34, 24, 18, 0.65) !important;
    border-color: #e5c378 !important;
    box-shadow: 0 0 20px rgba(229, 195, 120, 0.75), 0 0 35px rgba(156, 114, 71, 0.5) !important;
}

.about-card-media-central:hover .about-play-btn svg {
    fill: #e5c378 !important;
    filter: drop-shadow(0 0 8px rgba(229, 195, 120, 0.8)) !important;
}

/* Quando o mouse passa diretamente em cima do botão play */
.about-play-btn:hover,
.about-card-media-central .about-play-btn:hover {
    background: #e5c378 !important;
    border-color: #e5c378 !important;
    box-shadow: 0 0 25px #e5c378, 0 0 45px rgba(229, 195, 120, 0.9) !important;
    transform: translateX(-50%) scale(1.12) !important;
}

.about-play-btn:hover svg,
.about-card-media-central .about-play-btn:hover svg {
    fill: #111112 !important;
    filter: none !important;
}

.testimonial-card {
    background: rgba(34, 24, 18, 0.28);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(197, 160, 89, 0.25) !important;
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    position: relative;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
    height: 100%; /* Estica para ocupar toda a célula do grid */
    box-sizing: border-box;
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
    will-change: transform, opacity, filter;
}

.testimonial-card:hover {
    transform: translateY(-6px) !important;
    border-color: var(--brand-gold) !important;
    box-shadow: 0 10px 30px rgba(229, 195, 120, 0.08), 0 0 20px rgba(229, 195, 120, 0.22) !important;
}

.quote-icon {
    font-family: Georgia, serif;
    font-size: 4.5rem;
    color: #e5c378; /* Dourado brilhante */
    opacity: 0.75;  /* Opacidade aumentada para maior visibilidade */
    line-height: 1;
    margin-bottom: -22px;
}

.testimonial-text {
    font-size: 0.92rem;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    line-height: 1.5;
    text-align: justify;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid var(--brand-gold);
}

.testimonial-user h4 {
    font-size: 1rem;
    font-weight: 600;
}

.testimonial-user span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.cta-box {
    background: linear-gradient(135deg, rgba(34, 24, 18, 0.35) 0%, rgba(48, 34, 22, 0.35) 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.cta-box h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-actions {
    text-align: center;
    margin-top: 24px;
    margin-top: 2px;
}

.disclaimer-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.disclaimer-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid var(--border-subtle);
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Responsividade & Ajuste Mobile Perfeito (100% Fullscreen por Dobra) */
@media (max-width: 1024px), (max-aspect-ratio: 5/4) {
    .cases-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px), (max-aspect-ratio: 5/4) {
    .container {
        padding: 0 24px !important;
    }

    .nav-links {
        display: none;
    }

    /* Cada Dobra Ocupa 100% da Tela no Mobile */
    .hero-section,
    .how-it-works,
    .use-cases,
    .testimonials,
    .footer {
        min-height: 100dvh !important;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 40px 0;
        box-sizing: border-box;
    }

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

    .section-header h2 {
        font-size: 1.6rem !important;
        line-height: 1.25;
        margin-bottom: 8px;
        text-transform: uppercase;
        text-align: center !important;
    }

    .section-header p {
        font-size: 0.85rem;
        text-align: center !important;
    }

    /* Grids Mobile Enxutas */
    /* Grids Mobile Enxutas (2x2 para caber os 4 cards em 1 tela) */
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .step-card {
        padding: 12px 10px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .step-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .step-number {
        display: none;
    }

    .step-card h3 {
        font-size: 0.95rem;
        margin-bottom: 4px;
    }

    .step-card p {
        font-size: 0.78rem;
        line-height: 1.35;
    }

    /* Casos de Uso Mobile (Grid 2x2 sem cortes no texto) */
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .case-card {
        border-radius: var(--radius-md);
    }

    .case-image {
        height: 85px;
    }

    .case-badge {
        font-size: 0.65rem;
        padding: 4px 8px;
        top: 8px;
        left: 8px;
    }

    .case-content {
        padding: 10px 8px;
    }

    .case-content h3 {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }

    .case-content p {
        font-size: 0.75rem;
        line-height: 1.3;
        display: block;
        overflow: visible;
    }

    /* Depoimentos Mobile (Grid 2x2 sem cortes no texto) */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 16px;
    }

    .testimonial-card {
        padding: 12px 10px;
        border-radius: var(--radius-md);
    }

    .quote-icon {
        font-size: 2.2rem;
        margin-bottom: -10px;
    }

    .testimonial-text {
        font-size: 0.75rem;
        line-height: 1.3;
        margin-bottom: 8px;
        display: block;
        overflow: visible;
    }

    .user-avatar {
        width: 32px;
        height: 32px;
    }

    /* Quem Somos Mobile (Grid Balanceado) */
    .about-grid-balanced {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 6px auto 10px auto;
        overflow-y: auto;
        max-height: 480px;
    }

    .about-col-side {
        gap: 8px;
    }

    .about-feature-item {
        padding: 4px 0;
        gap: 10px;
    }

    .about-item-left {
        justify-content: flex-start;
        text-align: left;
        flex-direction: row-reverse;
    }

    .about-feature-item .stat-icon {
        width: 32px;
        height: 32px;
    }

    .about-feature-item .stat-icon i {
        width: 16px;
        height: 16px;
    }

    .about-feature-item .stat-data strong {
        font-size: 0.88rem;
    }

    .about-feature-item .stat-data span {
        font-size: 0.65rem;
    }

    .about-card-media-central {
        height: 220px;
        min-height: 220px;
    }
}

.disclaimer-icon {
    color: var(--brand-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Dobra 5: CONTRATE e Rodapé Integrado */

.disclaimer-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 10px 18px;
    display: flex;
    gap: 14px;
    align-items: center;
    margin: 1.5vh auto;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.disclaimer-icon {
    color: var(--brand-gold);
    flex-shrink: 0;
}

.disclaimer-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--text-primary);
}

.disclaimer-content p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
    text-align: justify;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 12px;
    border-top: 1px solid var(--border-subtle);
    width: 100%;
    margin-top: auto;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-align: center;
    white-space: nowrap;
    width: 100%;
}

/* Responsividade & Ajuste Mobile Perfeito (100% Fullscreen por Dobra) */
@media (max-width: 1024px), (max-aspect-ratio: 5/4) {
    .cases-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Estilos globais para o layout unificado dos slides (baseado no Hero) */
.slide-layout-container {
    position: relative !important;
    width: 100% !important;
    max-width: 1400px !important;
    height: 100vh !important;
    margin: 0 auto !important;
    padding: 60px 24px 50px 24px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: space-between !important;
    box-sizing: border-box !important;
}

.slide-content-wrap {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex: 1 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding-top: 0 !important;
}

.slide-content-wrap h2 {
    font-size: clamp(1.6rem, 2.2vw, 2.2rem) !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    margin-top: 0 !important;
    margin-bottom: 10px !important;
    color: var(--text-primary) !important;
    text-transform: uppercase !important;
    text-align: center !important;
}

.slide-content-wrap p {
    color: var(--text-secondary) !important;
    font-size: 0.95rem !important;
    font-weight: 300 !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 0 24px 0 !important;
    line-height: 1.6 !important;
    box-sizing: border-box !important;
}

.slide-actions {
    width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: center !important;
}

@media (max-width: 768px), (max-aspect-ratio: 5/4) {
    .container {
        padding: 0 24px !important;
    }

    /* Navbar Mobile Alinhada na Mesma Linha */
    .navbar {
        padding: 12px 0 !important;
        z-index: 200000 !important;
    }

    .nav-container {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
    }

    .brand-logo {
        display: flex !important;
        align-items: center !important;
    }

    .logo-img {
        height: 32px !important;
        width: auto !important;
    }

    .desktop-only-btn {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        margin: 0 !important;
        padding: 4px !important;
    }

    /* Overlay de desfoque para o fundo do site quando o menu mobile está aberto */
    .mobile-menu-backdrop {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.65);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        z-index: 1500;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .mobile-menu-backdrop.active {
        display: block !important;
        opacity: 1 !important;
    }

    /* Esconder o menu de links no cabeçalho mobile por padrão (dropdown no máx 50vw) */
    .nav-links {
        display: none !important;
        position: fixed !important;
        top: 60px !important;
        right: 0 !important;
        left: auto !important;
        width: 50vw !important;
        max-width: 260px !important;
        max-height: 50vh !important;
        overflow-y: auto !important;
        background: rgba(11, 11, 12, 0.98) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-left: 1px solid var(--border-gold) !important;
        border-bottom: 1px solid var(--border-gold) !important;
        flex-direction: column !important;
        padding: 20px 24px !important;
        gap: 14px !important;
        box-shadow: -8px 20px 40px rgba(0, 0, 0, 0.9) !important;
        z-index: 200020 !important;
        box-sizing: border-box !important;
        border-radius: 0 0 0 var(--radius-md) !important;
    }

    .nav-links.active {
        display: flex !important;
    }

    /* As seções principais do corpo continuam 100% visíveis */
    .hero-section,
    .how-it-works,
    .use-cases,
    .testimonials,
    .contrate-section {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .nav-links a {
        font-size: 0.95rem !important;
        padding: 14px 20px !important;
        text-align: center !important;
        color: #b3b3b3 !important;
        border-bottom: 1px solid rgba(197, 160, 89, 0.15) !important;
        display: block !important;
        font-weight: 300 !important;
        transition: var(--transition-fast) !important;
    }

    .nav-links a:active,
    .nav-links a:hover,
    .nav-links a.active {
        color: #e5c378 !important;
        font-weight: 600 !important;
        background: rgba(197, 160, 89, 0.08) !important;
        border-radius: var(--radius-sm) !important;
        text-shadow: 0 0 8px #e5c378, 0 0 20px rgba(229, 195, 120, 0.8), 0 0 35px rgba(156, 114, 71, 0.5) !important;
    }

    .mobile-only-contact-btn {
        display: inline-flex !important;
        margin-top: 8px;
        justify-content: center;
        width: 100%;
    }

    /* Cada Dobra Ocupa 100% da Tela e Para no Snap no Mobile */
    .hero-section {
        min-height: 100dvh !important;
        scroll-snap-align: center !important;
        scroll-snap-stop: always !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 20px 0;
        box-sizing: border-box;
    }



    .contrate-section .disclaimer-card {
        padding: 10px 14px !important;
        margin: 0 auto !important;
        gap: 8px !important;
        max-width: 100% !important;
    }

    .contrate-section .disclaimer-content h4 {
        font-size: 0.78rem !important;
        margin-bottom: 2px !important;
    }

    .contrate-section .disclaimer-content p {
        font-size: 0.68rem !important;
        line-height: 1.2 !important;
    }

    .contrate-section .footer-bottom {
        padding-top: 6px !important;
        margin-top: auto !important;
    }

    .contrate-section .footer-copy {
        font-size: 0.65rem !important;
        text-align: center !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

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

    .section-header h2 {
        font-size: 1.6rem !important;
        line-height: 1.25;
        margin-bottom: 8px;
        white-space: normal !important;
        text-align: center !important;
        text-align-last: center !important;
    }

    .section-header p {
        font-size: 0.85rem;
        text-align: center !important;
        text-align-last: center !important;
        width: 100% !important;
    }

    /* Ajustes Mobile para o Layout Unificado */
    .section, 
    .how-it-works, 
    .use-cases, 
    .testimonials,
    .contrate-section {
        min-height: 100dvh !important;
        height: auto !important;
        scroll-snap-align: start !important;
        scroll-snap-stop: always !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        padding: 70px 0 45px 0 !important;
        box-sizing: border-box !important;
    }

    .hero-section,
    .faq-section {
        height: 100dvh !important;
        min-height: 100dvh !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    .slide-layout-container {
        height: auto !important;
        min-height: 100dvh !important;
        padding: 0 16px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        gap: 0 !important;
        box-sizing: border-box !important;
    }

    .slide-content-wrap {
        flex: none !important;
        margin: 0 !important;
        width: 100% !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
    }

    .slide-content-wrap h2 {
        margin-top: 0 !important;
        margin-bottom: 8px !important;
        font-size: clamp(1.2rem, 4.5vw, 1.6rem) !important;
        text-align: left !important;
    }

    .slide-content-wrap p {
        margin: 0 0 18px 0 !important;
        font-size: 0.85rem !important;
        text-align: left !important;
    }

    .slide-layout-container.hero-content {
        height: 100dvh !important;
        min-height: 100dvh !important;
        padding: 50px 16px 50px 16px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        gap: 0 !important;
    }

    .slide-content-wrap {
        flex: none !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .steps-grid,
    .cases-grid,
    .testimonials-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        width: 100% !important;
    }

    .steps-row,
    .cases-row,
    .testimonials-row {
        display: contents !important;
    }

    .step-card,
    .case-card,
    .testimonial-card {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        flex: none !important;
        margin: 0 !important;
        border-radius: var(--radius-md) !important;
        overflow: hidden !important;
    }

    /* -------------------------------------------------------
       STEP CARDS — ícone + título + texto lado a lado compacto
    ------------------------------------------------------- */
    .step-card {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 12px !important;
        padding: 10px 14px !important;
        background: rgba(34, 24, 18, 0.22) !important;
        border: 1px solid var(--border-subtle) !important;
    }

    .step-card .step-number {
        position: static !important;
        font-size: 2rem !important;
        font-weight: 800 !important;
        color: rgba(197, 160, 89, 0.2) !important;
        min-width: 36px !important;
        line-height: 1 !important;
    }

    .step-card .step-icon {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        border-radius: var(--radius-sm) !important;
        background: rgba(197, 160, 89, 0.12) !important;
        color: var(--brand-gold) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-bottom: 0 !important;
        flex-shrink: 0 !important;
    }

    .step-card .step-icon svg {
        width: 18px !important;
        height: 18px !important;
    }

    .step-card .step-text-wrap {
        display: flex !important;
        flex-direction: column !important;
        gap: 2px !important;
        flex: 1 !important;
        min-width: 0 !important;
    }

    .step-card h3 {
        font-size: 0.92rem !important;
        font-weight: 600 !important;
        margin-bottom: 2px !important;
        color: var(--text-primary) !important;
        white-space: nowrap !important;
    }

    .step-card p {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
        color: var(--text-secondary) !important;
        text-align: justify !important;
        overflow: visible !important;
        display: block !important;
        margin: 0 !important;
        font-weight: 300 !important;
    }

    /* -------------------------------------------------------
       CASE CARDS — imagem visível + título + texto
    ------------------------------------------------------- */
    .case-card {
        display: flex !important;
        flex-direction: row !important;
        align-items: stretch !important;
        background: rgba(34, 24, 18, 0.22) !important;
        border: 1px solid var(--border-subtle) !important;
    }

    .case-image {
        width: 110px !important;
        min-width: 110px !important;
        height: 100% !important;
        background-size: cover !important;
        background-position: center !important;
        position: relative !important;
        flex-shrink: 0 !important;
    }

    .case-badge {
        position: static !important;
        display: inline-block !important;
        font-size: 0.6rem !important;
        padding: 2px 8px !important;
        background: rgba(11, 11, 12, 0.75) !important;
        backdrop-filter: blur(8px) !important;
        color: var(--brand-gold) !important;
        border: 1px solid var(--border-gold) !important;
        border-radius: var(--radius-full) !important;
        font-weight: 600 !important;
        white-space: nowrap !important;
        margin-bottom: 5px !important;
        align-self: center !important;
    }

    .case-content {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 10px 12px !important;
        text-align: center !important;
        overflow: hidden !important;
        min-width: 0 !important;
        gap: 2px !important;
    }

    .case-content h3 {
        font-size: 0.88rem !important;
        font-weight: 600 !important;
        margin-bottom: 3px !important;
        color: var(--text-primary) !important;
        text-align: center !important;
        white-space: nowrap !important;
    }

    .case-content p {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
        color: var(--text-secondary) !important;
        text-align: justify !important;
        display: block !important;
        overflow: visible !important;
        margin: 0 !important;
        font-weight: 300 !important;
    }

    /* -------------------------------------------------------
       TESTIMONIAL CARDS — aspas + texto itálico + avatar
    ------------------------------------------------------- */
    .testimonial-card {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        flex: 1 1 0 !important;
        min-height: 0 !important;
        height: 0 !important;
        padding: clamp(6px, 1.5dvh, 16px) clamp(10px, 3vw, 16px) !important;
        background: rgba(34, 24, 18, 0.22) !important;
        border: 1px solid var(--border-subtle) !important;
        gap: clamp(3px, 0.6dvh, 8px) !important;
        overflow: hidden !important;
    }

    .quote-icon {
        display: none !important;
    }

    .testimonial-text {
        font-size: clamp(0.64rem, 1.6dvh, 0.82rem) !important;
        line-height: 1.45 !important;
        margin-bottom: 0 !important;
        display: -webkit-box !important;
        -webkit-box-orient: vertical !important;
        -webkit-line-clamp: 5 !important;
        overflow: hidden !important;
        text-align: justify !important;
        color: var(--text-secondary) !important;
        font-style: italic !important;
        font-weight: 300 !important;
        flex: 1 !important;
    }

    .testimonial-user {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        flex-shrink: 0 !important;
    }

    .user-avatar {
        width: clamp(24px, 3.5dvh, 36px) !important;
        height: clamp(24px, 3.5dvh, 36px) !important;
        min-width: clamp(24px, 3.5dvh, 36px) !important;
        aspect-ratio: 1 / 1 !important;
        flex-shrink: 0 !important;
        border-radius: 50% !important;
        background-size: cover !important;
        background-position: center !important;
        border: 1.5px solid var(--brand-gold) !important;
    }

    .testimonial-user h4 {
        font-size: clamp(0.68rem, 1.5dvh, 0.82rem) !important;
        font-weight: 600 !important;
        margin: 0 !important;
    }

    .testimonial-user span {
        display: block !important;
        font-size: clamp(0.55rem, 1.2dvh, 0.68rem) !important;
        color: var(--text-secondary) !important;
     }
}

/* ==========================================================================
   Estilização do Modal de Vídeo Global e Botões das Seções
   ========================================================================== */

.section-actions {
    margin-top: 18px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.btn-sm {
    padding: 8px 20px !important;
    font-size: 0.88rem !important;
}

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(11, 11, 12, 0.45); /* Fundo suave translúcido deixando os efeitos de galáxia 100% visíveis */
    backdrop-filter: blur(8px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 2s ease-in-out, visibility 2s ease-in-out !important;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.video-modal-content {
    position: relative;
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: scale(0.98);
    transition: transform 2s ease-in-out !important;
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

/* Cabeçalho do Site Sobreposto no Vídeo com altura calculada */
.video-modal-navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100020;
    background: linear-gradient(to bottom, rgba(11, 11, 12, 0.85) 0%, rgba(11, 11, 12, 0.4) 60%, transparent 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px 0;
}

.video-modal-navbar .nav-links a {
    color: var(--text-primary);
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    cursor: pointer;
}

.video-modal-navbar .nav-links a:hover {
    color: var(--brand-gold);
    text-shadow: 0 0 10px rgba(197, 160, 89, 0.6);
}

/* Botão de Fechar Integrado no Painel de Controles do Vídeo */
.close-video-bottom-btn {
    position: static !important;
    transform: none !important;
    margin: 0 !important;
    z-index: 100020 !important;
    
    background: linear-gradient(135deg, #9c7247 0%, #7d5b38 100%) !important;
    color: #ffffff !important;
    border: 1px solid #9c7247 !important;
    box-shadow: 0 0 14px rgba(229, 195, 120, 0.35), 0 0 25px rgba(156, 114, 71, 0.2) !important;
    
    padding: 6px 14px !important;
    font-size: 0.74rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    border-radius: var(--radius-full) !important;
    gap: 6px !important;
    cursor: pointer !important;
    transition: var(--transition-smooth) !important;
}

.close-video-bottom-btn:hover {
    background: transparent !important;
    border-color: #e5c378 !important;
    color: #e5c378 !important;
    box-shadow: 0 0 20px #e5c378, 0 0 45px rgba(229, 195, 120, 0.8), 0 0 75px rgba(156, 114, 71, 0.6) !important;
    transform: translateY(-2px) !important;
}

.close-video-bottom-btn svg {
    width: 14px !important;
    height: 14px !important;
    stroke: currentColor !important;
    transition: var(--transition-fast) !important;
}

.close-video-bottom-btn:hover svg {
    stroke: #e5c378 !important;
}

/* Bloquear rolagem do site e ocultar áudio fixo quando o vídeo estiver ativo */
body.video-active {
    overflow: hidden !important;
    height: 100vh !important;
    touch-action: none !important;
}

/* Transição suave cinematográfica do conteúdo central e rodapé */
.painel-card-main,
.painel-footer-actions {
    transition: opacity 1.8s ease-in-out, filter 1.8s ease-in-out !important;
}

/* Quando o vídeo é aberto: O conteúdo do painel e rodapé somem em um fade suave sincronizado com o vídeo */
body.video-active .painel-card-main,
body.video-active .painel-footer-actions {
    opacity: 0 !important;
    pointer-events: none !important;
    filter: blur(4px);
}

body.video-active .audio-player-widget {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateX(-50%) translateY(20px) !important;
    transition: opacity 0.4s ease, transform 0.4s ease !important;
}

/* -------------------------------------------------------------
   CONTAINER DE VÍDEO PADRÃO (Vídeos do Iasis - Tela Cheia Total)
------------------------------------------------------------- */
.video-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2 !important;
}

/* Efeito Vinheta Cinematográfica */
.video-vignette-overlay {
    display: none !important;
}

.video-container video,
.video-container iframe {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    border: none;
    border-radius: 0;
    opacity: 0;
    transform: translateZ(0);
    will-change: opacity, transform;
    transition: opacity 2s ease-in-out !important;
}

.video-modal.active .video-container video,
.video-modal.active .video-container iframe {
    opacity: 1;
}

.video-container video.video-fading-out {
    opacity: 0 !important;
    transition: opacity 1.5s ease-in-out !important;
}

/* Controles Customizados Padrão para Vídeos do Iasis */
.custom-video-controls {
    position: absolute;
    bottom: 38px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 880px;
    background: linear-gradient(135deg, rgba(30, 20, 15, 0.94) 0%, rgba(15, 12, 10, 0.98) 100%);
    border: 1px solid rgba(197, 160, 89, 0.35);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.85), 0 0 25px rgba(156, 114, 71, 0.3);
    padding: 8px 18px 12px 18px;
    z-index: 100015;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
    box-sizing: border-box;
    display: none;
}

.custom-video-controls.visible {
    display: block !important;
}

.custom-video-controls.idle {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateX(-50%) translateY(10px) !important;
    pointer-events: none !important;
}

.custom-video-controls.visible {
    display: block !important;
}

.custom-video-controls.idle {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateX(-50%) translateY(10px) !important;
    pointer-events: none !important;
}

/* Barra de Progresso / Linha do Tempo */
.v-progress-container {
    width: 100%;
    padding: 5px 0;
    cursor: pointer;
    position: relative;
}

.v-progress-track {
    width: 100%;
    height: 6px;
    background: rgba(80, 54, 32, 0.55); /* Marrom escuro inativo */
    border-radius: 3px;
    position: relative;
    overflow: visible;
    transition: height 0.2s ease;
}

.v-progress-container:hover .v-progress-track {
    height: 8px;
}

.v-progress-buffer {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: rgba(156, 114, 71, 0.4); /* Marrom intermediário de buffer */
    border-radius: 3px;
    pointer-events: none;
}

.v-progress-current {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #9c7247 0%, #ffd700 100%); /* Gradiente Marrom para Dourado Ativo */
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.55);
    pointer-events: none;
}

.v-progress-scrubber {
    position: absolute;
    top: 50%;
    left: 0%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ffd700; /* Cabeça da agulha em ouro brilhante */
    border: 2px solid #301b0f;
    box-shadow: 0 0 12px #e5c378;
    transform: translate(-50%, -50%) scale(0.85);
    transition: transform 0.2s ease;
    pointer-events: none;
}

.v-progress-container:hover .v-progress-scrubber {
    transform: translate(-50%, -50%) scale(1.15);
}

/* Linha de Controles */
.v-controls-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 5px;
}

.v-controls-group-left,
.v-controls-group-right {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1;
}

.v-controls-group-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: auto;
}

.v-ctrl-btn {
    background: transparent;
    border: none;
    color: #c39c6b; /* Marrom dourado quando inativo */
    padding: 6px 8px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, transform 0.2s ease, text-shadow 0.2s ease;
}

.v-ctrl-btn:hover {
    color: #ffd700; /* Ouro brilhante quando ativo/hover */
    transform: scale(1.12);
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.6));
}

.v-ctrl-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

/* Indicador de Tempo */
.v-time-wrapper {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.82rem;
    font-family: var(--font-primary);
    font-weight: 500;
    margin-left: 6px;
    user-select: none;
}

.v-time-active {
    color: #ffd700; /* Dourado brilhante para tempo corrente ativo */
    text-shadow: 0 0 6px rgba(255, 215, 0, 0.4);
    min-width: 38px;
}

.v-time-divider {
    color: #7d5b38; /* Marrom escuro */
}

.v-time-inactive {
    color: #9c7247; /* Marrom suave para duração total */
    min-width: 38px;
}

@media (max-width: 768px) {
    .custom-video-controls {
        bottom: 38px;
        width: calc(100% - 20px);
        padding: 6px 12px 12px 12px;
    }
    .close-video-bottom-btn {
        padding: 4px 12px !important;
        font-size: 0.70rem !important;
    }
    .v-time-wrapper {
        font-size: 0.72rem;
    }
}

@media (max-width: 768px), (max-aspect-ratio: 5/4) {
    /* Hero Specifics Mobile */
    .hero-section {
        padding-top: 0 !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .hero-badge {
        font-size: 0.72rem !important;
        padding: 6px 14px !important;
        white-space: nowrap !important;
        margin-top: 24px !important;
        margin-bottom: 14px !important;
    }

    .hero-content {
        height: auto !important;
        padding-top: 100px !important;
        padding-bottom: 40px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .hero-title {
        font-family: 'Poiret One', cursive, sans-serif !important;
        font-weight: 400 !important;
        text-transform: none !important;
        font-size: clamp(0.95rem, 4.4vw, 1.45rem) !important; /* Adaptado para caber sem quebrar linha em mobile */
        letter-spacing: 0.8px !important;
        line-height: 1.15 !important;
        margin-bottom: 12px !important;
        width: 100% !important;
        text-align: center !important;
        white-space: nowrap !important;
    }
    
    .hero-title .title-line-1,
    .hero-title .hero-title-sub {
        white-space: nowrap !important;
        display: inline-block !important;
        width: auto !important;
        text-align: center !important;
    }

    .hero-subtitle {
        font-size: 0.85rem !important;
        line-height: 1.45;
        margin-bottom: 20px;
        text-align: center !important;
        text-align-last: center !important;
        width: 100% !important;
    }

    /* Footer Mobile */
    .disclaimer-card {
        padding: 16px;
        gap: 12px;
        margin-bottom: 24px;
    }

    .disclaimer-content p {
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   Widget de Áudio Ultra-Minimalista Fixado na Base
   ========================================================================== */
.desktop-only {
    display: block;
}

.audio-player-widget {
    position: fixed !important;
    bottom: 24px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
    z-index: 9999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    transition: all 0.3s ease;
    pointer-events: none !important;
}

.audio-footer-left {
    flex: 1 !important;
    text-align: left !important;
    pointer-events: auto !important;
}

.audio-footer-right {
    flex: 1 !important;
    text-align: right !important;
    pointer-events: auto !important;
}

.audio-controls-wrap {
    flex: 0 0 auto !important;
    pointer-events: auto !important;
}

.audio-footer-left a,
.audio-footer-right {
    font-size: 0.82rem !important;
    color: var(--text-secondary) !important;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.9) !important;
    font-weight: 500 !important;
    display: inline-block !important;
}

/* Passagem Bíblica no Rodapé com Fonte do Título (Poiret One) e Tom Bege Centralizado Verticalmente */
.biblical-quote-footer {
    position: fixed !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 95% !important;
    max-width: 1200px !important;
    height: 50px !important; /* Altura exata do espaço entre as ações e a borda inferior do slide */
    text-align: center !important;
    z-index: 95 !important;
    pointer-events: none !important;
    box-sizing: border-box !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    opacity: 1;
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.biblical-quote-footer.hidden {
    opacity: 0 !important;
    pointer-events: none !important;
}

.biblical-quote-text {
    font-family: 'Poiret One', cursive, sans-serif !important;
    font-size: clamp(0.72rem, 0.95vw + 0.35vh, 1.02rem) !important;
    font-weight: 400 !important;
    color: #e8d5b7 !important; /* Mesmo tom de bege dourado do título */
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9), 0 0 12px rgba(232, 213, 183, 0.3) !important;
    letter-spacing: 1.4px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 100% !important;
    display: inline-block !important;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.biblical-quote-text.fade-out {
    opacity: 0 !important;
    transform: translateY(4px) !important;
}

.preview-studio-link {
    font-family: 'Poiret One', cursive, sans-serif !important;
    font-size: clamp(0.72rem, 0.95vw + 0.35vh, 1.02rem) !important;
    font-weight: 400 !important;
    color: #e8d5b7 !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9), 0 0 12px rgba(232, 213, 183, 0.3) !important;
    letter-spacing: 1.4px !important;
    text-decoration: none !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease !important;
}

.preview-studio-link:hover {
    color: #e5c378 !important;
    text-shadow: 0 0 12px rgba(229, 195, 120, 0.85), 0 0 20px rgba(229, 195, 120, 0.5) !important;
    text-decoration: none !important;
    transform: translateY(-1px);
}

.audio-footer-left a {
    color: var(--brand-gold) !important;
    text-decoration: underline !important;
}

.audio-footer-left a:hover {
    color: #ffffff !important;
}

.audio-controls-wrap {
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

/* Botão Play/Pause Sem Círculo (Ícone solto sincronizado na cor das ondas sonoras) */
.audio-toggle-btn {
    background: transparent !important;
    border: none !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary) !important;
    cursor: pointer;
    box-shadow: none !important;
    transition: all 0.3s ease;
    padding: 2px 4px;
    opacity: 0.7;
}

.audio-toggle-btn.is-playing {
    color: var(--brand-gold) !important;
    opacity: 1;
}

.audio-toggle-btn:hover {
    transform: scale(1.18);
    opacity: 1;
    color: #ffffff !important;
}

.audio-toggle-btn.is-playing:hover {
    color: #f7e7ce !important;
}

.audio-toggle-btn:active {
    transform: scale(0.92);
}

.audio-toggle-btn svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.2;
}

/* Ajuste fino do ícone de Play centralizado */
.audio-toggle-btn #audioIconPlay {
    margin-left: 1.5px;
}

/* Desenhos das Ondas Sonoras (Cinza quando inativo, Dourado pulsante quando tocando) */
.sound-waves {
    display: flex;
    align-items: center;
    gap: 2.5px;
    height: 16px;
}

.sound-waves .bar {
    width: 2.5px;
    background: var(--text-secondary);
    border-radius: 2px;
    opacity: 0.5;
    height: 3px;
    transition: height 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.sound-waves.playing .bar {
    background: var(--brand-gold);
    opacity: 0.95;
    animation: soundWaveAnim 1.2s ease-in-out infinite alternate;
}

.sound-waves.playing .bar-1 { animation-delay: 0.1s; }
.sound-waves.playing .bar-2 { animation-delay: 0.3s; }
.sound-waves.playing .bar-3 { animation-delay: 0.5s; }
.sound-waves.playing .bar-4 { animation-delay: 0.2s; }

@keyframes soundWaveAnim {
    0% {
        height: 3px;
    }
    100% {
        height: 14px;
    }
}

/* Responsividade Mobile do Player */
@media (max-width: 768px), (max-aspect-ratio: 5/4) {
    .desktop-only {
        display: none !important;
    }

    .audio-player-widget {
        bottom: 16px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: auto !important;
        max-width: none !important;
        padding: 0 !important;
        justify-content: center !important;
    }

    .audio-controls-wrap {
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
    }

    .audio-toggle-btn {
        width: 28px;
        height: 28px;
    }

    .audio-toggle-btn svg {
        width: 12px;
        height: 12px;
    }
}

/* ==========================================================================
   Efeito Manuscrito "Montserrat" Animado na Posição Final Exata
   ========================================================================== */
.handwritten-title {
    font-family: var(--font-handwriting) !important;
    font-weight: 400 !important;
    color: #e5c378 !important;
    -webkit-text-fill-color: #e5c378 !important;
    text-shadow: 0 0 8px rgba(229, 195, 120, 0.6), 0 0 16px rgba(229, 195, 120, 0.3) !important;
    background: none !important;
    text-transform: none !important;
    letter-spacing: 0.5px !important;
    display: inline-block !important;
    text-align: center !important;
    
    /* Posição estática 100% fixa: a frase inteira é revelada da esquerda para a direita sem mover nenhuma letra */
    clip-path: inset(0 100% 0 0);
    animation: revealStaticText 1.5s linear forwards;
}

@keyframes revealStaticText {
    0% {
        clip-path: inset(0 100% 0 0);
    }
    100% {
        clip-path: inset(0 0% 0 0);
    }
}

span.section-tag.handwritten-title {
    display: inline-block !important;
    width: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    font-size: clamp(1.45rem, 2.2vw, 2.05rem) !important;
    font-family: var(--font-handwriting) !important;
    text-transform: none !important;
    padding: 0 !important;
    color: #e5c378 !important;
    -webkit-text-fill-color: #e5c378 !important;
    background: none !important;
    border: none !important;
    margin-top: 0 !important;
    margin-bottom: 6px !important;
    text-shadow: 0 0 8px rgba(229, 195, 120, 0.6), 0 0 16px rgba(229, 195, 120, 0.3) !important;
    line-height: 1 !important;
}

/* ==========================================================================
   Guia Manuscrito "Comece aqui" com Efeito de Desenho Progressivo à Mão
   ========================================================================== */
.start-here-guide {
    position: absolute;
    top: -44px;
    left: -88px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    pointer-events: none;
    z-index: 12;
}

.start-here-text {
    font-family: var(--font-handwriting), 'Allura', cursive;
    font-size: 1.45rem;
    color: #e5c378;
    letter-spacing: 0.5px;
    text-shadow: 0 0 8px rgba(229, 195, 120, 0.6), 0 2px 4px rgba(0, 0, 0, 0.8);
    transform: rotate(-10deg);
    white-space: nowrap;
    user-select: none;
    line-height: 1;
    display: inline-block;
    
    /* Efeito de escrita sendo desenhada da esquerda para a direita */
    clip-path: inset(0 100% 0 0);
    animation: revealStaticText 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.3s forwards;
}

.start-here-arrow {
    width: 58px;
    height: 35px;
    margin-top: -3px;
    margin-right: -4px;
    transform: rotate(4deg);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
    overflow: visible;
}

/* 1. Traço longo da seta desenhado primeiro */
.start-here-arrow path.arrow-line {
    stroke-dasharray: 90;
    stroke-dashoffset: 90;
    animation: drawHandwrittenLine 0.9s ease-out 1.2s forwards;
}

/* 2. Ponta da seta desenhada logo após a linha terminar */
.start-here-arrow path.arrow-head {
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    animation: drawHandwrittenHead 0.5s ease-out 2.0s forwards;
}

@keyframes drawHandwrittenLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes drawHandwrittenHead {
    to {
        stroke-dashoffset: 0;
    }
}

@media (max-width: 768px) {
    .start-here-guide {
        top: -40px;
        left: -68px;
        transform: scale(0.85);
    }
    .start-here-text {
        font-size: 1.25rem;
    }
    .start-here-arrow {
        width: 50px;
        height: 30px;
    }
}





/* ==========================================================================
   Dobra 5: Seção Contrate - Tabela Oficial de Planos & Investimento (Ajuste 100vh)
   ========================================================================== */

.contrate-section {
    position: relative !important;
    height: 100vh !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    box-sizing: border-box !important;
    background: transparent !important;
    overflow: visible !important;
}

.contrate-container {
    max-width: 1200px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
}

.contrate-header {
    margin-bottom: 40px !important;
    width: 100% !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.contrate-header h2 {
    font-size: clamp(1.6rem, 2.2vw, 2.2rem) !important;
    margin-bottom: 8px !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
    color: var(--text-primary) !important;
}

.contrate-header p {
    margin-bottom: 0 !important;
    max-width: 700px !important;
    font-size: 0.95rem !important;
    color: var(--text-secondary) !important;
}

.plans-grid {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: stretch !important;
    gap: 24px !important;
    width: 100% !important;
    margin: 24px auto 10px auto !important; /* Afasta do título e aproxima do rodapé, igual ao slide 1 */
    flex: 1 1 auto !important; /* Mesma altura flexível */
    min-height: 220px;
    max-height: 580px;
    box-sizing: border-box !important;
}

.contrate-section .slide-content-wrap {
    margin-top: 0 !important;
}

.contrate-section .slide-content-wrap h2 {
    margin-bottom: 10px !important;
}

.contrate-section .slide-content-wrap p {
    margin-bottom: 30px !important;
}

/* Card de Plano Premium Escuro */
.plan-card {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    flex: 1 1 300px !important;
    max-width: 450px !important;
    min-width: 280px !important;
    position: relative !important;
    background: rgba(34, 24, 18, 0.28) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 2px solid rgba(197, 160, 89, 0.25) !important;
    border-radius: var(--radius-lg) !important;
    padding: 16px 18px 18px 18px !important;
    transition: var(--transition-smooth) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6) !important;
    box-sizing: border-box !important;
    visibility: visible !important;
}

.plan-card:hover {
    transform: translateY(-5px) !important;
    border-color: #e5c378 !important;
    box-shadow: 0 0 20px rgba(229, 195, 120, 0.6), 0 0 40px rgba(156, 114, 71, 0.4), 0 10px 30px rgba(0, 0, 0, 0.6) !important;
}

.plan-card.featured {
    background: linear-gradient(180deg, rgba(49, 39, 30, 0.4) 0%, rgba(34, 24, 18, 0.45) 100%) !important;
    border: 2px solid #e5c378 !important; /* Mesma borda da galeria */
    box-shadow: 0 0 20px rgba(229, 195, 120, 0.6), 0 0 40px rgba(156, 114, 71, 0.4), 0 10px 30px rgba(0, 0, 0, 0.6) !important; /* Mesmo glow da galeria */
}

/* Badges */
.plan-badge {
    position: absolute !important;
    top: -12px !important;
    right: 20px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--text-secondary) !important;
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    padding: 3px 12px !important;
    border-radius: var(--radius-full) !important;
    transition: var(--transition-smooth) !important;
}

.plan-card.featured .plan-badge {
    background: linear-gradient(135deg, #e5c378 0%, #a47e38 100%) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(229, 195, 120, 0.4) !important;
}

.plan-top-info {
    margin-bottom: 6px;
}

.plan-header-line {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    margin-bottom: 2px !important;
}

.plan-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-gold); /* Titulo marrom por padrão */
    margin-bottom: 0;
    text-shadow: none;
    transition: var(--transition-smooth);
}

.plan-card.featured .plan-name {
    color: #e5c378; /* Titulo dourado no card selecionado */
    text-shadow: 0 0 8px rgba(229, 195, 120, 0.4); /* Glow no selecionado */
}

.plan-duration {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--brand-gold); /* Marrom por padrão */
    margin-bottom: 0;
    transition: var(--transition-smooth);
}

.plan-card.featured .plan-duration {
    color: #e5c378; /* Dourado no selecionado */
}

.plan-duration svg {
    width: 13px;
    height: 13px;
}

.plan-desc {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.3;
    text-align: justify; /* Alinhamento justificado */
}

/* Área de Preço Compacta */
.plan-pricing {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 6px 8px;
    margin-bottom: 6px;
    text-align: center;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    color: #ffffff;
}

.price-display .currency {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brand-gold);
}

.price-display .amount {
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.price-display .cents {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.price-subtitle {
    display: block;
    font-size: 0.7rem;
    color: var(--brand-gold);
    margin-top: 2px;
}

/* Quadro de valor dourado no card selecionado */
.plan-card.featured .price-display .currency,
.plan-card.featured .price-display .cents,
.plan-card.featured .price-subtitle {
    color: #e5c378 !important;
}

/* Opções de Formato e Upsell Compactas */
.plan-options {
    margin-bottom: 10px;
}

.option-group {
    margin-bottom: 8px;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
}

.option-label {
    display: inline-block !important;
    font-size: 0.80rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0 !important;
    white-space: nowrap !important;
}

.format-selector {
    display: flex !important;
    gap: 4px;
    width: auto !important;
    flex: 1 !important;
    max-width: 185px !important;
}

.format-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 6px 8px;
    font-size: 0.78rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.format-btn svg {
    width: 13px;
    height: 13px;
}

.format-btn.active {
    background: rgba(156, 114, 71, 0.15) !important;
    border-color: var(--brand-gold) !important;
    color: var(--brand-gold) !important;
    font-weight: 700;
    box-shadow: none !important;
}

.format-btn.active svg {
    stroke: var(--brand-gold) !important;
}

.plan-card.featured .format-btn.active {
    background: rgba(229, 195, 120, 0.15) !important;
    border-color: #e5c378 !important;
    color: #e5c378 !important;
    box-shadow: 0 0 10px rgba(229, 195, 120, 0.2) !important;
}

.plan-card.featured .format-btn.active svg {
    stroke: #e5c378 !important;
}

.upsell-box {
    background: rgba(197, 160, 89, 0.08);
    border: 1px dashed rgba(197, 160, 89, 0.3);
    border-radius: 4px;
    padding: 8px 10px;
}

.upsell-checkbox-container {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    cursor: pointer !important;
}

.upsell-checkbox-container input {
    display: block !important;
    width: 15px !important;
    height: 15px !important;
    accent-color: var(--brand-gold) !important;
    cursor: pointer !important;
}

/* Ocultar checkmark customizado redundante antigo */
.checkmark {
    display: none !important;
}

.upsell-text {
    font-size: 0.8rem;
    color: var(--text-primary);
    line-height: 1.3;
    font-weight: 600;
}

.upsell-text small {
    display: block;
    color: var(--brand-gold);
    font-size: 0.72rem;
    font-weight: 500;
}

/* Features List */
.plan-features {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 8px 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
}

.plan-features li {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 0.76rem !important;
    color: var(--text-secondary) !important;
    list-style-type: none !important;
    background: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.plan-features li::before {
    display: none !important;
}

.plan-features li svg {
    width: 14px !important;
    height: 14px !important;
    min-width: 14px !important;
    color: var(--brand-gold) !important;
    display: inline-block !important;
}

.plan-buy-btn {
    width: 100%;
    padding: 9px 12px !important;
    font-size: 0.82rem !important;
    margin-top: auto;
}

/* Botão do card não selecionado (cinza discreto como a tag inativa) */
.plan-card .plan-buy-btn {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--text-secondary) !important; /* #b3b3b3 */
    box-shadow: none !important;
    text-shadow: none !important;
}

/* Hover no botão do card não selecionado */
.plan-card .plan-buy-btn:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
}

.plan-card .plan-buy-btn:hover svg {
    stroke: #ffffff !important;
}

/* Botão do card ativo/selecionado (dourado/destaque original) */
.plan-card.featured .plan-buy-btn {
    background: linear-gradient(135deg, #9c7247 0%, #7d5b38 100%) !important;
    border: 1.5px solid #9c7247 !important;
    color: #ffffff !important;
    box-shadow: 0 0 10px rgba(156, 114, 71, 0.3) !important;
}

/* Hover do botão do card selecionado */
.plan-card.featured .plan-buy-btn:hover {
    background: transparent !important;
    border-color: #e5c378 !important;
    color: #e5c378 !important;
    box-shadow: 0 0 20px #e5c378, 0 0 45px rgba(229, 195, 120, 0.8), 0 0 75px rgba(156, 114, 71, 0.6) !important;
}

.plan-card.featured .plan-buy-btn:hover svg {
    stroke: #e5c378 !important;
}

/* Ajuste de espaçamento para posicionar o botão mais acima com respiro na base do card */
.plan-features {
    flex: 0 1 auto !important;
    margin-top: 10px !important;
    margin-bottom: 12px !important;
}

.plan-buy-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    width: 100% !important;
    padding: 9px 14px !important;
    font-size: 0.78rem !important;
    margin-top: 6px !important;
    margin-bottom: 10px !important;
    box-sizing: border-box !important;
}

/* Customizações do card selecionado para tornar todos os acentos marrons em dourado brilhante */
.plan-card.featured .plan-features li svg {
    color: #e5c378 !important;
}

.plan-card.featured .upsell-box {
    background: rgba(229, 195, 120, 0.08) !important;
    border: 1px dashed rgba(229, 195, 120, 0.4) !important;
}

.plan-card.featured .upsell-text strong {
    color: #e5c378 !important;
}

.plan-card.featured .upsell-text small {
    color: #e5c378 !important;
}

.plan-card.featured .upsell-checkbox-container .checkmark {
    border-color: #e5c378 !important;
}

.plan-card.featured .upsell-checkbox-container input:checked ~ .checkmark {
    background-color: #e5c378 !important;
    border-color: #e5c378 !important;
}

/* Disclaimer Enxuto */
.disclaimer-mini {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    font-size: 0.8rem !important; /* Ligeiramente menor */
    color: var(--text-secondary) !important;
    background: rgba(156, 114, 71, 0.08) !important;
    border: 1px solid rgba(156, 114, 71, 0.25) !important;
    border-radius: var(--radius-md) !important;
    padding: 8px 16px !important; /* Reduzido de 12px 24px */
    margin: 8px 0 5px 0 !important; /* Reduzido de 15px 0 10px 0 */
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.disclaimer-mini span {
    text-align: justify !important;
}

.disclaimer-mini svg {
    width: 16px !important;
    height: 16px !important;
    color: var(--brand-gold) !important;
    flex-shrink: 0 !important;
}

.contrate-footer-wrap {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
}

@media (max-width: 992px), (max-aspect-ratio: 5/4) {
    .contrate-section {
        height: auto !important;
        overflow: visible !important;
    }
    
    .plans-grid {
        flex-direction: column !important;
        max-height: none !important;
    }

    .plan-card {
        width: 100% !important;
    }
}

/* FAQ Accordion Styles - Encaixe Perfeito no Espaço Padrão entre Título e Ações */
.faq-section {
    background: transparent;
}

.faq-accordion {
    width: 100%;
    max-width: 820px !important;
    margin: 26px auto 14px auto !important; /* Afasta o bloco de perguntas para igualar com o topo */
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    gap: 6px !important;
    flex: 1 1 auto !important;
    height: auto !important;
    box-sizing: border-box !important;
    position: relative !important;
}

.faq-item {
    background: rgba(34, 24, 18, 0.28) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(197, 160, 89, 0.22) !important;
    border-radius: var(--radius-sm) !important;
    transition: var(--transition-smooth) !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    flex: 1 1 0 !important; /* Cada item ocupa fração idêntica preenchendo o espaço */
    min-height: 34px !important;
    max-height: 46px !important;
    position: relative !important;
}

.faq-item:hover {
    border-color: rgba(197, 160, 89, 0.45) !important;
    background: rgba(46, 33, 24, 0.38) !important;
    box-shadow: 0 0 15px rgba(229, 195, 120, 0.2) !important;
}

.faq-question {
    width: 100% !important;
    height: 100% !important;
    background: transparent !important;
    border: none !important;
    padding: 0 clamp(10px, 1.5vw, 18px) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    color: var(--text-primary) !important;
    font-size: clamp(0.72rem, 0.9vw + 0.2vh, 0.86rem) !important;
    font-weight: 500 !important;
    text-align: left !important;
    cursor: pointer !important;
    gap: 10px !important;
    line-height: 1.2 !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
}

.faq-question span {
    font-family: var(--font-primary) !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.faq-question svg {
    color: var(--brand-gold) !important;
    transition: transform 0.3s ease !important;
    width: 14px !important;
    height: 14px !important;
    flex-shrink: 0 !important;
}

.faq-item:hover .faq-question svg {
    color: #e5c378 !important;
    filter: drop-shadow(0 0 6px rgba(229, 195, 120, 0.8)) !important;
}

@media (max-height: 780px) {
    .faq-accordion {
        margin: 12px auto 8px auto !important;
        gap: 4px !important;
        max-height: 440px !important;
    }
    .faq-item {
        height: 32px !important;
        min-height: 26px !important;
    }
    .faq-question {
        padding: 0 14px !important;
        font-size: 0.80rem !important;
    }
}

@media (max-width: 768px) {
    .faq-accordion {
        margin: 14px auto 10px auto !important;
        gap: 5px !important;
        max-height: 480px !important;
    }
    .faq-item {
        height: 34px !important;
        min-height: 28px !important;
    }
    .faq-question {
        padding: 0 12px !important;
        font-size: 0.78rem !important;
    }
}

/* FAQ Central Spotlight Modal (Pergunta e Resposta em Destaque Central com Fundo Desfocado) */
.faq-modal-backdrop {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    z-index: 10000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(6, 4, 3, 0.82) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    padding: 20px !important;
    box-sizing: border-box !important;
}

.faq-modal-backdrop.active {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.faq-modal-card {
    position: relative !important;
    width: 90% !important;
    max-width: 660px !important;
    max-height: 85vh !important;
    max-height: 85dvh !important;
    background: radial-gradient(circle at 50% 0%, rgba(46, 32, 22, 0.96), rgba(18, 11, 7, 0.98)) !important;
    border: 1px solid rgba(229, 195, 120, 0.45) !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 35px rgba(229, 195, 120, 0.25) !important;
    border-radius: 16px !important;
    padding: clamp(20px, 3.5vh, 30px) clamp(22px, 3.5vw, 34px) !important;
    box-sizing: border-box !important;
    overflow-y: auto !important;
    transform: scale(0.92) translateY(20px) !important;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    scrollbar-width: thin;
    scrollbar-color: var(--brand-gold) rgba(20, 12, 8, 0.8);
}

.faq-modal-backdrop.active .faq-modal-card {
    transform: scale(1) translateY(0) !important;
}

.faq-modal-close {
    position: absolute !important;
    top: 18px !important;
    right: 18px !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(229, 195, 120, 0.3) !important;
    color: #e5c378 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    padding: 0 !important;
}

.faq-modal-close:hover {
    background: rgba(229, 195, 120, 0.25) !important;
    border-color: #e5c378 !important;
    transform: rotate(90deg) scale(1.08) !important;
    box-shadow: 0 0 15px rgba(229, 195, 120, 0.5) !important;
}

.faq-modal-close svg {
    width: 18px !important;
    height: 18px !important;
}

.faq-modal-header {
    width: 100% !important;
    padding-right: 42px !important;
    box-sizing: border-box !important;
}

.faq-modal-badge {
    display: inline-block !important;
    font-size: clamp(1.35rem, 1.4vw + 0.4vh, 1.6rem) !important;
    color: var(--brand-gold) !important;
    margin-bottom: 6px !important;
    letter-spacing: 0.5px !important;
}

.faq-modal-title {
    font-family: var(--font-primary) !important;
    font-size: clamp(0.78rem, 1.15vw + 0.2vh, 1.15rem) !important;
    font-weight: 600 !important;
    color: #f7ede2 !important;
    line-height: 1.3 !important;
    margin: 0 !important;
    letter-spacing: 0.3px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    width: 100% !important;
}

.faq-modal-divider {
    width: 100% !important;
    height: 1px !important;
    background: linear-gradient(90deg, rgba(229, 195, 120, 0.6) 0%, rgba(229, 195, 120, 0.1) 100%) !important;
    margin: clamp(14px, 2.2vh, 22px) 0 !important;
}

.faq-modal-body {
    width: 100% !important;
}

.faq-modal-body p {
    font-family: var(--font-primary) !important;
    font-size: clamp(0.9rem, 1.05vw + 0.25vh, 1.05rem) !important;
    color: #ede2d5 !important;
    line-height: 1.75 !important;
    margin: 0 !important;
    text-align: justify !important;
    text-justify: inter-word !important;
    width: 100% !important;
}

.faq-answer {
    display: none !important;
}

@keyframes faqAnswerFadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Galeria de Acordeão Interativa (AccordionGallery) no Hero
   ========================================================================== */
.accordion-gallery {
  --ag-accent: var(--brand-gold);
  --ag-overlay: #0b0b0c;
  --ag-text: #ffffff;
  --ag-gap: 10px;
  --ag-radius: 12px;
  --ag-media-size: 340px;

  display: flex;
  flex-direction: row;
  gap: var(--ag-gap);
  width: 100%;
  max-width: 1350px; /* Alinhado perfeitamente com a largura máxima do subtítulo e margens do site */
  margin: 10px auto 8px auto; /* Espaçamento rigorosamente igual ao respiro superior */
  perspective: 1400px;
  perspective-origin: 50% 50%;
  flex: 1 1 auto !important; /* Cresce dinamicamente para ocupar todo o espaço vertical disponível */
  height: auto !important; /* Desativa a altura física fixa */
  min-height: 240px; /* Garante tamanho mínimo em telas muito compactas */
  max-height: 640px; /* Aumentado para 640px para expandir a dimensão vertical da galeria */
  z-index: 5;
  position: relative;
}

.accordion-gallery--vertical {
  flex-direction: column;
}

.ag-panel {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--ag-radius);
  cursor: pointer;
  display: block;
  text-decoration: none;
  outline: none;
  transform-style: preserve-3d;
  transform-origin: center center;
  background: var(--bg-card);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
  will-change: flex-grow, transform;
  -webkit-tap-highlight-color: transparent;
  border: none;
}

.ag-panel.ag-panel--active {
  box-shadow: 0 0 20px rgba(229, 195, 120, 0.6), 0 0 40px rgba(156, 114, 71, 0.4), 0 10px 30px rgba(0, 0, 0, 0.6);
}

.ag-panel.ag-panel--active::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2.5px solid #e5c378;
  border-radius: inherit;
  pointer-events: none;
  z-index: 5;
  box-shadow: inset 0 0 15px rgba(229, 195, 120, 0.3); /* Um leve brilho dourado interno */
}

.ag-panel.ag-panel--active .ag-panel__bar {
  background: #e5c378;
  box-shadow: 0 0 12px rgba(229, 195, 120, 0.8);
}

.ag-panel:focus-visible {
  box-shadow:
    0 0 0 2px var(--ag-accent),
    0 10px 30px -18px rgba(0, 0, 0, 0.8);
}

.ag-panel__frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}

.ag-panel__media {
  --ag-gray: 1;
  --ag-dim: 0.35;
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--ag-media-size);
  height: 100%;
  transform: translate(-50%, -50%);
  filter: grayscale(var(--ag-gray));
  will-change: transform, filter;
}

.accordion-gallery--vertical .ag-panel__media {
  width: 100%;
  height: var(--ag-media-size);
}

.ag-panel__media img,
.ag-panel__media video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.ag-panel__media video {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ag-panel.ag-panel--active .ag-panel__media video {
  opacity: 1;
}

.ag-panel.ag-panel--active .ag-panel__media img.ag-card-poster {
  opacity: 0;
}

.ag-panel__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 45%, color-mix(in srgb, var(--ag-overlay) 78%, transparent) 100%),
    color-mix(in srgb, var(--ag-overlay) calc(var(--ag-dim, 0.35) * 100%), transparent);
}

.ag-panel__label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  pointer-events: none;
}

.ag-panel.ag-panel--active[data-type="video"] .ag-panel__label {
  pointer-events: auto;
  cursor: pointer;
}

.ag-panel__bar {
  flex: 0 0 auto;
  width: 3px;
  height: 20px;
  border-radius: 3px;
  background: var(--ag-accent);
  opacity: 0;
  box-shadow: 0 0 12px color-mix(in srgb, var(--ag-accent) 60%, transparent);
}

.ag-panel__text {
  color: var(--ag-text);
  font-family: inherit;
  font-weight: 600;
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85);
  transition: color var(--transition-fast);
}

/* Botão Circular Minimalista de Play na Base do Card de Vídeo */
.ag-panel-play-btn {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) scale(0.85);
  z-index: 15;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid #e5c378;
  color: #e5c378;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(229, 195, 120, 0.4), 0 2px 10px rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 0;
}

.ag-panel-play-btn svg {
  width: 18px;
  height: 18px;
  fill: #e5c378;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
  transition: transform 0.2s ease, fill 0.2s ease;
}

.ag-panel-play-btn .icon-play {
  margin-left: 2px; /* Ajuste óptico de centralização do triângulo */
}

.ag-panel.ag-panel--active .ag-panel-play-btn {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) scale(1);
}

.ag-panel.ag-panel--active .ag-panel-play-btn:hover {
  background: #e5c378;
  box-shadow: 0 0 25px #e5c378, 0 0 45px rgba(229, 195, 120, 0.8);
  transform: translateX(-50%) scale(1.12);
}

.ag-panel.ag-panel--active .ag-panel-play-btn:hover svg {
  fill: #111112;
  filter: none;
}

.ag-panel-play-btn.playing {
  background: rgba(229, 195, 120, 0.15);
  border-color: #e5c378;
  box-shadow: 0 0 20px rgba(229, 195, 120, 0.6);
}

@media (max-width: 768px) {
  .accordion-gallery {
    height: 280px !important; /* Altura ideal proporcional para tablets */
    max-width: 100%;
  }
}

@media (max-width: 520px) {
  .accordion-gallery {
    flex-direction: column;
    perspective: none;
    height: auto !important;
    max-height: 380px;
    margin: 12px auto;
  }
  .ag-panel {
    min-height: 52px;
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ag-panel,
  .ag-panel__media {
    will-change: auto;
  }
}

/* Music Waves Sidebar Toggle (Sem botão, as próprias ondas são clicáveis) */
.slide-actions {
    width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important; /* Estica de ponta a ponta */
    gap: 32px !important;
    box-sizing: border-box !important;
    padding: 0 40px !important;
}

.video-badge-wrapper {
    flex-shrink: 0 !important;
}

.music-wave-toggle {
    flex: 1 !important; /* Expande para ocupar toda a largura restante */
    display: flex !important;
    align-items: center !important;
    justify-content: space-evenly !important;
    height: 32px !important;
    cursor: pointer;
    user-select: none;
    opacity: 0.45;
    transition: opacity 0.3s ease, filter 0.3s ease;
    will-change: opacity;
    margin-top: 10px !important; /* Alinha perfeitamente com a margem do botão de play */
}

.music-wave-toggle:hover {
    opacity: 0.9 !important;
    filter: drop-shadow(0 0 4px rgba(229, 195, 120, 0.4)) !important;
}

.music-wave-toggle .stroke {
    display: block !important;
    width: 2px !important;
    height: 4px !important;
    background: #cccccc !important; /* Cinza claro quando pausado */
    border-radius: 1px !important;
    transition: height 0.3s ease, transform 0.55s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease, opacity 0.55s cubic-bezier(0.25, 1, 0.5, 1) !important;
    transform-origin: center;
}

/* Diferentes alturas estáticas padrão para parecer com espectro de áudio quando parado */
.music-wave-toggle .stroke:nth-child(5n+1) { height: 4px !important; }
.music-wave-toggle .stroke:nth-child(5n+2) { height: 10px !important; }
.music-wave-toggle .stroke:nth-child(5n+3) { height: 6px !important; }
.music-wave-toggle .stroke:nth-child(5n+4) { height: 14px !important; }
.music-wave-toggle .stroke:nth-child(5n+5) { height: 8px !important; }

/* Animação ativa quando tocando */
.music-wave-toggle.playing {
    opacity: 0.75 !important;
}

.music-wave-toggle.playing .stroke {
    background: #e5c378 !important; /* Dourado brilhante quando tocando */
    animation: soundWavePulseActive 1.1s ease-in-out infinite alternate !important;
}

.music-wave-toggle.playing .stroke:nth-child(5n+1) { animation-duration: 0.7s !important; animation-delay: 0.1s !important; }
.music-wave-toggle.playing .stroke:nth-child(5n+2) { animation-duration: 1.0s !important; animation-delay: 0.4s !important; }
.music-wave-toggle.playing .stroke:nth-child(5n+3) { animation-duration: 0.8s !important; animation-delay: 0.2s !important; }
.music-wave-toggle.playing .stroke:nth-child(5n+4) { animation-duration: 1.2s !important; animation-delay: 0.5s !important; }
.music-wave-toggle.playing .stroke:nth-child(5n+5) { animation-duration: 0.9s !important; animation-delay: 0.3s !important; }

@keyframes soundWavePulseActive {
    0% {
        transform: scaleY(0.6);
    }
    100% {
        transform: scaleY(2.2);
    }
}

@media (max-width: 768px) {
    .slide-actions {
        padding: 0 15px !important;
        gap: 12px !important;
        justify-content: space-between !important; /* Deixa esticar de ponta a ponta em telas menores */
    }
    .music-wave-toggle {
        width: auto !important;
        flex: 1 !important;
    }
    /* Oculta algumas barras em telas menores para não poluir */
    .music-wave-toggle .stroke:nth-child(3n) {
        display: none !important;
    }
}



/* Hover nas Ondas Sonoras: Texto surge diretamente em cima das ondas (ocultando as barras) */
.music-wave-toggle {
    position: relative !important;
}

/* Oculta apenas as barras do meio (n+15 até n+31) no hover fazendo-as encolher verticalmente de forma fluida */
.music-wave-toggle:hover .stroke:nth-child(n+15):nth-child(-n+31) {
    opacity: 0 !important;
    transform: scaleY(0) !important;
}

/* O texto explicativo surge centralizado no lugar das barras de forma orgânica */
.music-wave-toggle::after {
    content: 'TOCAR MÚSICA' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(0.7) !important; /* Inicia menor e expande */
    color: #e5c378 !important;
    font-size: 0.68rem !important;
    font-family: var(--font-primary) !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    white-space: nowrap !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s ease !important;
    z-index: 10 !important;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8) !important;
}

.music-wave-toggle:hover::after {
    opacity: 1 !important;
    transform: translate(-50%, -50%) scale(1) !important;
}

.music-wave-toggle.playing::after {
    content: 'PAUSAR MÚSICA' !important;
}

/* Oculta o hover de texto no mobile, mantendo todas as barras visíveis */
@media (max-width: 768px) {
    .music-wave-toggle:hover .stroke:nth-child(n+15):nth-child(-n+31) {
        opacity: 1 !important;
        transform: none !important;
    }
    .music-wave-toggle::after {
        display: none !important;
    }
}

/* Oculta os textos descritivos de todos os slides para futura narração em vídeo */
.hero-subtitle {
    display: none !important;
}

/* Redistribui o espaço vertical nos slides expandindo a altura das galerias e grids */
@media (min-width: 769px) {
    .accordion-gallery,
    .steps-grid,
    .cases-grid,
    .testimonials-grid,
    .about-grid-balanced,
    .plans-grid {
        max-height: 640px !important;
        margin-top: 32px !important;
        margin-bottom: 24px !important;
    }
}



/* ==========================================================================
   BOTÃO FLUTUANTE DE WHATSAPP (CANTO INFERIOR DIREITO)
   ========================================================================== */
.whatsapp-float-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999999;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.5);
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.whatsapp-float-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6), 0 4px 12px rgba(0, 0, 0, 0.6);
    background: linear-gradient(135deg, #2cf076 0%, #15a191 100%);
}

.whatsapp-float-btn i, .whatsapp-float-btn svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%) scale(0.9);
    background: rgba(14, 9, 6, 0.92);
    border: 1px solid rgba(197, 160, 89, 0.4);
    color: #f6e3c5;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
}

.whatsapp-float-btn:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

@keyframes waPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float-btn.pulse-active {
    animation: waPulse 2.5s infinite;
}
