
    .carousel-container {
    position: relative;
    width: 70%;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    margin-bottom: 50px;
    }

    .carousel {
    display: flex;
    transition: transform 0.5s ease;
    }

    .carousel-item {
    flex: 0 0 20%;
    margin-right: 13px;
    min-width: 250px;
    min-height: 250px;
    }

    .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    cursor:-webkit-zoom-in;
    }
    .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
    }

    .left-btn {
    left: 0;
    }

    .right-btn {
    right: 0;
    }

    /* Estilos para el modal */
    .modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    }

    .modal.show {
    opacity: 1;
    visibility: visible;
    }

    .modal-content {
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    }

    .modal-content img {
    width: 100%;
    height: auto;
    }

    .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    }
    .carousel-item {
        position: relative; /* Permite posicionar el botón dentro del item */
        margin-right: 13px; /* Margen entre los items */
    }
    
    .plus-btn {
        position: absolute; /* Posiciona el botón sobre la imagen */
        top: 10px; /* Distancia desde la parte superior */
        right: 10px; /* Distancia desde la parte derecha */
        background-color: rgba(0, 0, 0, 0.7); /* Fondo semitransparente */
        color: white; /* Color del texto */
        border: none; /* Sin borde */
        border-radius: 50%; /* Forma circular */
        width: 30px; /* Ancho del botón */
        height: 30px; /* Alto del botón */
        font-size: 20px; /* Tamaño del símbolo + */
        cursor: pointer; /* Cambia el cursor al pasar sobre el botón */
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none; /* Elimina el subrayado del enlace */
    }
    
    .plus-btn:hover {
        background-color: rgba(0, 0, 0, 0.9); /* Fondo más oscuro al pasar el mouse */
    }