/* ========================================
   AURORA ESPIRITUALISTA - Landing Page
   Design Premium | Ceu Estrelado | Dourado
   ======================================== */

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

:root {
    --azul-profundo: #0B1D3B;
    --azul-medio: #1B2F5A;
    --dourado: #D4AF37;
    --dourado-claro: #E8C95A;
    --creme: #F7E7C6;
    --creme-suave: rgba(247, 231, 198, 0.7);
    --branco: #FFFFFF;
    --font-titulo: 'Cinzel', serif;
    --font-manuscrita: 'Great Vibes', cursive;
    --font-texto: 'Montserrat', sans-serif;
    --font-elegante: 'Cormorant Garamond', serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
    font-family: var(--font-texto);
    background-color: var(--azul-profundo);
    color: var(--creme);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* ---- Canvas Particulas ---- */
#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

/* ---- Header ---- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(11, 29, 59, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 12px 0;
}

.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.3rem;
    font-weight: 600;
    color: var(--dourado);
    letter-spacing: 3px;
    transition: var(--transition);
}

.header-logo:hover {
    color: var(--dourado-claro);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-texto);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--creme-suave);
    transition: var(--transition);
    position: relative;
}

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

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

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

.header-cta {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid var(--dourado);
    border-radius: 30px;
    font-family: var(--font-texto);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--dourado);
    transition: var(--transition);
}

.header-cta:hover {
    background: var(--dourado);
    color: var(--azul-profundo);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
}

/* ---- 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(--dourado);
    transition: var(--transition);
}

.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(11, 29, 59, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1001;
    transition: var(--transition);
    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(--creme);
    transition: var(--transition);
}

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

.mobile-cta {
    margin-top: 16px;
    padding: 14px 36px;
    border: 1px solid var(--dourado);
    border-radius: 30px;
    font-family: var(--font-texto);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dourado);
    transition: var(--transition);
}

.mobile-cta:hover {
    background: var(--dourado);
    color: var(--azul-profundo);
}

/* ========================================
   HERO SECTION
   ======================================== */
.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;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(11, 29, 59, 0.3) 0%,
        rgba(11, 29, 59, 0.1) 30%,
        rgba(11, 29, 59, 0.1) 70%,
        rgba(11, 29, 59, 0.5) 100%
    );
}

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

.hero-ornament {
    width: 120px;
    margin: 0 auto;
    opacity: 0.6;
}

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

.hero-pretitle {
    font-family: var(--font-titulo);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 8px;
    color: var(--dourado);
    margin-bottom: 12px;
    opacity: 0;
    animation: fadeInDown 1s ease forwards 0.3s;
}

.hero-title {
    font-family: var(--font-titulo);
    font-size: 5rem;
    font-weight: 400;
    letter-spacing: 12px;
    color: var(--dourado);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeInUp 1.2s ease forwards 0.5s;
}

.aurora-a {
    position: relative;
}

.hero-divider {
    width: 200px;
    margin: 0 auto 20px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.8s;
}

.hero-subtitle {
    font-family: var(--font-elegante);
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--dourado-claro);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1s;
}

.hero-quote {
    font-family: var(--font-elegante);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--creme);
    line-height: 1.5;
    margin-bottom: 12px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.2s;
    font-style: italic;
}

.quote-line {
    display: block;
}

.hero-especialidade {
    font-family: var(--font-titulo);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dourado);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.4s;
}

.hero-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 40px;
    background: #25D366;
    color: var(--branco);
    font-family: var(--font-texto);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: var(--transition);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.6s;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    margin-bottom: 32px;
}

.hero-cta-whatsapp:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    color: var(--branco);
}

.hero-scroll-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--font-elegante);
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--dourado-claro);
    transition: var(--transition);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.8s;
    cursor: pointer;
}

.hero-scroll-link:hover {
    color: var(--dourado);
    transform: translateY(-2px);
}

.hero-scroll-arrow {
    width: 22px;
    height: 22px;
    animation: bounceDown 2s ease infinite;
}

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

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

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

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

@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);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
    }
}

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

/* ========================================
   SECTIONS COMUNS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: block;
    font-family: var(--font-texto);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--dourado);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-titulo);
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--dourado);
    margin-bottom: 16px;
}

.section-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--dourado), transparent);
    margin: 0 auto;
}

/* ========================================
   SERVICOS SECTION - Cards Premium
   ======================================== */
.servicos {
    position: relative;
    z-index: 2;
    padding: 100px 0;
    background: linear-gradient(180deg, var(--azul-profundo) 0%, rgba(27, 47, 90, 0.3) 50%, var(--azul-profundo) 100%);
}

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

