@font-face {
  font-family: "sanchil";
  src: url("../fonts/Baloo2-VariableFont_wght.ttf") format("truetype");
}

body {
  margin: 0;
  line-height: normal;
  font-family: "sanchil", "Roboto", sans-serif;
}

:root {
  --color-black: #000;
  --color-cadetblue: #00a0bd;
  --color-firebrick: #b13800;
  --color-gold-100: #ffdd00;
  --color-gray-300: rgba(255, 255, 255, 0.9);
  --color-steelblue: #00466d;
  --color-white: #fff;

  --font-baloo-2: "sanchil", "Roboto", sans-serif;
  --font-roboto: "sanchil", "Roboto", sans-serif;

  --shadow-drop-2: 0px 0px 10px rgba(0, 70, 109, 0.25);
  --text-shadow-1:
    0px 4px 4px rgba(0, 0, 0, 0.25), 0px 0px 4px rgba(0, 0, 0, 0.5);
}

/* =========================================================
   Responsive rebuild — Section 1
   Mobile-first single column (with sticky promo header);
   desktop fills the width with full-bleed bands + 2 columns.
   ========================================================= */

html,
body {
  background: #d8e6ec;
}
body {
  overflow-x: hidden;
}
* {
  box-sizing: border-box;
}

.pl-page {
  width: 100%;
  margin: 0 auto;
  position: relative;
  background: var(--color-cadetblue);
  font-family: var(--font-baloo-2);
  color: var(--color-white);
  text-align: center;
}
.pl-page button {
  -webkit-tap-highlight-color: transparent;
}
.pl-s1 {
  display: flex;
  flex-direction: column;
}

/* Full-bleed colour bands with centered content */
.pl-band {
  width: 100%;
}
.pl-band-teal {
  background: var(--color-cadetblue);
}
.pl-band-gold {
  background: var(--color-gold-100);
  color: var(--color-steelblue);
}
.pl-band-white {
  background: var(--color-white);
  color: var(--color-steelblue);
}
.pl-band-light-blue {
  background: #E2FFFF
}

.pl-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: clamp(16px, 5vw, 48px);
  padding-right: clamp(16px, 5vw, 48px);
}

/* ---- Top band (scrolls away) ---- */
.pl-top {
  position: static;
  top: auto;
  left: auto;
  z-index: auto;
  padding-top: 14px;
  padding-bottom: 14px;
  background: var(--color-gray-300);
}
.pl-top-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.pl-logo {
  width: 190px;
  height: auto;
}
/* Promo ribbon — full-width gold band, red-brick text (matches export) */
.pl-promo-ribbon {
  background: var(--color-gold-100);
}
.pl-promo-ribbon-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-top: 6px;
  padding-bottom: 6px;
  color: var(--color-firebrick);
  font-size: clamp(14px, 4.2vw, 17px);
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.pl-promo-ribbon-inner b {
  color: var(--color-firebrick);
}
.pl-promo-ribbon-inner img {
  width: 42px;
  height: auto;
}

