/* -------------------------------------------------------------
   SISTEMA DE DESIGN CÓSMICO & VIBRACIONAL - MÉTODO FREE SOUL
   ------------------------------------------------------------- */

/* Variáveis e Configuração de Tokens de Design */
:root {
    /* Cores Cósmicas Orgânicas e Humanas */
    --color-bg-dark: #060508;
    --color-bg-deep: #0a080f;
    --color-primary-purple: #160e26;
    --color-primary-violet: #472b78;
    --color-accent-gold: #e2b24d; /* Dourado mel quente e orgânico */
    --color-accent-gold-glow: rgba(226, 178, 77, 0.25); /* Brilho suave */
    --color-accent-cyan: #40c4b4; /* Ciano suave e natural, não neon */
    --color-accent-cyan-glow: rgba(64, 196, 180, 0.18); /* Brilho de energia suave */
    --color-text-light: #f6f5f8;
    --color-text-muted: #afafbe;
    
    /* Efeitos de Sombras e Glows */
    --glow-gold: 0 0 15px var(--color-accent-gold-glow);
    --glow-cyan: 0 0 12px var(--color-accent-cyan-glow);
    --glass-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.45);
    
    /* Glassmorphism Defaults */
    --glass-bg: rgba(22, 14, 38, 0.45);
    --glass-border: rgba(255, 255, 255, 0.04);
    --glass-blur: backdrop-filter: blur(20px);
    
    /* Transições Suaves */
    --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset de Estilos Padrão */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    line-height: 1.6;
    position: relative;
}

/* Canvas de Partículas em Segundo Plano */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background-color: var(--color-bg-dark);
}

main {
    position: relative;
    z-index: 1;
}

/* -------------------------------------------------------------
   CUSTOM SCROLLBAR
   ------------------------------------------------------------- */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-primary-purple), var(--color-accent-gold));
    border-radius: 8px;
    border: 2px solid var(--color-bg-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--color-primary-violet), var(--color-accent-cyan));
}

/* -------------------------------------------------------------
   TIPOGRAFIA & TÍTULOS ELEGANTES
   ------------------------------------------------------------- */
h1, h2, h3, h4, .serif-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: var(--color-text-light);
    line-height: 1.25;
}

.serif-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.75rem;
    line-height: 1.4;
    color: var(--color-text-light);
}

p {
    font-weight: 300;
    letter-spacing: 0.2px;
}

.highlight-gold {
    color: var(--color-accent-gold);
    text-shadow: var(--glow-gold);
}

.highlight-cyan {
    color: var(--color-accent-cyan);
    text-shadow: var(--glow-cyan);
}

.text-glow-gold {
    color: var(--color-accent-gold);
    text-shadow: var(--glow-gold);
}

.text-glow-cyan {
    color: var(--color-accent-cyan);
    text-shadow: var(--glow-cyan);
}

.text-muted {
    color: var(--color-text-muted) !important;
}

/* -------------------------------------------------------------
   UTILITIES
   ------------------------------------------------------------- */
.text-center { text-align: center; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3.5rem; }
.my-5 { margin-top: 2rem; margin-bottom: 2rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2.5rem; }
.mt-6 { margin-top: 3.5rem; }
.pt-4 { padding-top: 1.5rem; }
.w-100 { width: 100%; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-md { max-width: 32rem; }
.max-w-xl { max-width: 48rem; }
.border-top { border-top: 1px solid rgba(255, 255, 255, 0.08); }

/* Grid responsivo */
.grid-layout {
    display: grid;
    gap: 2rem;
}

.cols-2 { grid-template-columns: 1fr; }
.cols-3 { grid-template-columns: 1fr; }
.align-center { align-items: center; }
.gap-lg { gap: 3rem; }

@media (min-width: 768px) {
    .cols-2 { grid-template-columns: repeat(2, 1fr); }
    .cols-3 { grid-template-columns: repeat(3, 1fr); }
}

/* -------------------------------------------------------------
   BOTÕES & AÇÕES (CTA)
   ------------------------------------------------------------- */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition-normal);
}

