/* ========================================
   ESPIRITUALISTA AURORA - Redesign Premium
   Cosmos Azul-Marinho | Dourado Mistico
   Glassmorphism | Efeitos de Brilho
   ======================================== */

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

:root {
    /* Paleta cosmica principal */
    --cosmos-deep: #070F1F;
    --cosmos-mid: #0B1B3D;
    --cosmos-light: #122454;
    --nebula-gold: rgba(212, 175, 55, 0.08);
    --nebula-gold-bright: rgba(212, 175, 55, 0.15);

    /* Dourados */
    --gold: #D4AF37;
    --gold-light: #E8C95A;
    --gold-bright: #F0DB7A;
    --gold-dark: #B8962F;
    --gold-metallic: linear-gradient(135deg, #B8962F 0%, #D4AF37 25%, #F0DB7A 50%, #D4AF37 75%, #B8962F 100%);
    --gold-shimmer: linear-gradient(90deg, #B8962F, #F0DB7A, #D4AF37, #F0DB7A, #B8962F);
    --gold-glow: 0 0 20px rgba(212, 175, 55, 0.3), 0 0 40px rgba(212, 175, 55, 0.1);
    --gold-glow-strong: 0 0 30px rgba(212, 175, 55, 0.4), 0 0 60px rgba(212, 175, 55, 0.15);

    /* Textos */
    --cream: #F5ECD7;
    --cream-soft: rgba(245, 236, 215, 0.75);
    --cream-dim: rgba(245, 236, 215, 0.5);
    --white: #FFFFFF;

    /* Glassmorphism */
    --glass-bg: rgba(11, 27, 61, 0.55);
    --glass-border: rgba(212, 175, 55, 0.18);
    --glass-border-hover: rgba(212, 175, 55, 0.35);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);

    /* Fontes */
    --font-titulo: 'Cinzel', serif;
    --font-titulo-display: 'Cinzel Decorative', serif;
    --font-manuscrita: 'Great Vibes', cursive;
    --font-texto: 'Montserrat', sans-serif;
    --font-elegante: 'Cormorant Garamond', serif;

    /* Transicoes */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-premium: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-texto);
    background: var(--cosmos-deep);
    color: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

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

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   FUNDO COSMICO GLOBAL
   ======================================== */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background:
        /* Nebulosa dourada intensa - canto superior esquerdo */
        radial-gradient(ellipse 700px 500px at 3% 5%, rgba(212, 175, 55, 0.19) 0%, transparent 68%),
        /* Nebulosa dourada intensa - canto superior direito */
        radial-gradient(ellipse 650px 460px at 97% 8%, rgba(212, 175, 55, 0.17) 0%, transparent 68%),
        /* Nebulosa dourada intensa - canto inferior esquerdo */
        radial-gradient(ellipse 580px 520px at 2% 96%, rgba(212, 175, 55, 0.15) 0%, transparent 68%),
        /* Nebulosa dourada intensa - canto inferior direito */
        radial-gradient(ellipse 660px 500px at 98% 97%, rgba(212, 175, 55, 0.18) 0%, transparent 68%),
        /* Faixa nebulosa lateral esquerda */
        radial-gradient(ellipse 320px 900px at 0% 50%, rgba(212, 175, 55, 0.09) 0%, transparent 70%),
        /* Faixa nebulosa lateral direita */
        radial-gradient(ellipse 320px 900px at 100% 50%, rgba(212, 175, 55, 0.09) 0%, transparent 70%),
        /* Nebulosa central suave */
        radial-gradient(ellipse 900px 600px at 50% 50%, rgba(18, 36, 84, 0.55) 0%, transparent 70%),
        /* Gradiente base */
        linear-gradient(180deg, var(--cosmos-deep) 0%, var(--cosmos-mid) 40%, var(--cosmos-deep) 100%);
    pointer-events: none;
}

/* Mancha de luz cosmica animada */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(ellipse 400px 400px at 20% 30%, rgba(212, 175, 55, 0.055) 0%, transparent 70%),
        radial-gradient(ellipse 350px 350px at 75% 60%, rgba(212, 175, 55, 0.045) 0%, transparent 70%),
        radial-gradient(ellipse 300px 300px at 50% 80%, rgba(212, 175, 55, 0.038) 0%, transparent 70%);
    pointer-events: none;
    animation: nebulaShift 20s ease-in-out infinite alternate;
}