/* ---- Promo header (sticky disabled for now) ---- */
.pl-sticky {
  position: static;
  top: auto;
  z-index: auto;
  box-shadow: none;
}
.pl-promo-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-top: 16px;
  padding-bottom: 20px;
}
.pl-clockwrap {
  width: 210px;
  max-width: 72%;
}
.pl-clock {
  display: block;
  width: 100%;
  --pl-clock-gap: 6px;
  --pl-clock-separator-width: 18px;
  padding: 12px 12px 10px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f7fbff 0%, #d7ecfb 100%);
  border: 2px solid rgba(15, 70, 113, 0.25);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.8),
    0 10px 22px rgba(4, 28, 48, 0.2);
}
.pl-clock-values {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    var(--pl-clock-separator-width)
    minmax(0, 1fr)
    var(--pl-clock-separator-width)
    minmax(0, 1fr);
  align-items: center;
  gap: var(--pl-clock-gap);
}
.pl-clock-segment {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 10px 0 8px;
  border-radius: 12px;
  background: linear-gradient(180deg, #0d304c 0%, #113f65 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -2px 0 rgba(0, 0, 0, 0.18);
}
.pl-clock-value {
  display: block;
  min-width: 2ch;
  font-family: var(--font-roboto);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-align: center;
  color: #ffffff;
  font-variant-numeric: tabular-nums;
}
.pl-clock-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--pl-clock-separator-width);
  padding-bottom: 2px;
  font-family: var(--font-roboto);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #0f4671;
}
.pl-clock-labels {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    var(--pl-clock-separator-width)
    minmax(0, 1fr)
    var(--pl-clock-separator-width)
    minmax(0, 1fr);
  gap: var(--pl-clock-gap);
  padding: 6px 12px 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-white);
  text-align: center;
}
.pl-clock-labels span:nth-child(1) {
  grid-column: 1;
}
.pl-clock-labels span:nth-child(2) {
  grid-column: 3;
}
.pl-clock-labels span:nth-child(3) {
  grid-column: 5;
}
.pl-headline {
  margin: 10px 0 0;
  font-size: clamp(24px, 6.6vw, 30px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

/* CTA button */
.pl-cta {
  position: relative;
  margin-top: 16px;
  width: 300px;
  max-width: 88%;
  height: 56px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.pl-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/public/promo-verano/Group-480.svg") center / 100% 100% no-repeat;
  z-index: 1;
}
.pl-cta span {
  position: relative;
  z-index: 2;
  font-size: clamp(18px, 5vw, 22px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--color-white);
  text-shadow: var(--text-shadow-1);
}
.pl-cta-s7b {
  height: auto;
  aspect-ratio: 2172 / 724;
}
.pl-cta-s7b::before {
  background: url("../img/public/promo-verano/Group-4801.svg") center / 100% 100% no-repeat;
}
.pl-cta-s7b span {
  font-size: clamp(18px, 4.4vw, 22px);
  transform: translateY(2px);
}
.pl-cloud {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
.pl-cloud-l {
  width: 72px;
  left: -22px;
  top: -24px;
}
.pl-cloud-r {
  width: 62px;
  right: -18px;
  top: -22px;
}

/* Offer bar */
.pl-offer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 7px;
  padding-bottom: 7px;
  font-size: clamp(13px, 3.8vw, 16px);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.pl-offer-copy {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.pl-offer-marquee-track {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pl-offer-marquee-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.pl-offer-marquee-group[aria-hidden="true"] {
  display: none;
}
.pl-offer-marquee-icon {
  width: 30px;
  height: auto;
  flex-shrink: 0;
}
.pl-promo-band-offer-inner .pl-offer-marquee-icon {
  width: 28px;
}
.pl-offer-marquee-item {
  display: inline-block;
  white-space: nowrap;
  line-height: 1.1;
}
@keyframes pl-offer-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---- Da alas ---- */
.pl-daalas {
  position: relative;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}
.pl-daalas-inner {
  position: relative;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  min-height: 520px;
  padding-top: 24px;
  padding-bottom: 20px;
  padding-left: clamp(16px, 5vw, 48px);
  padding-right: clamp(16px, 5vw, 48px);
  box-sizing: border-box;
  text-align: left;
}
.pl-daalas-title {
  margin: 0;
  max-width: 200px;
  font-size: clamp(20px, 5.6vw, 30px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-steelblue);
  position: relative;
  z-index: 2;
}
.pl-kids {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 899px) {
  .pl-kids {
    object-position: 48% center;
  }
}
/* ---- Un verano, dos caminos ---- */
.pl-two-paths {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding-top: 0;
  padding-bottom: 0;
}
.pl-two-paths-inner {
  position: relative;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.pl-two-paths-hero {
  position: relative;
  min-height: clamp(300px, 82vw, 440px);
  padding-top: clamp(28px, 7vw, 44px);
  padding-bottom: 0;
  padding-left: clamp(16px, 5vw, 48px);
  padding-right: clamp(16px, 5vw, 48px);
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.pl-two-paths-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% bottom;
}
.pl-two-paths-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  display: grid;
  gap: 8px;
  text-align: center;
}
.pl-two-paths-title {
  margin: 0;
  font-size: clamp(30px, 7vw, 44px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--color-steelblue);
}
.pl-two-paths-sub {
  margin: 0;
  font-family: var(--font-roboto);
  font-size: clamp(17px, 4.6vw, 25px);
  font-weight: 500;
  line-height: 1.28;
  color: var(--color-black);
}

@media (max-width: 899px) and (orientation: portrait) {
  .pl-two-paths-hero {
    min-height: clamp(480px, 100vw, 540px);
    padding-top: 28px;
  }
  .pl-two-paths-hero::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: min(48%, 235px);
    background: linear-gradient(
      180deg,
      rgba(236, 244, 249, 0.98) 4%,
      rgba(204, 224, 237, 0.96) 30%,
      rgba(156, 190, 211, 0.72) 58%,
      rgba(115, 115, 115, 0) 96%
    );
    opacity: 0.98;
    z-index: 1;
    pointer-events: none;
  }
  .pl-two-paths-image {
    object-position: 34% bottom;
  }
  .pl-two-paths-copy {
    width: min(100%, 360px);
    padding-left: 18px;
    padding-right: 18px;
    box-sizing: border-box;
    gap: 10px;
  }
  .pl-two-paths-title,
  .pl-two-paths-sub {
    text-shadow: none;
  }
}

/* ---- Comparativa verano ---- */
.pl-summer-compare {
  position: relative;
  z-index: 2;
  width: 100%;
  background: #ffffff;
  padding: 14px 16px 34px;
  box-sizing: border-box;
}
.pl-summer-compare-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 560px);
  margin-left: auto;
  margin-right: auto;
}
.pl-summer-toggle-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  width: min(100%, 360px);
  margin-bottom: -16px;
  position: relative;
}
.pl-summer-toggle-button {
  position: relative;
  width: calc(50% - 6px);
  max-width: none;
  min-height: 78px;
  font-family: var(--font-baloo-2);
  border: 0;
  padding: 14px 16px 16px;
  border-radius: 28px 28px 0 0;
  background: linear-gradient(180deg, #367f9a 0%, #225f80 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition:
    box-shadow 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
  z-index: 1;
}
.pl-summer-toggle-button::before {
  display: none;
}
.pl-summer-toggle-button.is-active::before {
  display: none;
}
.pl-summer-toggle-button:hover {
  transform: translateY(-1px);
}
.pl-summer-toggle-button:focus-visible {
  outline: none;
}
.pl-summer-toggle-button:active {
  outline: none;
}
.pl-summer-toggle-button span {
  position: relative;
  z-index: 1;
  font-family: inherit;
  font-size: clamp(16px, 4.2vw, 19px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--color-white);
  text-shadow: none;
  text-align: center;
}
.pl-summer-toggle-button.is-active {
  background: #fff6cf;
  box-shadow: none;
  transform: translateY(0);
  z-index: 4;
}
.pl-summer-toggle-button.is-active::after {
  display: none;
}
.pl-summer-toggle-button.is-active span {
  color: #173b57;
  text-shadow: none;
}
.pl-summer-toggle-card {
  width: min(100%, 560px);
  padding: 26px 22px 24px;
  border-radius: 28px;
  background: #fff6cf;
  box-shadow: 0 18px 36px rgba(0, 70, 109, 0.14);
  position: relative;
  z-index: 2;
}
.pl-summer-toggle-panel {
  display: grid;
  gap: 26px;
}
.pl-summer-toggle-panel[hidden] {
  display: none;
}
.pl-summer-toggle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.pl-summer-toggle-number {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f78478;
  color: var(--color-white);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
.pl-summer-toggle-title {
  margin: 0;
  font-size: clamp(20px, 5.4vw, 28px);
  line-height: 1.15;
  color: #2f76b1;
}
.pl-summer-toggle-text {
  margin: 0;
  font-family: var(--font-roboto);
  font-size: clamp(16px, 4.3vw, 22px);
  line-height: 1.34;
  color: var(--color-cadetblue);
}

/* ---- El talento se entrena ---- */
.pl-talent {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #10bacb 0%, #37d7d0 62%, #71e6d5 100%);
}
.pl-talent-inner {
  position: relative;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  min-height: clamp(300px, 56vw, 660px);
  padding-top: 22px;
  padding-bottom: 0;
  padding-left: clamp(20px, 5vw, 48px);
  padding-right: clamp(20px, 5vw, 48px);
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}
.pl-talent-copy {
  position: absolute;
  left: 50%;
  top: 50px;
  transform: translateX(-50%);
  z-index: 2;
  width: min(calc(100% - 40px), 760px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  justify-items: center;
  text-align: center;
}
.pl-talent-logo {
  width: clamp(220px, 36vw, 300px);
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0, 70, 109, 0.18));
}
.pl-talent-title {
  margin: 0;
  font-size: clamp(31px, 5.2vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--color-black);
}
.pl-talent-cloud {
  top: 12px;
  width: clamp(72px, 12vw, 120px);
  z-index: 3;
}
.pl-talent-cloud-left {
  left: 10px;
}
.pl-talent-cloud-right {
  right: 10px;
}
.pl-talent-scene {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  /* El contenido útil del SVG está en su mitad vertical, así que anclamos
     el centro de la imagen al borde inferior (responsive, sustituye al
     antiguo bottom:-181px fijo que sólo acertaba a ~1097px de ancho). */
  transform: translateY(50%);
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  z-index: 1;
  pointer-events: none;
}

/* =========================================================
   Neurociencia · móviles + copy + CTA
   Mobile (default): single column, phones overlap the photo
   above; rocket floats to the right of the copy; gold CTA
   spans the full width.
   Desktop (>=900px, see block below): two columns — copy on
   the left, phones on the right.
   ========================================================= */
.pl-neuro {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
}
.pl-neuro-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 0;
  padding-top: 24px;
  padding-bottom: 32px;
  text-align: left;
}

/* Top visual block: logo + phone captures behave as one unit */
.pl-neuro-head {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  margin-top: -112px;
  margin-bottom: 20px;
}
.pl-neuro-brand {
  display: block;
  flex: 0 0 auto;
  width: clamp(120px, 40vw, 148px);
  height: auto;
  margin: 0;
}
.pl-neuro-media {
  position: relative;
  flex: 0 0 auto;
  width: clamp(146px, 45vw, 180px);
  z-index: 3;
  pointer-events: none;
}
.pl-neuro-phones {
  position: relative;
  width: 100%;
  padding-top: 26px;
}
.pl-neuro-phone {
  height: auto;
  filter: drop-shadow(0 16px 26px rgba(0, 40, 60, 0.32));
}
.pl-neuro-phone-front {
  display: block;
  width: 67%;
  margin-left: auto;
  position: relative;
  z-index: 2;
}
.pl-neuro-phone-back {
  position: absolute;
  left: 4px;
  bottom: 0;
  width: 60%;
  z-index: 1;
}

/* Bottom content block: copy + rocket + CTA */
.pl-neuro-body {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 560px;
}
.pl-neuro-title {
  margin: 0;
  font-size: clamp(22px, 6vw, 28px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: var(--color-white);
}
.pl-neuro-sub {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 18px;
}
.pl-neuro-text {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  max-width: none;
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-black);
  font-family: var(--font-roboto);
}

/* Rocket accent — beside the subtitle */
.pl-neuro-rocket {
  position: relative;
  flex: 0 0 auto;
  width: min(34vw, 132px);
  margin-right: 0;
  z-index: 1;
  pointer-events: none;
}
.pl-rocket {
  display: block;
  width: 100%;
  height: auto;
}
.pl-neuro-cloud-left,
.pl-neuro-cloud-right {
  position: absolute;
  z-index: -1;
}
.pl-neuro-cloud-right {
  width: 58px;
  top: -20px;
  right: -12px;
}
.pl-neuro-cloud-left {
  width: 46px;
  left: -16px;
  bottom: -12px;
}

/* CTA — full-width gold button on mobile */
.pl-cta-block {
  display: flex;
}
.pl-neuro-cta {
  position: relative;
  width: min(100%, 320px);
  max-width: none;
  margin: 24px auto 0;
  align-self: center;
  z-index: 4;
}
.pl-neuro-cta .pl-cloud {
  display: none;
}

@media (orientation: landscape) and (max-width: 1180px) {
  .pl-daalas-title {
    margin-left: clamp(48px, 10vw, 140px);
    max-width: 320px;
  }
  .pl-two-paths-inner {
    min-height: 440px;
  }
  .pl-talent-inner {
    min-height: 430px;
  }
  .pl-talent-copy {
    top: 18px;
  }
  .pl-talent-title {
    font-size: clamp(28px, 4.2vw, 42px);
  }
}

/* =========================================================
   Desktop / wide: fill the width like minded.es
   ========================================================= */
@media (min-width: 900px) {
  /* Section 1 keeps the img1 layout on web: a centered, stacked column
     (logo centered on top of "PROMOCIÓN ACTIVA 48H"). Only the colour
     bands span full width — the content does NOT reflow into columns. */
  .pl-sticky {
    position: static;
    box-shadow: none;
  }
  .pl-top-inner,
  .pl-s1 .pl-inner {
    max-width: 760px;
    padding-left: 32px;
    padding-right: 32px;
  }
  .pl-s1 .pl-daalas-inner {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: 32px;
    padding-right: 32px;
  }
  /* Slightly larger type so the wider column stays proportional */
  .pl-headline {
    font-size: 34px;
  }
  .pl-daalas-title,
  .pl-neuro-title {
    font-size: 34px;
  }
  .pl-daalas-inner {
    min-height: 640px;
    padding-top: 36px;
    padding-bottom: 30px;
  }
  .pl-daalas-title {
    max-width: 360px;
  }
  .pl-two-paths-inner {
    width: 100vw;
    min-height: 660px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 50px clamp(28px, 4vw, 64px) 24px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
    grid-template-rows: auto 1fr;
    align-items: start;
  }
  .pl-two-paths-hero {
    position: absolute;
    inset: 0;
    min-height: 0;
    padding: 0;
    overflow: hidden;
  }
  .pl-two-paths-copy {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: center;
    align-self: start;
    margin-top: 10px;
    gap: 8px;
  }
  .pl-two-paths-title {
    font-size: clamp(30px, 2.8vw, 40px);
  }
  .pl-two-paths-sub {
    font-size: clamp(17px, 1.5vw, 22px);
  }
  .pl-summer-compare {
    grid-column: 2;
    grid-row: 2;
    align-self: center;
    justify-self: start;
    width: min(100%, 390px);
    background: transparent;
    padding: 0;
    margin-top: 42px;
  }
  .pl-summer-compare-inner {
    width: 100%;
    align-items: stretch;
    gap: 0;
    margin: 0;
  }
  .pl-summer-toggle-buttons {
    width: min(100%, 360px);
    max-width: none;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 8px;
    align-self: center;
    margin-bottom: -12px;
  }
  .pl-summer-toggle-button {
    width: calc(50% - 6px);
    min-width: 0;
    max-width: none;
    min-height: 82px;
    padding: 14px 14px 16px;
  }
  .pl-summer-toggle-button span {
    font-size: 15px;
    white-space: normal;
  }
  .pl-summer-toggle-card {
    width: min(100%, 390px);
    min-height: 548px;
    padding: 20px 20px 18px;
    background: rgba(255, 246, 207, 0.96);
    box-shadow: 0 24px 48px rgba(0, 70, 109, 0.18);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }
  .pl-summer-toggle-item {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 12px;
    row-gap: 4px;
    align-items: start;
    text-align: left;
  }
  .pl-summer-toggle-number {
    grid-row: 1 / span 2;
    width: 38px;
    height: 38px;
    margin-top: 2px;
    font-size: 22px;
  }
  .pl-summer-toggle-title,
  .pl-summer-toggle-text {
    text-align: left;
  }
  .pl-summer-toggle-title {
    font-size: 22px;
  }
  .pl-summer-toggle-text {
    font-size: 16px;
  }

  .pl-talent-logo {
    width: clamp(240px, 22vw, 300px);
  }
  .pl-talent-title {
    font-size: clamp(40px, 4.4vw, 58px);
  }
  .pl-talent-cloud {
    top: 16px;
    width: clamp(84px, 8vw, 120px);
  }
  .pl-talent-cloud-left {
    left: 12px;
  }
  .pl-talent-cloud-right {
    right: 12px;
  }
  /* Horizontal web: copy on the left, phones on the right.
     Widen the inner past the 760px Section-1 cap so the two
     columns have room to breathe. */
  .pl-s1 .pl-neuro-inner {
    width: min(100vw, 1120px);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(32px, 5vw, 64px);
    padding-right: clamp(32px, 5vw, 64px);
  }
  .pl-neuro-inner {
    display: flex;
    min-height: 0;
    padding-top: 56px;
    padding-bottom: 72px;
  }
  .pl-neuro-head {
    justify-content: center;
    align-items: flex-end;
    gap: clamp(24px, 3vw, 40px);
    width: min(100%, 760px);
    margin-top: -136px;
    margin-bottom: 34px;
    margin-left: auto;
    margin-right: auto;
  }
  .pl-neuro-brand {
    width: clamp(280px, 29vw, 360px);
  }
  .pl-neuro-media {
    width: clamp(180px, 18vw, 230px);
  }
  .pl-neuro-body {
    width: min(100%, 560px);
    max-width: none;
    margin: 0 auto;
  }
  .pl-neuro-title {
    width: auto;
    max-width: none;
    font-size: 40px;
    text-align: left;
  }
  .pl-neuro-sub {
    align-items: flex-start;
    justify-content: space-between;
    gap: clamp(16px, 2vw, 28px);
    width: 100%;
    margin-top: 22px;
    margin-left: 0;
    margin-right: 0;
  }
  .pl-neuro-text {
    max-width: 280px;
    font-size: 20px;
  }
  .pl-neuro-cta {
    width: 360px;
    max-width: 100%;
    margin: 30px auto 0;
    align-self: center;
  }
  .pl-neuro-rocket {
    width: clamp(170px, 16vw, 210px);
    margin-right: 0;
  }
  .pl-neuro-cloud-right {
    width: 90px;
    top: -28px;
    right: -8px;
  }
  .pl-neuro-cloud-left {
    width: 62px;
    left: -4px;
    bottom: -18px;
  }
  .pl-clockwrap {
    width: 260px;
    max-width: 260px;
  }
  .pl-clock {
    padding: 14px 14px 12px;
  }
  .pl-clock-value {
    font-size: 36px;
  }
  .pl-clock-separator {
    font-size: 32px;
  }
  .pl-promo-band-body .pl-clockwrap {
    width: 190px;
    max-width: 190px;
  }
  .pl-eva-purpose-cta {
    width: 354px;
  }
  .pl-eva-purpose-title {
    max-width: none;
  }
  .pl-eva-purpose-sub {
    font-size: 24px;
  }
  .pl-eva-purpose-logo-santillana {
    width: 228px;
  }
  .pl-eva-purpose-logo-cognifit {
    width: 196px;
  }
}

/* =========================================================
   Responsive rebuild — Sections 2..8 (shared components)
   ========================================================= */
.pl-band-orange {
  background: #FDCD0D;
}

.pl-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 520px;
  max-height: 820px;
  overflow: hidden;
  background: var(--color-cadetblue);
}

