:root {
  --kids-ink: #2f2438;
  --kids-muted: #72687a;
  --kids-rose: #bd6f97;
  --kids-rose-deep: #b55786;
  --kids-pink: #ffd8ec;
  --kids-blue: #9ee7ff;
  --kids-mint: #b7ead9;
  --kids-yellow: #ffd36f;
  --kids-lilac: #cab8ff;
  --kids-dark: #1e1620;
}

html {
  scroll-behavior: smooth;
}

body.kids-page {
  background:
    radial-gradient(circle at 9% 5%, rgba(255, 216, 236, 0.88), transparent 26%),
    radial-gradient(circle at 88% 6%, rgba(183, 234, 217, 0.70), transparent 28%),
    linear-gradient(180deg, #fff9fd 0%, #fff6fb 42%, #fffafc 100%);
  color: var(--kids-ink);
  font-family: "Poppins", system-ui, sans-serif;
}

img {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -120px;
  z-index: 99999;
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff;
  color: var(--kids-rose-deep);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.14);
  transition: top 0.25s ease;
}

.skip-link:focus {
  top: 16px;
}

/* LOADING CON GATITO */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 216, 236, 0.94), transparent 30%),
    radial-gradient(circle at 82% 74%, rgba(183, 234, 217, 0.76), transparent 34%),
    linear-gradient(135deg, #fff7fb 0%, #f8f6ff 100%);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-party-bg,
.page-party-effects,
.catalog-party-effects,
.kids-custom-fun {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.loader-party-bg {
  z-index: 1;
}

.kids-loader {
  position: relative;
  z-index: 3;
  width: min(410px, calc(100vw - 42px));
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 28px 26px 34px;
}

.kids-loader-lottie {
  width: 300px;
  height: 300px;
}

.kids-loader-typing {
  width: 25ch;
  overflow: hidden;
  white-space: nowrap;
  color: var(--kids-rose-deep);
  font-family: "Baloo 2", "Poppins", sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  border-right: 3px solid var(--kids-rose-deep);
  animation:
    typingLoader 3.2s steps(25) infinite alternate,
    cursorBlink 0.75s step-end infinite;
}

.kids-loader p {
  margin: 0;
  color: var(--kids-muted);
  font-weight: 800;
  text-align: center;
}

/* CONFETI, BURBUJAS Y FUEGOS */
.loader-confetti,
.page-confetti {
  position: absolute;
  width: 12px;
  height: 18px;
  border-radius: 4px;
  opacity: 0.82;
  animation: confettiFall 6s linear infinite;
}

.loader-confetti--1,
.page-confetti--1 { left: 10%; top: -10%; background: #ff8fb5; animation-delay: 0s; }

.loader-confetti--2,
.page-confetti--2 { left: 25%; top: -12%; background: #ffd36f; animation-delay: 1.2s; animation-duration: 7s; }

.loader-confetti--3,
.page-confetti--3 { left: 48%; top: -10%; background: #8dd7ff; animation-delay: 0.6s; animation-duration: 5.6s; }

.loader-confetti--4,
.page-confetti--4 { left: 70%; top: -12%; background: #cab8ff; animation-delay: 1.7s; animation-duration: 6.8s; }

.loader-confetti--5,
.page-confetti--5 { left: 88%; top: -10%; background: #b7ead9; animation-delay: 0.9s; animation-duration: 7.4s; }

.page-confetti--6 { left: 58%; top: -10%; background: #ffab9d; animation-delay: 2.1s; animation-duration: 6.2s; }

.loader-bubble,
.page-bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  box-shadow: inset 0 0 18px rgba(255,255,255,0.25);
  animation: bubbleRise 9s ease-in-out infinite;
}

.loader-bubble--1,
.page-bubble--1 { width: 120px; height: 120px; left: 6%; bottom: -80px; }

.loader-bubble--2,
.page-bubble--2 { width: 80px; height: 80px; right: 9%; bottom: -70px; animation-delay: 2s; }

.loader-firework,
.page-firework {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffd36f;
  box-shadow:
    0 -34px 0 #ffd36f,
    0 34px 0 #ff8fb5,
    34px 0 0 #8dd7ff,
    -34px 0 0 #cab8ff,
    24px 24px 0 #b7ead9,
    -24px -24px 0 #ffab9d,
    24px -24px 0 #fff1a6,
    -24px 24px 0 #ff8fb5;
  animation: fireworkBurst 2.6s ease-out infinite;
}

.loader-firework--1,
.page-firework--1 { left: 18%; top: 24%; }

.loader-firework--2,
.page-firework--2 { right: 16%; top: 32%; animation-delay: 1.2s; }

/* HERO */
.kids-hero-collage {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--kids-dark);
}

.kids-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.kids-hero-bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.94);
  transform: scale(1.01);
}

.kids-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 20% 35%, rgba(63, 178, 255, 0.15), transparent 22%),
    radial-gradient(circle at 82% 68%, rgba(255, 216, 236, 0.13), transparent 22%),
    linear-gradient(90deg, rgba(20, 14, 22, 0.83) 0%, rgba(20, 14, 22, 0.58) 45%, rgba(20, 14, 22, 0.84) 100%);
}

.kids-hero-collage .container {
  position: relative;
  z-index: 6;
}

.page-party-effects {
  z-index: 3;
}

.kids-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 66px);
}