@keyframes nebulaShift {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* ========================================
   CANVAS PARTICULAS ESTELARES
   ======================================== */
#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

/* ========================================
   HEADER PREMIUM
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition-premium);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: rgba(7, 15, 31, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.header-logo {
    font-family: var(--font-titulo);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 4px;
    transition: var(--transition-premium);
    position: relative;
}

.header-logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold-metallic);
    transform: scaleX(0);
    transition: var(--transition-premium);
}

.header-logo:hover {
    color: var(--gold-light);
    text-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

.header-logo:hover::after {
    transform: scaleX(1);
}

.header-cta {
    display: inline-block;
    padding: 12px 28px;
    background: var(--gold-metallic);
    background-size: 200% auto;
    border: none;
    border-radius: 50px;
    font-family: var(--font-texto);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cosmos-deep);
    transition: var(--transition-premium);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.header-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s ease;
}

.header-cta:hover {
    background-position: right center;
    box-shadow: var(--gold-glow-strong);
    transform: translateY(-2px);
}

.header-cta:hover::before {
    left: 100%;
}

/* ========================================
   MENU MOBILE
   ======================================== */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--gold);
    transition: var(--transition-smooth);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(7, 15, 31, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1001;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-nav-link {
    font-family: var(--font-titulo);
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--cream);
    transition: var(--transition-smooth);
}

.mobile-nav-link:hover {
    color: var(--gold);
}

.mobile-cta {
    margin-top: 16px;
    padding: 14px 36px;
    background: var(--gold-metallic);
    border: none;
    border-radius: 50px;
    font-family: var(--font-texto);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cosmos-deep);
    transition: var(--transition-smooth);
}

.mobile-cta:hover {
    box-shadow: var(--gold-glow);
}

/* ========================================
   HERO SECTION - IMPACTO PREMIUM
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.42;
    filter: saturate(1.1) brightness(0.92);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        /* Overlay mais leve no topo (símbolo visível) e mais escuro no centro/base (texto legível) */
        linear-gradient(
            180deg,
            rgba(7, 15, 31, 0.18) 0%,
            rgba(7, 15, 31, 0.22) 20%,
            rgba(7, 15, 31, 0.48) 45%,
            rgba(7, 15, 31, 0.62) 70%,
            rgba(7, 15, 31, 0.82) 100%
        ),
        /* Sombra central para leitura do texto */
        radial-gradient(ellipse 65% 55% at 50% 65%, rgba(7, 15, 31, 0.55) 0%, transparent 100%),
        /* Halo dourado nas bordas */
        radial-gradient(ellipse 100% 100% at 50% 50%, transparent 55%, rgba(212, 175, 55, 0.07) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 88px 24px 48px;
    max-width: 760px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ========================================
   SÍMBOLO MÍSTICO HERO - Mãos + Lótus + Lua
   ======================================== */
.hero-mystic-symbol {
    width: 360px;
    max-width: 88%;
    margin: 0 auto 4px;
    opacity: 0;
    animation: symbolReveal 1.8s cubic-bezier(0.23, 1, 0.32, 1) forwards 0.15s;
    position: relative;
    z-index: 2;
}

.hero-mystic-symbol svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 18px rgba(212, 175, 55, 0.28));
    animation: symbolGlow 5s ease-in-out infinite 2.2s;
}

@keyframes symbolReveal {
    from {
        opacity: 0;
        transform: translateY(-18px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes symbolGlow {
    0%, 100% {
        filter: drop-shadow(0 0 14px rgba(212, 175, 55, 0.22));
    }
    50% {
        filter: drop-shadow(0 0 32px rgba(212, 175, 55, 0.52));
    }
}

/* Ornamentos hero com brilho */
.hero-ornament {
    width: 140px;
    margin: 0 auto;
    opacity: 0.7;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
}

.hero-ornament.bottom {
    margin-top: 40px;
    transform: rotate(180deg);
}

/* Pretitle — Cinzel Regular, tracking aumentado */
.hero-pretitle {
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 18px;
    color: var(--gold);
    margin-bottom: 4px;
    opacity: 0;
    animation: fadeInDown 1s ease forwards 0.3s;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    text-transform: uppercase;
}

/* Titulo principal — Cinzel Decorative Regular */
.hero-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 6.5rem;
    font-weight: 400;
    letter-spacing: 4px;
    line-height: 1;
    margin-bottom: 18px;
    opacity: 0;
    animation: fadeInUp 1.2s ease forwards 0.5s;
    background: var(--gold-metallic);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 24px rgba(212, 175, 55, 0.3));
    position: relative;
}

.aurora-a {
    position: relative;
    font-family: 'Cinzel Decorative', serif;
    font-weight: 400;
    background: var(--gold-metallic);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 18px rgba(212, 175, 55, 0.45));
}

