/* --- ESTILOS PÁGINA EVENTOS --- */

.eventos-bg {
    background-color: #0b0e14;
    color: #e2e8f0;
    font-family: 'Montserrat', sans-serif;
}

/* 1. HERO */
.eventos-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -90px;
    padding-top: 90px;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    filter: brightness(0.6);
}
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 20px; }

.hero-label {
    display: block; color: var(--color-gold); letter-spacing: 4px;
    text-transform: uppercase; font-size: 0.8rem; margin-bottom: 1rem; font-weight: 700;
}
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.1; margin-bottom: 1.5rem; color: #fff; text-shadow: 0 5px 20px rgba(0,0,0,0.8);
}
.text-gold-glow { color: var(--color-gold); font-style: italic; }
.hero-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;      /* Un poco más grande para leer mejor */
    color: #ffffff;         /* Blanco puro (El tuyo parece gris o azul en la foto) */
    font-weight: 600;       /* Letra más gruesa (Semibold) */
    
    /* EL SECRETO: Sombra detrás de las letras para separarlas del fondo */
    text-shadow: 0 2px 4px rgba(0,0,0,0.9), 0 0 15px rgba(0,0,0,0.5);
    
    line-height: 1.5;
    max-width: 800px;       /* Un poco más ancho */
    margin: 0 auto 2rem auto;
}