.kids-hero-gallery {
  position: relative;
  min-height: 545px;
}

.kids-hero-phone {
  position: absolute;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.kids-hero-phone img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 32px 58px rgba(0, 0, 0, 0.34));
}

.kids-hero-phone--back {
  left: 2%;
  top: 86px;
  width: min(330px, 30vw);
  height: 438px;
  z-index: 1;
  transform: rotate(-4deg);
  animation: heroBackFloat 6.2s ease-in-out infinite;
}

.kids-hero-phone--front {
  left: 36%;
  top: 0;
  width: min(355px, 32vw);
  height: 482px;
  z-index: 3;
  transform: rotate(3deg);
  animation: heroFrontFloat 5.8s ease-in-out infinite;
}

.kids-signature {
  position: absolute;
  left: 18%;
  bottom: 0;
  z-index: 4;
  padding: 12px 26px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255,255,255,0.22);
  font-family: "Baloo 2", "Poppins", sans-serif;
  font-size: clamp(1.3rem, 2.3vw, 2rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  white-space: nowrap;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.kids-hero-content {
  max-width: 710px;
  margin-left: auto;
  text-align: center;
}

.kids-line {
  width: 84px;
  height: 6px;
  display: block;
  margin: 0 auto 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.8);
}

.kids-kicker {
  margin: 0 0 14px;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  font-weight: 900;
}

.kids-hero-content h1 {
  margin: 0 0 22px;
  font-family: "Baloo 2", "Poppins", sans-serif;
  font-size: clamp(2.65rem, 5.25vw, 5.3rem);
  line-height: 0.94;
  font-weight: 800;
}

.kids-hero-content p {
  margin: 0 auto 30px;
  max-width: 640px;
  color: rgba(255,255,255,0.84);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* BOTONES ESTILO CTA */
.bt-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  isolation: isolate;
  padding: 19px 22px;
  color: inherit;
  text-decoration: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bt-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 28px;
  transform: translateY(-50%);
  background: rgba(255, 171, 157, 0.52);
  transition: all 0.3s ease;
}

.bt-cta span {
  position: relative;
  font-size: 0.92rem;
  line-height: 18px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  vertical-align: middle;
}