.servico-card {
    background: linear-gradient(180deg, rgba(27, 47, 90, 0.6) 0%, rgba(11, 29, 59, 0.8) 100%);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 8px;
    padding: 40px 28px 36px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(24px);
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--dourado), transparent);
    opacity: 0;
    transition: var(--transition);
}

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

.servico-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(212, 175, 55, 0.06);
}

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

.servico-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    transition: var(--transition);
}

.servico-card:hover .servico-card-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.3));
}

.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: 1.5px;
    text-transform: uppercase;
    color: var(--dourado);
    margin-bottom: 18px;
    line-height: 1.4;
}

.servico-card-desc {
    font-family: var(--font-elegante);
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--creme-suave);
    margin-bottom: 12px;
}

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

.servico-card-highlight {
    color: var(--creme);
    font-style: italic;
    margin-top: 8px;
}

.servico-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    text-align: left;
    display: inline-block;
}

.servico-card-list li {
    font-family: var(--font-elegante);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--creme);
    padding: 5px 0;
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}

.servico-card-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--dourado);
    font-size: 0.7rem;
    top: 8px;
}

/* ========================================
   DEPOIMENTOS
   ======================================== */
.depoimentos {
    position: relative;
    z-index: 2;
    padding: 100px 0;
    background: var(--azul-profundo);
}

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

.depoimento-card {
    text-align: center;
    padding: 40px 28px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 2px;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

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

.depoimento-card:hover {
    border-color: rgba(212, 175, 55, 0.25);
    background: rgba(27, 47, 90, 0.2);
}

.depoimento-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

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

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

.depoimento-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
}

.depoimento-stars svg {
    width: 16px;
    height: 16px;
}

.depoimento-text {
    font-family: var(--font-elegante);
    font-size: 1.05rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.7;
    color: var(--creme-suave);
    margin-bottom: 16px;
}

.depoimento-name {
    font-family: var(--font-titulo);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--dourado);
}

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

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

.cta-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(27, 47, 90, 0.5) 0%, var(--azul-profundo) 70%);
}

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

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

.cta-ornament {
    width: 100px;
    margin: 0 auto 32px;
    opacity: 0.5;
}

.cta-title {
    font-family: var(--font-manuscrita);
    font-size: 2.6rem;
    font-weight: 400;
    color: var(--dourado-claro);
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-subtitle {
    font-family: var(--font-elegante);
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--creme-suave);
    margin-bottom: 40px;
}

.cta-btn {
    display: inline-block;
    padding: 18px 48px;
    background: var(--dourado);
    color: var(--azul-profundo);
    font-family: var(--font-titulo);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: var(--transition);
    animation: pulseGlow 3s ease infinite;
}

.cta-btn:hover {
    background: var(--dourado-claro);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    position: relative;
    z-index: 2;
    padding: 60px 0 24px;
    background: var(--azul-profundo);
    border-top: 1px solid rgba(212, 175, 55, 0.08);
}

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

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

.footer-name {
    font-family: var(--font-titulo);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--dourado);
    margin-bottom: 4px;
}

.footer-desc {
    font-family: var(--font-texto);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--creme-suave);
}

.footer-divider {
    width: 1px;
    height: 40px;
    background: rgba(212, 175, 55, 0.2);
}

.footer-wa {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-texto);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--creme-suave);
    transition: var(--transition);
}

.footer-wa svg {
    width: 18px;
    height: 18px;
    color: #25D366;
}

.footer-wa:hover {
    color: var(--dourado);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    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: 1px;
    color: rgba(247, 231, 198, 0.35);
}

/* ========================================
   BOTAO WHATSAPP FLUTUANTE
   ======================================== */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

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

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

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

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

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

    .menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 3.2rem;
        letter-spacing: 8px;
    }

    .hero-pretitle {
        font-size: 0.75rem;
        letter-spacing: 5px;
    }

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

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

    .hero-especialidade {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

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

    .servicos-cards {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 500px;
    }

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

    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

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

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

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.6rem;
        letter-spacing: 6px;
    }

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

    .hero-cta-whatsapp {
        padding: 16px 28px;
        font-size: 0.85rem;
    }

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

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

    .servico-card-title {
        font-size: 0.95rem;
    }

    .wa-float {
        width: 50px;
        height: 50px;
        bottom: 16px;
        right: 16px;
    }

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

/* ========================================
   ESTRELAS CSS (fallback decorativo)
   ======================================== */
.star-decor {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--dourado);
    border-radius: 50%;
    opacity: 0.3;
    animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.6; }
}

/* Selecao de texto dourada */
::selection {
    background: rgba(212, 175, 55, 0.3);
    color: var(--creme);
}

/* Scrollbar customizada */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--azul-profundo);
}

::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.5);
}