.pl-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pl-hero-text {
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translateX(-50%);
  width: min(100% - 32px, 420px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  color: var(--color-white);
  z-index: 2;
}

.pl-sec {
  padding-top: 34px;
  padding-bottom: 34px;
}
.pl-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
/* Headings */
.pl-h1 {
  margin: 0;
  font-size: clamp(24px, 6.4vw, 30px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--color-steelblue);
}
.pl-on-teal {
  color: var(--color-white);
}
.pl-on-orange {
  color: #7A2C00;
}
.pl-sub {
  margin: 0;
  font-size: clamp(16px, 4.4vw, 19px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-steelblue);
}
.pl-sub-center {
  text-align: center;
}
.pl-on-teal-sub {
  color: var(--color-white);
}
.pl-body {
  margin: 0;
  max-width: 40em;
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-black);
  font-family: var(--font-roboto);
}

/* S7b promo band */
.pl-promo-band-section {
  width: 100%;
  overflow: hidden;
}
.pl-promo-band-offer {
  background: #63f2ec;
  color: #0a2437;
}
.pl-promo-band-offer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: clamp(12px, 3.5vw, 15px);
  font-weight: 700;
  line-height: 1.1;
}
.pl-promo-band-body {
  background: #0f4671;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.pl-promo-band-body-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-top: 10px;
  padding-bottom: 8px;
}
.pl-promo-band-title {
  font-size: clamp(14px, 4vw, 18px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--color-white);
}
.pl-promo-band-body .pl-clockwrap {
  width: 178px;
  max-width: 100%;
}
.pl-promo-band-body .pl-clock {
  --pl-clock-gap: 4px;
  --pl-clock-separator-width: 14px;
  padding: 9px 9px 8px;
  border-radius: 14px;
}
.pl-promo-band-body .pl-clock-values {
  gap: var(--pl-clock-gap);
}
.pl-promo-band-body .pl-clock-segment {
  padding: 8px 0 7px;
  border-radius: 10px;
}
.pl-promo-band-body .pl-clock-value {
  font-size: 26px;
}
.pl-promo-band-body .pl-clock-separator {
  font-size: 22px;
}
.pl-promo-band-body .pl-clock-labels {
  padding: 4px 10px 0;
  font-size: 10px;
  letter-spacing: 0.04em;
}

