/* ============================================
   Centro Espiritual Vidente Analía
   Paleta: púrpura profundo + dorado (referencia imagen)
   ============================================ */
:root {
    --purple-deep: #3d1a5c;
    --purple-dark: #2d1245;
    --purple-mid: #5c2d8a;
    --purple-light: #8b5cf6;
    --gold: #d4af37;
    --gold-light: #f4d03f;
    --gold-dark: #b8941f;
    --text: #f5f3ff;
    --text-muted: #c4b5fd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
    background: var(--purple-deep);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    padding-bottom: 220px;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(212, 175, 55, 0.06) 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--purple-deep) url('img/plano_astral.png') center center / cover no-repeat;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(61, 26, 92, 0.35) 0%, rgba(45, 18, 69, 0.5) 50%, rgba(61, 26, 92, 0.55) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
}

.hero-label {
    font-family: 'Cinzel', serif;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Cinzel Decorative', cursive;
    font-size: clamp(2.8rem, 10vw, 4.5rem);
    font-weight: 700;
    color: var(--text);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3), 0 2px 10px rgba(0,0,0,0.5);
    margin-bottom: 6px;
    letter-spacing: 2px;
}

.hero-title-accent {
    color: var(--gold-light);
    text-shadow: 0 0 25px rgba(244, 208, 63, 0.5), 0 0 40px rgba(212, 175, 55, 0.3);
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 20px 0;
}

.hero-divider .star {
    color: var(--gold);
    font-size: 1.25rem;
    animation: twinkle 2s ease-in-out infinite;
}

.hero-divider .line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-cartas {
    margin: 28px 0 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-cartas img {
    max-width: 320px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
}

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

.hero-subtitle {
    font-size: clamp(1.15rem, 2.5vw, 1.4rem);
    color: var(--text-muted);
    margin-bottom: 6px;
}

.hero-experience {
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    color: var(--gold);
    margin-bottom: 28px;
}

.hero-experience strong {
    color: var(--gold-light);
}

.hero-intro {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text);
    margin-bottom: 32px;
    line-height: 1.85;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.hero-phone {
    font-size: 1.2rem;
    margin-top: 8px;
}

.hero-phone span {
    color: var(--gold-light);
    font-weight: 700;
}

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    font-family: 'Cinzel', serif;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.btn-call {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--purple-dark);
    box-shadow: 0 4px 18px rgba(212, 175, 55, 0.4);
}

.btn-call:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    box-shadow: 0 6px 25px rgba(244, 208, 63, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--gold-light);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-light);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
}

.btn-pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 18px rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 4px 28px rgba(212, 175, 55, 0.65); }
}

/* Botón flotante WhatsApp */
.btn-whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 22px rgba(37, 211, 102, 0.55);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
}

/* Container */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Sección precio */
.section {
    padding: 70px 20px;
    position: relative;
    z-index: 1;
}

.section-price {
    padding-top: 50px;
    padding-bottom: 50px;
}

.price-box {
    text-align: center;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 28px 40px;
    max-width: 480px;
    margin: 0 auto;
}

.price-note {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.price-amount {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--text);
}

.price-amount strong {
    color: var(--gold-light);
    font-size: 1.15em;
}

/* Imágenes */
.img-section {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--purple-dark);
    position: relative;
    z-index: 1;
}

.img-section img {
    max-width: 520px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 24px rgba(139, 92, 246, 0.1);
    object-fit: cover;
}

.img-section-double {
    gap: 40px;
    flex-wrap: wrap;
}

.img-section-double img {
    max-width: 380px;
}

/* Servicios */
.section-services {
    background: var(--purple-deep);
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.7rem, 4vw, 2.2rem);
    color: var(--gold);
    text-align: center;
    margin-bottom: 32px;
    font-weight: 600;
}

.section-title .icon {
    display: block;
    margin-bottom: 8px;
}

.services-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 12px 24px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-list li {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--text);
    padding-left: 26px;
    position: relative;
}

.services-list .bullet {
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.95em;
}

.cta-box {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.cta-text {
    width: 100%;
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

/* Highlight / frase fuerte */
.section-highlight {
    background: linear-gradient(180deg, var(--purple-dark) 0%, var(--purple-deep) 100%);
}

.highlight-quote {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.2rem, 2.8vw, 1.5rem);
    color: var(--gold-light);
    text-align: center;
    margin-bottom: 36px;
    padding: 0 20px;
    line-height: 1.6;
    font-style: normal;
}

.highlight-quote::before,
.highlight-quote::after {
    content: '"';
    color: var(--gold);
    opacity: 0.7;
}

.phone-final {
    width: 100%;
    margin-top: 12px;
    font-size: 1.15rem;
}

.phone-final span {
    color: var(--gold-light);
    font-weight: 700;
}

/* Medios de pago */
.section-payment {
    padding: 50px 20px 40px;
    background: var(--purple-dark);
}

.payment-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.25rem, 2.8vw, 1.5rem);
    color: var(--gold);
    text-align: center;
    margin-bottom: 24px;
}

.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.payment-logos img {
    height: 48px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    filter: brightness(0.98);
}

.payment-logos img:hover {
    opacity: 1;
    filter: brightness(1.1);
}

/* Footer */
.footer {
    background: var(--purple-deep);
    padding: 40px 20px 50px;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    z-index: 1;
}

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

.lkt-signature {
    display: block;
    margin-top: 28px;
    text-align: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.lkt-signature img {
    display: block;
    margin: 0 auto;
    height: auto;
    max-height: 44px;
    width: auto;
    opacity: 0.85;
}

.lkt-signature:hover img {
    opacity: 1;
}

.footer-velas {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    text-align: center;
    pointer-events: none;
}

.footer-velas img {
    max-width: 480px;
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    object-position: bottom center;
    opacity: 0.92;
    vertical-align: bottom;
}

/* Animaciones de entrada */
.section,
.price-box,
.highlight-quote {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.visible,
.price-box.visible,
.highlight-quote.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-bottom: 180px;
    }

    .hero {
        min-height: auto;
        padding: 50px 16px 60px;
    }

    .hero-cartas img {
        max-width: 260px;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .cta-box {
        flex-direction: column;
    }

    .cta-box .btn {
        width: 100%;
        max-width: 280px;
    }

    .img-section {
        padding: 40px 16px;
    }

    .img-section-double {
        flex-direction: column;
        gap: 30px;
    }

    .img-section-double img {
        max-width: 100%;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .btn-whatsapp-float {
        width: 56px;
        height: 56px;
        font-size: 26px;
        bottom: 22px;
        right: 22px;
    }

    .payment-logos img {
        height: 42px;
    }

    .footer-velas img {
        max-width: 100%;
        max-height: 160px;
    }
}

@media (max-width: 480px) {
    .hero-divider .line {
        width: 50px;
    }

    .price-box {
        padding: 22px 24px;
    }
}
