/* @media (min-width: 320px) { */
    .carousel-container {
        position: relative;
        width: 90%;
        margin-left: 5%;
        margin-top: 15px;
        height: 20%;
    }

    .carousel {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 10px;
        padding: 2px;
    }   

    .carousel::-webkit-scrollbar {
        display: none;
    }

    .slide {
        flex: 0 0 100%;
        height: 200px;
        border-radius: 15px;
        scroll-snap-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        box-shadow: 0px 0px 6px black;
        position: relative;
    }

    .slide h3 {
        margin: 0;
    }

    /* Botones */
    .btn {
        display: none;
    }

    .boton-ir-carousel {
        text-decoration: none;
        width: 60px;
        height: 30px;
        border-radius: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: ease 0.2s;
        position: absolute;
        bottom: 10px;
        right: 10px;
        font-size: 20px;
        background-color: black;
        box-shadow: 0px 0px 1px black;
        cursor: pointer;
        color: white;
    }
    
    .boton-ir-carousel:hover {
        box-shadow: 0px 0px 10px gray;
    }
/* } */






























@media (min-width: 360px) {
/*     .carousel-container {
        position: relative;
        width: 90%;
        margin-left: 5%;
        margin-top: 15px;
    }

    .carousel {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 10px;
        padding: 6px;
    }

    .carousel::-webkit-scrollbar {
        display: none;
    }

    .slide {
        flex: 0 0 100%;
        height: 200px;
        border-radius: 15px;
        scroll-snap-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        box-shadow: 0px 0px 6px black;
        position: relative;
    }

    .slide h3 {
        margin: 0;
    }


    .btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgb(150, 150, 150);
        box-shadow: 0px 0px 1px black;
        color: white;
        border: none;
        border-radius: 50%;
        width: 38px;
        height: 38px;
        cursor: pointer;
        font-size: 20px;
        z-index: 10;
        transition: 0.2s ease;
    }


    .btn:hover {
        background-color: rgb(180, 180, 180);
        box-shadow: 0px 0px 4px black;
    }

    .btn-left {
        left: -50px;
    }

    .btn-right {
        right: -50px;
    }

    .boton-ir-carousel {
        text-decoration: none;
        width: 80px;
        height: 40px;
        border-radius: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: ease 0.2s;
        position: absolute;
        bottom: 10px;
        right: 10px;
        font-size: 20px;
        background-color: black;
        box-shadow: 0px 0px 1px black;
        cursor: pointer;
        color: white;
    }
    
    .boton-ir-carousel:hover {
        box-shadow: 0px 0px 10px gray;
    } */
}











@media (min-width: 480px) {
    
    .carousel-container {
        position: relative;
        width: 90%;
        margin-left: 5%;
        margin-top: 15px;
    }

    .carousel {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 10px;
        padding: 6px;
    }

    .carousel::-webkit-scrollbar {
        display: none;
        /* Ocultar la barra de scroll */
    }

    .slide {
        flex: 0 0 100%;
        height: 200px;
        border-radius: 15px;
        scroll-snap-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        box-shadow: 0px 0px 6px black;
        position: relative;
    }

    .slide h3 {
        margin: 0;
    }

    /* Botones */
    .btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgb(150, 150, 150);
        box-shadow: 0px 0px 1px black;
        color: white;
        border: none;
        border-radius: 50%;
        width: 38px;
        height: 38px;
        cursor: pointer;
        font-size: 20px;
        z-index: 10;
        transition: 0.2s ease;
    }


    .btn:hover {
        background-color: rgb(180, 180, 180);
        box-shadow: 0px 0px 4px black;
    }

    .btn-left {
        left: -50px;
    }

    .btn-right {
        right: -50px;
    }

    .boton-ir-carousel {
        text-decoration: none;
        width: 80px;
        height: 40px;
        border-radius: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: ease 0.2s;
        position: absolute;
        bottom: 10px;
        right: 10px;
        font-size: 20px;
        background-color: black;
        box-shadow: 0px 0px 1px black;
        cursor: pointer;
        color: white;
    }
    
    .boton-ir-carousel:hover {
        box-shadow: 0px 0px 10px gray;
    }
}














/* Base: Mobile first (≤ 480px) */

/* 
  Móvil pequeño	  320px	  iPhone SE
  Móvil estándar	360px 	Android medio
  Tablet	        768px 	iPad vertical
  Laptop	        1024px	Notebooks
  PC grande	      1440px	Monitores grandes
*/