/* ===== HERO EVENTOS (PROPORCIÓN FIJA 16:9) ===== */
.eventos-hero {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.eventos-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(18, 24, 22, 0.55), rgba(18, 24, 22, 0.88)),
        url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    z-index: -1;
}
.eventos-hero-content { position: relative; z-index: 2; padding: 0 5%; max-width: 900px; }
.hero-kicker {
    color: var(--accent);
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}
.eventos-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
    margin-bottom: 0.5rem;
}
.hero-script {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--accent);
    margin-bottom: 1rem;
}
.hero-sub {
    font-weight: 200;
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: var(--text-light);
    max-width: 620px;
    margin: 0 auto 2.2rem;
}

/* ===== TIPOS DE EVENTOS ===== */
.eventos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.evento-card {
    padding: 2.5rem 2rem;
    border: 1px solid rgba(201, 168, 108, 0.2);
    background: rgba(201, 168, 108, 0.03);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}
.evento-card.visible { opacity: 1; transform: translateY(0); }
.evento-card:hover { border-color: var(--accent); transform: translateY(-5px); }
.evento-icon {
    width: 64px; height: 64px;
    border: 1px solid rgba(201, 168, 108, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.3rem;
    color: var(--accent);
    transition: all 0.4s ease;
}
.evento-card:hover .evento-icon { background: var(--accent); color: var(--bg-dark); }
.evento-icon svg { width: 26px; height: 26px; }
.evento-card h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.evento-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ===== QUÉ INCLUYE ===== */
.incluye-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem 2.5rem;
    max-width: 900px;
    margin: 3rem auto 0;
    text-align: left;
}
.incluye-item {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(201, 168, 108, 0.1);
}
.incluye-item .check {
    color: var(--accent);
    font-weight: 500;
    flex-shrink: 0;
}

/* ===== GALERÍA EVENTOS ===== */
.eventos-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s ease;
}
.gallery-item.visible { opacity: 1; transform: scale(1); }
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.85);
}
.gallery-item:hover img { transform: scale(1.05); filter: brightness(1); }
.gallery-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    text-align: center;
    color: var(--accent);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ===== RESERVA POR TELÉFONO ===== */
.phone-box {
    margin: 3rem auto 0;
    max-width: 700px;
    padding: 3.5rem 2rem;
    border: 1px solid rgba(201, 168, 108, 0.3);
    background: rgba(201, 168, 108, 0.04);
}
.phone-label {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}
.phone-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 0.05em;
    line-height: 1.2;
    transition: text-shadow 0.3s ease;
}
.phone-number:hover { text-shadow: 0 0 25px rgba(201, 168, 108, 0.5); }
.phone-alt { margin-top: 0.8rem; font-size: 0.9rem; color: var(--text-muted); }
.phone-alt a { color: var(--text-light); text-decoration: none; border-bottom: 1px solid rgba(201,168,108,0.4); transition: color 0.3s; }
.phone-alt a:hover { color: var(--accent); }
.phone-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-color: #25D366;
    color: #25D366;
}
.btn-whatsapp:hover { background: #25D366; color: var(--bg-dark); }
.btn-whatsapp svg { width: 18px; height: 18px; }
.phone-note {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.9;
}
.phone-note a { color: var(--accent); text-decoration: none; }
.phone-note a:hover { text-decoration: underline; }

/* ===== RESPONSIVE ===== */
@media (max-width: 700px) {
    /* Hero fullscreen como el video del index: abarca toda la pantalla del móvil */
    .eventos-hero {
        height: 100vh;
        height: 100dvh;
        aspect-ratio: auto;
    }
    .phone-box { padding: 2.5rem 1.2rem; }
    .phone-actions .btn { width: 100%; margin-top: 0.8rem; }
    .eventos-hero h1 { font-size: clamp(1.6rem, 8vw, 2.4rem); }
    .hero-sub { font-size: 0.85rem; max-width: 90%; }
    .hero-script { font-size: clamp(1.4rem, 6vw, 1.8rem); margin-bottom: 0.6rem; }
    .hero-kicker { font-size: 0.6rem; margin-bottom: 0.8rem; }
}
/* ===== BOTONES DE TELÉFONO (TAMAÑO PROPORCIONADO) ===== */
.btn-phone {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    border: 1px solid var(--accent);
    background: var(--accent);
    color: var(--bg-dark);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.4s ease;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}
.btn-phone:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-3px);
}

.btn-whatsapp-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem 2.5rem;
    border: 1px solid #25D366;
    background: #25D366;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.4s ease;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}
.btn-whatsapp-phone:hover {
    background: transparent;
    color: #25D366;
    transform: translateY(-3px);
}
.btn-whatsapp-phone svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}