.bt-cta svg {
  position: relative;
  top: 0;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.bt-cta:hover::before {
  width: 100%;
  background: #ffab9d;
}

.bt-cta:hover svg {
  transform: translateX(0);
}

.bt-cta:active {
  transform: scale(0.96);
}

.bt-cta--light {
  color: #fff;
}

.bt-cta--light svg {
  stroke: #fff;
}

.bt-cta--dark,
.bt-cta--modal,
.bt-cta--modal-buy {
  color: var(--kids-ink);
}

.bt-cta--dark svg,
.bt-cta--modal svg,
.bt-cta--modal-buy svg {
  stroke: var(--kids-ink);
}

.bt-cta--dark::before,
.bt-cta--modal::before {
  background: rgba(189, 111, 151, 0.24);
}

.bt-cta--dark:hover::before,
.bt-cta--modal:hover::before {
  background: rgba(189, 111, 151, 0.42);
}

.bt-cta--modal-buy::before {
  background: rgba(125, 103, 255, 0.22);
}

.bt-cta--modal-buy:hover::before {
  background: rgba(125, 103, 255, 0.36);
}

/* LOTTIE */
.kids-hero-lottie,
.kids-catalog-bg-lottie {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  opacity: 0.16;
}

.kids-hero-lottie dotlottie-wc,
.kids-catalog-bg-lottie dotlottie-wc {
  width: 280px;
  height: 280px;
}

.kids-hero-lottie--one {
  left: 1%;
  top: 8%;
}

.kids-hero-lottie--two {
  right: 2%;
  bottom: 8%;
}

/* DECORACIONES */
.kids-fun-decor {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.fun-shape,
.fun-icon,
.rainbow {
  position: absolute;
}

.bubble {
  border-radius: 50%;
  background: rgba(69, 169, 255, 0.22);
  animation: floatBubble 8s ease-in-out infinite;
}

.bubble-1 { width: 120px; height: 120px; left: 5%; top: 16%; }
.bubble-2 { width: 92px; height: 92px; right: 14%; bottom: 14%; background: rgba(69, 169, 255, 0.18); animation-delay: 1s; }
.bubble-3 { width: 64px; height: 64px; right: 8%; top: 12%; background: rgba(255, 227, 95, 0.18); animation-delay: 2s; }

.fun-icon {
  font-size: 1.6rem;
  opacity: 0.85;
}

.sparkle {
  color: #ffd95a;
  animation: sparkleMove 4s ease-in-out infinite;
}

.sparkle-1 { left: 24%; top: 16%; }
.sparkle-2 { right: 22%; top: 22%; animation-delay: 1s; }
.sparkle-3 { left: 53%; bottom: 17%; animation-delay: 1.5s; }

.rocket {
  color: #8dd7ff;
  animation: rocketFly 7s linear infinite;
}

.rocket-1 { left: 9%; bottom: 18%; }
.rocket-2 { right: 12%; bottom: 25%; animation-delay: 2.5s; }

.butterfly {
  color: #ff8fb5;
  animation: butterflyFly 6s ease-in-out infinite;
}

.butterfly-1 { left: 16%; top: 34%; }
.butterfly-2 { right: 17%; top: 30%; animation-delay: 1.4s; }

.star {
  color: #fff1a6;
  animation: starBlink 2.8s ease-in-out infinite;
}

.star-1 { left: 45%; top: 14%; }
.star-2 { right: 9%; top: 38%; animation-delay: .8s; }
.star-3 { right: 24%; top: 7%; animation-delay: 1.2s; }

.rainbow {
  width: 110px;
  height: 55px;
  border-radius: 110px 110px 0 0;
  border-top: 8px solid #ff7ca8;
  border-left: 8px solid #ffca65;
  border-right: 8px solid #7ddcff;
  opacity: 0.48;
  animation: rainbowFloat 7s ease-in-out infinite;
}

.rainbow-1 { right: 6%; bottom: 8%; transform: rotate(-12deg); }
.rainbow-2 { left: 8%; bottom: 22%; transform: scale(.8) rotate(15deg); animation-delay: 1.5s; }

/* MARQUEE */
.kids-marquee-strip {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  background: #110c13;
  color: #fff;
}

.kids-marquee-strip--soft {
  background: linear-gradient(90deg, #1b111a 0%, #251528 100%);
}

.kids-marquee-track {
  display: flex;
  width: max-content;
  gap: 34px;
  align-items: center;
  white-space: nowrap;
  animation: marqueeMove 24s linear infinite;
}

.kids-marquee-track--reverse {
  animation-direction: reverse;
  animation-duration: 28s;
}

.kids-marquee-track span {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.kids-marquee-track i {
  width: 9px;
  height: 9px;
  display: inline-block;
  border-radius: 50%;
  background: var(--kids-rose);
}

/* CATÁLOGO */
.kids-catalog-editorial-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0 120px;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 216, 236, 0.75), transparent 24%),
    radial-gradient(circle at 90% 20%, rgba(183, 234, 217, 0.55), transparent 26%),
    linear-gradient(180deg, #fffafc 0%, #fff7fb 45%, #fffdfd 100%);
}

.kids-catalog-editorial-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(120, 64, 94, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 64, 94, 0.028) 1px, transparent 1px);
  background-size: 58px 58px;
  pointer-events: none;
}

.kids-catalog-editorial-section .container {
  position: relative;
  z-index: 5;
}

.catalog-party-effects {
  z-index: 2;
}

.kids-catalog-bg-lottie--one {
  left: 1%;
  top: 5%;
}

.kids-catalog-bg-lottie--two {
  right: 2%;
  bottom: 4%;
  transform: rotate(-15deg);
}

.kids-catalog-heading {
  max-width: 850px;
  margin: 0 auto 58px;
  text-align: center;
}

.kids-catalog-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  color: var(--kids-rose-deep);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.kids-catalog-heading h2 {
  margin: 0 0 14px;
  font-family: "Baloo 2", sans-serif;
  color: var(--kids-ink);
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  font-weight: 800;
}

.kids-catalog-heading p {
  margin: 0 auto;
  max-width: 720px;
  color: var(--kids-muted);
  line-height: 1.8;
}

.kids-catalog-editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 28px;
}

