

h4, h2, small, a{
    margin:0;
    padding: 0;
}

a{
    text-decoration: none;
}

.carousel{
    width: 100%;
    margin: 0px 0px;
}

@media(min-width:768px){
    .carousel{
        margin: 0px 60px;
    }
}

.carousel h2{
    font-size: 45px;
    line-height: 38px;
    padding-bottom: 50px;
    opacity: .9;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    color: #ffffff;

}

.carrusel-list{
    position:relative;
    display: flex;
    align-items: center;
    width: 1270px;
    height: 304px;
    padding: 10px 0px;
    margin: 0px auto;
    max-width: 70vw;
    overflow: hidden;
}

.carrusel-track {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    transition: 1s cubic-bezier(0.25, 0.1, 0.25, 1); /* Ajusta los valores de cubic-bezier según tu preferencia */
}


.carrusel{
    position: relative;
    width: 300px;
    padding: 0 18px;
    float: left;
    box-sizing: border-box;
    display: flex;
    height: 100%;
}

.carrusel h4{
    position: absolute;
    z-index: 1;
    font-size: 22px;
    line-height: 23px;
    color: #ffffff;
    padding: 15px;


}

.carrusel h4 small{
    font-size: 15px;
    display: block;
}

.carrusel a img{
    object-fit: cover;
    height: 300px;
    width: 200px;
    border-radius: 15px;
    transition: .3s ease-in-out;
    background-color: rgb(255, 255, 255);
}

@media(min-width:768px){
    .carrusel{
        width: 275px;
    }
    .carrusel a img{
        width: 250px;
    }
}

.carrusel-arrow{
    border-radius: 50px;
    background-color: #ffffff;
    position: absolute;
    z-index: 4;
    width: 48px;
    height: 48px;
    text-align: center;
    border: 0;
    cursor: pointer;
}

.carrusel-arrow:focus{
    outline: 0;
}

.carrusel-arrow svg{
    width: 12px;
    height: 100%;
    color: rgba(0, 0, 0, 0.7);

}

.carrusel-prev{
    left: 0px;
    
}

.carrusel-next{
    right: 0px;
}

.flip-card {
    background-color: transparent;
    width: 100%;
    height: 160px; 
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.flip-card-front {
    background-color: #fff;
    color: #000;
}

.flip-card-back {
    background-color: #0066CC;
    color: white;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.flip-card-back-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 10px;
  }

  .flip-card-back-text {
    text-align: center;
  }

  .ver-mas-link {
    color: blue;
  }

  .carrusel .card {
  position: relative;
  overflow: hidden;
}

.card:focus {
  outline: none;
}






  


  
