.ca-ant-contenedorTarjetasGiratorias {
  display: grid;
  grid-gap: 3rem;
  padding-left: 15px;
  padding-right: 15px;
}

.ca-ant-contenedorTarjetasGiratoriasTemplate2 { grid-template-columns: repeat(2, 1fr); }
.ca-ant-contenedorTarjetasGiratoriasTemplate3 { grid-template-columns: repeat(3, 1fr); }
.ca-ant-contenedorTarjetasGiratoriasTemplate4 { grid-template-columns: repeat(4, 1fr); }
.ca-ant-contenedorTarjetasGiratoriasTemplate5 { grid-template-columns: repeat(5, 1fr); }
.ca-ant-contenedorTarjetasGiratoriasTemplate7 { grid-template-columns: repeat(12, 1fr); }
.ca-ant-contenedorTarjetasGiratoriasTemplate9 { grid-template-columns: repeat(20, 1fr); }

@media (min-width: 768px) and (max-width: 991px) {
  .ca-ant-contenedorTarjetasGiratoriasTemplate2,
  .ca-ant-contenedorTarjetasGiratoriasTemplate3,
  .ca-ant-contenedorTarjetasGiratoriasTemplate4,
  .ca-ant-contenedorTarjetasGiratoriasTemplate5,
  .ca-ant-contenedorTarjetasGiratoriasTemplate7,
  .ca-ant-contenedorTarjetasGiratoriasTemplate9 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ca-ant-tarjetaGiratoriaGlobal { grid-column: initial!important; }
}

@media (max-width: 767px) {
  .ca-ant-contenedorTarjetasGiratoriasTemplate2,
  .ca-ant-contenedorTarjetasGiratoriasTemplate3,
  .ca-ant-contenedorTarjetasGiratoriasTemplate4,
  .ca-ant-contenedorTarjetasGiratoriasTemplate5,
  .ca-ant-contenedorTarjetasGiratoriasTemplate7,
  .ca-ant-contenedorTarjetasGiratoriasTemplate9 {
    grid-template-columns: 1fr;
  }
  
  .ca-ant-tarjetaGiratoriaGlobal { grid-column: initial!important; }
}

.ca-ant-tarjetaGiratoria {
  perspective: 1000px;
  width: 100%;
  height: 200px;
}

@media (min-width: 1500px) { .ca-ant-tarjetaGiratoria { height: 220px; } }
@media (min-width: 450px) and (max-width: 1093px) { .ca-ant-tarjetaGiratoria { height: 244px; } }
@media (max-width: 449px) { .ca-ant-tarjetaGiratoria { height: 280px; } }

.ca-ant-tarjetaGiratoriaInner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  border-radius: 10px;
  box-shadow: 0px 10px 10px -10px rgb(0 0 0), 0px -10px 10px -16px rgb(0 0 0);
}

.ca-ant-tarjetaGiratoria:hover .ca-ant-tarjetaGiratoriaInner {
  transform: rotateY(180deg);
}

.ca-ant-tarjetaGiratoriaBack { transform: rotateY(180deg); }

.ca-ant-tarjetaGiratoriaFront, .ca-ant-tarjetaGiratoriaBack {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
}

.ca-ant-tituloTarjetaGiratoria {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
  font-weight: bold;
}

.ca-ant-tarjetaGiratoriaBack p {
  font-size: 14px!important;
  text-align: center;
  margin-bottom: 0!important;
}

.ca-ant-tarjetaGiratoriaBack a {
  color: #14b1e7 !important;
  text-decoration: none!important;
}