.kids-template-editorial-card {
  position: relative;
  min-height: 690px;
  border: 0;
  border-radius: 34px;
  overflow: hidden;
  background: #150e17;
  box-shadow: 0 26px 70px rgba(81, 50, 77, 0.16);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.kids-template-editorial-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 38px 90px rgba(81, 50, 77, 0.22);
}

.kids-template-editorial-card__img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  border: 0;
  background: #150e17;
  cursor: zoom-in;
}

.kids-template-editorial-card__img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.kids-template-editorial-card:hover .kids-template-editorial-card__img img {
  transform: scale(1.035);
}

.kids-template-editorial-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(36, 22, 34, 0.04) 0%, rgba(36, 22, 34, 0.10) 48%, rgba(36, 22, 34, 0.90) 100%);
}

.kids-template-editorial-card__shine {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.25) 48%, transparent 68%);
  transform: translateX(-130%);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.kids-template-editorial-card:hover .kids-template-editorial-card__shine {
  transform: translateX(130%);
}

.kids-template-editorial-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  padding: 0 28px 28px;
  color: #fff;
  pointer-events: auto;
}

.kids-template-editorial-card__tag {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.74);
  font-size: 0.80rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kids-template-editorial-card__title {
  margin: 0 0 12px;
  font-family: "Baloo 2", sans-serif;
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 800;
  color: #fff;
}

.kids-template-editorial-card__text {
  margin: 0 0 18px;
  color: rgba(255,255,255,0.84);
  line-height: 1.65;
}
.kids-template-editorial-card__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.kids-template-card-btn {
  width: min(260px, 100%);
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.kids-template-card-btn--view {
  background: rgba(255, 255, 255, 0.14);
  border: 1.5px solid rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(10px);
}

.kids-template-card-btn--view:hover {
  color: var(--kids-rose-deep);
  background: #fff;
  transform: translateY(-3px);
}

.kids-template-card-btn--buy {
  background: linear-gradient(135deg, #bd6f97, #b55786);
  box-shadow: 0 14px 28px rgba(181, 87, 134, 0.34);
}

.kids-template-card-btn--buy:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(181, 87, 134, 0.44);
}

.hidden-template-id {
  display: none !important;
}

.kids-catalog-deco {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.kids-deco {
  position: absolute;
  font-size: clamp(1.5rem, 2.4vw, 3rem);
  opacity: 0.36;
  animation: kidsDecoFloat 8s ease-in-out infinite;
}

.kids-deco--one { top: 12%; left: 7%; color: #ffb84d; }
.kids-deco--two { top: 24%; right: 8%; color: #9ee7ff; animation-delay: 1s; }
.kids-deco--three { bottom: 16%; left: 6%; color: #ff8fc0; animation-delay: 1.8s; }
.kids-deco--four { bottom: 24%; right: 12%; color: #7d67ff; animation-delay: 2.6s; }
.kids-deco--five { top: 50%; left: 4%; color: #8dd7ff; animation-delay: 0.7s; }
.kids-deco--six { top: 44%; right: 5%; color: #ff8fb5; animation-delay: 1.4s; }

.kids-balloon {
  position: absolute;
  width: 42px;
  height: 54px;
  border-radius: 50% 50% 46% 46%;
  background: linear-gradient(135deg, #ff8fc0, #ffd8ec);
  opacity: 0.46;
  animation: balloonFloat 10s ease-in-out infinite;
}

.kids-balloon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 1px;
  height: 42px;
  background: rgba(181, 87, 134, 0.34);
}

.kids-balloon--one { left: 17%; top: 16%; }
.kids-balloon--two { right: 19%; top: 58%; background: linear-gradient(135deg, #9ee7ff, #cab8ff); animation-delay: 2s; }

.kids-rainbow-line {
  position: absolute;
  left: 50%;
  top: 7%;
  width: 160px;
  height: 78px;
  border-radius: 160px 160px 0 0;
  border-top: 10px solid rgba(255, 124, 168, 0.36);
  border-left: 10px solid rgba(255, 202, 101, 0.32);
  border-right: 10px solid rgba(125, 220, 255, 0.32);
  transform: translateX(-50%) rotate(8deg);
  animation: rainbowFloat 8s ease-in-out infinite;
}

/* DISEÑO PERSONALIZADO TIPO HERO LIMPIO */
.kids-custom-hero-section {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #171117;
}

.kids-custom-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.kids-custom-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.1) saturate(0.82);
}

.kids-custom-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(18, 14, 18, 0.82) 0%, rgba(18, 14, 18, 0.62) 48%, rgba(18, 14, 18, 0.30) 100%),
    linear-gradient(180deg, rgba(18, 14, 18, 0.10) 0%, rgba(18, 14, 18, 0.72) 100%);
}

.kids-custom-hero-section .container {
  position: relative;
  z-index: 5;
}

.kids-custom-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
}

.kids-custom-hero-copy {
  max-width: 740px;
}

.kids-custom-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 18px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  backdrop-filter: blur(10px);
}

.kids-custom-hero-copy h2 {
  margin: 0 0 18px;
  max-width: 820px;
  font-family: "Playfair Display", serif;
  color: #fff;
  font-size: clamp(3rem, 5.4vw, 6.1rem);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.kids-custom-hero-copy p {
  margin: 0 0 26px;
  max-width: 680px;
  color: rgba(255,255,255,0.82);
  line-height: 1.78;
  font-size: 1.05rem;
}

.kids-custom-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.kids-custom-pill-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 0.88rem;
  font-weight: 800;
  backdrop-filter: blur(9px);
}

.kids-custom-pill-list i {
  color: #ffbfdf;
}

.kids-custom-hero-phone {
  width: min(330px, 100%);
  height: 560px;
  justify-self: center;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: rotate(3deg);
  animation: heroFrontFloat 5.8s ease-in-out infinite;
}

.kids-custom-hero-phone img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 40px 70px rgba(0, 0, 0, 0.35));
}

/* CUSTOM DECOR */
.kids-custom-fun {
  z-index: 3;
}

.custom-spark {
  color: #ffbf4d;
  animation: sparkleMove 4.2s ease-in-out infinite;
}

.custom-spark--one { left: 9%; top: 18%; }
.custom-spark--two { right: 12%; bottom: 18%; animation-delay: 1.3s; }

.custom-rocket {
  left: 44%;
  top: 9%;
  color: #8dd7ff;
  animation: rocketFly 7s linear infinite;
}

.custom-rainbow {
  position: absolute;
  right: 18%;
  top: 22%;
  width: 150px;
  height: 74px;
  border-radius: 150px 150px 0 0;
  border-top: 9px solid rgba(255, 124, 168, 0.36);
  border-left: 9px solid rgba(255, 202, 101, 0.32);
  border-right: 9px solid rgba(125, 220, 255, 0.32);
  animation: rainbowFloat 6.6s ease-in-out infinite;
}

.custom-orbit {
  position: absolute;
  border-radius: 50%;
  background: rgba(125, 220, 255, 0.18);
  animation: floatBubble 7s ease-in-out infinite;
}

.custom-orbit--one { width: 120px; height: 120px; left: 5%; bottom: 16%; }
.custom-orbit--two { width: 90px; height: 90px; right: 7%; top: 20%; background: rgba(255, 216, 236, 0.30); animation-delay: 1.6s; }

/* MODAL */
.kids-template-modal {
  position: fixed;
  inset: 0;
  z-index: 99998;
  display: none;
  place-items: center;
  padding: 24px;
}

.kids-template-modal.open {
  display: grid;
}

.kids-template-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 12, 19, 0.76);
  backdrop-filter: blur(10px);
}