/* Card grids */
.pl-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
}
.pl-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 22px 20px;
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: var(--shadow-drop-2);
  text-align: center;
}
.pl-band-white .pl-card {
  background: #f3f8fb;
}
.pl-card-row {
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  padding: 0;
  overflow: hidden;
  text-align: left;
}
.pl-card-icon-panel {
  width: 64px;
  padding: 18px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: stretch;
  background: var(--pl-card-accent, #d9f2ff);
}
.pl-card-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
}
.pl-card-row .pl-card-icon {
  width: 44px;
  height: 44px;
}
.pl-card-body {
  padding: 22px 20px 22px 16px;
}
.pl-card-title {
  margin: 0 0 6px;
  font-size: 19px;
  font-weight: 700;
  color: var(--color-steelblue);
}
.pl-card-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-black);
  font-family: var(--font-roboto);
}
.pl-card-tone-sky {
  --pl-card-accent: #d7f4ff;
}
.pl-card-tone-lime {
  --pl-card-accent: #efffba;
}
.pl-card-tone-pink {
  --pl-card-accent: #ffd7f1;
}
.pl-card-tone-lavender {
  --pl-card-accent: #d8d0ff;
}
.pl-card-tone-peach {
  --pl-card-accent: #ffe2de;
}
.pl-card-tone-cream {
  --pl-card-accent: #fff8bd;
}

