/* ==========================================================================
   CSS SYSTEM DESIGN - CIGANINHA (RESPONSIVO CINEMATOGRÁFICO)
   Aparência: Apple + Nike + Spotify + Netflix landing pages
   ========================================================================== */

/* 1. VARIÁVEIS DO DESIGN SYSTEM */
:root {
    --primary-purple: #9B1CFF;
    --primary-purple-rgb: 155, 28, 255;
    --gold-soft: #FFF1B3;
    --gold-soft-rgb: 255, 241, 179;
    --dark-blue: #04032A;
    --dark-blue-rgb: 4, 3, 42;
    --pure-black: #000000;
    --pure-white: #ffffff;
    
    /* Cores de Assistência */
    --purple-glow: rgba(155, 28, 255, 0.45);
    --gold-glow: rgba(255, 241, 179, 0.25);
    --glass-bg: rgba(4, 3, 42, 0.7);
    --glass-border: rgba(255, 241, 179, 0.08);
    --glass-border-hover: rgba(255, 241, 179, 0.25);
    
    /* Fontes */
    --font-title: 'Playfair Display', Georgia, serif;
    --font-ui: 'Montserrat', sans-serif;
    --font-text: 'Inter', sans-serif;
    
    /* Transições */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 2. RESET & BÁSICOS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--pure-black);
    color: var(--pure-white);
    font-family: var(--font-text);
}

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

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

button {
    font-family: inherit;
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
}

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

/* 3. CONTÊINER DE ESPAÇO E ESTRELAS (CINEMATOGRÁFICO DE TELA CHEIA) */
.space-ambient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    background: radial-gradient(circle at 50% 50%, #08063d 0%, var(--pure-black) 100%);
    overflow: hidden;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1.5px 1.5px at 20px 30px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 241, 179, 0.9), rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 90px 10px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 150px 140px, rgba(155, 28, 255, 0.8), rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 250px 50px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 300px 220px, #fff, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 350px 350px;
    opacity: 0.5;
    animation: starsPulse 12s infinite alternate ease-in-out;
    transform: translateZ(0);
    will-change: opacity, transform;
}

@keyframes starsPulse {
    0% { opacity: 0.35; transform: scale(1); }
    100% { opacity: 0.65; transform: scale(1.03); }
}

.nebula-purple {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 60vw;
    height: 60vh;
    background: radial-gradient(circle, rgba(155, 28, 255, 0.15) 0%, rgba(0,0,0,0) 70%);
    filter: blur(100px);
    pointer-events: none;
    animation: floatNebula 22s infinite alternate ease-in-out;
    transform: translateZ(0);
    will-change: transform;
}

.nebula-blue {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 65vw;
    height: 65vh;
    background: radial-gradient(circle, rgba(4, 3, 42, 0.8) 0%, rgba(0,0,0,0) 70%);
    filter: blur(120px);
    pointer-events: none;
    animation: floatNebula 28s infinite alternate-reverse ease-in-out;
    transform: translateZ(0);
    will-change: transform;
}

@keyframes floatNebula {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, 40px) scale(1.08); }
}

/* 4. ARQUITETURA RESPONSIVA DE WRAPPERS */
.site-wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

/* Container do Grid */
.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 20px;
    padding-left: 20px;
}

/* Breakpoints do Grid */
@media (min-width: 576px) { .container { max-width: 540px; } }
@media (min-width: 768px) { .container { max-width: 720px; } }
@media (min-width: 992px) { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: 1140px; } }
@media (min-width: 1600px) { .container { max-width: 1360px; } }

/* Configuração de Seções */
.section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 241, 179, 0.05);
    content-visibility: auto;
    contain-intrinsic-size: 600px;
}

@media (min-width: 768px) {
    .section {
        padding: 80px 0;
    }
}
@media (min-width: 1200px) {
    .section {
        padding: 110px 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

@media (min-width: 992px) {
    .section-header {
        margin-bottom: 56px;
    }
}

.section-title {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-soft);
    margin-bottom: 12px;
    text-shadow: 0 0 15px rgba(255, 241, 179, 0.15);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    max-width: 550px;
    margin: 0 auto;
}

/* 5. HEADER (STICKY NAVBAR ADAPTATIVA) */
.app-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(4, 3, 42, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 241, 179, 0.06);
    transition: var(--transition-fast);
}

.header-container {
    height: 72px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 1600px) {
    .header-container {
        max-width: 1360px;
    }
}

.logo {
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold-soft);
    text-shadow: 0 0 10px rgba(255, 241, 179, 0.35);
    transition: var(--transition-fast);
}

/* NAVEGAÇÃO DESKTOP */
.desktop-nav {
    display: none;
}

@media (min-width: 992px) {
    .desktop-nav {
        display: flex;
        align-items: center;
        gap: 32px;
    }
    
    .desktop-nav a {
        font-family: var(--font-ui);
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: rgba(255, 255, 255, 0.7);
        transition: var(--transition-fast);
        position: relative;
        padding: 4px 0;
    }
    
    .desktop-nav a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 1.5px;
        background-color: var(--gold-soft);
        transition: width 0.3s ease, left 0.3s ease;
    }

    .desktop-nav a:hover {
        color: var(--gold-soft);
        text-shadow: 0 0 8px rgba(255, 241, 179, 0.4);
    }
    
    .desktop-nav a:hover::after {
        width: 100%;
        left: 0;
    }
}

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

.btn-cta-header {
    background: linear-gradient(135deg, var(--primary-purple) 0%, #7612c9 100%);
    color: var(--pure-white);
    padding: 8px 18px;
    border-radius: 20px;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 241, 179, 0.2);
    box-shadow: 0 4px 15px rgba(155, 28, 255, 0.3);
    transition: var(--transition-fast);
}

.btn-cta-header:hover {
    transform: translateY(-1.5px);
    box-shadow: 0 6px 20px rgba(155, 28, 255, 0.55);
    border-color: var(--gold-soft);
}

/* HAMBURGER (Apenas Mobile/Tablet) */
.menu-toggle {
    width: 36px;
    height: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 5px;
    padding: 6px;
}

@media (min-width: 992px) {
    .menu-toggle {
        display: none;
    }
}

.menu-toggle .bar {
    width: 20px;
    height: 2px;
    background-color: var(--pure-white);
    border-radius: 2px;
    transition: var(--transition-medium);
}

.menu-toggle .bar:nth-child(2) {
    width: 14px;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    width: 20px;
}
.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    width: 20px;
}

/* GAVETA DE MENU MOBILE GERAL */
.menu-overlay {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background: rgba(4, 3, 42, 0.97);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-medium), visibility var(--transition-medium);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 48px 24px;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.overlay-nav {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.menu-overlay .menu-item {
    font-family: var(--font-ui);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition-fast);
    transform: translateY(15px);
    opacity: 0;
}

.menu-overlay.active .menu-item {
    transform: translateY(0);
    opacity: 1;
}

