/* ESTILOS GENERALES */
.font-bold {
  font-weight: bold;
}

/* ESTILOS TABLAS */
.table-descripcion-col {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  max-height: 3rem;
}

/* ESTILOS SLIDER */
.swiper-container {
  position: relative;
  padding: 1rem 1rem;
  background-color: white;
  overflow: hidden;
}

.swiper-slide {
  display: flex !important;
  justify-content: center;
}

.swiper-button-prev,
.swiper-button-next {
  color: rgb(7 64 78);
}

.swiper-button-prev {
  left: 5rem;
}

.swiper-button-next {
  right: 5rem;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 2rem;
}

/* ESTILOS TARJETAS */
.card-container {
  /* display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center; */
  margin-top: 25px;
  margin-bottom: 25px;
}

.card {
  width: 340px;
  cursor: pointer;
  text-align: center;
}

.card-img img {
  max-width: 300px;
  height: 200px;
  border-radius: 10px;
}

.card-content {
  background: #008acb;
  margin-top: -90px;
  padding: 30px 10px 10px;
  border-radius: 12px;
  transition: background 0.3s;
  height: 295px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card-content:hover {
  background: #07477a;
}

.card-title {
  margin: unset;
  font-size: 20px;
  font-weight: bold;
  color: white;
  padding-top: 2rem;
}

.card-description {
  margin: unset;
  font-size: 14px;
  color: white;
}

.boton-ver {
  width: 10rem;
  border-radius: 16px;
  padding: 0.5rem;
  margin-top: 1rem;
  background: white;
  cursor: pointer;
  border: none;
  display: flex;
  justify-content: center;
}

.boton-ver a {
  color: #07477a;
  text-decoration: none;
}

.boton-ver:hover {
  background: #07477a;
  border: 1px solid white;
}

.boton-ver:hover a {
  color: white;
}

/* Móviles (hasta 768px) */
@media (max-width: 768px) {
  .tarjeta-slider {
    width: 80vw;
  }
}