/* Device showcase */
.pl-device-showcase {
  padding-top: 22px;
  padding-bottom: 22px;
  overflow: hidden;
}
.pl-device-showcase .pl-inner {
  position: relative;
}
.pl-device-showcase-cloud {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.pl-device-showcase-cloud-tl {
  top: 18px;
  left: 28px;
  width: clamp(56px, 14vw, 92px);
}
.pl-device-showcase-cloud-br {
  right: 34px;
  bottom: 8px;
  width: clamp(58px, 15vw, 98px);
}
.pl-device-showcase-row {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 8px;
}
.pl-device-showcase-phone {
  display: block;
  width: auto;
  height: clamp(140px, 28vw, 220px);
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(0, 35, 54, 0.18));
  position: relative;
  z-index: 1;
}
.pl-device-showcase-phone-center {
  position: relative;
  z-index: 2;
}

@media (max-width: 899px) and (orientation: portrait) {
  .pl-device-showcase {
    padding-top: 28px;
    padding-bottom: 30px;
  }
  .pl-device-showcase-row {
    gap: 10px;
  }
  .pl-device-showcase-phone {
    height: clamp(185px, 44vw, 265px);
  }
}

/* Discovery cards section */
.pl-discovery {
  background: linear-gradient(180deg, #ffe4b4 0%, #ffd7a0 100%);
}
.pl-discovery-stack {
  gap: 22px;
}
.pl-discovery-title {
  max-width: 660px;
  color: #c4621c;
  text-align: center;
}
.pl-discovery-cards {
  width: 100%;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pl-discovery-card {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: rgba(255, 251, 226, 0.96);
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(177, 118, 42, 0.18);
  text-align: left;
}
.pl-discovery-card-sky {
  --pl-discovery-accent: #cfe5fb;
}
.pl-discovery-card-sun {
  --pl-discovery-accent: #fff184;
}
.pl-discovery-card-mint {
  --pl-discovery-accent: #ccf6b9;
}
.pl-discovery-icon-panel {
  width: 92px;
  min-height: 98px;
  padding: 14px 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--pl-discovery-accent);
}
.pl-discovery-icon {
  position: relative;
  width: 54px;
  height: 54px;
  margin: 0 auto;
}
.pl-discovery-icon-main {
  display: block;
  width: 100%;
  height: auto;
}
.pl-discovery-icon-lock {
  width: 56px;
  height: 50px;
}
.pl-discovery-icon-badge {
  position: absolute;
  display: block;
}
.pl-discovery-icon-badge-lock {
  width: 26px;
  right: 0;
  top: -7px;
}
.pl-discovery-icon-main-bell {
  width: 52px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.pl-discovery-icon-play {
  width: 54px;
  height: 54px;
}
.pl-discovery-icon-main-play {
  width: 37px;
  margin: 12px auto 0;
}
.pl-discovery-icon-badge-check {
  width: 28px;
  right: -2px;
  bottom: 0;
}
.pl-discovery-icon-badge-bulb {
  width: 18px;
  left: -1px;
  top: 2px;
}
.pl-discovery-card-text {
  margin: 0;
  padding: 18px 16px 18px 14px;
  align-self: center;
  font-family: var(--font-roboto);
  font-size: 15px;
  line-height: 1.36;
  color: #2d2a26;
}
.pl-discovery-cta {
  width: min(100%, 294px);
  height: 58px;
  margin-top: 4px;
  max-width: none;
}
.pl-discovery-cta::before {
  background: url("../img/public/promo-verano/Group-4801.svg") center / 100% 100% no-repeat;
}
.pl-discovery-cta span {
  font-size: clamp(18px, 4.8vw, 20px);
  font-weight: 700;
  letter-spacing: 0;
}
.pl-discovery-kids {
  width: 100%;
  max-width: 350px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  margin-bottom: -34px; /* pega los niños al borde inferior anulando el padding de .pl-sec */
}
.pl-discovery-kids img {
  display: block;
  width: calc((100% - 16px) / 3);
  height: auto;
}

/* Eva + propósito */
.pl-eva-purpose {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #faefba 0%, #ffd7a6 46%, #ffbf8b 100%);
}
.pl-eva-purpose::before,
.pl-eva-purpose::after {
  content: none;
}
.pl-eva-purpose-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.pl-eva-purpose-stage,
.pl-eva-purpose-copy {
  width: 100%;
}
.pl-eva-purpose-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
/* Open-book illustration after the CTA */
.pl-eva-purpose-study {
  display: block;
  width: min(58vw, 220px);
  height: auto;
  margin-top: 6px;
  filter: drop-shadow(0 12px 20px rgba(173, 102, 24, 0.18));
}
.pl-eva-purpose-intro {
  width: 100%;
  max-width: 50rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.pl-eva-purpose-hero-title {
  color: #c4621c;
}
.pl-eva-purpose-hero-copy {
  margin: 0;
  font-family: var(--font-roboto);
  font-size: clamp(18px, 4.7vw, 22px);
  line-height: 1.4;
  color: var(--color-black);
}
.pl-eva-purpose-visual {
  --eva-thumb-width: min(90vw, 348px);
  --eva-tab-width: min(30vw, 138px);
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 12px 0 0;
}
.pl-eva-purpose-phone {
  position: relative;
  z-index: 2;
  width: var(--eva-thumb-width);
  flex: 0 0 var(--eva-thumb-width);
  margin: 0 auto;
}
.pl-eva-purpose-video {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  aspect-ratio: 1900 / 2900;
  overflow: visible;
}
.pl-eva-purpose-video .pl-video-play {
  width: 78px;
  height: 78px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 20px rgba(15, 70, 113, 0.18);
}
.pl-eva-purpose-video .pl-video-play img {
  width: 28px;
}
.pl-eva-purpose-bubble {
  position: relative;
  order: -1;
  z-index: 1;
  width: min(calc(var(--eva-thumb-width) * 0.62), 72vw);
  min-height: 122px;
  margin-bottom: -96px;
  padding: 16px 18px 32px;
  border-radius: 24px 24px 0 0;
  background: rgba(255, 251, 241, 0.98);
  box-shadow: 0 14px 26px rgba(181, 116, 47, 0.14);
  display: flex;
  align-items: top;
  justify-content: center;
  text-align: center;
}
.pl-eva-purpose-bubble-title {
  margin: 0;
  font-size: clamp(15px, 3.1vw, 14px);
  line-height: 1.16;
  color: #c4621c;
}
.pl-eva-purpose-cta {
  width: min(100%, 318px);
  margin-top: 0;
}
.pl-eva-purpose-cta::before {
  background: url("../img/public/promo-verano/Group-4801.svg") center / 100% 100% no-repeat;
}
.pl-eva-purpose-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.pl-eva-purpose-title {
  color: #7a2c00;
}
.pl-eva-purpose-sub {
  color: var(--color-black);
  font-weight: 400;
}
.pl-eva-purpose-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 5vw, 44px);
  flex-wrap: wrap;
}
.pl-eva-purpose-logo {
  display: block;
  width: auto;
  height: auto;
}
.pl-eva-purpose-logo-santillana {
  width: min(44vw, 210px);
}
.pl-eva-purpose-logo-cognifit {
  width: min(40vw, 182px);
}
.pl-eva-purpose-body {
  max-width: 38em;
}

/* Video / testimonial */
.pl-video {
  position: relative;
  width: 100%;
  overflow: visible;
  cursor: default;
}
.pl-video-corner {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.pl-video-corner-top {
  top: clamp(-180px, -26vw, -92px);
  left: -9%;
  width: clamp(18px, 7vw, 34px);
}
.pl-video-corner-bottom {
  bottom: 1%;
  right: -9%;
  width: clamp(24px, 10vw, 52px);
}
.pl-video-device {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.pl-video-screen {
  position: absolute;
  top: 21.5%;
  right: 21.4%;
  bottom: 10.72%;
  left: 19%;
  z-index: 1;
  overflow: hidden;
  background: #000;
  aspect-ratio: 9 / 16;
}
.pl-video-media {
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  object-fit: cover;
  object-position: center;
}
.pl-video-embed {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}
.pl-video-frame {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: fill;
  pointer-events: none;
}
.pl-video.is-started .pl-video-play {
  opacity: 0;
  pointer-events: none;
}

@media (min-width: 900px) {
  .pl-eva-purpose {
    padding-top: 64px;
    padding-bottom: 72px;
  }
  .pl-eva-purpose-inner {
    max-width: 980px;
    gap: 44px;
  }
  .pl-eva-purpose-stage {
    gap: 28px;
  }
  .pl-eva-purpose-intro {
    gap: 12px;
    max-width: 38rem;
  }
  .pl-eva-purpose-hero-copy {
    font-size: 22px;
  }
  .pl-eva-purpose-visual {
    --eva-thumb-width: 452px;
    --eva-tab-width: 214px;
    padding-top: 8px;
  }
  .pl-eva-purpose-phone {
    width: var(--eva-thumb-width);
    flex-basis: var(--eva-thumb-width);
  }
  .pl-video-corner-top {
    top: -206px;
    left: -26%;
    width: 58px;
  }
  .pl-video-corner-bottom {
    bottom: 2%;
    right: -10%;
    width: 62px;
  }
  .pl-eva-purpose-video .pl-video-play {
    width: 92px;
    height: 92px;
  }
  .pl-eva-purpose-video .pl-video-play img {
    width: 32px;
  }
  .pl-eva-purpose-bubble {
    width: calc(var(--eva-thumb-width) * 0.62);
    margin-bottom: -124px;
    padding: 20px 24px 36px;
    min-height: 158px;
  }
  .pl-eva-purpose-bubble-title {
    font-size: 21px;
  }
}
.pl-video-play {
  position: absolute;
  inset: 0;
  z-index: 3;
  margin: auto;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 70, 109, 0.82);
  border-radius: 50%;
}
.pl-video-play img {
  width: 26px;
  height: auto;
  margin-left: 4px;
}

/* Reviews */
.pl-reviews-gallery {
  width: 100%;
  overflow: hidden;
  margin-top: 18px;
}
.pl-reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(68vw, 320px);
  gap: 16px;
  overflow-x: auto;
  padding: 4px calc((100vw - min(68vw, 320px)) / 2) 12px;
  scroll-snap-type: x mandatory;
  scroll-padding-left: calc((100vw - min(68vw, 320px)) / 2);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.pl-reviews-track::-webkit-scrollbar {
  display: none;
}
.pl-reviews-card {
  display: block;
  width: 100%;
  height: auto;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

@media (max-width: 899px) {
  .pl-reviews-gallery {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (min-width: 900px) {
  .pl-reviews-gallery {
    max-width: 1120px;
    margin: 26px auto 0;
    padding-left: clamp(16px, 5vw, 48px);
    padding-right: clamp(16px, 5vw, 48px);
  }
  .pl-reviews-track {
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    overflow: visible;
    padding: 0;
    gap: 18px;
    align-items: stretch;
  }
}

/* Phones + store badges */
.pl-phones {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
}
.pl-phones img {
  width: 46%;
  max-width: 240px;
  height: auto;
}
.pl-stores {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.pl-store.is-disabled {
  pointer-events: none;
  cursor: default;
}
.pl-store img {
  height: 44px;
  width: auto;
}

/* Footer */
.pl-footer {
  background: #000;
  color: #fff;
}
.pl-footer .intFooter {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0;
}
.pl-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pl-footer .intFooter ul li {
  display: inline-block;
  margin: 10px;
  vertical-align: middle;
  font-size: 1.4em;
}
.pl-footer .intFooter ul.autolinks {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #555;
}
.pl-footer .intFooter ul.autolinks li {
  display: block;
  margin: 4px 0;
  font-size: 1.5em;
}
.pl-footer .intFooter a {
  color: #fff;
}
.pl-footer .social li {
  margin: 0;
}
.pl-footer .social li .iconNameSocial {
  display: none;
}
.pl-footer .social li a {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #fff;
}
.pl-footer .iconSocial {
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: 50%;
  mask-position: 50%;
  -webkit-mask-size: auto 75%;
  mask-size: auto 75%;
}
.pl-footer li.instagram a {
  background: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045);
}
.pl-footer li.instagram .iconSocial {
  -webkit-mask-image: url("../img/logo-instagram.svg");
  mask-image: url("../img/logo-instagram.svg");
  background: #fff;
}
.pl-footer li.tiktok a {
  background: #fff;
}
.pl-footer li.tiktok .iconSocial {
  background-color: transparent;
  background-image: url("../img/logo-tiktok.svg");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: auto 80%;
  -webkit-mask-image: none;
  mask-image: none;
}
.pl-footer li.youtube a {
  background: #d22222;
}
.pl-footer li.youtube .iconSocial {
  -webkit-mask-image: url("../img/logo-youtube.svg");
  mask-image: url("../img/logo-youtube.svg");
  -webkit-mask-size: auto 65%;
  mask-size: auto 65%;
  background: #fff;
}
.pl-footer li.twitter a {
  background: #222;
}
.pl-footer li.twitter .iconSocial {
  -webkit-mask-image: url("../img/logo-x.svg");
  mask-image: url("../img/logo-x.svg");
  -webkit-mask-size: auto 50%;
  mask-size: auto 50%;
  background: #fff;
}
.pl-footer .logCog,
.pl-footer .logSantillana {
  display: inline-block;
  width: 100px;
  height: 50px;
  margin: 0 10px;
  vertical-align: middle;
  background-image: url("../img/santillana.png");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
}
.pl-footer .logSantillana {
  width: 130px;
}
.pl-footer .logCog {
  height: 40px;
  background-image: url("../img/cognifit.svg");
}
.pl-footer .foot1,
.pl-footer .foot2 {
  margin: 0;
}
.pl-footer .foot2 {
  margin-top: 15px;
  font-size: 1.2em;
}

/* ---- Desktop / wide ---- */
@media (min-width: 900px) {
  .pl-sec {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .pl-hero {
    min-height: 680px;
    max-height: 860px;
  }
  .pl-hero-text {
    bottom: 38%;
    width: min(100% - 48px, 520px);
  }
  .pl-stack {
    gap: 26px;
  }
  .pl-h1 {
    font-size: 40px;
  }
  .pl-sub {
    font-size: 22px;
  }
  .pl-body {
    font-size: 18px;
  }
  .pl-eva-purpose-bubble .pl-eva-purpose-bubble-title {
    font-size: 21px;
    line-height: 1.16;
  }
  /* 3-up card grids; 6 superpoderes wrap to 3 columns */
  .pl-cards-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .pl-card-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .pl-card-icon-panel {
    width: 100%;
    padding: 18px 20px;
  }
  .pl-card-row .pl-card-icon {
    width: 72px;
    height: 72px;
  }
  .pl-card-body {
    padding: 18px 20px 22px;
  }

  .pl-device-showcase {
    padding-top: 30px;
    padding-bottom: 34px;
  }
  .pl-device-showcase-cloud-tl {
    top: 28px;
    left: 70px;
    width: 96px;
  }
  .pl-device-showcase-cloud-br {
    right: 54px;
    bottom: 34px;
    width: 104px;
  }
  .pl-device-showcase-row {
    max-width: 980px;
    gap: 24px;
  }
  .pl-device-showcase-phone {
    height: 420px;
  }

  .pl-discovery-stack {
    gap: 28px;
  }
  .pl-discovery-title {
    max-width: 700px;
    font-size: 42px;
  }
  .pl-discovery-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: stretch;
  }
  .pl-discovery-card {
    flex-direction: column;
    border-radius: 20px;
  }
  .pl-discovery-icon-panel {
    width: 100%;
    min-height: 118px;
    padding: 20px;
  }
  .pl-discovery-card-text {
    padding: 20px 20px 24px;
    font-size: 18px;
    align-self: stretch;
  }
  .pl-discovery-cta {
    width: 340px;
    height: 60px;
  }
  .pl-discovery-kids {
    max-width: 420px;
    gap: 12px;
    margin-bottom: -64px; /* padding-bottom de .pl-sec en web */
  }
  .pl-discovery-kids img {
    width: calc((100% - 24px) / 3);
  }

  .pl-phones img {
    max-width: 280px;
  }
  .pl-store img {
    height: 52px;
  }
}

/* Offer ribbon "1 mes gratis…" — navy background + gold text (per export) */
.pl-offer.pl-band-gold {
  background: var(--color-steelblue);
}
.pl-offer .pl-offer-inner,
.pl-offer .pl-offer-inner .pl-offer-marquee-item {
  color: var(--color-gold-100);
}

@media (max-width: 899px) {
  .pl-offer-inner,
  .pl-promo-band-offer-inner {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    justify-content: flex-start;
  }
  .pl-offer-copy {
    width: 100%;
  }
  .pl-offer-marquee-track {
    width: max-content;
    min-width: 100%;
    justify-content: flex-start;
    animation: pl-offer-marquee 11s linear infinite;
    will-change: transform;
  }
  .pl-offer-marquee-group[aria-hidden="true"] {
    display: flex;
  }
  .pl-offer-marquee-group {
    gap: 12px;
    padding-right: 10px;
  }
  .pl-offer-marquee-icon {
    width: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pl-offer-marquee-track {
    animation: none;
  }
}

@media (orientation: landscape) {
  .pl-daalas .pl-daalas-title {
    margin-left: clamp(72px, 12vw, 220px);
  }
}

@media (min-width: 1400px) {
  .pl-two-paths-inner {
    padding-right: clamp(120px, 10vw, 220px);
  }
}