/* CTA Dourado Principal */
.btn-cta:not(.btn-secondary):not(.btn-whatsapp) {
    background: linear-gradient(135deg, var(--color-accent-gold) 0%, #b8860b 100%);
    color: var(--color-bg-dark);
    box-shadow: 0 4px 15px rgba(226, 178, 77, 0.35);
}

.btn-cta:not(.btn-secondary):not(.btn-whatsapp):hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(226, 178, 77, 0.5), var(--glow-gold);
}

.btn-cta:not(.btn-secondary):not(.btn-whatsapp):active {
    transform: translateY(-1px);
}

/* CTA Secundário Ciano */
.btn-cta.btn-secondary {
    background: linear-gradient(135deg, var(--color-accent-cyan) 0%, #00bfa5 100%);
    color: var(--color-bg-dark);
    box-shadow: 0 4px 15px rgba(64, 196, 180, 0.3);
}

.btn-cta.btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(64, 196, 180, 0.5), var(--glow-cyan);
}

/* CTA Whatsapp Adriano */
.btn-cta.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    gap: 0.5rem;
}

.btn-cta.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.15rem;
    font-weight: 600;
}

.btn-underlined {
    display: inline-block;
    color: var(--color-accent-gold);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--color-accent-gold);
    transition: var(--transition-normal);
    text-shadow: var(--glow-gold);
}

.btn-underlined:hover {
    color: var(--color-accent-cyan);
    border-color: var(--color-accent-cyan);
    text-shadow: var(--glow-cyan);
    padding-left: 8px;
    padding-right: 8px;
}

/* Ícones nos CTAs */
.icon-arrow {
    width: 20px;
    height: 20px;
    margin-left: 0.5rem;
    transition: var(--transition-fast);
}

.btn-cta:hover .icon-arrow {
    transform: translateX(5px);
}

.icon-whatsapp {
    width: 22px;
    height: 22px;
}

/* Micro-animação Pulsante */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(226, 178, 77, 0.6);
    }
    70% {
        box-shadow: 0 0 25px 8px rgba(226, 178, 77, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(226, 178, 77, 0);
    }
}

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

/* -------------------------------------------------------------
   BARRA DE NAVEGAÇÃO
   ------------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(7, 6, 9, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(7, 6, 9, 0.9);
    padding: 0.5rem 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-text-light);
    letter-spacing: -0.5px;
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--color-accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

.nav-menu {
    display: none;
    gap: 2.5rem;
}

.nav-item {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: var(--transition-fast);
}

.nav-item:hover {
    color: var(--color-accent-gold);
    text-shadow: var(--glow-gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Controle de Áudio Vibracional */
.audio-toggle {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition-normal);
}

.audio-toggle:hover {
    background: rgba(226, 178, 77, 0.1);
    border-color: var(--color-accent-gold);
    color: var(--color-accent-gold);
}

.audio-toggle.active {
    background: rgba(64, 196, 180, 0.1);
    border-color: var(--color-accent-cyan);
    color: var(--color-accent-cyan);
}

.icon-audio {
    width: 18px;
    height: 18px;
}

.audio-status-text {
    font-size: 0.8rem;
    font-weight: 500;
}

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

/* -------------------------------------------------------------
   SLIDE-SECTION & STORYTELLING LAYOUT
   ------------------------------------------------------------- */
.slide-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 7rem 2rem 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: radial-gradient(circle at center, rgba(6, 5, 8, 0.5) 0%, rgba(6, 5, 8, 0.85) 60%, var(--color-bg-dark) 100%);
    pointer-events: none;
}

.content-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-number {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--color-accent-gold) 0%, var(--color-accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.35;
    margin-bottom: 1rem;
}

.intro-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 30px;
    background: rgba(226, 178, 77, 0.08);
    border: 1px solid rgba(226, 178, 77, 0.2);
    color: var(--color-accent-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 2rem;
}

.body-desc {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--color-text-muted);
}

.lead-text {
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--color-text-light);
}

/* -------------------------------------------------------------
   GLASSMORPHISM - CARDS PREMIUM
   ------------------------------------------------------------- */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    transition: var(--transition-normal);
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.card-glow-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    border: 1.5px solid transparent;
    background: linear-gradient(135deg, rgba(226, 178, 77, 0.25), transparent 40%, rgba(64, 196, 180, 0.25)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
}