.menu-overlay .menu-item:nth-child(1) { transition-delay: 0.05s; }
.menu-overlay .menu-item:nth-child(2) { transition-delay: 0.1s; }
.menu-overlay .menu-item:nth-child(3) { transition-delay: 0.15s; }
.menu-overlay .menu-item:nth-child(4) { transition-delay: 0.2s; }
.menu-overlay .menu-item:nth-child(5) { transition-delay: 0.25s; }
.menu-overlay .menu-item:nth-child(6) { transition-delay: 0.3s; }
.menu-overlay .menu-item:nth-child(7) { transition-delay: 0.35s; }

.menu-overlay .menu-item:hover {
    color: var(--gold-soft);
    padding-left: 8px;
}

.btn-cta-overlay {
    margin-top: 12px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, #7612c9 100%);
    border: 1px solid var(--gold-soft);
    color: var(--pure-white);
    padding: 14px;
    border-radius: 14px;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(155, 28, 255, 0.4);
}

.overlay-footer {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-ui);
}

/* ==========================================================================
   6. BOTÕES PREMIUM
   ========================================================================== */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-purple) 0%, #7612c9 100%);
    color: var(--pure-white);
    padding: 14px 28px;
    border-radius: 12px;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid rgba(255, 241, 179, 0.25);
    box-shadow: 0 6px 20px rgba(155, 28, 255, 0.4);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(155, 28, 255, 0.6);
    border-color: var(--gold-soft);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.95);
    padding: 14px 28px;
    border-radius: 12px;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-medium);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-1.5px);
}

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

.btn-large {
    padding: 18px 28px;
    border-radius: 14px;
}

.glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 70%);
    transform: scale(0);
    transition: transform 0.5s ease-out;
    pointer-events: none;
}

.btn-primary:hover .glow-effect {
    transform: scale(1);
    animation: rotateGlow 3s infinite linear;
}

@keyframes rotateGlow {
    100% { transform: rotate(360deg); }
}

/* ==========================================================================
   7. HERO SECTION (LAYOUT DESKTOP CINEMATOGRÁFICO DE DUAS COLUNAS)
   ========================================================================== */
.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 60px;
    overflow: hidden;
}

.hero-container-layout {
    position: relative;
    z-index: 5;
}

.hero-bg-effect {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(155, 28, 255, 0.15) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

/* Media Query para Notebook / Desktop */
@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1.25fr 0.75fr; /* Gated layout to secure text column width and prevent overlap */
        gap: 40px; /* Reduced gap to bring visual elements closer */
        text-align: left;
    }
}

.hero-text-side {
    text-align: center;
}

@media (min-width: 992px) {
    .hero-text-side {
        text-align: left;
    }
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(155, 28, 255, 0.12);
    border: 1px solid rgba(155, 28, 255, 0.3);
    padding: 6px 14px;
    border-radius: 20px;
    font-family: var(--font-ui);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-soft);
    margin-bottom: 24px;
}

.badge-icon {
    animation: pulseGlow 2s infinite alternate ease-in-out;
}

@keyframes pulseGlow {
    0% { transform: scale(0.9); opacity: 0.7; }
    100% { transform: scale(1.1); opacity: 1; }
}

.hero-title {
    font-family: var(--font-title);
    font-size: 2.6rem;
    line-height: 1.15;
    font-weight: 600;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: 4.2rem;
    }
}

.hero-title em {
    font-family: var(--font-title);
    font-style: italic;
    color: var(--gold-soft);
    font-weight: 400;
}

.hero-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
    margin-bottom: 40px;
    max-width: 520px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 992px) {
    .hero-subtitle {
        margin-left: 0;
        font-size: 1.05rem;
    }
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 48px auto;
}

@media (min-width: 576px) {
    .hero-actions {
        flex-direction: row;
        max-width: none;
        justify-content: center;
    }
}

@media (min-width: 992px) {
    .hero-actions {
        justify-content: flex-start;
        margin-left: 0;
    }
}

/* LADO VISUAL DO HERO (ILUSTRAÇÃO MÍSTICA PREMIUM) */
.hero-visual-side {
    display: flex; /* Visível por padrão no mobile */
    justify-content: center;
    align-items: flex-end; /* Alinha a base da mesa da cigana perfeitamente com o fundo/base do Hero */
    position: relative;
    height: 300px; /* Altura adaptada para o mobile */
    width: 100%;
    overflow: hidden; /* No mobile, restringe a imagem dentro do container */
}

@media (min-width: 992px) {
    .hero-visual-side {
        height: 500px; /* Adjusted height for desktop composition */
        overflow: visible !important; /* CORREÇÃO CRÍTICA: Libera a imagem para transbordar o grid e ficar gigante */
    }
}

.hero-mystic-composition {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Alinha o conteúdo à base, impedindo que a vidente fique flutuando no ar */
}

/* Efeito de Fumaça/Névoa Mística para suavizar a borda inferior da imagem no desktop */
@media (min-width: 992px) {
    .hero-mystic-composition::after {
        content: '';
        position: absolute;
        bottom: -110px; /* Alinhado com a base da cigana */
        right: -100px;  /* Posicionado sobre a base da imagem */
        width: 680px;   /* Mesma largura do contêiner da cigana */
        height: 220px;  /* Altura da fumaça para cobrir a borda inferior */
        background: radial-gradient(ellipse at 50% 60%, rgba(155, 28, 255, 0.42) 0%, rgba(8, 6, 52, 0.7) 45%, rgba(0, 0, 0, 0) 75%);
        filter: blur(25px);
        z-index: 10;    /* Fica na frente da imagem para esconder o corte */
        pointer-events: none;
        mix-blend-mode: screen;
        opacity: 0.9;
    }
}

.floating-orb-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(155, 28, 255, 0.28) 0%, rgba(4, 3, 42, 0) 70%);
    filter: blur(10px);
    animation: orbPulse 6s infinite alternate ease-in-out;
}

@keyframes orbPulse {
    0% { transform: scale(0.9); opacity: 0.7; }
    100% { transform: scale(1.15); opacity: 1; }
}

.hero-cigana {
    position: relative;
    width: 100%;
    max-width: 320px; /* Tamanho proporcional e harmonioso para o mobile */
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 5;
}

@media (min-width: 992px) {
    .hero-cigana {
        position: absolute;
        width: 680px; /* Adjusted to be large but prevent overlapping the text */
        height: 680px; /* Square height matching image 1:1 ratio */
        right: -100px; /* Shifted right to align with grid column and clear text */
        bottom: -110px; /* Lowers composition to align perfectly with the section base */
        max-width: none;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        z-index: 5;
    }
}

.cigana-img {
    width: 116%; /* Zoom no mobile para cortar o excesso de borda preta inferior */
    height: auto;
    max-height: 290px; /* Limite de altura para telas de celulares */
    object-fit: contain;
    display: block;
    transform: translateY(6%); /* Joga a borda preta inferior física para fora da área visível no mobile */
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.7));
    transition: filter 0.3s ease;
}

