/* ==========================================================================
   La Paz Kids Landing — specific overrides on top of main styles.css
   ========================================================================== */

/* Prevent any horizontal overflow on mobile */
html, body { overflow-x: hidden; }

/* HERO video on the right side of the hero grid.
   Override the default .lp-hero__art aspect-ratio: 1/1 (from main site,
   where the inner element is a round photo) so our 9:16 video can size freely. */
.kids-hero__art {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  aspect-ratio: auto;
}
.kids-hero__video-wrap {
  position: relative;
  width: 100%;
  max-width: 360px;
}
.kids-hero__video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--ps-shadow-lg);
  background: #000;
  display: block;
}
.kids-hero__sound {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background var(--ps-dur-fast) var(--ps-ease-soft);
}
.kids-hero__sound:hover {
  background: rgba(0, 0, 0, 0.8);
}
@media (max-width: 900px) {
  .kids-hero__sound {
    width: 36px;
    height: 36px;
    bottom: 12px;
    right: 12px;
  }
}

/* LANGUAGES + AGE BLOCK */
.kids-langs {
  background: var(--ps-bg-alt);
}
.kids-langs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.kids-langs__card {
  background: var(--ps-white);
  border: 1px solid var(--ps-line);
  border-radius: var(--ps-radius-xl);
  padding: 28px;
  text-align: center;
  box-shadow: var(--ps-shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.kids-langs__flag {
  font-size: 44px;
  line-height: 1;
}
.kids-langs__card h3 {
  font-family: var(--ps-font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ps-ink);
  margin: 0;
}
.kids-langs__card p {
  font-size: 15px;
  color: var(--ps-ink-2);
  line-height: 1.5;
}
.kids-langs__card--age {
  background: linear-gradient(135deg, var(--ps-lime-soft) 0%, var(--ps-white) 100%);
}
@media (max-width: 900px) {
  .kids-langs__grid { grid-template-columns: 1fr; }
}

/* VIDEO GALLERY */
.kids-videos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.kids-videos__cell {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--ps-radius-lg);
  overflow: hidden;
  background: #000;
  cursor: pointer;
  box-shadow: var(--ps-shadow-sm);
  transition: transform var(--ps-dur-base) var(--ps-ease-soft),
              box-shadow var(--ps-dur-base) var(--ps-ease-soft);
}
.kids-videos__cell:hover {
  transform: translateY(-3px);
  box-shadow: var(--ps-shadow-md);
}
.kids-videos__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.kids-videos__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ps-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
  transition: transform var(--ps-dur-fast) var(--ps-ease-soft);
}
.kids-videos__cell:hover .kids-videos__play {
  transform: scale(1.1);
  background: var(--ps-white);
}
@media (max-width: 900px) {
  .kids-videos__grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .kids-videos__play { width: 44px; height: 44px; }
}
@media (max-width: 560px) {
  .kids-videos__grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* VIDEO MODAL (lightbox) */
.kids-vmodal {
  align-items: center;
  justify-content: center;
}
.kids-vmodal__dialog {
  position: relative;
  z-index: 1;
  width: min(380px, 90vw);
  max-height: 90vh;
  background: #000;
  border-radius: var(--ps-radius-xl);
  overflow: hidden;
  box-shadow: var(--ps-shadow-lg);
}
.kids-vmodal__video {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 80vh;
  display: block;
  background: #000;
}
.kids-vmodal .lp-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
}
.kids-vmodal .lp-modal__close:hover {
  background: rgba(0, 0, 0, 0.85);
}

/* SCHEDULE */
.kids-schedule__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.kids-schedule__card {
  background: var(--ps-white);
  border: 1px solid var(--ps-line);
  border-radius: var(--ps-radius-xl);
  padding: 28px;
  text-align: center;
  box-shadow: var(--ps-shadow-sm);
}
.kids-schedule__card--online {
  background: linear-gradient(135deg, var(--ps-coral-soft) 0%, var(--ps-white) 100%);
}
.kids-schedule__icon {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 8px;
}
.kids-schedule__card h3 {
  font-family: var(--ps-font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ps-ink);
  margin: 0 0 6px;
}
.kids-schedule__time {
  font-family: var(--ps-font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ps-coral);
  margin: 0;
}
.kids-schedule__hint {
  font-size: 14px;
  color: var(--ps-ink-2);
  margin: 6px 0 0;
}
@media (max-width: 900px) {
  .kids-schedule__grid { grid-template-columns: 1fr; }
}

/* WHAT'S INCLUDED */
.kids-included__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.kids-included__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--ps-white);
  border: 1px solid var(--ps-line);
  border-radius: var(--ps-radius-lg);
  box-shadow: var(--ps-shadow-xs);
}
.kids-included__ico {
  font-size: 30px;
  flex-shrink: 0;
  line-height: 1;
}
.kids-included__item strong {
  display: block;
  font-family: var(--ps-font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--ps-ink);
  margin-bottom: 4px;
  line-height: 1.3;
}
.kids-included__item span {
  font-size: 13px;
  color: var(--ps-ink-2);
  line-height: 1.4;
}
@media (max-width: 900px) {
  .kids-included__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .kids-included__grid { grid-template-columns: 1fr; }
}

/* PRICING NOTE */
.kids-pricing__note {
  margin-top: 32px;
  padding: 18px 24px;
  background: var(--ps-lime-soft);
  border-radius: var(--ps-radius-lg);
  font-size: 15px;
  color: var(--ps-ink);
  text-align: center;
  line-height: 1.5;
}

/* WHY US */
.kids-why {
  background: var(--ps-bg-alt);
}
.kids-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.kids-why__card {
  background: var(--ps-white);
  border: 1px solid var(--ps-line);
  border-radius: var(--ps-radius-xl);
  padding: 26px;
  box-shadow: var(--ps-shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.kids-why__card h3 {
  font-family: var(--ps-font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ps-ink);
  margin: 0;
  line-height: 1.3;
}
.kids-why__card p {
  font-size: 14px;
  color: var(--ps-ink-2);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 900px) {
  .kids-why__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .kids-why__grid { grid-template-columns: 1fr; }
}

/* FORM BULLETS */
.kids-form__bullets {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.kids-form__bullets li {
  font-size: 15px;
  color: var(--ps-ink-2);
  line-height: 1.5;
}

/* FAQ ACCORDION */
.kids-faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 800px;
  margin: 0 auto;
}
.kids-faq__item {
  background: var(--ps-white);
  border: 1px solid var(--ps-line);
  border-radius: var(--ps-radius-lg);
  padding: 0;
  box-shadow: var(--ps-shadow-xs);
  overflow: hidden;
  transition: box-shadow var(--ps-dur-base) var(--ps-ease-soft);
}
.kids-faq__item[open] {
  box-shadow: var(--ps-shadow-sm);
}
.kids-faq__item summary {
  font-family: var(--ps-font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ps-ink);
  padding: 18px 50px 18px 22px;
  cursor: pointer;
  list-style: none;
  position: relative;
  line-height: 1.35;
}
.kids-faq__item summary::-webkit-details-marker {
  display: none;
}
.kids-faq__item summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--ps-font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--ps-coral);
  line-height: 1;
  transition: transform var(--ps-dur-base) var(--ps-ease-soft);
}
.kids-faq__item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.kids-faq__item p {
  padding: 0 22px 20px;
  margin: 0;
  font-size: 15px;
  color: var(--ps-ink-2);
  line-height: 1.6;
}

/* Mobile hero: video below copy */
@media (max-width: 900px) {
  .kids-hero__art { margin-top: 24px; }
  .kids-hero__video-wrap { max-width: 280px; }
}