/* Esferas de Energia Flutuante dentro do Card */
.energy-glow-sphere {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(226, 178, 77, 0.08) 0%, transparent 70%);
    top: -50px;
    right: -50px;
    pointer-events: none;
    z-index: 0;
}

/* -------------------------------------------------------------
   SLIDE 1: HERO
   ------------------------------------------------------------- */
.section-hero {
    background: linear-gradient(rgba(6, 5, 8, 0.6), rgba(6, 5, 8, 0.8)), url('assets/hero-bg.png') no-repeat center center;
    background-size: cover;
    padding-top: 10rem;
}

.section-hero .section-overlay {
    background: radial-gradient(circle at center, rgba(6, 5, 8, 0.75) 0%, rgba(6, 5, 8, 0.9) 65%, var(--color-bg-dark) 100%);
}

.hero-title {
    font-size: 2rem;
    max-width: 55rem;
    margin: 0 auto 3rem;
    line-height: 1.4;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

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

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
    z-index: 2;
}

.scroll-dot {
    width: 6px;
    height: 20px;
    border-radius: 3px;
    border: 1px solid var(--color-text-muted);
    position: relative;
}

.scroll-dot::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: var(--color-accent-gold);
    border-radius: 50%;
    left: 0;
    top: 2px;
    animation: scroll-anim 2s infinite;
}

@keyframes scroll-anim {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.3; }
    100% { transform: translateY(0); opacity: 1; }
}

.scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-muted);
}

/* -------------------------------------------------------------
   SLIDE 2: CANSAÇO DA ALMA
   ------------------------------------------------------------- */
.feature-card-large {
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Ondas Vibracionais de Energia */
.vibrational-wave-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 2rem;
    height: 40px;
}

.wave-line {
    width: 4px;
    height: 15px;
    background-color: var(--color-accent-gold);
    border-radius: 2px;
    animation: wave-anim 1.5s infinite ease-in-out;
}

.wave-line:nth-child(2) {
    background-color: var(--color-accent-cyan);
    animation-delay: 0.25s;
    height: 30px;
}

.wave-line:nth-child(3) {
    animation-delay: 0.5s;
}

@keyframes wave-anim {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(2.2); }
}

/* -------------------------------------------------------------
   SLIDE 3: O MÉTODO (PILARES INTERATIVOS)
   ------------------------------------------------------------- */
.interactive-pillar-card {
    cursor: pointer;
    transition: var(--transition-normal);
}

.pillar-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-accent-gold);
    transition: var(--transition-normal);
}

.interactive-pillar-card:hover .pillar-icon, 
.interactive-pillar-card.active .pillar-icon {
    background: rgba(64, 196, 180, 0.1);
    border-color: var(--color-accent-cyan);
    color: var(--color-accent-cyan);
    box-shadow: var(--glow-cyan);
}

.interactive-pillar-card.active {
    background: rgba(30, 19, 51, 0.55);
    border-color: rgba(226, 178, 77, 0.4);
}

.card-glow-cyan-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-accent-cyan), transparent);
    opacity: 0;
    transition: var(--transition-normal);
}

.interactive-pillar-card.active .card-glow-cyan-bottom,
.interactive-pillar-card:hover .card-glow-cyan-bottom {
    opacity: 1;
}

/* -------------------------------------------------------------
   SLIDE 4: SINTONIZADOR DE RESPIRAÇÃO
   ------------------------------------------------------------- */
.breath-widget-container {
    max-width: 420px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* O Círculo de Respiração */
.breath-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(93, 58, 155, 0.1) 0%, rgba(30, 19, 51, 0.4) 100%);
    border: 2px solid rgba(226, 178, 77, 0.3);
    box-shadow: var(--glow-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: transform 4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.5s ease;
}

.breath-inner-circle {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(64, 196, 180, 0.05) 0%, rgba(64, 196, 180, 0.15) 100%);
    border: 1px dashed rgba(64, 196, 180, 0.2);
    z-index: 1;
    transition: transform 4s cubic-bezier(0.4, 0, 0.2, 1);
}

.breath-instruction {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-text-light);
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Estados da Respiração Dinâmica (Via JS) */
.breath-circle.inhale {
    transform: scale(1.3);
    border-color: var(--color-accent-cyan);
    box-shadow: var(--glow-cyan);
}