.kids-template-modal__dialog {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(280px, 1fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  padding: clamp(22px, 4vw, 42px);
  border-radius: 38px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 216, 236, 0.64), transparent 32%),
    radial-gradient(circle at 90% 80%, rgba(183, 234, 217, 0.48), transparent 35%),
    rgba(255,255,255,0.92);
  box-shadow: 0 42px 110px rgba(0,0,0,0.30);
}

.kids-template-modal__close {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--kids-rose-deep);
  color: #fff;
  cursor: pointer;
}

.kids-template-modal__image {
  width: min(350px, 100%);
  height: min(680px, 74vh);
  justify-self: center;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.kids-template-modal__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  background: transparent;
  filter: drop-shadow(0 28px 46px rgba(81, 50, 77, 0.22));
}

.kids-template-modal__content small {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  color: var(--kids-rose-deep);
  background: rgba(189, 111, 151, 0.12);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kids-template-modal__content h3 {
  margin: 0 0 14px;
  color: var(--kids-ink);
  font-family: "Baloo 2", sans-serif;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 0.95;
  font-weight: 800;
}

.kids-template-modal__content p {
  color: var(--kids-muted);
  line-height: 1.75;
  margin: 0 0 24px;
}

.kids-template-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* MÚSICA FLOTANTE */
.kids-floating-music {
  position: fixed;
  right: 18px;
  bottom: 88px;
  z-index: 60;
}

.kids-floating-music audio {
  display: none;
}

.kids-music-toggle {
  width: 58px;
  height: 58px;
  min-height: 58px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  padding: 0;
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.34), transparent 24%),
    linear-gradient(135deg, #7d67ff 0%, #bd6f97 58%, #ff8fb5 100%);
  box-shadow:
    0 18px 42px rgba(125, 103, 255, 0.28),
    0 10px 26px rgba(181, 87, 134, 0.24);
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.kids-music-toggle:hover {
  transform: translateY(-3px);
  filter: saturate(1.08);
}

.kids-music-toggle .music-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
}
.kids-music-toggle .music-text {
  display: none;
}