@media (min-width: 992px) {
    .cigana-img {
        width: 100%;
        height: 100%;
        max-height: none;
        position: static;
        right: auto;
        bottom: auto;
        transform: none;
        object-fit: cover; /* Fill the square container perfectly matching the 1:1 image ratio */
        filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.85));
        
        /* THREE-WAY LINEAR MASK: Fades the bottom, left, and right edges to blend them into the site background,
           leaving the face, hair, and shoulders 100% opaque and sharp without any fading. */
        -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 95%),
                            linear-gradient(to left, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 100%),
                            linear-gradient(to right, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
        -webkit-mask-composite: source-in;
        mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 95%),
                    linear-gradient(to left, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 100%),
                    linear-gradient(to right, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
        mask-composite: intersect;
    }
}

/* MINI INDICADORES PREMIUM HERO */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 18px 12px;
    max-width: 440px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .hero-stats {
        margin-left: 0;
    }
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.stat-number {
    font-family: var(--font-ui);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--gold-soft);
}

.stat-label {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 28px;
    background-color: rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   8. ORÁCULO DE TAROT (SELEÇÃO DE CARTAS E LEQUE MÍSTICO)
   ========================================================================== */
.deck-container {
    width: 100%;
    margin-top: 32px;
    display: flex;
    justify-content: center;
    position: relative;
}

/* Scroll horizontal no mobile, leque (fan) no desktop */
.cards-grid {
    display: flex;
    gap: 16px;
    width: 100%;
    justify-content: center;
    padding: 20px 0;
}

@media (max-width: 767px) {
    .deck-container {
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        padding: 24px 20px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none; /* Firefox */
    }
    
    .deck-container::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }
    
    .cards-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 14px;
        width: max-content;
        justify-content: flex-start;
        padding: 0 16px;
    }
    
    .card-wrapper {
        flex: 0 0 105px;
        scroll-snap-align: center;
    }
}

@media (min-width: 768px) {
    .cards-grid {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        height: 290px;
        position: relative;
        padding: 20px 40px;
        max-width: 900px;
    }
    
    .card-wrapper {
        flex: 0 0 130px;
        margin-left: -32px; /* Sobreposição elegante estilo leque */
        transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1), z-index 0.45s, opacity 0.45s, filter 0.45s;
    }
    
    .card-wrapper:first-child {
        margin-left: 0;
    }

    /* Leque de 8 cartas */
    .card-wrapper:nth-child(1) { transform: rotate(-14deg) translateY(24px); }
    .card-wrapper:nth-child(2) { transform: rotate(-10deg) translateY(12px); }
    .card-wrapper:nth-child(3) { transform: rotate(-6deg) translateY(4px); }
    .card-wrapper:nth-child(4) { transform: rotate(-2deg) translateY(0px); }
    .card-wrapper:nth-child(5) { transform: rotate(2deg) translateY(0px); }
    .card-wrapper:nth-child(6) { transform: rotate(6deg) translateY(4px); }
    .card-wrapper:nth-child(7) { transform: rotate(10deg) translateY(12px); }
    .card-wrapper:nth-child(8) { transform: rotate(14deg) translateY(24px); }
    
    /* Hover destaca a carta, remove rotação, eleva e gera glow */
    .card-wrapper:hover:not(.disabled) {
        transform: scale(1.2) translateY(-45px) rotate(0deg) !important;
        z-index: 30;
    }
}

/* Estrutura 3D da Carta */
.card-wrapper {
    aspect-ratio: 2/3.3;
    perspective: 1000px;
    cursor: pointer;
    position: relative;
}

.tarot-card {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.15), box-shadow 0.3s ease;
    border-radius: 12px;
}

.card-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255, 241, 179, 0.15);
    overflow: hidden;
}

/* Costas da Carta */
.card-back {
    background: linear-gradient(135deg, #0f0b40 0%, #030219 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.65), inset 0 0 15px rgba(155, 28, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.card-ornament {
    width: 100%;
    height: 100%;
}

.svg-ornament {
    width: 100%;
    height: 100%;
}

/* Frente da Carta (Revelada - preenchida por imagem real de Tarot) */
.card-front {
    background: #03010b;
    transform: rotateY(180deg);
    box-shadow: 0 0 25px rgba(155, 28, 255, 0.5);
    border: 1px solid var(--gold-soft);
    display: block;
    padding: 0;
    overflow: hidden; /* Força o recorte perfeito dos cantos arredondados na face frontal */
}

.tarot-image-front {
    width: 100%;
    height: 100%;
    margin: 0;
    display: block;
    object-fit: cover;
    object-position: center;
    
    /* Prevenção de Desfoque (Blur) em Redimensionamento e Transformações 3D */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    
    /* Qualidade de Imagem e Nitidez Avançada (High Fidelity Rendering) */
    image-rendering: high-quality;
    image-rendering: -webkit-optimize-contrast;
    
    /* Zoom de 40% para eliminar bordas pretas e frestas de subpixel na renderização 3D */
    transform: translate3d(0, 0, 0) scale(1.40);
    will-change: transform;
    
    /* Deixamos em zero para que o overflow: hidden do pai (card-face) faça o clipping perfeito, */
    /* eliminando subpixel gaps (frestas de 1px que transparecem o fundo preto) nos cantos. */
    border-radius: 0; 
}

/* Hover na Carta no Mobile / Geral */
.card-wrapper:hover:not(.disabled) .card-back {
    border-color: rgba(255, 241, 179, 0.4);
    box-shadow: 0 10px 25px rgba(155, 28, 255, 0.45), inset 0 0 20px rgba(155, 28, 255, 0.35);
}

/* Rotação 3D ao Virar */
.card-wrapper.flipped .tarot-card {
    transform: rotateY(180deg);
}

/* Outras cartas desvanecem */
.card-wrapper.fade-out {
    opacity: 0.18;
    filter: blur(2px) grayscale(40%);
    pointer-events: none;
}

@media (min-width: 768px) {
    .card-wrapper.fade-out {
        transform: scale(0.85) translateY(35px) !important;
    }
}

/* Carta selecionada em destaque na tiragem */
.card-wrapper.selected-active {
    z-index: 25;
}

@media (min-width: 768px) {
    .card-wrapper.selected-active {
        transform: scale(1.25) translateY(-30px) rotate(0deg) !important;
    }
}

/* LOADING MÍSTICO */
.oracle-loading {
    display: none;
    flex-direction: column;
    align-items: center;
    margin: 40px 0;
    text-align: center;
    animation: fadeIn 0.4s ease;
}

.mystic-spinner {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner-ring {
    width: 100%;
    height: 100%;
    border: 2px solid rgba(155, 28, 255, 0.1);
    border-top: 2px solid var(--primary-purple);
    border-bottom: 2px solid var(--gold-soft);
    border-radius: 50%;
    animation: spin 1.2s infinite linear;
}

.spinner-core {
    position: absolute;
    font-size: 1.2rem;
    color: var(--gold-soft);
    animation: blink 0.8s infinite alternate ease-in-out;
}

.loading-text {
    font-family: var(--font-title);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--gold-soft);
    letter-spacing: 0.02em;
}

/* ==========================================================================
   9. RESULTADO DA CARTA (DESIGN DE DUAS COLUNAS E GLASSMORPHISM)
   ========================================================================== */
.result-container {
    display: none;
    background: linear-gradient(135deg, rgba(8, 6, 52, 0.85) 0%, rgba(3, 2, 23, 0.92) 100%);
    border: 1px solid rgba(255, 241, 179, 0.12);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65), 0 0 40px rgba(155, 28, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 28px;
    padding: 36px 24px;
    margin-top: 48px;
    position: relative;
    overflow: hidden;
    animation: slideUpFade 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.result-card-glow {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(155, 28, 255, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    filter: blur(20px);
}

.result-content-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

@media (min-width: 768px) {
    .result-content-layout {
        flex-direction: row;
        gap: 48px;
        align-items: flex-start;
    }
}

.result-visual-box {
    width: 100%;
    max-width: 170px;
    display: flex;
    justify-content: center;
    position: relative;
}

@media (min-width: 768px) {
    .result-visual-box {
        max-width: 230px;
        flex: 0 0 230px;
    }
}

.selected-card-clone {
    width: 100%;
    aspect-ratio: 2/3.3;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 15px 40px rgba(155, 28, 255, 0.45), 0 0 25px rgba(255, 241, 179, 0.2);
    border: 1px solid var(--gold-soft);
    background: #03010b;
    overflow: hidden;
}

.selected-card-clone .card-front {
    transform: rotateY(0);
    border: none;
    box-shadow: none;
    width: 100%;
    height: 100%;
}

.result-text-box {
    width: 100%;
    flex: 1;
    text-align: left;
}

.result-badge {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-purple);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(155, 28, 255, 0.4);
}

.result-card-name {
    font-family: var(--font-title);
    font-size: 2.4rem;
    color: var(--gold-soft);
    margin: 6px 0 14px 0;
    text-shadow: 0 0 12px rgba(255, 241, 179, 0.3);
}

.result-card-summary {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 28px;
    font-style: italic;
    border-left: 3px solid var(--gold-soft);
    padding-left: 14px;
}

/* Novo Container de Leituras Integradas (Simultâneas) */
.readings-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

@media (min-width: 992px) {
    .readings-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

.reading-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 241, 179, 0.08);
    border-radius: 16px;
    padding: 20px;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.reading-block:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 241, 179, 0.18);
    transform: translateY(-2px);
}