.breath-circle.inhale .breath-inner-circle {
    transform: scale(1.15);
}

.breath-circle.hold {
    border-color: var(--color-accent-gold);
    box-shadow: var(--glow-gold);
}

.breath-circle.exhale {
    transform: scale(0.9);
    border-color: rgba(93, 58, 155, 0.6);
    box-shadow: 0 0 10px rgba(93, 58, 155, 0.4);
}

.breath-circle.exhale .breath-inner-circle {
    transform: scale(0.85);
}

/* Progresso da Respiração */
.breath-progress-container {
    width: 100%;
}

.progress-bar-title {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.breath-progress-track {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.breath-progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent-cyan), var(--color-accent-gold));
    border-radius: 10px;
    transition: width 0.1s linear;
}

/* -------------------------------------------------------------
   SLIDE 5: DESVELAR MÁSCARAS
   ------------------------------------------------------------- */
.feature-card-interactive {
    height: 380px;
    position: relative;
    cursor: pointer;
}

.profile-mask-overlay, .profile-soul-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 24px;
    transition: transform var(--transition-slow), opacity var(--transition-normal);
}

.profile-soul-overlay {
    opacity: 0;
    transform: rotateY(180deg);
}

.feature-card-interactive.flipped .profile-mask-overlay {
    opacity: 0;
    transform: rotateY(-180deg);
}

.feature-card-interactive.flipped .profile-soul-overlay {
    opacity: 1;
    transform: rotateY(0);
}

.mask-icon, .soul-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 1rem;
}

.mask-traits {
    list-style: none;
    margin-top: 1rem;
}

.mask-traits li {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.mask-traits li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    font-size: 1.2rem;
}

.profile-mask-overlay li::before { color: var(--color-accent-gold); }
.profile-soul-overlay li::before { color: var(--color-accent-cyan); }
.profile-soul-overlay li { color: var(--color-text-light); }

.btn-toggle-mask {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-light);
    cursor: pointer;
    z-index: 10;
}

/* -------------------------------------------------------------
   SLIDE 6: TESTEMUNHOS & CARROSSEL
   ------------------------------------------------------------- */
.carrossel-container {
    margin-top: 3rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonial-card {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-text {
    font-style: italic;
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-bg-dark);
}

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

.user-name {
    font-weight: 500;
    font-size: 0.95rem;
}

.user-status {
    font-size: 0.8rem;
}

/* -------------------------------------------------------------
   SLIDE 7: CRONÔMETRO DE IMPACTO DO TEMPO
   ------------------------------------------------------------- */
.time-impact-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3.5rem 2.5rem;
}

.time-counter-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-number {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2px;
}

.time-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 0.5rem;
}

.countdown-bar-container {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
}

.countdown-bar-fill {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent-cyan), var(--color-accent-gold));
    animation: bar-countdown 15s infinite linear;
}

@keyframes bar-countdown {
    0% { width: 100%; }
    100% { width: 0%; }
}

/* -------------------------------------------------------------
   SLIDE 8: PRICING CARD PREMIUM (OFERTA)
   ------------------------------------------------------------- */
.pricing-card-container {
    max-width: 550px;
    margin: 0 auto;
}

.pricing-card {
    padding: 4rem 3rem;
}

.pricing-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(64, 196, 180, 0.1);
    color: var(--color-accent-cyan);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pricing-value-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.price-old {
    font-size: 1.15rem;
    text-decoration: line-through;
    opacity: 0.55;
    letter-spacing: 1px;
}

.price-new-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-currency {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-accent-gold);
}

.price-val {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1;
}

.price-period {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 4px;
}

.price-caption {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-text-light) !important;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.icon-check {
    width: 18px;
    height: 18px;
    color: var(--color-accent-cyan);
    flex-shrink: 0;
    margin-top: 3px;
}

/* -------------------------------------------------------------
   RODAPÉ DO SITE
   ------------------------------------------------------------- */
.footer-site {
    background: var(--color-bg-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-copyright {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-align: center;
}

.footer-right {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--color-accent-gold);
}

@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
    }
    .footer-left {
        align-items: flex-start;
    }
    .footer-copyright {
        text-align: left;
    }
}