/* Divisor com brilho */
.hero-divider {
    width: 220px;
    margin: 0 auto 24px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.8s;
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.3));
}

/* Subtitle */
.hero-subtitle {
    font-family: var(--font-titulo);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 6px;
    color: var(--gold-light);
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1s;
    text-shadow: 0 0 10px rgba(232, 201, 90, 0.15);
    text-transform: uppercase;
}

/* Quote em manuscrita */
.hero-quote {
    font-family: var(--font-manuscrita);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--cream);
    line-height: 1.3;
    margin-bottom: 4px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.2s;
}

.quote-line {
    display: block;
}

/* Especialidade - em script cursivo, igual ao hero-quote */
.hero-especialidade {
    font-family: var(--font-manuscrita);
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: none;
    color: var(--cream);
    margin-top: -10px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.4s;
    position: relative;
    line-height: 1.3;
}

.hero-especialidade::before,
.hero-especialidade::after {
    display: none;
}

/* Botao WhatsApp premium */
.hero-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 22px 44px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    font-family: var(--font-texto);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: var(--transition-premium);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.6s;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35), 0 0 0 1px rgba(255,255,255,0.1) inset;
    margin-bottom: 36px;
    position: relative;
    overflow: hidden;
}

.hero-cta-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.hero-cta-whatsapp:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5), 0 0 0 1px rgba(255,255,255,0.15) inset;
}

.hero-cta-whatsapp:hover::before {
    left: 100%;
}

/* Scroll link */
.hero-scroll-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-family: var(--font-elegante);
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--gold-light);
    transition: var(--transition-premium);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.8s;
    cursor: pointer;
    position: relative;
}

.hero-scroll-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition-premium);
}

.hero-scroll-link:hover {
    color: var(--gold-bright);
    transform: translateY(-3px);
}

.hero-scroll-link:hover::after {
    width: 80%;
}

.hero-scroll-arrow {
    width: 24px;
    height: 24px;
    animation: bounceDown 2s ease infinite;
    filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.3));
}

/* ========================================
   ANIMACOES
   ======================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(10px);
    }
    60% {
        transform: translateY(5px);
    }
}

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

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.2), 0 0 40px rgba(212, 175, 55, 0.05);
    }
    50% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.35), 0 0 60px rgba(212, 175, 55, 0.1);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes starTwinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes borderGlow {
    0%, 100% { border-color: rgba(212, 175, 55, 0.18); }
    50% { border-color: rgba(212, 175, 55, 0.35); }
}

/* ========================================
   SECTIONS COMUNS - HEADER PREMIUM
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
}

/* Ornamento de estrela acima do titulo */
.section-header::before {
    content: '✦';
    display: block;
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 12px;
    opacity: 0.6;
    animation: starTwinkle 3s ease-in-out infinite;
}

.section-tag {
    display: block;
    font-family: var(--font-texto);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    opacity: 0.85;
}

.section-title {
    font-family: var(--font-titulo);
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 18px;
    background: var(--gold-metallic);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.15));
}

.section-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
    margin: 0 auto;
    position: relative;
}

.section-line::before,
.section-line::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.6;
}

.section-line::before {
    left: 20px;
}

.section-line::after {
    right: 20px;
}

/* ========================================
   SERVICOS - CARDS GLASSMORPHISM PREMIUM
   ======================================== */
.servicos {
    position: relative;
    z-index: 2;
    padding: 110px 0;
    background:
        radial-gradient(ellipse 500px 380px at 5% 50%, rgba(212, 175, 55, 0.055) 0%, transparent 70%),
        radial-gradient(ellipse 500px 380px at 95% 50%, rgba(212, 175, 55, 0.055) 0%, transparent 70%),
        linear-gradient(180deg,
            var(--cosmos-deep) 0%,
            rgba(11, 27, 61, 0.38) 30%,
            rgba(11, 27, 61, 0.18) 50%,
            rgba(11, 27, 61, 0.38) 70%,
            var(--cosmos-deep) 100%
        );
}

/* Linha decorativa no topo */
.servicos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.servicos-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1050px;
    margin: 0 auto;
}