.reading-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
}

.reading-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

.reading-header h4 {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold-soft);
    letter-spacing: 0.05em;
    margin: 0;
}

.reading-block p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
}

/* Gatilho Psicológico e Revelação Oculta */
.psychological-trigger {
    background: rgba(155, 28, 255, 0.04);
    border: 1px solid rgba(155, 28, 255, 0.25);
    border-radius: 20px;
    padding: 24px 28px;
    margin-bottom: 32px;
    max-width: 680px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(4px);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.psychological-trigger:hover {
    background: rgba(155, 28, 255, 0.06);
    border-color: rgba(155, 28, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px 0 rgba(155, 28, 255, 0.15), 0 8px 32px 0 rgba(0, 0, 0, 0.45);
}

.psychological-trigger:hover .reading-block-icon {
    transform: scale(1.12) rotate(3deg);
    filter: drop-shadow(0 0 12px rgba(155, 28, 255, 0.75)) drop-shadow(0 0 6px rgba(255, 241, 179, 0.45));
}

.trigger-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin-bottom: 16px;
}

.trigger-icon {
    font-size: 0.95rem;
}

.trigger-blur-content {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.blurred-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.4);
    filter: blur(5.5px);
    user-select: none;
    transition: filter 0.8s ease;
}

.blurred-text.unlocked {
    filter: blur(0);
    color: rgba(255, 255, 255, 0.88);
}

.trigger-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(4, 3, 42, 0.45);
    transition: opacity var(--transition-fast);
}

.trigger-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

.btn-unlock {
    background: linear-gradient(135deg, rgba(155, 28, 255, 0.9) 0%, rgba(118, 18, 201, 0.9) 100%);
    border: 1px solid var(--gold-soft);
    color: var(--pure-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(155, 28, 255, 0.4);
    transition: var(--transition-fast);
    cursor: pointer;
}

.btn-unlock:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 20px rgba(155, 28, 255, 0.6);
}

.result-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 576px) {
    .result-actions {
        flex-direction: row;
        gap: 16px;
    }
}

/* ==========================================================================
   10. SEÇÃO DA LIVE DIÁRIA (LANDING CARD EM DUAS COLUNAS NO DESKTOP)
   ========================================================================== */
.live-player-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
}

/* Duas colunas lado a lado no desktop */
@media (min-width: 992px) {
    .live-player-card {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
    }
}

.live-video-mock {
    width: 100%;
    aspect-ratio: 4/5;
    background: #020112 url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%239B1CFF" stroke-width="0.5" opacity="0.15"/></svg>') repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

@media (min-width: 992px) {
    .live-video-mock {
        aspect-ratio: 16/11;
        height: 100%;
    }
}

.live-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(4,3,42,0.6) 0%, rgba(4,3,42,0) 35%, rgba(4,3,42,0) 65%, rgba(4,3,42,0.9) 100%);
    pointer-events: none;
    z-index: 1;
}

.live-header-info {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.badge-live-neon {
    background: #ff0055;
    color: var(--pure-white);
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 0 12px #ff0055;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--pure-white);
    border-radius: 50%;
    animation: blinkDot 0.8s infinite alternate;
}

@keyframes blinkDot {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

.live-viewers {
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.68rem;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
}

.mystic-video-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    background: radial-gradient(circle, rgba(155, 28, 255, 0.35) 0%, rgba(0,0,0,0) 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 2;
}

.mystic-symbol-pulse {
    font-size: 3rem;
    animation: scalePulse 3s infinite ease-in-out;
}

@keyframes scalePulse {
    0% { transform: scale(0.9); opacity: 0.8; filter: drop-shadow(0 0 5px var(--primary-purple)); }
    100% { transform: scale(1.1); opacity: 1; filter: drop-shadow(0 0 20px var(--primary-purple)); }
}

.live-chat-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-height: 135px;
    overflow: hidden;
}

.live-chat-messages {
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: flex-end;
}

.chat-msg {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    max-width: 90%;
}

.chat-user {
    font-weight: 700;
    color: var(--gold-soft);
    margin-right: 4px;
}

.chat-text {
    color: rgba(255, 255, 255, 0.95);
}

.live-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 992px) {
    .live-details {
        padding: 40px;
        text-align: left;
    }
}

.live-title {
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold-soft);
    margin-bottom: 12px;
}

.live-description {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.live-cta-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 576px) {
    .live-cta-box {
        flex-direction: row;
        width: 100%;
    }
    .live-cta-box a, .live-cta-box button {
        flex: 1;
    }
}

/* ==========================================================================
   11. DEPOIMENTOS (CARROSSEL NO MOBILE / GRID DE 3 COLUNAS NO DESKTOP)
   ========================================================================== */