.kids-music-toggle .music-icon svg {
  width: 25px;
  height: 25px;
  display: block;
}

.kids-music-toggle .music-icon--pause {
  display: none;
}

.kids-music-toggle.is-playing {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.34), transparent 24%),
    linear-gradient(135deg, #00a8b5 0%, #7d67ff 56%, #bd6f97 100%);
  animation: musicPulse 1.9s ease-in-out infinite;
}

.kids-music-toggle.is-playing .music-icon--play {
  display: none;
}

.kids-music-toggle.is-playing .music-icon--pause {
  display: grid;
}


/* FOOTER */
.footer-minimal-brand {
  position: relative;
  overflow: hidden;
  padding: 58px 0 24px;
  color: #fff7fb;
  background:
    radial-gradient(circle at 12% 18%, rgba(181, 87, 134, 0.18), transparent 28%),
    radial-gradient(circle at 86% 82%, rgba(183, 234, 217, 0.08), transparent 24%),
    linear-gradient(180deg, #1b111a 0%, #211622 54%, #120d13 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-minimal-main {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.6fr);
  gap: 54px;
  align-items: start;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-minimal-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.footer-minimal-mark {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
}

.footer-minimal-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-minimal-name {
  display: inline-flex;
  align-items: baseline;
  line-height: 1;
  white-space: nowrap;
}

.footer-minimal-script {
  font-family: "Great Vibes", cursive;
  font-size: clamp(1.9rem, 2.7vw, 2.75rem);
  color: #ffffff;
}

.footer-minimal-domain {
  font-size: clamp(1.55rem, 2.1vw, 2.2rem);
  font-weight: 900;
  color: #ffffff;
}

.footer-minimal-phrase {
  margin: 38px 0 0;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-minimal-phrase-line {
  color: rgba(255, 247, 251, 0.62);
  font-size: 1rem;
  font-weight: 600;
}

.footer-minimal-phrase-highlight {
  font-family: "Great Vibes", cursive;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.75rem, 2.25vw, 2.25rem);
}

.footer-minimal-columns {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1.2fr 0.8fr;
  gap: 42px;
}

.footer-minimal-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-minimal-col h4 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.20em;
  text-transform: uppercase;
}

.footer-minimal-col a,
.footer-minimal-col p {
  color: rgba(255, 247, 251, 0.66);
  font-size: 0.92rem;
  line-height: 1.68;
}

.footer-minimal-col a {
  margin-bottom: 9px;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-minimal-col a:hover {
  color: #f0a8ca;
  transform: translateX(4px);
}

.footer-minimal-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-minimal-social a {
  width: 44px;
  height: 44px;
  margin: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 0.96rem;
  background: rgba(255, 255, 255, 0.075);
}

.footer-minimal-bottom {
  padding-top: 20px;
  text-align: center;
}

.footer-minimal-bottom p {
  margin: 0;
  color: rgba(255, 247, 251, 0.54);
  font-size: 0.86rem;
}

/* CHAT / TOAST / SCROLL */
.scroll-top {
  position: fixed;
  right: 92px;
  bottom: 90px;
  z-index: 40;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--kids-rose-deep);
  box-shadow: 0 16px 30px rgba(181, 87, 134, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.chatbot-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
}

.chatbot-toggle {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--kids-rose), var(--kids-rose-deep));
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(181, 87, 134, 0.28);
}

.chatbot-panel {
  position: absolute;
  right: 0;
  bottom: 68px;
  width: min(340px, calc(100vw - 36px));
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(189, 111, 151, 0.14);
  box-shadow: 0 26px 70px rgba(47, 36, 56, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.chatbot-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.chatbot-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--kids-rose), var(--kids-rose-deep));
}

.chatbot-head strong,
.chatbot-head small {
  display: block;
}

.chatbot-head small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.35;
}

.chatbot-head button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.chatbot-body {
  max-height: 240px;
  overflow: auto;
  padding: 16px;
  background: #fffafc;
}

.bot-msg {
  width: fit-content;
  max-width: 92%;
  margin-bottom: 10px;
  padding: 11px 13px;
  border-radius: 16px 16px 16px 4px;
  background: #f4e9f1;
  color: var(--kids-ink);
  font-size: 0.92rem;
  line-height: 1.45;
}

.chatbot-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 14px;
}

