/* ============================================================
   Páginas de soluciones (Advertisers / Publishers)
   ============================================================ */

/* ---------- Hero ---------- */
.sol-hero {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
  padding: 120px 0 70px;
}
.sol-hero .sol-hero-grid {
  display: grid;
  gap: 40px;
}
.sol-hero .hero-icon { width: 62px; height: 62px; margin-bottom: 20px; }
.sol-hero .hero-kicker {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 22px;
  color: var(--white);
}
.sol-hero h1 {
  font-weight: 700;
  font-size: 44px;
  line-height: 1.05;
  color: var(--teal-light);
  margin-bottom: 22px;
}
.sol-hero .hero-lead {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.25;
  color: var(--white);
}
.sol-hero .hero-photo {
  position: relative;
}
.sol-hero .hero-photo img {
  width: 100%;
  max-width: 620px;
  aspect-ratio: 1.6;
  border-radius: 400px 400px 400px 0;
  object-fit: cover;
}
.sol-hero .hero-body {
  font-size: 16px;
  line-height: 1.35;
  color: var(--white);
  margin-top: 40px;
}
.sol-hero .deco-tr {
  position: absolute;
  top: 60px; right: -14px;
  width: 90px;
}
@media (min-width: 900px) {
  .sol-hero { padding: 150px 0 90px; }
  .sol-hero .sol-hero-grid {
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 70px;
  }
  .sol-hero .hero-photo { order: -1; margin-left: calc(-1 * var(--pad-x) - 60px); }
  .sol-hero h1 { font-size: 60px; }
  .sol-hero .hero-kicker { font-size: 30px; }
  .sol-hero .hero-lead { font-size: 30px; }
  .sol-hero .hero-body { font-size: 20px; line-height: 1.25; margin-top: 60px; max-width: 1080px; }
}

/* ---------- Bandas de features ---------- */
.band {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.band .band-grid {
  display: grid;
  gap: 30px;
  position: relative;
}
.band .band-photo img {
  width: 240px;
  height: 240px;
  border-radius: 50% 50% 50% 0;
  object-fit: cover;
}
.band--rev .band-photo img { border-radius: 50% 50% 0 50%; }
.band .band-photo--bl img { border-radius: 50% 50% 50% 0 !important; }
.band .band-photo--br img { border-radius: 50% 50% 0 50% !important; }
.band .band-content { position: relative; }
.band .band-icon {
  position: absolute;
  top: 0; right: 0;
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
}
.band .band-icon .frame { position: absolute; inset: 0; width: 100%; height: 100%; }
.band .band-icon img.glyph { width: 58%; height: 58%; position: relative; }
.band h2 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.02;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.band .band-waves {
  position: absolute;
  left: 50%; bottom: -4px;
  transform: translateX(-50%);
  width: max(1423px, 100%);
  opacity: .85;
  pointer-events: none;
}
.band .band-lead {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.band .band-lead--medium { font-weight: 500; }
.band .band-body {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
}
.band .band-body p + p { margin-top: 14px; }

/* Variantes de fondo */
.band--light { background: var(--light); color: #161A3A; }
.band--light h2 { color: #161A3A; }
.band--mid { background: #152154; color: var(--light); }
.band--mid h2 { color: var(--light); }
.band--dark { background: var(--navy-hero); color: var(--light); }
.band--dark h2 { color: var(--light); }
.t-teal { color: var(--teal); }
.t-teal-light { color: var(--teal-light); }

@media (max-width: 899px) {
  .band .band-photo { display: flex; justify-content: center; margin-bottom: 10px; }
  .band .band-content { padding-right: 70px; }
}
@media (min-width: 900px) {
  .band { padding: 88px 0; }
  .band .band-grid {
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: center;
  }
  .band--rev .band-grid { grid-template-columns: 1fr 380px; }
  .band--rev .band-photo { order: 2; justify-self: end; }
  .band--rev .band-content { order: 1; }
  .band .band-photo img { width: 340px; height: 340px; }
  .band .band-icon { width: 67px; height: 67px; }
  .band h2 { font-size: 56px; margin-bottom: 30px; }
  .band .band-lead { font-size: 30px; margin-bottom: 20px; }
  .band .band-body { font-size: 20px; line-height: 1.25; max-width: 760px; }
  .band .band-content { padding-right: 110px; }
}

/* Lista dentro de banda */
.band .band-body ul { list-style: none; }
.band .band-body li { margin-bottom: 14px; }
.band .band-body li::before { content: "– "; }
