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

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

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

    .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    }

    .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;
    }
    .TituloGaleria{
        font-size: 2rem;
        color: var(--VinoAVOS);
    }