/**************************
  BANNER ESTÁTICO
***************************/
.banner-kids{
  position: relative;
  width: 100%;
  overflow: visible;
  max-height: 500px;
  margin-top: 80px; /* Espacio para menú fijo */
}

.banner-kids img {
  width: 100%;
  height: 100%;
  max-width: 1920px;
  object-fit: cover;
  display: block;
}
.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
    padding-top: 50px;
}

.card figure {
    width: 100%;
    height: 446px;
    overflow: hidden;
    border-radius: 4px;
    border: 2px solid var(--color-cyan);
    margin-bottom: 20px;
}
figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* responsive */
@media (max-width: 768px) {
    .cont_cards {
      padding: 10px;
    }
    .card figure {
      height: 300px;
    }
    .titulo {
      font-size: 25px!important;
    }
} 