/* ===============================
   PANTALLA FIT ZONE
=============================== */

.fit-title {
    text-align: center;
}

.fit-zone {
    background-image: url(https://i.postimg.cc/15YrFrBq/fit-zone-fondo.webp);
    background-size: cover;
    background-position: center;
    padding: 2rem;
}

.fit-link {
    text-decoration: none;
    cursor: pointer;
}

.actividades {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 20px;
}

.actividad {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    margin-bottom: 60px;
    gap: 40px;
    flex-wrap: wrap;
    color: beige;
    background-color: #3b3c42b9;
    word-wrap: break-word;
    overflow-wrap: break-word;
    border-radius: 10px;
}

.fila-reversa {
    flex-direction: row-reverse;
}

.contenido {
    flex: 1;
    min-width: 250px;
    max-width: 600px;
}

/* ✅ Títulos responsive */
.contenido h3 {
    font-size: clamp(1.3rem, 4vw, 2rem);
    color: #f2d28b;
    margin-bottom: 15px;
}

/* ✅ Texto más corto y limpio */
.contenido p {
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

/* ✅ Quitar viñetas de listas */
.contenido ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contenido ul li {
    margin-bottom: 0.5rem;
}

.icono-blanco {
    filter: invert(100%);
}

.imagen {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 1rem;
}

.imagen img {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 10px #000;
    transition: transform 0.3s ease;
}

.imagen img:hover {
    transform: scale(1.1);
}

/* ===============================
   Modalidades
=============================== */

.modalidades {
    width: 100%;
    padding: 2rem;
    text-align: center;
    background-color: black;
}

.modalidades h3 {
    color: #f2d28b;
    font-weight: 400;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.tarjetas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 20px;
}

.tarjeta {
    width: 300px;
    padding: 2rem;
    background-color: #2c2023c7;
    border: 1px solid #3b3c42;
    border-radius: 5px;
    transition: background-color 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tarjeta:hover {
    background-color: #451a0e;
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.tarjeta h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    text-align: center;
}

.tarjeta p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #b4a6a6;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.tarjeta .btn {
    background-color: #d4a158;
    color: #2c2023;
    padding: 0.6rem 1rem;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    border-radius: 999px;
    transition: background-color 0.3s ease;
}

.tarjeta .btn:hover {
    background-color: #f2d28b;
}

/* ===============================
   Slider
=============================== */

.slider-contenedor {
    width: 100%;
    max-width: 400px;
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.slider {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 10px #000;
    position: relative;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 300%;
}

.slides img {
    width: 100%;
    height: auto;
}

.indicadores {
    display: flex;
    justify-content: center;
    gap: 8px;
    position: absolute;
    bottom: 8px;
    width: 100%;
}

.punto {
    height: 10px;
    width: 10px;
    background-color: #f2d28b;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.punto.activo {
    opacity: 1;
}

/* ===============================
   PANTALLA FIT FEST
=============================== */

.fitness-fest-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card:hover {
    transform: scale(1.10);
    flex: 20;
}

.pasos-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 35px 0 50px 0;
    padding: 2rem;
    flex-wrap: wrap;
    background-color: #2c2023;
    /* fondo general opcional */
}

p span {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.paso {
    flex: 1 1 280px;
    padding: 2rem;
    border-radius: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, background-color 0.4s ease, color 0.4s ease;
}

/* Hover general */
.paso:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background-color: #451a0e;
    /* marrón muy oscuro */
    color: #fff;
}

/* Colores específicos */
.paso-uno,
.paso-tres {
    background-color: #bb8d52;
    /* marrón claro */
    color: #2c2023;
    /* texto oscuro */
}

.paso-dos {
    background-color: #3b3c42;
    /* gris oscuro */
    color: #f2d28b;
    /* amarillo tres */
}

.paso h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.paso p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
}

/* Iconos */
.paso img {
    width: 48px;
    height: 48px;
    filter: invert(100%);
}

/*------ Calendario de Eventos ------*/
/* === Contenedor general === */

.event-container {
    display: flex;
    justify-content: center;
    margin: 50px 0 0 0;
    padding: 30px;
    background-image: url('https://i.postimg.cc/rsn03DC1/event-final-16-9-1.png');
    object-fit: contain;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.event-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 800px;
}

/* === Cada evento === */
.event {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    background: #000000a2;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* === Bloque de fecha estilo inclinado === */
.date {
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    ;
    /* azul */
    color: #fff;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: bold;
    position: relative;
    clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
    min-width: 120px;
}

.date .mes {
    font-size: 1rem;
    letter-spacing: 2px;
}

.date .dia {
    font-size: 2rem;
    line-height: 1;
}

.date .fecha {
    font-size: 0.8rem;
}

/* === Icono de categoría === */
.icono {
    padding: 10px 15px;
    filter: invert(100%);
}

.icono img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}


/* === Detalles del evento === */

.details {
    flex: 1;
    padding: 15px;
}

.details .hora {
    font-size: 0.9rem;

    font-weight: bold;
    margin: 0;
}

.details .titulo {
    font-size: 1.2rem;
    margin: 5px 0;

}

.details p {
    margin: 2px 0;
    font-size: 0.9rem;
}

/* Colores automáticos por orden */
.event-list .event:nth-child(5n+1) .date {
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    /* azul */
}

.event-list .event:nth-child(5n+2) .date {
    background: linear-gradient(135deg, #76b947, #a3de83);
    /* verde */
}

.event-list .event:nth-child(5n+3) .date {
    background: linear-gradient(135deg, #f5af19, #f12711);
    /* naranja */
}

.event-list .event:nth-child(5n+4) .date {
    background: linear-gradient(135deg, #ff512f, #dd2476);
    /* rojo-rosa */
}

.event-list .event:nth-child(5n+5) .date {
    background: linear-gradient(135deg, #7b2ff7, #f107a3);
    /* violeta */
}

/* ===============================
   PANTALLA FIT STUDIO
=============================== */

.hero {
    position: relative;
    height: 100vh;
    background: url('https://i.postimg.cc/LXsJvzQd/bootcamp.webp') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero.workshops {
    background: url('https://i.postimg.cc/nh8QZ9r7/workshop.webp') no-repeat center center/cover;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 1rem;
}

/* Títulos */
.hero-title {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
}

.hero-title span {
    color: #d4a158;
}

/* Subtítulo */
.hero-subtitle {
    font-size: 1.2rem;
    margin: 1rem 0 2rem;
    color: #f2d28b;
}

/* Botón */
.hero-btn {
    background: #d4a158;
    color: #2c2023;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px #e2b58f;
}

.info-section {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #2c2023;
    color: #fff;
}

.info-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #d4a158;
}

.info-section p {
    max-width: 700px;
    margin: auto;
    color: #b4a6a6;
    line-height: 1.6;
}

/* ===============================
   RESPONSIVE OPTIMIZADO FIT ZONE, FEST, STUDIO, EVENTOS
================================= */

/* ===============================
   MEDIA QUERIES
=============================== */

/* Laptops (14/15 pulgadas, 1366px a 1440px) */
@media (max-width: 1440px) {
    .actividades {
        max-width: 1100px;
        /* Reducir ligeramente el ancho máximo para mejor ajuste */
        padding: 50px 20px;
    }

    .actividad {
        gap: 30px;
        padding: 1.5rem;
    }

    .contenido h2 {
        font-size: clamp(1.4rem, 3vw, 1.8rem);
        /* Ligeramente más grande para laptops */
    }

    .contenido p {
        font-size: clamp(0.9rem, 2vw, 1.1rem);
    }

    .imagen img {
        max-width: 85%;
        /* Evitar que las imágenes sean demasiado grandes */
    }

    .tarjetas {
        gap: 1.5rem;
    }

    .tarjeta {
        width: 45%;
        /* Dos tarjetas por fila para mejor uso del espacio */
        max-width: 400px;
    }

    .fitness-fest-container {
        height: auto;
        /* Eliminar altura fija para escalado dinámico */
        max-width: 1200px;
        /* Limitar ancho para laptops */
        gap: 0.5rem;
    }

    .card {
        flex: 1 1 200px;
        /* Asegurar que las tarjetas escalen correctamente */
    }

    .card:hover {
        flex: 1.5;
        /* Reducir expansión en hover para mejor control */
        transform: scale(1.05);
        /* Escala sutil para dispositivos táctiles */
    }

    .hero-title {
        font-size: clamp(3rem, 5vw, 3.5rem);
        /* Ajustar para pantallas de laptops */
    }

    .hero-subtitle {
        font-size: clamp(1rem, 2vw, 1.3rem);
    }

    .event-container {
        padding: 25px;
    }

    .event-list {
        max-width: 900px;
        /* Optimizar para ancho de laptops */
    }

    .slider-contenedor {
        max-width: 500px;
        /* Ligeramente más grande para laptops */
    }
}

/* Tablets (13/14 pulgadas, 1024px a 1366px) */
@media (max-width: 1366px) {
    .actividades {
        max-width: 1000px;
        padding: 40px 15px;
    }

    .actividad {
        flex-direction: row;
        /* Mantener diseño en fila para tablets grandes */
        gap: 20px;
        padding: 1.5rem;
    }

    .fila-reversa {
        flex-direction: row-reverse;
    }

    .contenido {
        min-width: 200px;
        /* Ajustar para pantallas de tablets más pequeñas */
    }

    .contenido h2 {
        font-size: clamp(1.3rem, 3vw, 1.7rem);
    }

    .contenido p {
        font-size: clamp(0.85rem, 2vw, 1rem);
    }

    .imagen img {
        max-width: 90%;
    }

    .tarjetas {
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 1.5rem;
    }

    .tarjeta {
        width: 48%;
        /* Dos tarjetas por fila para tablets grandes */
        max-width: 380px;
    }

    .fitness-fest-container {
        flex-direction: row;
        /* Mantener fila para tablets grandes */
        height: auto;
        max-width: 1000px;
        gap: 0.5rem;
    }

    .card {
        flex: 1 1 180px;
    }

    .card:hover {
        flex: 1.3;
        /* Menos expansión para táctiles */
        transform: scale(1.05);
    }

    .hero {
        height: 80vh;
        /* Reducir altura para mejor visibilidad */
    }

    .hero-title {
        font-size: clamp(2.5rem, 4vw, 3rem);
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 2vw, 1.2rem);
    }

    .hero-btn {
        padding: 0.7rem 1.3rem;
        font-size: clamp(0.9rem, 2vw, 1rem);
    }

    .event-container {
        padding: 20px;
    }

    .event-list {
        max-width: 800px;
    }

    .slider-contenedor {
        max-width: 450px;
        /* Ajustar para tablets */
    }
}

/* Tablets (9/10 pulgadas, 768px a 1024px) */
@media (max-width: 1024px) {
    .actividades {
        max-width: 900px;
        padding: 40px 15px;
    }

    .actividad {
        flex-direction: column;
        /* Apilar para tablets más pequeñas */
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .fila-reversa {
        flex-direction: column;
    }

    .contenido h2 {
        font-size: clamp(1.2rem, 3vw, 1.6rem);
    }

    .contenido p {
        font-size: clamp(0.8rem, 2vw, 0.95rem);
    }

    .imagen img {
        max-width: 80%;
    }

    .tarjetas {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }

    .tarjeta {
        width: 90%;
        max-width: 360px;
    }

    .fitness-fest-container {
        flex-direction: column;
        /* Apilar tarjetas para tablets pequeñas */
        height: auto;
        max-width: 800px;
        padding: 1rem;
    }

    .card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .card:hover {
        transform: scale(1.03);
        /* Escala sutil para táctiles */
    }

    .hero {
        height: 70vh;
        /* Reducir altura */
    }

    .hero-title {
        font-size: clamp(2rem, 4vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: clamp(0.85rem, 2vw, 1.1rem);
    }

    .hero-btn {
        padding: 0.6rem 1.2rem;
        font-size: clamp(0.85rem, 2vw, 0.95rem);
    }

    .info-section h2 {
        font-size: clamp(1.5rem, 3vw, 1.8rem);
    }

    .info-section p {
        font-size: clamp(0.85rem, 2vw, 1rem);
        max-width: 90%;
    }

    .event-container {
        padding: 15px;
    }

    .event-list {
        max-width: 700px;
    }

    .slider-contenedor {
        max-width: 400px;
    }
}

/* Tablets y Móviles Grandes (600px a 768px) */
@media (max-width: 768px) {
    .actividades {
        padding: 30px 15px;
    }

    .actividad {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 20px;
        margin-bottom: 40px;
    }

    .contenido {
        max-width: 100%;
    }

    .contenido h3 {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
    }

    .contenido p {
        font-size: clamp(0.8rem, 3vw, 0.95rem);
    }

    .imagen {
        max-width: 250px;
    }

    .tarjetas {
        gap: 1rem;
    }

    .tarjeta {
        width: 95%;
        padding: 1.2rem;
    }

    .fitness-fest-container {
        padding: 0.8rem;
        max-width: 600px;
    }

    .pasos-container {
        padding: 1rem;
        gap: 1rem;
    }

    .paso {
        flex: 1 1 100%;
        max-width: 350px;
    }

    .hero {
        height: 60vh;
    }

    .hero-title {
        font-size: clamp(1.8rem, 4vw, 2.2rem);
    }

    .hero-subtitle {
        font-size: clamp(0.8rem, 2vw, 1rem);
    }

    .hero-btn {
        padding: 0.6rem 1rem;
        font-size: clamp(0.8rem, 2vw, 0.9rem);
    }

    .info-section h2 {
        font-size: clamp(1.3rem, 3vw, 1.6rem);
    }

    .info-section p {
        font-size: clamp(0.8rem, 2vw, 0.9rem);
    }

    .event-container {
        padding: 10px;
    }

    .event-list {
        max-width: 600px;
        gap: 10px;
    }

    .date {
        min-width: 90px;
        padding: 8px 12px;
    }

    .date .mes {
        font-size: 0.85rem;
    }

    .date .dia {
        font-size: 1.4rem;
    }

    .date .fecha {
        font-size: 0.65rem;
    }

    .icono img {
        width: 35px;
        height: 35px;
    }

    .details .hora,
    .details p {
        font-size: 0.75rem;
    }

    .details .titulo {
        font-size: 0.95rem;
    }

    .slider-contenedor {
        max-width: 350px;
    }
}

/* Móviles (hasta 600px) */
@media (max-width: 600px) {
    .actividades {
        padding: 25px 10px;
    }

    .actividad {
        padding: 0.8rem;
        gap: 8px;
        margin-bottom: 30px;
    }

    .contenido h3 {
        font-size: clamp(1rem, 3vw, 1.3rem);
    }

    .contenido p {
        font-size: clamp(0.7rem, 2vw, 0.85rem);
    }

    .imagen {
        max-width: 100%;
    }

    .imagen img {
        padding: 0.5rem;
    }

    .tarjetas {
        gap: 0.8rem;
    }

    .tarjeta {
        width: 100%;
        padding: 1rem;
    }

    .fitness-fest-container {
        padding: 0.5rem;
        max-width: 100%;
    }

    .pasos-container {
        padding: 0.8rem;
    }

    .hero {
        height: 50vh;
    }

    .hero-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    .hero-subtitle {
        font-size: clamp(0.75rem, 2vw, 0.9rem);
    }

    .hero-btn {
        padding: 0.5rem 0.9rem;
        font-size: clamp(0.75rem, 2vw, 0.85rem);
    }

    .info-section h2 {
        font-size: clamp(1.2rem, 3vw, 1.5rem);
    }

    .info-section p {
        font-size: clamp(0.75rem, 2vw, 0.85rem);
        max-width: 95%;
    }

    .event-container {
        padding: 10px;
    }

    .event-list {
        gap: 8px;
    }

    .date {
        min-width: 80px;
        padding: 8px 10px;
    }

    .date .mes {
        font-size: 0.8rem;
    }

    .date .dia {
        font-size: 1.3rem;
    }

    .date .fecha {
        font-size: 0.6rem;
    }

    .icono img {
        width: 30px;
        height: 30px;
    }

    .details .hora,
    .details p {
        font-size: 0.7rem;
    }

    .details .titulo {
        font-size: 0.9rem;
    }

    .slider-contenedor {
        max-width: 100%;
    }
}

/* Móviles Pequeños (hasta 480px) */
@media (max-width: 480px) {
    .actividades {
        padding: 20px 8px;
    }

    .actividad {
        padding: 0.6rem;
        gap: 6px;
        margin-bottom: 25px;
    }

    .contenido {
        min-width: 0;
    }

    .contenido h3 {
        font-size: clamp(0.9rem, 3vw, 1.2rem);
    }

    /* Ajuste específico para pantallas 400px a 480px */
    @media (min-width: 400px) and (max-width: 480px) {
        .contenido h3 {
            font-size: 1.15rem; /* evita desbordamiento */
        }
    }

    .contenido p {
        font-size: clamp(0.65rem, 2vw, 0.8rem);
    }

    .imagen img {
        padding: 0.3rem;
    }

    .tarjetas {
        gap: 0.6rem;
    }

    .tarjeta {
        width: 100%;
        padding: 0.8rem;
    }

    .fitness-fest-container {
        padding: 0.5rem;
    }

    .pasos-container {
        padding: 0.5rem;
    }

    .hero {
        height: 45vh;
    }

    .hero-title {
        font-size: clamp(1.4rem, 4vw, 1.8rem);
    }

    .hero-subtitle {
        font-size: clamp(0.7rem, 2vw, 0.85rem);
    }

    .hero-btn {
        padding: 0.5rem 0.8rem;
        font-size: clamp(0.7rem, 2vw, 0.8rem);
    }

    .info-section h2 {
        font-size: clamp(1.1rem, 3vw, 1.3rem);
    }

    .info-section p {
        font-size: clamp(0.7rem, 2vw, 0.8rem);
    }

    .event-container {
        padding: 8px;
    }

    .event-list {
        gap: 6px;
    }

    .date {
        min-width: 70px;
        padding: 6px 8px;
    }

    .date .mes {
        font-size: 0.75rem;
    }

    .date .dia {
        font-size: 1.2rem;
    }

    .date .fecha {
        font-size: 0.55rem;
    }

    .icono img {
        width: 25px;
        height: 25px;
    }

    .details .hora,
    .details p {
        font-size: 0.65rem;
    }

    .details .titulo {
        font-size: 0.85rem;
    }
}

/* Móviles Muy Pequeños (hasta 360px) */
@media (max-width: 360px) {
    .actividades {
        padding: 15px 5px;
    }

    .actividad {
        padding: 0.5rem;
        gap: 5px;
        margin-bottom: 20px;
    }

    .contenido h3 {
        font-size: clamp(0.85rem, 3vw, 1rem);
    }

    .contenido p {
        font-size: clamp(0.6rem, 2vw, 0.75rem);
    }

    .tarjeta {
        padding: 0.6rem;
    }

    .fitness-fest-container {
        padding: 0.3rem;
    }

    .pasos-container {
        padding: 0.3rem;
    }

    .hero {
        height: 40vh;
    }

    .hero-title {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
    }

    .hero-subtitle {
        font-size: clamp(0.65rem, 2vw, 0.8rem);
    }

    .hero-btn {
        padding: 0.4rem 0.7rem;
        font-size: clamp(0.65rem, 2vw, 0.75rem);
    }

    .info-section h2 {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }

    .info-section p {
        font-size: clamp(0.65rem, 2vw, 0.75rem);
    }

    .event-container {
        padding: 5px;
    }

    .event-list {
        gap: 5px;
    }

    .slider-contenedor {
        max-width: 100%;
    }
}

/* ===============================
   AJUSTE: Alta densidad de píxeles (Retina, etc.)
=============================== */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    img {
        image-rendering: -webkit-optimize-contrast;
        -ms-interpolation-mode: nearest-neighbor;
        /* IE fallback */
    }

    /* Si querés, podés afinar también iconos SVG o background-images */
    .icono img,
    .logo,
    .welcome-logo {
        image-rendering: -webkit-optimize-contrast;
    }
}