/* Botón Sólido */
.btn-gold-solid {
    display: inline-block; background: var(--color-gold); color: #000;
    padding: 15px 35px; border-radius: 50px; font-weight: 700; text-transform: uppercase; text-decoration: none;
    transition: all 0.3s;
}
.btn-gold-solid:hover { background: #fff; transform: translateY(-3px); }


/* 2. INTRO */
.intro-eventos { 
    padding: 120px 0; /* Más aire arriba y abajo */
    
    /* FONDO SPOTLIGHT: */
    /* Crea una luz sutil en el centro y oscuridad en los bordes */
    background: radial-gradient(circle at center, #1a2332 0%, #050608 100%);
    
    position: relative;
}

.intro-eventos::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 100px; height: 3px;
    background: var(--color-gold);
}
.section-title { 
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem; /* Más grande e imponente */
    color: #fff; 
    margin-bottom: 2rem; 
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}
/* La palabra "Perfecto" destacada */
.highlight-gold {
    color: var(--color-gold);
    font-family: 'Playfair Display', serif; /* Si no tienes esta fuente, usa 'serif' */
    font-style: italic;
    text-transform: none; /* Dejamos que se vea en minúscula/título para contraste */
    font-weight: 400;
    font-size: 3.5rem; /* Un poco más grande que el resto */
}

.section-desc-center { 
    max-width: 800px; 
    margin: 0 auto 4rem; /* Más separación con los iconos */
    
    color: #fbfcfd; /* Un gris más claro y limpio */
    font-size: 2.15rems; /* Letra más grande para lectura cómoda */
    line-height: 1.9; /* Líneas más separadas (Elegancia) */
    font-weight: 300;
}

.features-row {
    display: flex; 
    justify-content: center; 
    gap: 20px; 
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Tarjeta individual */
.feat-card {
    background: rgba(255, 255, 255, 0.03); /* Fondo casi invisible */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Borde sutil */
    border-radius: 12px;
    padding: 20px 30px;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    
    min-width: 160px;
    transition: all 0.3s ease;
}

/* Efecto al pasar el mouse */
.feat-card:hover {
    background: rgba(212, 175, 55, 0.05); /* Brillo dorado muy suave */
    border-color: var(--color-gold); /* Borde se pone dorado */
    transform: translateY(-5px);
}

/* Caja del Icono */
.feat-icon-box {
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Círculo decorativo opcional */
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

.feat-icon-box svg {
    width: 24px;
    height: 24px;
}

/* Texto */
.feat-card span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #e2e8f0; /* Blanco suave */
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .eventos-hero {
        margin-top: 0;
        padding-top: 80px;
        height: auto;
        min-height: 60vh;
    }
    .hero-title { font-size: 2rem; }
    .hero-desc { font-size: 1rem; }
}

@media (max-width: 600px) {
    .features-row {
        gap: 10px;
    }
    .feat-card {
        flex: 1 1 45%; /* En móvil, 2 por fila */
        padding: 15px;
    }
}


/* 3. ESPACIOS (ZIG ZAG) */
.spaces-section { padding: 50px 0 100px; }

.space-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 8rem;
}
.space-row:last-child { margin-bottom: 0; }

/* Invertir orden */
.space-row.reverse .space-img { order: 2; }
.space-row.reverse .space-info { order: 1; }

/* Imagen */
.img-frame {
    width: 100%; height: 450px;
    background-size: cover; background-position: center;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.5s;
}
.space-row:hover .img-frame { transform: scale(1.02); }

/* Info */
.space-cat { color: var(--color-gold); text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; display: block; margin-bottom: 10px; }
.space-info h3 { font-size: 2.2rem; color: #fff; margin-bottom: 1.5rem; font-family: 'Montserrat', sans-serif; }
.space-info p { color: #a0aec0; line-height: 1.7; margin-bottom: 2rem; }

/* Grid de Capacidades */
.capacity-grid {
    display: flex; gap: 20px; flex-wrap: wrap;
}
.cap-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 12px;
    display: flex; flex-direction: column; align-items: center;
    min-width: 90px;
}
.cap-icon { font-size: 1.2rem; margin-bottom: 5px; }
.cap-item strong { color: #fff; font-size: 1.2rem; }
.cap-item small { color: #888; font-size: 0.7rem; text-transform: uppercase; }


/* =========================================
   4. CONTACTO EVENTOS (DISEÑO PREMIUM)
   ========================================= */
.event-contact-premium {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Fondo con Parallax Fijo */
.cta-event-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efecto Parallax */
    z-index: 0;
    filter: brightness(0.4); /* Oscurecer para que el texto resalte */
}

/* Overlay sutil */
.cta-event-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(circle, rgba(11,14,20,0.6) 0%, #0b0e14 100%);
    z-index: 1;
}

.relative-z { position: relative; z-index: 2; display: flex; justify-content: center; }

/* Tarjeta Glass Central */
.cta-event-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255,255,255,0.2); /* Luz arriba */
    
    border-radius: 20px;
    padding: 60px 50px;
    max-width: 800px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* Textos */
.cta-label {
    display: block;
    color: var(--color-gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.cta-desc {
    color: #cbd5e0;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Botones */
.cta-buttons-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Botón Dorado (WhatsApp) */
.btn-event-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-gold);
    color: #000;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}
.btn-event-gold:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
}

/* Botón Borde (Correo) */
.btn-event-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.btn-event-outline:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: rgba(255,255,255,0.05);
}

/* Ajuste Móvil */
@media (max-width: 768px) {
    /* Hero */
    .eventos-hero {
        margin-top: 0;
        padding-top: 80px;
        height: auto;
        min-height: 60vh;
    }
    .hero-title { font-size: 2rem; }
    .hero-desc { font-size: 1rem; }
    
    /* Sección de espacios */
    .space-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }
    
    /* Reset del orden en móvil */
    .space-row.reverse .space-img,
    .space-row.reverse .space-info {
        order: unset;
    }
    
    /* Imagen */
    .img-frame {
        width: 100%;
        height: 250px;
        border-radius: 12px;
    }
    
    .space-info h3 { font-size: 1.6rem; }
    .space-info p { font-size: 0.95rem; }
    
    /* Capacidades */
    .capacity-grid {
        justify-content: center;
    }
    .cap-item {
        min-width: 70px;
        padding: 8px 12px;
    }
    
    /* CTA */
    .cta-event-card { padding: 40px 20px; }
    .cta-title { font-size: 2rem; }
    .cta-buttons-row { flex-direction: column; width: 100%; }
    .btn-event-gold, .btn-event-outline { width: 100%; justify-content: center; }
    .cta-event-bg { background-attachment: scroll; } /* Desactivar parallax en móvil */
    
    /* Secciones generales */
    .section-title { font-size: 1.8rem; }
    .highlight-gold { font-size: 2rem; }
    .spaces-section { padding: 30px 0 60px; }
    .intro-eventos { padding: 60px 0; }
}