/* Card Glassmorphism Premium */
.servico-card {
    background: rgba(7, 18, 48, 0.62);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 16px;
    padding: 44px 30px 40px;
    text-align: center;
    transition: var(--transition-premium);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(28px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(212, 175, 55, 0.1);
    animation: borderGlow 4s ease-in-out infinite;
}

/* Brilho dourado no topo do card */
.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
    opacity: 0;
    transition: var(--transition-premium);
}

/* Glow sutil no hover */
.servico-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition-premium);
    pointer-events: none;
}

.servico-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.servico-card:hover {
    border-color: rgba(212, 175, 55, 0.42);
    transform: translateY(-8px);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.45),
        0 0 50px rgba(212, 175, 55, 0.1),
        0 0 80px rgba(212, 175, 55, 0.04),
        inset 0 1px 0 rgba(212, 175, 55, 0.22);
    animation: none;
}

.servico-card:hover::before {
    opacity: 1;
    left: 0;
}

.servico-card:hover::after {
    opacity: 1;
}

/* Icon com glow */
.servico-card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 28px;
    transition: var(--transition-premium);
    position: relative;
    z-index: 1;
}

.servico-card:hover .servico-card-icon {
    transform: scale(1.12) rotate(3deg);
    filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.4));
}

.servico-card-icon svg {
    width: 100%;
    height: 100%;
}

.servico-card-title {
    font-family: var(--font-titulo);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.servico-card-desc {
    font-family: var(--font-elegante);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.75;
    color: var(--cream-soft);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.servico-card-desc:last-child {
    margin-bottom: 0;
}

.servico-card-highlight {
    color: var(--cream);
    font-style: italic;
    margin-top: 10px;
    padding: 14px 16px;
    background: rgba(212, 175, 55, 0.06);
    border-left: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 0 8px 8px 0;
    text-align: left;
}

.servico-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    text-align: left;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.servico-card-list li {
    font-family: var(--font-elegante);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--cream);
    padding: 6px 0;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}

.servico-card-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.75rem;
    top: 10px;
    filter: drop-shadow(0 0 3px rgba(212, 175, 55, 0.4));
}

/* ========================================
   SOBRE AURORA - FOTO PREMIUM
   ======================================== */
.sobre-aurora {
    position: relative;
    z-index: 2;
    padding: 110px 0;
    background:
        radial-gradient(ellipse 500px 400px at 5% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 500px 400px at 95% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 70%),
        var(--cosmos-deep);
}

.sobre-aurora::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.sobre-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 44px;
}

/* Container da foto com anéis */
.sobre-foto-wrap {
    position: relative;
    width: 300px;
    height: 380px;
    flex-shrink: 0;
}

/* Anéis decorativos dourados */
.sobre-anel {
    position: absolute;
    border-radius: 18px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    pointer-events: none;
}

.sobre-anel-1 {
    inset: -10px;
    animation: borderGlow 4s ease-in-out infinite;
}

.sobre-anel-2 {
    inset: -20px;
    border-color: rgba(212, 175, 55, 0.1);
    animation: borderGlow 4s ease-in-out infinite 2s;
}

/* Foto principal */
.sobre-foto {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid rgba(212, 175, 55, 0.35);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(212, 175, 55, 0.12),
        inset 0 1px 0 rgba(212, 175, 55, 0.2);
    position: relative;
    z-index: 1;
}

.sobre-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s ease;
}

.sobre-foto:hover img {
    transform: scale(1.04);
}

/* Estrelas de canto */
.sobre-star {
    position: absolute;
    width: 22px;
    height: 22px;
    z-index: 2;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
    animation: starTwinkle 3s ease-in-out infinite;
}

.sobre-star-tl { top: -28px;  left: -28px;  }
.sobre-star-tr { top: -28px;  right: -28px; animation-delay: 0.8s; }
.sobre-star-bl { bottom: -28px; left: -28px;  animation-delay: 1.5s; }
.sobre-star-br { bottom: -28px; right: -28px; animation-delay: 2.2s; }

/* Bloco de nome/título */
.sobre-nome {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.sobre-titulo {
    font-family: var(--font-titulo);
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: var(--gold-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.2));
}

.sobre-desc {
    font-family: var(--font-elegante);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--cream-soft);
    letter-spacing: 1px;
}