.chatbot-actions button,
.chatbot-actions a {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 14px;
  background: #f6eef4;
  color: var(--kids-rose-deep);
  text-decoration: none;
  font-weight: 800;
}

.mini-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  min-width: 230px;
  max-width: 340px;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--kids-ink);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.mini-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 0.12s;
}

/* ANIMATIONS */
@keyframes typingLoader {
  from { width: 0; }
  to { width: 25ch; }
}

@keyframes cursorBlink {
  50% { border-color: transparent; }
}

@keyframes confettiFall {
  0% { transform: translateY(-12vh) rotate(0deg); opacity: 0; }
  12% { opacity: 0.9; }
  100% { transform: translateY(115vh) rotate(720deg); opacity: 0; }
}

@keyframes bubbleRise {
  0%, 100% { transform: translateY(0) scale(0.9); opacity: 0.35; }
  50% { transform: translateY(-70px) scale(1.12); opacity: 0.65; }
}

@keyframes fireworkBurst {
  0% { transform: scale(0.1); opacity: 0; }
  35% { opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}

@keyframes heroBackFloat {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-13px) rotate(-2deg); }
}

@keyframes heroFrontFloat {
  0%, 100% { transform: translateY(0) rotate(3deg); }
  50% { transform: translateY(-16px) rotate(5deg); }
}

@keyframes floatBubble {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
}

@keyframes sparkleMove {
  0%,100% { transform: scale(1) rotate(0deg); opacity: .8; }
  50% { transform: scale(1.18) rotate(18deg); opacity: 1; }
}

@keyframes rocketFly {
  0% { transform: translate(0, 0) rotate(-18deg); opacity: .2; }
  50% { transform: translate(30px, -40px) rotate(8deg); opacity: 1; }
  100% { transform: translate(60px, -80px) rotate(20deg); opacity: 0; }
}

@keyframes butterflyFly {
  0%,100% { transform: translate(0, 0) rotate(-8deg); }
  50% { transform: translate(22px, -16px) rotate(10deg); }
}

@keyframes starBlink {
  0%,100% { opacity: .35; transform: scale(.85); }
  50% { opacity: 1; transform: scale(1.18); }
}

@keyframes rainbowFloat {
  0%,100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

@keyframes kidsDecoFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-6deg); }
  50% { transform: translate3d(12px, -22px, 0) rotate(10deg); }
}

@keyframes balloonFloat {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-32px) rotate(6deg); }
}

@keyframes marqueeMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes musicPulse {
  0%, 100% {
    box-shadow:
      0 18px 42px rgba(125, 103, 255, 0.26),
      0 0 0 0 rgba(189, 111, 151, 0.36);
  }

  50% {
    box-shadow:
      0 24px 52px rgba(125, 103, 255, 0.34),
      0 0 0 10px rgba(189, 111, 151, 0);
  }
}

/* RESPONSIVE */
@media (max-width: 1199px) {
  .kids-hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .kids-hero-gallery {
    margin: 0 auto;
    width: min(760px, 100%);
  }

  .kids-hero-phone--back {
    left: 9%;
    width: 290px;
    height: 408px;
  }

  .kids-hero-phone--front {
    left: 46%;
    width: 302px;
    height: 426px;
  }

  .kids-signature {
    left: 50%;
    transform: translateX(-50%);
  }

  .kids-hero-content {
    margin: 0 auto;
  }

  .kids-catalog-editorial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kids-custom-hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .kids-custom-hero-copy {
    margin: 0 auto;
  }

  .kids-custom-pill-list {
    justify-content: center;
  }

  .kids-custom-hero-phone {
    height: 510px;
  }

  .footer-minimal-main {
    grid-template-columns: 1fr;
  }

  .footer-minimal-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .kids-hero-collage {
    min-height: auto;
    padding: 80px 0 90px;
  }

  .kids-hero-gallery {
    min-height: 525px;
  }

  .kids-custom-hero-section {
    min-height: auto;
    padding: 90px 0;
  }
}

