/* =================================================================
   HERO · slider a pantalla completa, texto blanco puro sin overlay
================================================================= */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hero-slider { position: absolute; inset: 0; z-index: 1; }
.hero-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.6s ease-in-out;
}
.hero-slide.active { opacity: 1; }
/* SIN overlay - imágenes originales sin filtro */

.hero-content {
    position: relative; z-index: 3;
    text-align: center; color: var(--white);
    max-width: 950px; padding: 7rem 2rem 5rem;
    width: 100%;
}

.hero-eyebrow {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 0.8rem; min-height: 1.5rem;
    font-family: var(--sans); font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.45em; text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--white);
    white-space: nowrap;
    transition: opacity 1.2s ease;
}
.hero-eyebrow.hide { opacity: 0; }
.hero-eyebrow:not(:empty)::before,
.hero-eyebrow:not(:empty)::after {
    content: ''; display: block; width: 30px; height: 1px;
    background: rgba(255,255,255,0.7); flex-shrink: 0;
}

/* Título héroe - serif elegante, BLANCO, MUY GRUESO, SIN SOMBRA */
.hero-title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 5.5vw, 5rem);
    font-weight: 700;
    font-style: normal;
    line-height: 1.1; margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: none;
    transition: opacity 1.2s ease;
}
.hero-title.hide { opacity: 0; }

/* Subtítulo héroe - misma serif, BLANCO, SIN SOMBRA */
.hero-tagline {
    font-family: var(--serif); font-style: normal;
    font-size: clamp(1.4rem, 2.3vw, 1.9rem); font-weight: 600;
    max-width: 700px; margin: 0 auto 2.5rem;
    line-height: 1.4; color: #ffffff;
    text-shadow: none;
    transition: opacity 1.2s ease;
}
.hero-tagline.hide { opacity: 0; }

/* Más espacio negativo entre títulos/subtítulos y los CTA (independiente de si
   el tagline está visible u oculto por slide). */
.hero-cta-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 3.5rem; }
.hero-indicators {
    position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
    z-index: 4; display: flex; gap: 0.7rem;
}
.hero-indicator {
    width: 35px; height: 3px; background: rgba(255,255,255,0.3);
    border: none; cursor: pointer; padding: 0; transition: background 0.4s;
}
.hero-indicator.active { background: var(--white); }

/* Responsive — hero */
@media (max-width: 768px) {
    .hero-content { padding: 8rem 1.5rem 5rem; }
}
