.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 1070px;
    margin: 0 auto;
}

.carousel-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.prev-button {
    left: -50px;
}


.next-button {
    right: -50px;
}

.carousel-button img {
    width: 50px;
    height: auto;
}

.carousel-cards {
    display: flex;
    gap: 20px;
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
    justify-content: center;
}

.carousel-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 300px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.carousel-card__image {
     border-radius: 15px 15px 0 0;
    height: auto;   
    width: 25%;
    margin-top: 1rem;
    margin-bottom: -1rem;
}

.carousel-card__content {
    padding: 20px;
}

.carousel-card__title {
  color: #0033cb;
    font-size: 22px;
    margin-bottom: 10px;
    text-align: center;
    letter-spacing: -0.5px;
}

.carousel-card__description {
       color: #0D207F;
    font-size: 15px;
    text-align: center;
}

@media (max-width: 768px) {
   .carousel-cards {
        align-items: center;
        flex-direction: column;
        margin-bottom: -10rem;

    .carousel-card {
        width: 100%;
    }

    .carousel-button {
        display: none; /* Ocultar botones en pantallas pequeñas */
    }
}
