/* ======== CONFIGURACIÓN GENERAL Y VARIABLES ======== */
:root {
    --violeta-profundo: #6A0DAD;
    --violeta-claro: #f7f2ff;
    --dorado-suave: #DAA520;
    --blanco-roto: #F8F8FF;
    --gris-calido: #696969;
    --verde-menta: #98FB98;
    --font-titulos: 'Playfair Display', serif;
    --font-texto: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-texto);
    color: var(--gris-calido);
    background-color: var(--blanco-roto);
    line-height: 1.7;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: var(--font-titulos);
    color: var(--violeta-profundo);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.text-center {
    text-align: center;
}

/* ======== SECCIÓN DE INICIO (HERO) ======== */
.hero-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--blanco-roto);
    background: linear-gradient(rgba(45, 20, 68, 0.8), rgba(87, 36, 133, 0.7)), url('https://plus.unsplash.com/premium_photo-1678253545043-a68a528085f1?q=80&w=2070') no-repeat center center/cover;
    position: relative;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 15px;
    /* 1. Creamos el fondo con el gradiente brillante */
    background: linear-gradient(to right, 
        var(--blanco-roto) 20%, 
        var(--dorado-suave) 40%, 
        var(--dorado-suave) 60%, 
        var(--blanco-roto) 80%);
    background-size: 200% auto;

    /* 2. Hacemos el texto transparente y lo usamos como máscara */
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;

    /* 3. Aplicamos la animación que moverá el fondo */
    animation: shine-effect 6s linear infinite;
}

.hero-content p {
    font-size: 1.5rem;
    color: var(--dorado-suave);
    font-weight: 500;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--violeta-profundo);
    color: var(--blanco-roto);
    border: 2px solid var(--dorado-suave);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background-color: var(--dorado-suave);
    color: var(--violeta-profundo);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* ======== SECCIONES DE CONTENIDO ======== */
.content-section {
    padding: 80px 0;
}

/* -- Bienvenida -- */
.grid-two-columns {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}

.welcome-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* -- Diferenciación -- */
.diferent-section {
    padding: 80px 0;
    background-color: var(--violeta-claro);
}

.diferent-intro {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.quotes {
    margin: 30px 0;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--violeta-profundo);
}
.quote { margin-bottom: 10px; }

/* -- Audiencia -- */
.audience-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    width: 320px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(106, 13, 173, 0.15);
}

.card i {
    font-size: 2.5rem;
    color: var(--dorado-suave);
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* -- Experiencia -- */
.experience-section {
    padding: 80px 0;
    background-color: var(--violeta-profundo);
    color: var(--blanco-roto);
}

.experience-section h2 {
    color: var(--blanco-roto);
}

.experience-list {
    list-style: none;
    max-width: 600px;
    margin: 40px auto 0;
    text-align: left;
    font-size: 1.1rem;
}

.experience-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.experience-list i {
    font-size: 1.5rem;
    color: var(--verde-menta);
    margin-right: 20px;
    width: 30px;
}

/* -- Reservas -- */
.booking-intro {
    font-style: italic;
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.google-calendar-container {
    margin: 0 auto;
    max-width: 800px; /* Ancho máximo del calendario */
}

.google-calendar-container iframe {
    width: 100%; /* Asegura que sea responsivo */
    border: 2px solid var(--dorado-suave) !important;
    border-radius: 15px;
}

.booking-steps {
    margin-top: 50px;
    padding: 30px;
    background-color: var(--violeta-claro);
    border-radius: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.booking-steps p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* ======== FOOTER ======== */
.footer-section {
    background-color: var(--gris-calido);
    color: var(--blanco-roto);
    padding: 60px 0;
}
.footer-section h3 {
    color: var(--blanco-roto);
    margin-bottom: 15px;
}
.footer-section p {
    margin-bottom: 20px;
}
.social-links a {
    color: var(--dorado-suave);
    font-size: 1.8rem;
    margin: 0 15px;
    transition: color 0.3s ease;
}
.social-links a:hover {
    color: var(--blanco-roto);
}
.copyright {
    margin-top: 30px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

/* ======== BOTÓN DE WHATSAPP ======== */
.whatsapp-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: #FFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
}
.whatsapp-button:hover {
    transform: scale(1.1);
}

/* ======== ANIMACIONES ======== */
.fade-in {
    animation: fadeInAnimation 1.5s ease-in-out forwards;
}
.fade-in-delay {
    animation: fadeInAnimation 2s ease-in-out forwards;
}

@keyframes fadeInAnimation {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(218, 165, 32, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(218, 165, 32, 0); }
    100% { box-shadow: 0 0 0 0 rgba(218, 165, 32, 0); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ======== DISEÑO RESPONSIVO (PARA MÓVILES) ======== */
@media (max-width: 768px) {
    h2 { font-size: 2rem; }

    .hero-section h1 { font-size: 2.8rem; }
    .hero-section p { font-size: 1.2rem; }

    .grid-two-columns {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .welcome-image {
        margin-bottom: 30px;
    }
    .welcome-image img {
        margin: 0 auto;
    }
}
/* ======== ANIMACIÓN DE REFLEJO DORADO ======== */
@keyframes shine-effect {
    to {
        background-position: -200% center;
    }
}
/* Estilo para centrar la imagen de Metatron */
.centered-image {
    display: block; /* La convierte en un elemento de bloque para que margin: auto funcione */
    margin: 0 auto 20px auto; /* Centra horizontalmente y añade margen inferior */
    max-width: 225px; /* Ajusta el tamaño máximo de la imagen según necesites */
    height: auto; /* Mantiene la proporción de la imagen */
    animation: pulse-image 2s infinite alternate ease-in-out;
}
/* Definición de la animación de pulso para la imagen */
@keyframes pulse-image {
    0% { transform: scale(1); } /* Tamaño normal */
    100% { transform: scale(1.09); } /* Ligeramente más grande (9% más) */
}
/* Archivo: style.css (Añadir al final) */

/* ======== ESTILOS PARA LA CAJA DE PRECIOS ======== */
.pricing-box {
    max-width: 800px;
    margin: 40px auto; /* Centra la caja y le da espacio */
    padding: 30px;
    background-color: #fff;
    border: 2px solid var(--dorado-suave);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.pricing-box h3 {
    font-size: 1.8rem;
    color: var(--violeta-profundo);
    margin-bottom: 20px;
}

.pricing-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.price-display {
    font-family: var(--font-titulos);
    font-size: 2rem;
    color: var(--violeta-profundo);
    font-weight: 400;
    margin: 20px 0;
}

.payment-info {
    font-size: 1rem !important; /* Hacemos la letra un poco más pequeña */
    font-style: italic;
    color: var(--gris-calido);
    margin-top: 15px !important;
}