/* Botão dourado premium */
.sobre-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 14px 40px;
    background: var(--gold-metallic);
    background-size: 200% auto;
    color: var(--cosmos-deep);
    font-family: var(--font-titulo);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition-premium);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
    position: relative;
    overflow: hidden;
}

.sobre-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
    transition: left 0.5s ease;
}

.sobre-btn:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.4);
}

.sobre-btn:hover::before {
    left: 100%;
}

/* ========================================
   DEPOIMENTOS - CARDS PREMIUM
   ======================================== */
.depoimentos {
    position: relative;
    z-index: 2;
    padding: 110px 0;
    background:
        radial-gradient(ellipse 450px 350px at 3% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%),
        radial-gradient(ellipse 450px 350px at 97% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%),
        var(--cosmos-deep);
}

/* Linha decorativa */
.depoimentos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Card de depoimento glassmorphism */
.depoimento-card {
    text-align: center;
    padding: 44px 30px;
    background: rgba(7, 18, 48, 0.58);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    transition: var(--transition-premium);
    opacity: 0;
    transform: translateY(22px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(212, 175, 55, 0.08);
    position: relative;
    overflow: hidden;
}

.depoimento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.2;
}

.depoimento-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.depoimento-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-6px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(212, 175, 55, 0.08),
        inset 0 1px 0 rgba(212, 175, 55, 0.18);
}

/* Avatar com anel dourado */
.depoimento-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 24px;
    border: 2px solid rgba(212, 175, 55, 0.35);
    transition: var(--transition-premium);
    position: relative;
    padding: 3px;
}

.depoimento-avatar::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--gold-metallic);
    z-index: -1;
    opacity: 0.5;
}

.depoimento-card:hover .depoimento-avatar {
    border-color: var(--gold);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.25);
}

.depoimento-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Estrelas com glow */
.depoimento-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.depoimento-stars svg {
    width: 18px;
    height: 18px;
    filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.3));
}

.depoimento-text {
    font-family: var(--font-elegante);
    font-size: 1.1rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.8;
    color: var(--cream-soft);
    margin-bottom: 20px;
    position: relative;
}

.depoimento-text::before {
    content: '"';
    font-family: var(--font-elegante);
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.15);
    position: absolute;
    top: -16px;
    left: -8px;
    line-height: 1;
}

.depoimento-name {
    font-family: var(--font-titulo);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    position: relative;
}

.depoimento-name::before {
    content: '— ';
    opacity: 0.5;
}

/* ========================================
   CTA FINAL - IMPACTO PREMIUM
   ======================================== */
.cta-final {
    position: relative;
    z-index: 2;
    padding: 150px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Fundo do CTA com nebulosa dourada intensa */
.cta-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        /* Nebulosa dourada - superior */
        radial-gradient(ellipse 500px 300px at 30% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 60%),
        /* Nebulosa dourada - inferior */
        radial-gradient(ellipse 400px 280px at 70% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
        /* Glow central */
        radial-gradient(ellipse 600px 400px at 50% 50%, rgba(18, 36, 84, 0.6) 0%, transparent 70%),
        /* Fundo base */
        radial-gradient(ellipse at 50% 50%, rgba(11, 27, 61, 0.8) 0%, var(--cosmos-deep) 80%);
}

/* Estrelas decorativas piscando */
.star-decor {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    animation: starFlash 3s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.5);
}

@keyframes starFlash {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1); }
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(22px);
    transition: var(--transition-premium);
}

.cta-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-ornament {
    width: 120px;
    margin: 0 auto 36px;
    opacity: 0.6;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
}

/* Titulo CTA em manuscrita dourada */
.cta-title {
    font-family: var(--font-manuscrita);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--gold-light);
    margin-bottom: 24px;
    line-height: 1.3;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.cta-subtitle {
    font-family: var(--font-elegante);
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--cream-soft);
    margin-bottom: 48px;
}

/* Botao CTA premium com gradiente dourado */
.cta-btn {
    display: inline-block;
    padding: 20px 52px;
    background: var(--gold-metallic);
    background-size: 200% auto;
    color: var(--cosmos-deep);
    font-family: var(--font-titulo);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition-premium);
    animation: pulseGlow 3s ease infinite;
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.cta-btn:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 12px 45px rgba(212, 175, 55, 0.4);
}

.cta-btn:hover::before {
    left: 100%;
}

/* ========================================
   FOOTER PREMIUM
   ======================================== */
.footer {
    position: relative;
    z-index: 2;
    padding: 64px 0 28px;
    background: var(--cosmos-deep);
    border-top: 1px solid rgba(212, 175, 55, 0.08);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 44px;
    margin-bottom: 44px;
}