.testimonials-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    scrollbar-width: none;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

/* Comportamento de Carrossel no Mobile */
.testimonial-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.testimonial-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-2px);
}

/* GRID ESTÁTICO DE 3 COLUNAS NO DESKTOP */
@media (min-width: 992px) {
    .testimonials-carousel {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        overflow-x: visible;
        scroll-snap-type: none;
    }
    
    .testimonial-card {
        flex: none;
    }
    
    /* Ocultar o 4º e 5º card no grid simples de 3 no desktop */
    .testimonial-card:nth-child(4),
    .testimonial-card:nth-child(5) {
        display: none;
    }
}

@media (min-width: 1400px) {
    .testimonials-carousel {
        grid-template-columns: repeat(3, 1fr);
    }
    .testimonial-card:nth-child(4),
    .testimonial-card:nth-child(5) {
        display: none;
    }
}

.testimonial-rating {
    color: var(--gold-soft);
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

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

.text-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--avatar-color);
    color: var(--pure-white);
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 0 10px var(--avatar-color);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 12px rgba(155, 28, 255, 0.45);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:nth-child(2) .testimonial-avatar {
    object-position: center 20%;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.08);
    border-color: var(--gold-soft);
    box-shadow: 0 0 15px rgba(255, 241, 179, 0.6);
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 700;
}

.user-verified {
    font-size: 0.65rem;
    color: #00e676;
    font-weight: 500;
}

/* Ocultar Dots em Desktops */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
}

@media (min-width: 992px) {
    .carousel-dots {
        display: none;
    }
}

.carousel-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transition: var(--transition-fast);
}

.carousel-dots .dot.active {
    background: var(--gold-soft);
    width: 14px;
    border-radius: 3px;
}

/* ==========================================================================
   12. AGENDA PREMIUM (CALENDÁRIO LADO A LADO NO DESKTOP)
   ========================================================================== */
.booking-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Grid de duas colunas no desktop */
@media (min-width: 768px) {
    .booking-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: start;
        gap: 40px;
    }
}

.booking-left-column, .booking-right-column {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.input-label {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

/* Tipo de Consulta */
.service-selector {
    margin-bottom: 24px;
}

.service-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-option {
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.01);
    transition: var(--transition-fast);
    cursor: pointer;
}

.service-option:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.service-option.active {
    border-color: var(--primary-purple);
    background: rgba(155, 28, 255, 0.08);
    box-shadow: 0 0 15px rgba(155, 28, 255, 0.15);
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.service-name {
    font-size: 0.9rem;
    font-weight: 600;
}

.service-duration {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
}

.service-price {
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-soft);
}

/* Calendário */
.calendar-wrapper {
    width: 100%;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding: 0 4px;
}

.calendar-header h4 {
    font-family: var(--font-ui);
    font-size: 0.95rem;
    font-weight: 700;
}

.calendar-nav-buttons {
    display: flex;
    gap: 12px;
}

.calendar-nav-buttons button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: var(--transition-fast);
}

.calendar-nav-buttons button:hover {
    background: rgba(255, 255, 255, 0.15);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-family: var(--font-ui);
    font-size: 0.68rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition-fast);
    cursor: pointer;
    position: relative;
}

.cal-day:hover:not(.disabled) {
    background: rgba(255, 255, 255, 0.08);
}

.cal-day.disabled {
    color: rgba(255, 255, 255, 0.15);
    pointer-events: none;
}

.cal-day.active {
    background: var(--primary-purple);
    color: var(--pure-white);
    font-weight: 700;
    box-shadow: 0 0 12px rgba(155, 28, 255, 0.6);
}

.cal-day.has-slots::after {
    content: '';
    position: absolute;
    bottom: 4px;
    width: 3.5px;
    height: 3.5px;
    border-radius: 50%;
    background-color: var(--gold-soft);
}

.cal-day.active.has-slots::after {
    background-color: var(--pure-white);
}

/* Horários */
.time-selector {
    margin-bottom: 24px;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

@media (min-width: 576px) and (max-width: 767px) {
    .time-slots {
        grid-template-columns: repeat(6, 1fr);
    }
}

.time-slot {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 12px 0;
    text-align: center;
    font-size: 0.75rem;
    font-family: var(--font-ui);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.01);
    transition: var(--transition-fast);
    cursor: pointer;
}

.time-slot:hover:not(.disabled) {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
}

.time-slot.active {
    background: var(--gold-soft);
    color: var(--pure-black);
    border-color: var(--gold-soft);
    font-weight: 700;
    box-shadow: 0 0 10px rgba(255, 241, 179, 0.4);
}

.time-slot.disabled {
    opacity: 0.2;
    pointer-events: none;
}

/* Resumo do Agendamento */
.booking-summary {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
}

.summary-row strong {
    color: var(--pure-white);
    font-weight: 600;
}

.summary-total {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 10px;
    margin-top: 4px;
    font-size: 0.88rem;
}

.summary-total strong {
    color: var(--gold-soft);
    font-size: 1.1rem;
    font-family: var(--font-ui);
    font-weight: 700;
}

.booking-note {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
    margin-top: 12px;
}

/* ==========================================================================
   13. FAQ ACCORDION (LAYOUT GRID NO DESKTOP)
   ========================================================================== */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

/* Divisão de duas colunas lado a lado no desktop */
@media (min-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr 1.6fr;
        gap: 64px;
        align-items: start;
    }
    
    .faq-info-column {
        text-align: left;
        position: sticky;
        top: 120px;
    }
    
    .faq-info-column .section-title {
        text-align: left;
    }
    
    .faq-info-column .section-subtitle {
        margin-left: 0;
    }
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.faq-item {
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    background: var(--glass-bg);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-trigger {
    width: 100%;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.faq-icon {
    font-size: 1.15rem;
    color: var(--gold-soft);
    transition: transform var(--transition-medium);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium) ease-out;
}

.faq-content p {
    padding: 0 24px 24px 24px;
    font-size: 0.82rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    text-align: left;
}

.faq-item.active {
    border-color: rgba(155, 28, 255, 0.25);
    background: rgba(155, 28, 255, 0.03);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary-purple);
}

/* ==========================================================================
   14. FOOTER & TOAST SYSTEM
   ========================================================================== */
.app-footer {
    padding: 60px 20px 32px 20px;
    background: linear-gradient(to bottom, rgba(4,3,42,0.9) 0%, var(--pure-black) 100%);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .app-footer {
        padding: 80px 20px 40px 20px;
    }
}

.footer-glow {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 150px;
    background: radial-gradient(circle, rgba(155, 28, 255, 0.12) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.footer-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-family: var(--font-title);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold-soft);
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-links a {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold-soft);
}

.footer-disclaimer {
    font-size: 0.65rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.35);
    text-align: justify;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-disclaimer .copyright {
    text-align: center;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 20px;
}

