/* --- ESTILOS PARA EL HERO & CAROUSEL SLIDER --- */


.hero-content {
    /* Asegura que el contenido esté por encima del overlay */
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

/* Estilos para la sección Hero con imagen de fondo */

.hero-section {
    background: url('assets/hero_background.jpg') no-repeat center center/cover;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center; /* Asegura que todo el texto dentro del contenedor se centre */
    color: var(--white);
    position: relative;
    z-index: 1;
    padding: 0 2rem;
}

/* Capa semi-transparente para mejorar la legibilidad del texto */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

/* Estilos del título principal del hero */
.hero-section h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 8px var(--shadow-color);
    margin-bottom: 1rem;
}

/* Estilos del subtítulo o eslogan */
.hero-section p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto; /* La clave para centrarlo */
    padding: 0 1rem; /* Padding interno para que no se pegue en móviles */
}


/* SLIDER */

.hero-slider-container {
    /* El contenedor es el "viewport" visible */
    width: 100%;
    overflow: hidden; /* Oculta las secciones fuera de vista */
    position: relative;
    /* 🛑 CAMBIO CLAVE: Usa vh para ocupar el 100% de la altura de la vista */
    height: 95vh; 
    max-height: 100vh; /* max-height ahora también es 100vh */
}

.hero-slider-track {
    /* ANTES: 500% (5 slides) */
    width: 800%; /* AHORA: 8 secciones * 100% cada una */
    display: flex;
    transition: transform 0.6s ease-in-out; 
    cursor: grab; 
}


.hero-slider-track:active {
    cursor: grabbing;
}


/* SLIDE */

.hero-slide {
    /* Cada diapositiva ocupa el 100% del ancho del contenedor */
    width: 12.5%; /* AHORA: 100% / 7 ≈ 14.2857% */ 
    flex-shrink: 0; /* Evita que el contenido interno intente reducir el ancho */
    /* 🛑 CAMBIO CLAVE: Usa vh aquí también 🛑 */
    height: 100vh;
    
    /* Estilos de fondo del hero original */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    position: relative; /* Para el overlay */
}

/* Overlay sutil para mejorar la legibilidad del texto */
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}



/* --- (DOTS) INDICADORES DE NAVEGACIÓN  --- */

.hero-slider-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 5px;
}

.dot {
    background: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.75);
    transform: scale(1.5);
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}



/* --- FLECHAS DE NAVEGACIÓN --- */

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    padding: 20px 15px;
    font-size: 1.5rem; /* Hace que el icono (flecha) o texto sea más grande */
    cursor: pointer;
    z-index: 10;
    opacity: 1;
    transition: opacity 0.3s;
}

.slider-nav:hover {
    opacity: 0.5;
}

.slider-nav.prev {
    left: 20px;
    border-radius: 10px 10px 10px 10px;
}

.slider-nav.next {
    right: 20px;
    border-radius: 10px 10px 10px 10px;
}