.footer-brand {
    text-align: right;
}

.footer-name {
    font-family: var(--font-titulo);
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 6px;
    background: var(--gold-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    font-family: var(--font-texto);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--cream-dim);
}

.footer-divider {
    width: 1px;
    height: 44px;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.footer-wa {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-texto);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--cream-soft);
    transition: var(--transition-smooth);
    padding: 10px 20px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 50px;
}

.footer-wa svg {
    width: 20px;
    height: 20px;
    color: #25D366;
    filter: drop-shadow(0 0 4px rgba(37, 211, 102, 0.3));
}

.footer-wa:hover {
    color: var(--gold);
    border-color: rgba(212, 175, 55, 0.35);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 28px;
    border-top: 1px solid rgba(212, 175, 55, 0.06);
}

.footer-bottom p {
    font-family: var(--font-texto);
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 1.5px;
    color: rgba(245, 236, 215, 0.3);
}

/* ========================================
   BOTAO WHATSAPP FLUTUANTE PREMIUM
   ======================================== */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow:
        0 6px 25px rgba(37, 211, 102, 0.4),
        0 0 0 3px rgba(37, 211, 102, 0.15);
    transition: var(--transition-premium);
    animation: float 3s ease-in-out infinite;
}

.wa-float svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.wa-float:hover {
    transform: scale(1.12);
    box-shadow:
        0 8px 35px rgba(37, 211, 102, 0.55),
        0 0 0 4px rgba(37, 211, 102, 0.2);
}

/* ========================================
   SCROLL REVEAL
   ======================================== */
[data-sr] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-sr].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVIDADE
   ======================================== */
/* ========================================
   TABLET (769px – 1024px)
   ======================================== */
@media (max-width: 1024px) and (min-width: 769px) {
    .servicos-cards {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }

    .servico-card:last-child {
        grid-column: 1 / -1;
        max-width: 340px;
        margin: 0 auto;
    }

    .depoimentos-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }

    .depoimento-card:last-child {
        grid-column: 1 / -1;
        max-width: 340px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 5rem;
    }
}

/* ========================================
   MOBILE (≤ 768px)
   ======================================== */
@media (max-width: 768px) {
    .header-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    /* Símbolo místico mobile */
    .hero-mystic-symbol {
        width: 270px;
    }

    .hero-content {
        padding: 72px 24px 40px;
    }

    /* Hero mobile */
    .hero-title {
        font-size: 3.2rem;
        letter-spacing: 2px;
    }

    .hero-pretitle {
        font-size: 0.65rem;
        letter-spacing: 10px;
    }

    .hero-subtitle {
        font-size: 0.72rem;
        letter-spacing: 3px;
    }

    .hero-quote {
        font-size: 2.2rem;
    }

    .hero-especialidade {
        font-size: 2rem;
    }

    .hero-cta-whatsapp {
        padding: 18px 32px;
        font-size: 0.85rem;
    }

    /* Sobre Aurora mobile */
    .sobre-foto-wrap {
        width: 260px;
        height: 330px;
    }

    .sobre-titulo {
        font-size: 1.1rem;
    }

    /* Servicos mobile - 1 coluna */
    .servicos-cards {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 420px;
    }

    .servico-card {
        padding: 36px 24px 32px;
    }

    /* Depoimentos mobile - 1 coluna */
    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 420px;
    }

    .depoimento-card {
        padding: 36px 24px;
    }

    /* Sections mobile */
    .section-title {
        font-size: 1.9rem;
        letter-spacing: 2px;
    }

    .servicos,
    .depoimentos {
        padding: 80px 0;
    }

    /* CTA mobile */
    .cta-final {
        padding: 100px 0;
    }

    .cta-title {
        font-size: 2.2rem;
    }

    .cta-btn {
        padding: 18px 40px;
    }

    /* Footer mobile */
    .footer-content {
        flex-direction: column;
        gap: 24px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-divider {
        width: 60px;
        height: 1px;
    }

    /* WhatsApp float mobile */
    .wa-float {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
    }

    .wa-float svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .hero-mystic-symbol {
        width: 228px;
    }

    .hero-title {
        font-size: 2.4rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }

    .hero-quote {
        font-size: 1.9rem;
    }

    .hero-especialidade {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .cta-title {
        font-size: 1.9rem;
    }
}