/* SISTEMA DE TOAST (iOS style notifications) */
.toast-container {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 350px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: rgba(15, 12, 58, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 241, 179, 0.15);
    color: var(--pure-white);
    padding: 14px 20px;
    border-radius: 16px;
    font-size: 0.78rem;
    font-family: var(--font-ui);
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35), 0 0 10px rgba(155, 28, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(-20px);
    animation: toastIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes toastIn {
    100% { opacity: 1; transform: translateY(0); }
}

.toast.hide {
    animation: toastOut 0.3s cubic-bezier(0.4, 0, 1, 1) forwards;
}

@keyframes toastOut {
    100% { opacity: 0; transform: scale(0.9) translateY(-20px); }
}

.toast-icon {
    font-size: 0.95rem;
    color: var(--gold-soft);
}

/* ==========================================================================
   15. SISTEMA DE JORNADA E PONTES DE ESCUTA (MINIMALISTA)
   ========================================================================== */
.plans-section {
    background: linear-gradient(to bottom, rgba(4, 3, 42, 0.9) 0%, var(--dark-blue) 100%);
    padding: 60px 0;
    text-align: center;
}

.plans-section-minimalist {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 20px;
}

.minimalist-plan-card {
    background: rgba(12, 8, 32, 0.45);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 241, 179, 0.08);
    border-radius: 24px;
    padding: 36px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(155, 28, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    transition: border-color var(--transition-medium), box-shadow var(--transition-medium);
}

.minimalist-plan-card:hover {
    border-color: rgba(255, 241, 179, 0.15);
    box-shadow: 0 15px 35px rgba(155, 28, 255, 0.1), 0 0 30px rgba(255, 241, 179, 0.08);
}

.plan-selector-dots {
    display: flex;
    justify-content: center;
    gap: 14px;
    align-items: center;
}

.plan-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.plan-dot:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.2);
}

.plan-dot.active {
    background: var(--gold-soft);
    border-color: var(--gold-soft);
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--gold-soft);
}

.plan-dot::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: rgba(10, 8, 30, 0.95);
    border: 1px solid rgba(255, 241, 179, 0.15);
    color: var(--pure-white);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.65rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    font-family: var(--font-ui);
    letter-spacing: 0.05em;
}

.plan-dot:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-10px);
}

.plan-dynamic-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: opacity 0.3s ease;
    width: 100%;
}

.plan-dynamic-content.fade-out {
    opacity: 0;
}

.mini-badge {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary-purple);
    text-shadow: 0 0 10px rgba(155, 28, 255, 0.3);
}

.plan-minimal-title {
    font-family: var(--font-title);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--gold-soft);
    margin: 0;
}

.plan-minimal-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    max-width: 580px;
    margin: 0;
    font-style: italic;
}

.plan-minimal-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
    width: 100%;
}

.plan-minimal-price {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.05em;
}

.btn-plan-minimal {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--pure-white);
    padding: 12px 36px;
    border-radius: 12px;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-plan-minimal:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold-soft);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 241, 179, 0.1);
}

@media (min-width: 768px) {
    .minimalist-plan-card {
        flex-direction: row;
        align-items: center;
        padding: 44px 36px;
        gap: 36px;
    }
    
    .plan-selector-dots {
        flex-direction: column;
        order: 2;
        padding-left: 20px;
        border-left: 1px solid rgba(255, 255, 255, 0.06);
    }
    
    .plan-dynamic-content {
        flex: 1;
        text-align: left;
        align-items: flex-start;
    }
    
    .plan-minimal-footer {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        margin-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 20px;
    }
    
    .plan-dot::after {
        left: auto;
        right: 100%;
        bottom: auto;
        top: 50%;
        transform: translateY(-50%) translateX(-6px);
    }
    
    .plan-dot:hover::after {
        transform: translateY(-50%) translateX(-10px);
    }
}

/* ==========================================================================
   16. CTA FINAL PREMIUM (CONVERSÃO FORTE)
   ========================================================================== */
.cta-final-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--dark-blue) 0%, #020112 100%);
    text-align: center;
}

.cta-final-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(155, 28, 255, 0.15) 0%, rgba(0,0,0,0) 70%);
    filter: blur(50px);
    pointer-events: none;
}

.cta-final-container {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-final-title {
    font-family: var(--font-title);
    font-size: 2.2rem;
    line-height: 1.25;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--pure-white);
}

@media (min-width: 768px) {
    .cta-final-title {
        font-size: 3rem;
    }
}

.cta-final-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
    margin-bottom: 40px;
}

.cta-final-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 320px;
}

@media (min-width: 576px) {
    .cta-final-actions {
        flex-direction: row;
        max-width: none;
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Botão do WhatsApp Especial */
.btn-whatsapp-support {
    background: rgba(0, 230, 118, 0.08);
    border: 1.5px solid rgba(0, 230, 118, 0.25);
    color: #00e676;
    padding: 14px 28px;
    border-radius: 12px;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.1);
}

.btn-whatsapp-support:hover {
    background: rgba(0, 230, 118, 0.15);
    border-color: #00e676;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 230, 118, 0.25);
}

.wa-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   ESTILOS PREMIUM - ÍCONES DO SITE
   ========================================================================== */

/* Ícones do Menu Lateral (Gaveta iOS) */
.menu-icon {
    width: 26px;
    height: 26px;
    object-fit: contain;
    margin-right: 14px;
    filter: drop-shadow(0 0 5px rgba(155, 28, 255, 0.45));
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    vertical-align: middle;
}

.menu-item:hover .menu-icon {
    filter: drop-shadow(0 0 10px var(--gold-soft)) brightness(1.2);
    transform: scale(1.15) rotate(5deg);
}

.menu-item {
    display: flex;
    align-items: center;
}

/* Ícones em Botões (CTA) */
.btn-icon-inline {
    width: 18px;
    height: 18px;
    object-fit: contain;
    margin-right: 8px;
    vertical-align: middle;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.4));
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-cta-header:hover .btn-icon-inline,
.btn-cta-overlay:hover .btn-icon-inline {
    transform: scale(1.15) rotate(-5deg);
}

/* Cabeçalhos de Seção com Ícones Premium */
.section-icon-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.section-icon-container.left-align {
    margin-left: 0;
    margin-right: 0;
    justify-content: flex-start;
}

.section-icon-glow {
    position: absolute;
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(155, 28, 255, 0.4) 0%, rgba(255, 241, 179, 0.08) 55%, transparent 70%);
    filter: blur(12px);
    pointer-events: none;
    z-index: 1;
}

.section-icon-img {
    width: 85px;
    height: 85px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 8px 16px rgba(155, 28, 255, 0.4)) drop-shadow(0 2px 4px rgba(255, 241, 179, 0.25));
    animation: floatIcon 4s infinite alternate ease-in-out;
}

/* Ícones nos Blocos de Leitura do Oráculo */
.reading-block-icon {
    width: 76px;
    height: 76px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 0 12px rgba(155, 28, 255, 0.55)) drop-shadow(0 0 5px rgba(255, 241, 179, 0.35));
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reading-block:hover .reading-block-icon {
    transform: scale(1.08) rotate(3deg);
    filter: drop-shadow(0 0 18px rgba(155, 28, 255, 0.75)) drop-shadow(0 0 8px rgba(255, 241, 179, 0.45));
}