@media (max-width: 767px) {
  .kids-loader-lottie {
    width: 250px;
    height: 250px;
  }

  .kids-hero-gallery {
    min-height: 445px;
  }

  .kids-hero-phone--back {
    left: 1%;
    top: 88px;
    width: 218px;
    height: 325px;
  }

  .kids-hero-phone--front {
    left: auto;
    right: 1%;
    top: 10px;
    width: 228px;
    height: 350px;
  }

  .kids-signature {
    bottom: -5px;
    font-size: 1.18rem;
    padding: 10px 18px;
  }

  .kids-hero-content h1 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

  .kids-catalog-editorial-section {
    padding: 82px 0 92px;
  }

  .kids-catalog-editorial-grid {
    grid-template-columns: 1fr;
  }

  .kids-template-editorial-card {
    min-height: 620px;
  }

  .kids-template-modal {
    padding: 14px;
  }

  .kids-template-modal__dialog {
    grid-template-columns: 1fr;
    max-height: 92vh;
    overflow: auto;
  }

  .kids-template-modal__image {
    height: 58vh;
  }

  .kids-template-modal__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .kids-custom-hero-copy h2 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .kids-custom-hero-phone {
    height: 460px;
  }

  .footer-minimal-columns {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-minimal-name {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .kids-hero-gallery {
    min-height: 400px;
  }

  .kids-hero-phone--back {
    width: 190px;
    height: 292px;
  }

  .kids-hero-phone--front {
    width: 198px;
    height: 310px;
  }

  .kids-hero-content p {
    font-size: 0.96rem;
  }

  .kids-template-editorial-card {
    min-height: 570px;
  }

  .kids-template-editorial-card__title {
    font-size: 1.75rem;
  }

  .kids-template-editorial-card__text {
    font-size: 0.92rem;
  }

  .kids-custom-hero-phone {
    height: 410px;
    width: min(260px, 100%);
  }

  .kids-floating-music {
    right: 14px;
    bottom: 78px;
  }

  .kids-music-toggle {
    min-height: 50px;
    width: 50px;
    padding: 0;
    border-radius: 50%;
  }

  .kids-music-toggle .music-text {
    display: none;
  }

  .kids-music-toggle .music-icon,
  .kids-music-toggle .music-icon svg {
    width: 24px;
    height: 24px;
  }

  .scroll-top {
    right: 76px;
    bottom: 82px;
  }

  .chatbot-toggle span {
    display: none;
  }
}
/* =====================================================
   FIX RESPONSIVE CATÁLOGO INFANTIL
   Imágenes completas en móvil, sin recorte
===================================================== */

@media (max-width: 767px) {
  .kids-catalog-editorial-grid {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  .kids-template-editorial-card {
    min-height: 760px !important;
    border-radius: 30px !important;
    background:
      linear-gradient(180deg, #fff8fc 0%, #f7f4ff 58%, #1b111a 100%) !important;
    overflow: hidden !important;
  }

  .kids-template-editorial-card__img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    width: 100% !important;
    height: calc(100% - 255px) !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    padding: 18px 14px 0 !important;
    background:
      radial-gradient(circle at 18% 18%, rgba(255, 216, 236, 0.86), transparent 30%),
      radial-gradient(circle at 86% 72%, rgba(183, 234, 217, 0.58), transparent 34%),
      linear-gradient(180deg, #fffaff 0%, #f8f5ff 100%) !important;
    cursor: zoom-in !important;
  }

  .kids-template-editorial-card__img img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    display: block !important;
    object-fit: contain !important;
    object-position: center top !important;
    transform: none !important;
    border-radius: 0 !important;
    background: transparent !important;
  }

  .kids-template-editorial-card:hover .kids-template-editorial-card__img img {
    transform: none !important;
  }

  .kids-template-editorial-card__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(36, 22, 34, 0) 0%,
        rgba(36, 22, 34, 0) 50%,
        rgba(27, 17, 26, 0.78) 74%,
        rgba(27, 17, 26, 0.98) 100%
      ) !important;
  }

  .kids-template-editorial-card__content {
    padding: 0 22px 24px !important;
  }

  .kids-template-editorial-card__title {
    font-size: 1.85rem !important;
  }

  .kids-template-editorial-card__text {
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
  }

  .kids-template-editorial-card__actions {
    width: 100% !important;
    gap: 10px !important;
  }

  .kids-template-card-btn {
    width: 100% !important;
    min-height: 52px !important;
  }
}

@media (max-width: 480px) {
  .kids-template-editorial-card {
    min-height: 710px !important;
    border-radius: 28px !important;
  }

  .kids-template-editorial-card__img {
    height: calc(100% - 250px) !important;
    padding: 14px 10px 0 !important;
  }

  .kids-template-editorial-card__content {
    padding: 0 18px 22px !important;
  }

  .kids-template-editorial-card__title {
    font-size: 1.65rem !important;
  }

  .kids-template-editorial-card__text {
    font-size: 0.88rem !important;
    margin-bottom: 14px !important;
  }

  .kids-template-card-btn {
    min-height: 50px !important;
    font-size: 0.88rem !important;
  }
}

@media (max-width: 390px) {
  .kids-template-editorial-card {
    min-height: 680px !important;
  }

  .kids-template-editorial-card__img {
    height: calc(100% - 245px) !important;
  }
}