/* -------------------------------------------------------------
   WIDGET INTELIGENTE DE CHAT DA GABI (WHATSAPP SIMULATOR)
   ------------------------------------------------------------- */
.gabi-chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99;
}

/* Gatilho */
.gabi-chat-trigger {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary-violet) 0%, var(--color-bg-dark) 100%);
    border: 2px solid var(--color-accent-gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), var(--glow-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: var(--transition-normal);
}

.gabi-chat-trigger:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5), var(--glow-cyan);
    border-color: var(--color-accent-cyan);
}

.gabi-avatar-img-container {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-primary-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.avatar-letter {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent-gold);
    line-height: 1;
}

.gabi-badge-online {
    position: absolute;
    width: 14px;
    height: 14px;
    background-color: #25d366;
    border: 2.5px solid var(--color-bg-dark);
    border-radius: 50%;
    top: 2px;
    right: 2px;
}

/* Avatar Pulsante */
.gabi-pulse-avatar {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--color-accent-gold);
    animation: gabi-pulse 2.2s infinite;
}

@keyframes gabi-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Tooltip do Widget */
.gabi-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-bg-deep);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-light);
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    opacity: 0.9;
    animation: tooltip-bounce 4s infinite ease-in-out;
}

@keyframes tooltip-bounce {
    0%, 100% { transform: translateY(-50%); }
    50% { transform: translateY(-50%) translateX(-4px); }
}

/* Janela de Chat */
.gabi-chat-window {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 330px;
    height: 430px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    z-index: 10;
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    transform-origin: bottom right;
    pointer-events: none;
    transition: var(--transition-normal);
}

.gabi-chat-window.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: all;
}

/* Header do Chat */
.gabi-chat-header {
    background: rgba(30, 19, 51, 0.65);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.gabi-header-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.avatar-container-small {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.avatar-letter-small {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-accent-gold);
}

.badge-online-small {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #25d366;
    border: 1.8px solid var(--color-primary-purple);
    border-radius: 50%;
    bottom: 0;
    right: 0;
}

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

.gabi-header-name {
    font-size: 1rem;
    line-height: 1;
}

.gabi-header-status {
    font-size: 0.65rem;
    color: var(--color-accent-cyan);
    font-weight: 500;
}

.gabi-close-btn {
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.gabi-close-btn:hover {
    color: var(--color-accent-gold);
}

/* Corpo do Chat */
.gabi-chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-date-header {
    align-self: center;
    font-size: 0.65rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.03);
    padding: 4px 10px;
    border-radius: 8px;
}

.chat-bubble {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 0.85rem;
    line-height: 1.4;
    position: relative;
}

.chat-bubble p {
    font-weight: 400;
}

.gabi-bubble {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--color-text-light);
    border-bottom-left-radius: 3px;
}

.user-bubble {
    align-self: flex-end;
    background: rgba(226, 178, 77, 0.12);
    border: 1px solid rgba(226, 178, 77, 0.2);
    color: var(--color-text-light);
    border-bottom-right-radius: 3px;
}

.bubble-time {
    display: block;
    font-size: 0.6rem;
    color: var(--color-text-muted);
    text-align: right;
    margin-top: 4px;
}

/* Opções Rápidas de Resposta */
.gabi-quick-replies {
    padding: 0.75rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.quick-reply-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 6px 12px;
    font-size: 0.75rem;
    text-align: left;
    color: var(--color-text-light);
    cursor: pointer;
    transition: var(--transition-fast);
}

.quick-reply-btn:hover {
    background: rgba(226, 178, 77, 0.08);
    border-color: rgba(226, 178, 77, 0.3);
    color: var(--color-accent-gold);
}

/* Rodapé do Chat */
.gabi-chat-footer {
    padding: 1rem 1.25rem;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.gabi-whatsapp-cta {
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
    border: none;
    border-radius: 12px;
    padding: 0.75rem;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: var(--transition-normal);
}

.gabi-whatsapp-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(18, 140, 126, 0.4);
}

.icon-send {
    width: 14px;
    height: 14px;
}

/* Estilo Indicador Digitador (Simulação) */
.gabi-typing-indicator {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 16px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-accent-gold);
    border-radius: 50%;
    animation: typing-dot-anim 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-dot-anim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

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

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