/* Ícone de Status da Live (Mockup) */
.live-status-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
    position: relative;
    z-index: 5;
    filter: drop-shadow(0 0 15px rgba(255, 0, 85, 0.6)) drop-shadow(0 0 5px rgba(155, 28, 255, 0.4));
    animation: pulseIcon 3s infinite ease-in-out;
}

/* Bola de Cristal Flutuante no Hero */
.floating-crystal-ball {
    position: absolute;
    right: 12%;
    top: 15%;
    width: 175px;
    height: 175px;
    z-index: 15;
    cursor: pointer;
    display: block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.crystal-ball-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 25px rgba(155, 28, 255, 0.65)) drop-shadow(0 0 10px rgba(255, 241, 179, 0.4));
    animation: floatCrystalBall 6s infinite alternate ease-in-out;
    transition: filter 0.4s ease;
}

.floating-crystal-ball:hover {
    transform: scale(1.16) translateY(-8px);
}

.floating-crystal-ball:hover .crystal-ball-img {
    filter: drop-shadow(0 0 40px rgba(0, 241, 179, 0.95)) drop-shadow(0 0 15px rgba(155, 28, 255, 0.7));
}

/* Tooltip da Bola de Cristal */
.crystal-ball-tooltip {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(4, 3, 42, 0.92);
    border: 1px solid var(--gold-soft);
    color: var(--gold-soft);
    padding: 6px 14px;
    border-radius: 12px;
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 15px rgba(155, 28, 255, 0.2);
}

.floating-crystal-ball:hover .crystal-ball-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 991px) {
    .floating-crystal-ball {
        width: 105px;
        height: 105px;
        right: 8%;
        top: 18%;
    }
    .crystal-ball-tooltip {
        top: -30px;
        font-size: 0.65rem;
        padding: 4px 10px;
    }
}

/* Barra de Pesquisa Premium no FAQ */
.faq-search-wrapper {
    position: relative;
    margin-top: 24px;
    width: 100%;
    max-width: 320px;
}

.faq-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0.7) drop-shadow(0 0 2px rgba(155, 28, 255, 0.3));
    pointer-events: none;
    transition: all 0.3s ease;
}

#faqSearchInput {
    width: 100%;
    padding: 12px 16px 12px 42px;
    border-radius: 20px;
    border: 1.5px solid rgba(255, 241, 179, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: var(--pure-white);
    font-family: var(--font-ui);
    font-size: 0.85rem;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

#faqSearchInput::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

#faqSearchInput:focus {
    border-color: var(--primary-purple);
    background: rgba(155, 28, 255, 0.05);
    box-shadow: 0 0 15px rgba(155, 28, 255, 0.25), inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

#faqSearchInput:focus + .faq-search-icon {
    filter: brightness(1.0) drop-shadow(0 0 5px var(--primary-purple));
}

/* ANIMAÇÕES CSS */
@keyframes floatIcon {
    0% { transform: translateY(0); }
    100% { transform: translateY(-6px); }
}

@keyframes floatCrystalBall {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(3deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@keyframes pulseIcon {
    0% {
        transform: scale(0.95);
        filter: drop-shadow(0 0 10px rgba(255, 0, 85, 0.5));
    }
    50% {
        transform: scale(1.06);
        filter: drop-shadow(0 0 22px rgba(255, 0, 85, 0.75)) drop-shadow(0 0 8px rgba(155, 28, 255, 0.55));
    }
    100% {
        transform: scale(0.95);
        filter: drop-shadow(0 0 10px rgba(255, 0, 85, 0.5));
    }
}

/* Animação de Destaque no Botão de Agendamento */
.glow-pulse-highlight {
    animation: buttonHighlightGlow 2.5s ease-in-out !important;
}

@keyframes buttonHighlightGlow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(155, 28, 255, 0.4);
        border-color: rgba(255, 241, 179, 0.25);
    }
    30%, 70% {
        transform: scale(1.04);
        box-shadow: 0 0 35px rgba(0, 241, 179, 0.95), 0 0 15px rgba(155, 28, 255, 0.8);
        border-color: var(--gold-soft);
    }
}

/* ==========================================================================
   ESTILOS DO RITUAL DIÁRIO DE PRESENÇA
   ========================================================================== */

.daily-ritual-section {
    position: relative;
    padding: 90px 0;
    background: radial-gradient(circle at 50% 30%, rgba(155, 28, 255, 0.08) 0%, transparent 70%);
}

.streak-badge-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(155, 28, 255, 0.12);
    border: 1px solid rgba(255, 241, 179, 0.2);
    color: var(--gold-soft);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    box-shadow: 0 0 15px rgba(155, 28, 255, 0.2);
}

.daily-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .daily-grid {
        grid-template-columns: 1fr;
    }
}

.daily-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 28px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform var(--transition-medium), border-color var(--transition-medium), box-shadow var(--transition-medium);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.daily-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(155, 28, 255, 0.15);
}

.daily-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.daily-tag {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--gold-soft);
    background: rgba(255, 241, 179, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 241, 179, 0.15);
}

.daily-date-pill, .daily-hint {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.daily-card-title {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 6px;
}

.daily-time-subtitle, .daily-card-sub {
    font-size: 0.9rem;
    color: rgba(255, 241, 179, 0.8);
    margin-bottom: 14px;
}

.daily-card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 18px;
    flex-grow: 1;
}

.daily-quote-box {
    font-family: var(--font-title);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--gold-soft);
    padding: 12px 16px;
    background: rgba(155, 28, 255, 0.08);
    border-left: 3px solid var(--primary-purple);
    border-radius: 0 10px 10px 0;
    margin-bottom: 20px;
}

.daily-theme-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.theme-pill-item {
    font-size: 0.82rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.theme-pill-item strong {
    color: #fff;
    margin-left: 4px;
}

/* Seletor de Signos */
.signs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

@media (max-width: 480px) {
    .signs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sign-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 8px 4px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition-fast);
    text-align: center;
}

.sign-btn:hover {
    background: rgba(155, 28, 255, 0.2);
    border-color: rgba(255, 241, 179, 0.4);
    color: #fff;
}

.sign-btn.active {
    background: linear-gradient(135deg, rgba(155, 28, 255, 0.4) 0%, rgba(4, 3, 42, 0.8) 100%);
    border-color: var(--gold-soft);
    color: var(--gold-soft);
    box-shadow: 0 0 12px rgba(155, 28, 255, 0.3);
    font-weight: 600;
}

.horoscope-content-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 16px;
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    min-height: 100px;
}

/* Pergunta e Micro-Diário */
.question-text {
    font-family: var(--font-title);
    font-size: 1.15rem;
    line-height: 1.5;
    color: var(--gold-soft);
    margin-bottom: 20px;
    background: rgba(155, 28, 255, 0.08);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(155, 28, 255, 0.2);
}

