/* Home (ES/PT) — bloques añadidos en la home: "Para Niños" y fila de CTAs.
   Alcance limitado a clases .home-* para no afectar al resto del sitio. */

/* ── Para Niños: tarjetas de anuncio ──────────────────────────────── */
.home-kids-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.home-kids-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  padding: 32px;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  isolation: isolate;
  transition: transform .35s ease, box-shadow .35s ease;
}
.home-kids-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, .18);
}
.home-kids-card--colores { background: linear-gradient(145deg, #ff8a5b, #ef4060); }
.home-kids-card--numeros { background: linear-gradient(145deg, #36a9e1, #0a3d91); }
.home-kids-card--alfabeto { background: linear-gradient(145deg, #2ecc71, #1e8449); }
.home-kids-card-top { position: relative; z-index: 2; }
.home-kids-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .85;
}
.home-kids-card-title { margin: 10px 0 0; color: #fff; }
.home-kids-card-text {
  margin: 12px 0 0;
  max-width: 78%;
  font-size: 15px;
  line-height: 1.5;
  opacity: .92;
}
.home-kids-cta {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-weight: 600;
}
.home-kids-cta::after {
  content: "\2192";
  transition: transform .3s ease;
}
.home-kids-card:hover .home-kids-cta::after { transform: translateX(5px); }
.home-kids-mascot {
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 150px;
  height: auto;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .22));
}

/* ── Fila de botones CTA reutilizable (bloque "Negocios y Socios") ── */
.home-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

@media (max-width: 991px) {
  .home-kids-grid { grid-template-columns: 1fr; gap: 18px; }
  .home-kids-card { min-height: 260px; }
  .home-kids-card-text { max-width: 100%; }
}
