*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f3f3f3;
    color:#153b24;
}


/* =========================
   CONTENEDOR
========================= */

.contenedor{
    width:100%;
    max-width:1600px;
    margin:auto;
    padding:35px 30px;
}



/* =========================
   HEADER
========================= */

.header-superior{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:40px;
    gap:20px;
}

.logo-area{
    display:flex;
    align-items:center;
    gap:18px;
}

.logo-area img{
    width:65px;
}

.titulo-conjunto{
    font-size:30px;
    font-weight:bold;
    line-height:1.2;
    color:#1f6a31;
}

.volver{
    text-decoration:none;
    color:#1f6a31;
    font-size:18px;
    font-weight:bold;
}



/* =========================
   TITULOS
========================= */

h1{
    font-size:38px;
    margin-bottom:10px;
    color:#10264d;
}

.subtitulo{
    font-size:22px;
    color:#6b7280;
    margin-bottom:35px;
}



/* =========================
   CARRUSEL
========================= */

.carrusel-container{
    position:relative;
}

.carrusel{
    display:flex;
    flex-wrap:nowrap;
    align-items:stretch;
    gap:25px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
    padding:10px 5px 20px;
}

.carrusel::-webkit-scrollbar{
    display:none;
}



/* =========================
   CARD
========================= */

.card{
    min-width:340px;
    max-width:340px;
    background:#ffffff;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    flex-shrink:0;
}


/* =========================
   IMAGEN
========================= */
.imagen-card{
    position:relative;
    height:420px;
}

.imagen-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.15),
        transparent
    );
}

.imagen-card h2{
    position:absolute;

    left:20px;
    bottom:18px;

    color:#ffffff;

    font-size:25px;
    font-weight:bold;

    z-index:2;
}



/* =========================
   CONTENIDO
========================= */

.contenido-card{
    padding:22px;
}

.horarios strong{
    display:block;
    font-size:15px;
    margin-bottom:6px;
    color:#1f6a31;
}

.horarios p{
    font-size:15px;
    line-height:1.6;
    color:#4b5563;
}



/* =========================
   BOTONES
========================= */

.botones{
    display:flex;
    gap:12px;
    margin-top:20px;
}

.botones a{
    flex:1;

    text-decoration:none;

    text-align:center;

    padding:12px;

    border:2px solid #1f6a31;

    border-radius:14px;

    color:#1f6a31;

    font-size:15px;
    font-weight:600;

    transition:0.3s;
}

.botones a:hover{
    background:#1f6a31;
    color:#ffffff;
}



/* =========================
   FLECHAS
========================= */

.flecha{
    position:absolute;

    top:38%;

    width:48px;
    height:48px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,0.95);

    box-shadow:0 4px 12px rgba(0,0,0,0.12);

    cursor:pointer;

    font-size:24px;

    color:#1f6a31;

    z-index:5;
}

.izquierda{
    left:-12px;
}

.derecha{
    right:-12px;
}



/* =========================
   INDICADORES
========================= */

.indicadores{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:18px;
}

.indicadores span{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#cfcfcf;
}

.indicadores .activo{
    background:#1f6a31;
}



/* =========================
   RESPONSIVE
========================= */

@media(min-width:769px){
    .indicadores span:nth-child(n+5){
        display:none;
    }
}

@media(max-width:768px){

    .contenedor{
        padding:20px 14px;
    }

    .header-superior{
        justify-content:space-between;
        align-items:flex-start;
        gap:10px;
        margin-bottom:25px;
    }

    .logo-area img{
        width:42px;
        gap:12px;
        flex:1;
        white-space:nowrap;
    }

    .titulo-conjunto{
        font-size:16px;
        line-height:1.1;
    }

    .volver{
        font-size:14px;
    }

    h1{
        font-size:28px;
    }

    .subtitulo{
        font-size:16px;
        margin-bottom:28px;
    }

    .card{
        min-width:88%;
        max-width:88%;
    }

    .imagen-card img{
        aspect-ratio:5 / 6;
    }

    .imagen-card h2{
        font-size:20px;
    }

    .flecha{
        display:none;
    }

    .botones a{
        padding:10px;
        font-size:14px;
    }

}