.micro-journal-wrapper {
    margin-top: auto;
}

.journal-label {
    display: block;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.journal-textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 12px;
    color: #fff;
    font-family: var(--font-text);
    font-size: 0.9rem;
    resize: none;
    outline: none;
    transition: border-color var(--transition-fast);
}

.journal-textarea:focus {
    border-color: var(--gold-soft);
    box-shadow: 0 0 10px rgba(155, 28, 255, 0.2);
}

.journal-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.btn-journal-save {
    background: linear-gradient(135deg, var(--primary-purple) 0%, #6805c3 100%);
    color: #fff;
    border-radius: 10px;
    padding: 8px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-journal-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(155, 28, 255, 0.4);
}

.journal-status {
    font-size: 0.8rem;
    color: var(--gold-soft);
}

/* Prática de 2 Minutos (Breathwork) */
.practice-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
}

.breathwork-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px 0 20px;
}

.breath-circle-outer {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 241, 179, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.breath-circle-inner {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-purple) 0%, rgba(4, 3, 42, 0.9) 100%);
    box-shadow: 0 0 25px var(--purple-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 4s ease-in-out, box-shadow 4s ease-in-out;
}

.breath-circle-inner.inhale {
    transform: scale(1.3);
    box-shadow: 0 0 45px rgba(255, 241, 179, 0.6), 0 0 25px var(--primary-purple);
}

.breath-circle-inner.exhale {
    transform: scale(0.85);
    box-shadow: 0 0 15px rgba(155, 28, 255, 0.3);
}

.breath-phase-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.breath-timer-text {
    font-family: var(--font-ui);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-soft);
    margin-top: 14px;
}

.btn-breath-toggle {
    margin-top: 12px;
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid var(--gold-soft);
    color: var(--gold-soft);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.btn-breath-toggle:hover {
    background: var(--gold-soft);
    color: var(--dark-blue);
    box-shadow: 0 0 15px rgba(255, 241, 179, 0.4);
}

.practice-footer-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.practice-footer-status.completed {
    color: var(--gold-soft);
}

.practice-check-icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.practice-footer-status.completed .practice-check-icon {
    background: var(--gold-soft);
    color: var(--dark-blue);
    font-weight: bold;
}

/* ==========================================================================
   ESTILOS DAS SESSÕES MINIMALISTAS (CARD ÚNICO COM SELETOR POR ÍCONES)
   ========================================================================== */

.minimalist-plans-wrapper {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    align-items: stretch;
}

@media (max-width: 900px) {
    .minimalist-plans-wrapper {
        flex-direction: column;
    }
}

.plan-icon-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 280px;
}

@media (max-width: 900px) {
    .plan-icon-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        min-width: 100%;
    }
}

@media (max-width: 500px) {
    .plan-icon-nav {
        grid-template-columns: 1fr;
    }
}

.plan-icon-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
    transition: all var(--transition-fast);
    backdrop-filter: blur(12px);
    cursor: pointer;
}

.plan-icon-btn:hover {
    background: rgba(155, 28, 255, 0.15);
    border-color: rgba(255, 241, 179, 0.3);
    color: #fff;
}

.plan-icon-btn.active {
    background: linear-gradient(135deg, rgba(155, 28, 255, 0.35) 0%, rgba(4, 3, 42, 0.9) 100%);
    border-color: var(--gold-soft);
    color: #fff;
    box-shadow: 0 0 20px rgba(155, 28, 255, 0.3);
}

.plan-icon-symbol {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    flex-shrink: 0;
}

.plan-icon-btn.active .plan-icon-symbol {
    background: rgba(255, 241, 179, 0.15);
    box-shadow: 0 0 10px rgba(255, 241, 179, 0.3);
}

.plan-icon-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
}

.plan-icon-text small {
    display: block;
    font-size: 0.78rem;
    color: rgba(255, 241, 179, 0.7);
    margin-top: 2px;
}

/* Card Único Centrado */
.single-plan-card-container {
    flex-grow: 1;
}

.single-plan-card {
    background: linear-gradient(145deg, rgba(155, 28, 255, 0.18) 0%, var(--glass-bg) 100%);
    border: 1.5px solid var(--gold-soft);
    border-radius: 24px;
    padding: 36px 32px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(155, 28, 255, 0.25);
    transition: opacity 0.18s ease, transform 0.18s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.single-plan-card.fade-out {
    opacity: 0;
    transform: translateY(6px);
}

.plan-card-top {
    margin-bottom: 24px;
}

.plan-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-soft);
    background: rgba(255, 241, 179, 0.1);
    padding: 4px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 241, 179, 0.2);
    margin-bottom: 14px;
}

.plan-title {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
}

.plan-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.plan-card-body {
    margin-bottom: 28px;
    flex-grow: 1;
}

.plan-features-title {
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 241, 179, 0.9);
    margin-bottom: 14px;
}

.plan-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-features-list li {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.plan-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 20px;
    flex-wrap: wrap;
}

.plan-price-display {
    display: flex;
    flex-direction: column;
}

.plan-price-val {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.plan-price-sub {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

.btn-plan-action {
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
}

/* ==========================================================================
   OTIMIZAÇÕES EXCLUSIVAS DE RESPONSIVIDADE MOBILE (SMARTPHONES & TABLETS)
   ========================================================================== */

@media (max-width: 768px) {
    /* Hero Buttons */
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    /* Ritual Diário Section */
    .daily-ritual-section {
        padding: 60px 0;
    }

    .daily-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 24px;
    }

    .daily-card {
        padding: 22px 18px;
        border-radius: 16px;
    }

    .daily-card-title {
        font-size: 1.3rem;
    }

    .signs-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .sign-btn {
        padding: 8px 2px;
        font-size: 0.72rem;
    }

    .breath-circle-outer {
        width: 120px;
        height: 120px;
    }

    .breath-circle-inner {
        width: 85px;
        height: 85px;
    }

    /* Pacotes e Sessões (Card Único + Ícones) */
    .plans-section {
        padding: 60px 0;
    }

    .minimalist-plans-wrapper {
        flex-direction: column;
        gap: 20px;
        margin-top: 24px;
    }

    .plan-icon-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        min-width: 100%;
    }

    .plan-icon-btn {
        padding: 12px 14px;
        border-radius: 14px;
        gap: 10px;
    }

    .plan-icon-symbol {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
        border-radius: 10px;
    }

    .plan-icon-text strong {
        font-size: 0.85rem;
    }

    .plan-icon-text small {
        font-size: 0.72rem;
    }

    .single-plan-card {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .plan-title {
        font-size: 1.45rem;
    }

    .plan-desc {
        font-size: 0.88rem;
    }

    .plan-features-list li {
        font-size: 0.85rem;
    }

    .plan-card-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding-top: 20px;
    }

    .plan-price-display {
        align-items: center;
        text-align: center;
    }

    .plan-price-val {
        font-size: 2rem;
    }

    .btn-plan-action {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .plan-icon-nav {
        grid-template-columns: 1fr;
    }

    .signs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}





