/* ============================= */
/* RESET & BODY */
/* ============================= */
body {
    box-sizing: border-box;
    margin: 0;
    font-family: sans-serif;
}

/* ============================= */
/* CONTENEDOR PRINCIPAL */
/* ============================= */

.style-titulo-carrusel {
    margin: 0;
    font-size: 2rem;
    display: flex;
    justify-content: center;
}

.content-carrusel-container {
    display: flex;
    height: 41rem;
    width: 100%;
    justify-content: center;
}

/* ============================= */
/* CONTENEDOR DE SLIDES */
/* ============================= */
.carrusel-container-slides {
    position: relative;
    height: 100%;
    width: 300px; /* ðŸ”¥ ancho fijo para 1 slide */
}

.Carrusel-elements {
    width: 100%;
    height: 100%;
    overflow: hidden; /* oculta slides extra */
    position: relative;
    scrollbar-width: none; /* Firefox */
}

/* ============================= */
/* LISTA DE SLIDES */
/* ============================= */
.ol-slide-carrusel {
    height: 100%;
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    transition: transform 0.4s ease;
}

.list-slides {
    flex: 0 0 100%; /* ðŸ”¥ 1 slide exacto */
    width: 100%;
    height: 100%;
}

/* ============================= */
/* IMAGEN Y CONTENIDO DE CADA SLIDE */
/* ============================= */
.link-slides-carrusel {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    color: black;
    text-decoration: none;
}

.fig-img-slide-carrusel {
    width: 100%;
    height: 80%;
    overflow: hidden;
    margin: 0;
}

.img-slide-carrusel {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.foot-text-slide-carrusel {
    padding: 15px;
    background-color: #f4f2f2;
    width: max-content;
    font-size: 1.1rem;
    margin: 0;
    text-align: center;
}

/* ============================= */
/* BOTONES NEXT / BACK */
/* ============================= */
.go-next,
.go-back {
    position: relative;
    padding: 0;
    display: flex;
    border: 0;
    background-color: transparent;
    cursor: pointer;
}

.go-next:hover .button_carrusel_img {
    transform: translateX(5px);
}

.go-back:hover .button_carrusel_img {
    transform: translateX(-5px);
}

.button_carrusel_img {
    width: 34px;
    height: 35px;
    transition: transform 0.3s;
}

/* ============================= */
/* BULLETS / INDICADORES */
/* ============================= */
.bt-guide-slide-carrusel {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.container-bullets-guide-slide-carrusel {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.bullet-guide-slide-carrusel {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.span-bullet-guide-slide-carrusel {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #2b2b2b;
    opacity: 0.4;
    transition: opacity 0.3s;
}

.span-bullet-guide-slide-carrusel.active {
    opacity: 1;
}



