:root {
  --magenta: #e0009d;
  --magenta-dark: #b90082;
  --plum: #250024;
  --ink: #2a1930;
  --muted: #716278;
  --line: #eee5ee;
  --blush: #fff1f8;
  --blush-strong: #ffe3f3;
  --white: #ffffff;
  --gold: #d8a73b;
  --aqua: #7edce2;
  --shadow: 0 18px 48px rgba(56, 24, 54, 0.12);
  --soft-shadow: 0 10px 24px rgba(56, 24, 54, 0.08);
  --radius: 8px;
  --max: 1280px;
  --header-h: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Lato, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  padding-bottom: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 85% 5%, rgba(224, 0, 157, 0.08), transparent 30%),
    radial-gradient(circle at 10% 35%, rgba(255, 227, 243, 0.9), transparent 26%),
    linear-gradient(180deg, #fff, #fff 45%, #fff8fc);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--plum);
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3.1rem, 5.9vw, 5.65rem);
  margin-bottom: 1.1rem;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 1rem;
}

h3 {
  color: var(--plum);
  font-size: 1.03rem;
  line-height: 1.25;
  margin-bottom: 0.4rem;
}

p {
  color: var(--muted);
}

.icon {
  width: 1.1em;
  height: 1.1em;
  fill: currentColor;
  flex: 0 0 auto;
}

.fa-icon {
  display: inline-grid;
  place-items: center;
  width: 1em;
  height: 1em;
  font-size: 1em;
  line-height: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(22px, 5vw, 70px);
  border-bottom: 1px solid rgba(37, 0, 36, 0.08);
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--magenta);
  font-size: clamp(1.1rem, 2vw, 1.7rem);
  font-weight: 900;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  color: var(--plum);
  padding: 12px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 3px;
  border-radius: 10px;
  background: var(--magenta);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--plum);
  padding: 0;
  cursor: pointer;
}

.menu-toggle .icon {
  width: 1.6rem;
  height: 1.6rem;
  font-size: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--magenta), var(--magenta-dark));
  box-shadow: 0 14px 30px rgba(224, 0, 157, 0.24);
}

.btn .icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 1.08em;
  width: 1.08em;
  height: 1.08em;
  fill: currentColor;
  font-size: 1.05em;
}

.btn-secondary {
  color: var(--magenta);
  border: 1px solid rgba(224, 0, 157, 0.55);
  background: var(--white);
}

.header-cta {
  min-height: 48px;
  padding-inline: 22px;
  white-space: nowrap;
}

.hero {
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(560px, 1.28fr);
  align-items: center;
  gap: clamp(30px, 4vw, 58px);
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(30px, 4vw, 48px) clamp(22px, 5vw, 78px) 14px;
}

.hero-copy {
  padding-top: 10px;
}

.hero-copy h1 span {
  display: block;
  color: var(--magenta);
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 14px;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 470px;
  color: #6f6474;
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
  line-height: 1.55;
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--magenta);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero-visual {
  display: grid;
  gap: 10px;
  align-content: start;
}

.hero-image-frame {
  position: relative;
  min-height: 398px;
  overflow: hidden;
  border-radius: 34px 0 0 96px;
  box-shadow: var(--shadow);
  background: var(--blush);
}

.hero-image-frame picture,
.hero-image-frame img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-image-frame img {
  min-height: 398px;
  object-fit: cover;
}

.hero-stamp {
  justify-self: end;
  margin: 0 12px 0 0;
  color: #7b607b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.02rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.25;
}

.section {
  padding: clamp(30px, 4vw, 48px) clamp(22px, 5vw, 78px);
}

.hero + .section {
  padding-top: 12px;
}

.section-blush {
  background: linear-gradient(180deg, rgba(255, 241, 248, 0.75), rgba(255, 255, 255, 0.92));
}

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.narrow {
  max-width: 900px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 22px;
}

.section-heading.centered {
  max-width: none;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  font-size: 1.05rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.services-grid-secondary {
  display: grid;
  grid-template-columns: repeat(2, minmax(210px, 260px));
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 0, 157, 0.22);
  box-shadow: var(--shadow);
}

.service-image {
  display: block;
  height: 150px;
  overflow: hidden;
  background: var(--blush);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.service-image img[src*="hoteles-buzz-art-of-animation"],
.page-hero-image img[src*="hoteles-buzz-art-of-animation"] {
  object-position: 50% 38%;
}

.service-card:hover .service-image img {
  transform: scale(1.04);
}

.service-card-body {
  display: grid;
  gap: 8px;
  padding: 16px 18px 20px;
}

.service-card-compact .service-image {
  height: 150px;
}

.service-card-compact .service-card-body {
  min-height: 66px;
  place-items: center;
  padding: 14px 10px 16px;
  text-align: center;
}

.service-card-compact strong {
  font-size: 1.16rem;
}

.service-card-compact strong::after {
  margin-left: auto;
  margin-right: auto;
}

.service-card strong {
  position: relative;
  color: var(--plum);
  font-size: 1.18rem;
  line-height: 1.2;
}

.service-card strong::after {
  content: "";
  display: block;
  width: 24px;
  height: 3px;
  margin-top: 8px;
  border-radius: 10px;
  background: var(--magenta);
}

.service-card span span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.service-extra-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.service-extra-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--soft-shadow);
  font-weight: 800;
}

.service-extra-links .icon {
  width: 17px;
  height: 17px;
  color: var(--magenta);
}

.split-section {
  padding-top: 18px;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: start;
}

.soft-list {
  display: grid;
  gap: 12px;
}

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

.soft-list div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
}

.soft-list .icon {
  width: 1em;
  height: 1em;
  margin-top: 0.2rem;
  color: var(--magenta);
}

.soft-list span {
  color: var(--ink);
}

.process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 26px;
  border: 1px solid rgba(224, 0, 157, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--soft-shadow);
}

.step-number {
  position: absolute;
  top: -13px;
  left: 20px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--white);
  background: var(--magenta);
  font-weight: 900;
}

.step-icon,
.footer-call-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  color: var(--magenta);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.step-icon .icon {
  width: 1.45rem;
  height: 1.45rem;
  font-size: 1.45rem;
}

.footer-call-icon .icon {
  width: 1.25rem;
  height: 1.25rem;
  font-size: 1.25rem;
}

.process-step p {
  margin: 0;
}

.promise-card,
.footer-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
}

.promise-card h2,
.footer-cta h2 {
  margin-bottom: 0.5rem;
  font-family: Lato, Arial, sans-serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.15;
}

.promise-card p,
.footer-cta p {
  max-width: 780px;
  margin-bottom: 0;
}

.page-hero,
.simple-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(42px, 5.5vw, 70px) clamp(22px, 5vw, 78px);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.9fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.page-hero h1,
.simple-hero h1 {
  font-size: clamp(3rem, 5.4vw, 5rem);
}

.page-hero-copy > p:not(.eyebrow),
.simple-hero > p:not(.eyebrow) {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.08rem;
  line-height: 1.55;
  text-wrap: balance;
}

.page-hero-image {
  overflow: hidden;
  height: 430px;
  border-radius: 28px 0 0 72px;
  background: var(--blush);
  box-shadow: var(--shadow);
}

.page-hero-image.portrait {
  max-width: 430px;
  border-radius: 50%;
  aspect-ratio: 1;
  height: auto;
  margin-left: auto;
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-page {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 94% 12%, rgba(224, 0, 157, 0.09), transparent 28%),
    radial-gradient(circle at 0 4%, rgba(255, 205, 232, 0.42), transparent 20%),
    linear-gradient(180deg, rgba(255, 245, 251, 0.96) 0, rgba(255, 255, 255, 0.98) 760px);
}

.team-hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(400px, 0.92fr);
  gap: clamp(32px, 4.8vw, 72px);
  align-items: center;
  max-width: 1340px;
  margin: 0 auto;
  padding: clamp(54px, 5vw, 78px) clamp(22px, 5vw, 78px) clamp(18px, 3vw, 34px);
}

.team-hero-shell::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: min(330px, 34vw);
  aspect-ratio: 1;
  border-radius: 0 0 70% 0;
  background: linear-gradient(135deg, rgba(255, 218, 239, 0.62), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.team-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 590px;
}

.team-hero-copy h1 {
  max-width: 720px;
  margin-bottom: 10px;
  font-size: clamp(4.15rem, 7.2vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.team-hero-copy > p:not(.eyebrow) {
  max-width: 540px;
  color: #6f6474;
  font-size: clamp(1.02rem, 1.3vw, 1.18rem);
  line-height: 1.55;
}

.team-hero-lead {
  margin-bottom: 18px;
  color: var(--plum);
  font-size: clamp(1.42rem, 2.1vw, 2.05rem);
  font-weight: 700;
  line-height: 1.28;
}

.team-hero-lead span {
  color: var(--magenta);
}

.team-hero-note {
  margin-bottom: 28px;
}

.team-hero-actions {
  display: grid;
  gap: 22px;
  justify-items: start;
}

.team-hero-actions .team-hero-note {
  margin: 0;
}

.team-hero-actions-mobile {
  display: none;
}

.team-hero-media {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.team-hero-decor {
  position: absolute;
  right: clamp(-170px, -11vw, -82px);
  bottom: 0;
  z-index: 0;
  width: min(850px, 62vw);
  max-width: none;
  opacity: 0.76;
  filter: drop-shadow(0 24px 46px rgba(45, 0, 45, 0.08));
  pointer-events: none;
}

.team-portrait-card {
  position: relative;
  z-index: 2;
  width: min(430px, 82vw);
  aspect-ratio: 1;
  padding: 12px;
  border: 2px solid rgba(224, 0, 157, 0.28);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 225, 242, 0.9));
  box-shadow: 0 26px 70px rgba(45, 0, 45, 0.14);
}

.team-portrait-card img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.team-hero-media-group {
  min-height: 500px;
}

.team-hero-media-group .team-portrait-card {
  width: min(520px, 39vw);
  aspect-ratio: 4 / 3;
  padding: 10px;
  border-radius: clamp(24px, 3vw, 42px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 228, 244, 0.9));
}

.team-hero-media-group .team-portrait-card img {
  object-position: center;
}

.team-hero-media-group .team-orbit {
  border-radius: clamp(26px, 4vw, 52px);
}

.team-hero-media-group .team-orbit-one {
  width: min(585px, 44vw);
  aspect-ratio: 4 / 3;
  transform: rotate(-2.5deg);
}

.team-hero-media-group .team-orbit-two {
  width: min(520px, 39vw);
  aspect-ratio: 4 / 3;
  transform: translate(22px, 14px) rotate(2.5deg);
}

.team-orbit {
  position: absolute;
  border: 1px solid rgba(224, 0, 157, 0.2);
  border-radius: 999px;
  pointer-events: none;
}

.team-orbit-one {
  width: min(500px, 88vw);
  aspect-ratio: 1;
  border-color: rgba(224, 0, 157, 0.32);
  transform: rotate(-6deg);
}

.team-orbit-two {
  width: min(360px, 64vw);
  aspect-ratio: 1;
  border-color: rgba(224, 0, 157, 0.12);
  transform: translate(52px, 18px) rotate(18deg);
}

.team-proof-card {
  position: absolute;
  right: clamp(10px, 7vw, 80px);
  bottom: 38px;
  z-index: 3;
  display: grid;
  gap: 4px;
  max-width: 230px;
  padding: 18px 20px;
  border: 1px solid rgba(224, 0, 157, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--soft-shadow);
}

.team-proof-card strong {
  color: var(--plum);
}

.team-proof-card span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.4;
}

.simple-hero {
  text-align: center;
}

.simple-hero + .section {
  padding-top: 10px;
}

.story-hero {
  position: relative;
  overflow: hidden;
  max-width: none;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding-bottom: clamp(84px, 9vw, 130px);
  background:
    linear-gradient(180deg, rgba(255, 241, 248, 0.9), rgba(255, 255, 255, 0.2) 58%, rgba(255, 255, 255, 0)),
    url("../img/dreams/suenos-clouds-hero-desktop.webp") center center / cover no-repeat;
  background-position: center, center 42%;
}

.story-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: clamp(130px, 16vw, 230px);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 250, 253, 0.82) 55%, var(--blush));
}

.story-hero > * {
  position: relative;
  z-index: 1;
}

.news-hero {
  position: relative;
  overflow: hidden;
  max-width: none;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding-bottom: clamp(76px, 8vw, 118px);
  background:
    linear-gradient(180deg, rgba(255, 241, 248, 0.72), rgba(255, 255, 255, 0.08) 54%, rgba(255, 241, 248, 0)),
    url("../img/news/noticias-hero-pink-desktop.webp") center center / cover no-repeat;
  background-position: center, center 38%;
}

.news-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: clamp(120px, 14vw, 210px);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 250, 253, 0.78) 58%, var(--blush));
}

.news-hero > * {
  position: relative;
  z-index: 1;
}

.service-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.service-side {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.service-side h2 {
  font-family: Lato, Arial, sans-serif;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.service-pills {
  display: grid;
  gap: 8px;
}

.service-pills a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 900;
}

.service-pills a:hover,
.service-pills a.is-active {
  color: var(--magenta);
  background: var(--blush);
}

.service-content {
  display: grid;
  gap: 36px;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.summary-card,
.related-card,
.member-card,
.agent-card,
.news-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
}

.summary-card {
  display: flex;
  gap: 14px;
  padding: 22px;
}

.summary-card .icon {
  width: 18px;
  height: 18px;
  color: var(--magenta);
  margin-top: 0.2rem;
}

.summary-card p {
  margin: 0;
  color: var(--ink);
}

.content-block {
  padding-top: 8px;
}

.editorial-block {
  margin-top: 22px;
}

.editorial-block:first-child {
  margin-top: 0;
}

.content-block h2 {
  font-family: Lato, Arial, sans-serif;
  font-size: clamp(1.55rem, 2vw, 2.05rem);
  line-height: 1.15;
}

.content-block p {
  max-width: 850px;
  font-size: 1.05rem;
}

.provider-strip {
  display: grid;
  place-items: center;
  margin: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
}

.provider-strip img {
  max-height: 120px;
  width: auto;
  object-fit: contain;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.related-card {
  display: grid;
  gap: 8px;
  padding: 20px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.related-card:hover {
  transform: translateY(-3px);
  border-color: rgba(224, 0, 157, 0.22);
}

.related-card strong {
  color: var(--plum);
}

.related-card span {
  color: var(--muted);
  font-size: 0.94rem;
}

.lead-paragraph {
  font-size: 1.1rem;
}

.team-method-section {
  padding-top: 18px;
}

.team-method-card {
  max-width: 1220px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(224, 0, 157, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--soft-shadow);
  text-align: center;
}

.team-copy {
  display: grid;
  gap: 10px;
  justify-items: center;
  max-width: 820px;
  margin: 0 auto;
}

.team-copy h2,
.team-subheading h2 {
  font-size: clamp(2.1rem, 3vw, 3.1rem);
  line-height: 1.15;
}

.team-copy h2 {
  letter-spacing: -0.02em;
}

.team-copy .lead-paragraph {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
  text-wrap: balance;
}

.team-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
  margin-top: 30px;
}

.team-highlight {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 228px;
  padding: 30px 24px 28px;
  border: 1px solid rgba(224, 0, 157, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 42px rgba(45, 0, 45, 0.06);
  text-align: center;
}

.team-highlight-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 18px;
  color: var(--magenta);
  background: transparent;
}

.team-highlight-icon .icon {
  width: 38px;
  height: 38px;
  font-size: 38px;
}

.team-highlight h3 {
  margin-bottom: 0.7rem;
  color: var(--plum);
  font-size: 1.08rem;
}

.team-highlight p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.team-leadership-section {
  padding-top: 0;
}

.team-leadership-section .container {
  position: relative;
  max-width: 1080px;
  padding: clamp(62px, 6vw, 76px) clamp(28px, 4vw, 42px) clamp(34px, 4.4vw, 48px);
  border-radius: 26px;
  background:
    radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.76), transparent 35%),
    linear-gradient(135deg, rgba(255, 235, 247, 0.92), rgba(255, 246, 251, 0.96));
  box-shadow: var(--soft-shadow);
}

.team-leadership-section .container::before {
  content: "";
  position: absolute;
  top: clamp(28px, 3vw, 36px);
  left: 50%;
  width: min(560px, 62%);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(224, 0, 157, 0.12), var(--magenta), rgba(224, 0, 157, 0.12), transparent);
  transform: translateX(-50%);
}

.team-subheading {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.team-subheading p,
.team-agents-section .section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.team-leadership-section .member-grid {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.team-section-mark {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border: 1px solid rgba(224, 0, 157, 0.14);
  border-radius: 50%;
  color: var(--magenta);
  background: rgba(255, 241, 248, 0.94);
  box-shadow: 0 12px 30px rgba(224, 0, 157, 0.1);
}

.team-section-mark .icon {
  width: 25px;
  height: 25px;
  font-size: 25px;
}

.member-grid,
.agents-grid,
.news-list {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

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

.member-card {
  display: grid;
  justify-items: center;
  gap: 22px;
  min-height: 318px;
  padding: 42px 32px 38px;
  text-align: center;
}

.member-photo {
  width: 152px;
  height: 152px;
  margin: 0;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--soft-shadow);
}

.member-card > span {
  display: grid;
  place-items: center;
  width: 152px;
  height: 152px;
  margin: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--magenta);
  font-size: 2.45rem;
  font-weight: 900;
}

.member-card h2 {
  font-size: clamp(1.65rem, 2.1vw, 2rem);
  line-height: 1.08;
  margin-bottom: 0.45rem;
}

.member-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.member-card small {
  display: block;
  margin-top: 0.35rem;
  color: var(--magenta);
  font-weight: 900;
}

.agents-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-agents-section {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.team-agents-section::before {
  display: none;
}

.team-agents-section .container {
  position: relative;
  max-width: 1120px;
}

.team-agents-section .section-heading {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.team-agents-section .section-heading h2 {
  font-size: clamp(2.25rem, 3.2vw, 3.25rem);
  line-height: 1.08;
}

.team-agents-section .section-heading h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: var(--magenta);
}

.team-agents-section .section-heading p:not(.eyebrow) {
  max-width: 640px;
  margin: 18px auto 0;
}

.team-agents-section .agents-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.agent-card {
  display: grid;
  gap: 4px;
  justify-items: center;
  padding: 16px 12px 18px;
  text-align: center;
}

.team-agents-section .agent-card {
  min-height: 214px;
  border-color: rgba(224, 0, 157, 0.1);
  background: rgba(255, 255, 255, 0.94);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.team-agents-section .agent-card:hover {
  transform: translateY(-3px);
  border-color: rgba(224, 0, 157, 0.24);
  box-shadow: var(--shadow);
}

.agent-photo {
  width: 118px;
  height: 118px;
  margin-bottom: 10px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--soft-shadow);
}

.team-agents-section .agent-photo {
  width: 96px;
  height: 96px;
}

.agent-card strong {
  color: var(--plum);
}

.agent-instagram {
  color: var(--magenta);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.agent-instagram:hover,
.agent-instagram:focus-visible {
  color: var(--plum);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.56fr);
  gap: clamp(26px, 4vw, 56px);
  align-items: start;
}

.story-intro-section {
  padding-top: clamp(22px, 3vw, 38px);
  padding-bottom: clamp(34px, 5vw, 60px);
}

.story-intro-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: center;
  max-width: 1080px;
  padding: clamp(10px, 2vw, 18px) clamp(22px, 4vw, 34px);
}

.story-intro-copy {
  display: grid;
  gap: 16px;
}

.story-intro-copy .lead-paragraph {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.story-purpose-card {
  padding: clamp(4px, 1vw, 10px) 0 clamp(4px, 1vw, 10px) clamp(20px, 3vw, 30px);
  border-left: 3px solid var(--magenta);
  border-radius: 0;
  background: transparent;
}

.story-purpose-card blockquote {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.2rem, 1.45vw, 1.58rem);
  font-weight: 800;
  line-height: 1.2;
}

.story-cards {
  display: grid;
  gap: 18px;
}

.story-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) 1fr;
  gap: 24px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
}

.story-gallery {
  min-width: 0;
  touch-action: pan-y;
}

.story-gallery-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--blush);
}

.story-gallery-track {
  --gallery-index: 0;
  display: flex;
  transform: translateX(calc(var(--gallery-index) * -100%));
  transition: transform 0.36s ease;
}

.story-gallery-track.is-jump {
  transition: none;
}

.story-slide {
  flex: 0 0 100%;
  margin: 0;
}

.story-slide-open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: zoom-in;
}

.story-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition:
    filter 0.3s ease,
    transform 0.3s ease;
}

.story-slide-open:hover img {
  filter: saturate(1.05);
  transform: scale(1.025);
}

.story-slide-open:focus-visible {
  outline: 3px solid rgba(224, 0, 157, 0.32);
  outline-offset: -6px;
}

.gallery-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--plum);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.gallery-control:hover {
  color: var(--white);
  background: var(--magenta);
  transform: translateY(-50%) scale(1.04);
}

.gallery-control:focus-visible,
.gallery-dot:focus-visible {
  outline: 3px solid rgba(224, 0, 157, 0.28);
  outline-offset: 3px;
}

.gallery-control .icon {
  width: 0.95rem;
  height: 0.95rem;
  font-size: 0.95rem;
}

.gallery-control-prev {
  left: 10px;
}

.gallery-control-next {
  right: 10px;
}

.story-gallery-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  padding-top: 10px;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #d9c8d9;
  cursor: pointer;
  transition:
    width 0.2s ease,
    background 0.2s ease;
}

.gallery-dot.is-active {
  width: 24px;
  background: var(--magenta);
}

body.story-lightbox-open {
  overflow: hidden;
}

.story-lightbox[hidden] {
  display: none;
}

.story-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 42px);
  color: var(--white);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.story-lightbox.is-open {
  opacity: 1;
}

.story-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 28%, rgba(224, 0, 157, 0.18), transparent 34%),
    rgba(18, 3, 22, 0.88);
  backdrop-filter: blur(12px);
  cursor: zoom-out;
}

.story-lightbox-dialog {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  width: min(1180px, 100%);
  height: min(820px, calc(100dvh - 48px));
}

.story-lightbox-meta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 48px;
  padding-right: 62px;
}

.story-lightbox-meta strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1;
}

.story-lightbox-meta span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 900;
  letter-spacing: 0.06em;
}

.story-lightbox-close,
.story-lightbox-control {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.story-lightbox-close:hover,
.story-lightbox-control:hover {
  background: rgba(224, 0, 157, 0.92);
  transform: scale(1.04);
}

.story-lightbox-close:focus-visible,
.story-lightbox-control:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.34);
  outline-offset: 3px;
}

.story-lightbox-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 4;
  width: 48px;
  height: 48px;
}

.story-lightbox-close .icon,
.story-lightbox-control .icon {
  width: 1.16rem;
  height: 1.16rem;
  font-size: 1.16rem;
}

.story-lightbox-control {
  width: 54px;
  height: 54px;
}

.story-lightbox-prev {
  grid-column: 1;
  grid-row: 2;
}

.story-lightbox-next {
  grid-column: 3;
  grid-row: 2;
}

.story-lightbox-control[hidden] {
  display: none;
}

.story-lightbox-figure {
  grid-column: 2;
  grid-row: 2;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
}

.story-lightbox-viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.story-lightbox-track {
  --lightbox-index: 0;
  display: flex;
  width: 100%;
  height: 100%;
  transform: translateX(calc(var(--lightbox-index) * -100%));
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.story-lightbox-track.is-jump {
  transition: none;
}

.story-lightbox-slide {
  display: grid;
  flex: 0 0 100%;
  place-items: center;
  min-width: 0;
  min-height: 0;
}

.story-lightbox-figure img {
  max-width: 100%;
  max-height: calc(100dvh - 158px);
  border-radius: 24px;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
}

.story-card h2 {
  font-family: Lato, Arial, sans-serif;
  font-size: 1.4rem;
  line-height: 1.15;
}

.story-title-open {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  line-height: inherit;
  text-align: left;
  cursor: zoom-in;
}

.story-title-open:hover {
  color: var(--magenta);
}

.story-title-open:focus-visible {
  outline: 3px solid rgba(224, 0, 157, 0.28);
  outline-offset: 4px;
}

blockquote {
  margin: 0;
  padding: 28px 30px;
  border-left: 5px solid var(--magenta);
  border-radius: var(--radius);
  color: var(--plum);
  background: var(--blush);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 1.7vw, 1.85rem);
  line-height: 1.17;
  text-wrap: balance;
}

.news-list {
  max-width: 920px;
}

.news-card {
  padding: 26px;
}

.news-card small {
  color: var(--magenta);
  font-weight: 900;
  text-transform: uppercase;
}

.news-card h2 {
  margin-top: 8px;
  font-family: Lato, Arial, sans-serif;
  font-size: 1.5rem;
  line-height: 1.2;
}

.site-footer {
  padding: 28px clamp(22px, 5vw, 78px) 42px;
}

.footer-cta {
  max-width: var(--max);
  margin: 0 auto 34px;
  grid-template-columns: auto 1fr auto;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 26px;
  max-width: var(--max);
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--magenta);
  font-weight: 900;
}

.footer-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.mobile-bottom-bar {
  display: none;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .site-nav {
    gap: 18px;
  }

  .header-cta span {
    display: none;
  }

  .hero,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .hero-image-frame,
  .page-hero-image {
    min-height: auto;
    height: 460px;
  }

  .services-grid,
  .services-grid-secondary,
  .related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .services-grid-secondary {
    justify-content: stretch;
  }

  .agents-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .team-hero-shell,
  .team-method-card {
    grid-template-columns: 1fr;
  }

  .team-hero-shell {
    padding-top: 44px;
  }

  .team-hero-media {
    min-height: 470px;
  }

  .team-hero-media-group {
    min-height: 0;
  }

  .team-hero-media-group .team-portrait-card {
    width: min(600px, 72vw);
  }

  .team-hero-media-group .team-orbit-one {
    width: min(660px, 80vw);
  }

  .team-hero-media-group .team-orbit-two {
    width: min(600px, 74vw);
  }

  .team-hero-decor {
    right: 50%;
    width: min(760px, 86vw);
    transform: translateX(50%);
  }

  .team-agents-section .agents-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  :root {
    --header-h: 76px;
  }

  body {
    padding-bottom: 74px;
    font-size: 15.5px;
  }

  .site-header {
    height: 76px;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding: 0 18px;
  }

  .brand span {
    font-size: 1.2rem;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .menu-toggle {
    display: inline-grid;
    justify-self: end;
    grid-column: 3;
    grid-row: 1;
    width: 48px;
    height: 48px;
    margin-right: -6px;
    border: 1px solid rgba(224, 0, 157, 0.12);
    background: rgba(255, 241, 248, 0.72);
  }

  .menu-toggle .icon {
    width: 1.65rem;
    height: 1.65rem;
    font-size: 1.65rem;
  }

  .btn .icon {
    width: 1.18em;
    height: 1.18em;
    font-size: 1.16em;
  }

  .service-extra-links .icon,
  .soft-list .icon,
  .summary-card .icon {
    width: 1.14rem;
    height: 1.14rem;
    font-size: 1.14rem;
  }

  .gallery-control {
    width: 44px;
    height: 44px;
  }

  .gallery-control .icon {
    width: 1.12rem;
    height: 1.12rem;
    font-size: 1.12rem;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: 76px 14px auto 14px;
    display: none;
    grid-column: 1 / -1;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
    justify-content: stretch;
    gap: 6px;
  }

  .site-nav a {
    padding: 12px;
    border-radius: var(--radius);
  }

  .site-nav a.is-active,
  .site-nav a:hover {
    color: var(--magenta);
    background: var(--blush);
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    padding: 34px 20px 28px;
    gap: 28px;
  }

  h1 {
    font-size: clamp(3.2rem, 16vw, 4.25rem);
  }

  .hero-copy h1 span {
    text-underline-offset: 9px;
  }

  .hero-copy > p:not(.eyebrow),
  .page-hero-copy > p:not(.eyebrow),
  .simple-hero > p:not(.eyebrow) {
    font-size: 1.02rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-image-frame {
    min-height: 0;
    height: auto;
    aspect-ratio: 1003 / 1568;
    border-radius: 22px 22px 0 56px;
  }

  .hero-image-frame img {
    min-height: 0;
    object-fit: cover;
  }

  .hero-stamp {
    justify-self: center;
    max-width: none;
    margin-right: 0;
    text-align: center;
  }

  .section {
    padding: 34px 20px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .services-grid,
  .services-grid-secondary,
  .process,
  .split-grid,
  .summary-grid,
  .soft-list.columns,
  .related-grid,
  .member-grid,
  .team-highlights,
  .agents-grid,
  .story-grid,
  .story-intro-card,
  .story-card,
  .footer-cta,
  .promise-card,
  .service-layout {
    grid-template-columns: 1fr;
  }

  .services-grid-secondary {
    margin-top: 12px;
  }

  .team-hero-shell {
    padding: 36px 20px 24px;
  }

  .team-hero-copy h1 {
    font-size: clamp(3rem, 13vw, 4.35rem);
    letter-spacing: -0.055em;
  }

  .team-hero-copy > p:not(.eyebrow) {
    font-size: 1.05rem;
  }

  .team-hero-note {
    margin-top: 14px;
  }

  .team-hero-media {
    min-height: 360px;
    margin-top: -10px;
  }

  .team-hero-decor {
    bottom: -10px;
    width: min(680px, 118vw);
    opacity: 0.5;
  }

  .team-portrait-card {
    width: min(360px, 82vw);
  }

  .team-proof-card {
    right: 10px;
    left: 10px;
    bottom: 8px;
    max-width: none;
  }

  .team-method-card {
    padding: 24px;
    border-radius: 26px;
  }

  .team-agents-section .agents-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    display: grid;
    grid-template-columns: 118px 1fr;
    min-height: 118px;
  }

  .service-image {
    height: 100%;
  }

  .service-card-body {
    padding: 15px;
  }

  .service-card span span {
    font-size: 0.9rem;
  }

  .service-card-compact .service-card-body {
    min-height: auto;
  }

  .page-hero,
  .simple-hero {
    padding: 34px 20px;
  }

  .page-hero {
    gap: 26px;
  }

  .page-hero h1,
  .simple-hero h1 {
    font-size: clamp(2.7rem, 13vw, 3.8rem);
  }

  .simple-hero > p:not(.eyebrow) {
    max-width: 100%;
    text-wrap: pretty;
  }

  .story-hero,
  .news-hero {
    padding-bottom: 74px;
    background-position: center, center;
    background-size: auto, cover;
  }

  .story-hero {
    background-image:
      linear-gradient(180deg, rgba(255, 241, 248, 0.9), rgba(255, 255, 255, 0.2) 58%, rgba(255, 255, 255, 0)),
      url("../img/dreams/suenos-clouds-hero-mobile.webp");
  }

  .news-hero {
    background-image:
      linear-gradient(180deg, rgba(255, 241, 248, 0.72), rgba(255, 255, 255, 0.08) 54%, rgba(255, 241, 248, 0)),
      url("../img/news/noticias-hero-pink-mobile.webp");
  }

  .story-hero::after,
  .news-hero::after {
    height: 150px;
  }

  .story-intro-section {
    padding-top: 18px;
    padding-bottom: 28px;
  }

  .story-intro-card {
    gap: 20px;
    padding: 0 2px;
  }

  .story-intro-copy {
    gap: 12px;
  }

  .story-intro-copy .lead-paragraph {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .story-purpose-card {
    padding: 0 0 0 18px;
    border-left-width: 4px;
    border-radius: 0;
  }

  .story-purpose-card blockquote {
    font-size: 1.18rem;
    line-height: 1.2;
  }

  .story-lightbox {
    padding: 14px 12px calc(18px + env(safe-area-inset-bottom, 0px));
  }

  .story-lightbox-dialog {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 12px;
    height: min(760px, calc(100dvh - 32px));
  }

  .story-lightbox-meta {
    min-height: 44px;
    padding-right: 54px;
  }

  .story-lightbox-meta strong {
    font-size: clamp(1.55rem, 8vw, 2.05rem);
  }

  .story-lightbox-close {
    width: 44px;
    height: 44px;
  }

  .story-lightbox-figure {
    grid-column: 1;
    grid-row: 2;
  }

  .story-lightbox-figure img {
    max-height: calc(100dvh - 176px);
    border-radius: 18px;
  }

  .story-lightbox-control {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 46px;
    height: 46px;
    transform: translateY(-50%);
  }

  .story-lightbox-control:hover {
    transform: translateY(-50%) scale(1.04);
  }

  .story-lightbox-prev {
    left: 4px;
    grid-column: auto;
    grid-row: auto;
  }

  .story-lightbox-next {
    right: 4px;
    grid-column: auto;
    grid-row: auto;
  }

  .page-hero-image {
    height: 290px;
    border-radius: 22px 0 0 54px;
  }

  .service-side {
    position: static;
  }

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

  .process-step {
    padding: 24px 18px;
  }

  .footer-cta {
    text-align: left;
  }

  .footer-call-icon {
    display: none;
  }

  .footer-bottom {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .mobile-bottom-bar {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    padding: 5px;
    border: 1px solid rgba(224, 0, 157, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 36px rgba(45, 0, 45, 0.14);
    backdrop-filter: blur(18px);
  }

  .mobile-bottom-bar a {
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 3px;
    min-height: 58px;
    padding: 6px 4px 5px;
    border-radius: 12px;
    color: var(--magenta);
  }

  .mobile-bottom-bar .icon {
    width: 1.22rem;
    height: 1.22rem;
    font-size: 1.22rem;
    fill: currentColor;
  }

  .mobile-bottom-copy {
    display: grid;
    gap: 1px;
    text-align: center;
    line-height: 1.05;
  }

  .mobile-bottom-copy strong {
    font-size: 0.68rem;
    font-weight: 900;
  }

  .mobile-bottom-copy small {
    color: var(--muted);
    font-size: 0.52rem;
    font-weight: 750;
  }

  .mobile-bottom-bar a:hover {
    background: rgba(224, 0, 157, 0.08);
  }
}

@media (max-width: 560px) {
  .brand span {
    max-width: 160px;
  }

  .service-pills {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-card,
  .service-card-compact {
    display: block;
  }

  .service-image,
  .service-card-compact .service-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .service-card-body,
  .service-card-compact .service-card-body {
    min-height: auto;
    padding: 16px 18px 18px;
  }

  .team-highlight {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .team-highlight-icon {
    grid-row: auto;
    width: 76px;
    height: 76px;
    margin-bottom: 4px;
  }

  .member-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 820px) {
  body[data-page="equipo-tvo"] {
    padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px));
    overflow-x: clip;
  }

  body[data-page="equipo-tvo"] .team-page {
    background:
      radial-gradient(circle at 100% 8%, rgba(224, 0, 157, 0.08), transparent 30%),
      linear-gradient(180deg, rgba(255, 245, 251, 0.96), rgba(255, 255, 255, 0.98) 880px);
  }

  body[data-page="equipo-tvo"] .team-hero-shell {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 0;
    padding: 28px 18px 22px;
    border: 1px solid rgba(224, 0, 157, 0.08);
    border-inline: 0;
    border-radius: 0 0 28px 28px;
    background:
      radial-gradient(circle at 86% 42%, rgba(255, 255, 255, 0.68), transparent 34%),
      linear-gradient(180deg, rgba(255, 223, 241, 0.98), rgba(255, 240, 248, 0.96));
    box-shadow: 0 22px 60px rgba(224, 0, 157, 0.1);
    overflow: hidden;
  }

  body[data-page="equipo-tvo"] .team-hero-shell::before {
    inset: auto auto -70px -70px;
    width: 220px;
    background: radial-gradient(circle, rgba(224, 0, 157, 0.12), transparent 68%);
  }

  body[data-page="equipo-tvo"] .team-hero-copy {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  body[data-page="equipo-tvo"] .team-hero-shell > * {
    min-width: 0;
  }

  body[data-page="equipo-tvo"] .team-hero-copy .eyebrow {
    margin-bottom: 12px;
    font-size: 0.86rem;
  }

  body[data-page="equipo-tvo"] .team-hero-copy h1 {
    margin-bottom: 8px;
    font-size: clamp(2.85rem, 13vw, 3.72rem);
    line-height: 0.92;
    letter-spacing: -0.055em;
  }

  body[data-page="equipo-tvo"] .team-hero-copy > p:not(.eyebrow),
  body[data-page="equipo-tvo"] .team-hero-lead {
    max-width: 100%;
  }

  body[data-page="equipo-tvo"] .team-hero-lead {
    margin: 0;
    font-size: clamp(1.1rem, 4.7vw, 1.36rem);
    line-height: 1.25;
  }

  body[data-page="equipo-tvo"] .team-hero-actions-desktop {
    display: none;
  }

  body[data-page="equipo-tvo"] .team-hero-actions-mobile {
    display: grid;
    gap: 12px;
    justify-items: stretch;
    position: relative;
    z-index: 2;
  }

  body[data-page="equipo-tvo"] .team-hero-actions-mobile .team-hero-note {
    color: #6f6474;
    font-size: 0.92rem;
    line-height: 1.42;
  }

  body[data-page="equipo-tvo"] .team-hero-actions-mobile .btn {
    justify-content: center;
    width: 100%;
    min-height: 50px;
    border-radius: 14px;
  }

  body[data-page="equipo-tvo"] .team-hero-media {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    margin-top: 2px;
    padding: 0;
  }

  body[data-page="equipo-tvo"] .team-hero-decor {
    right: 50%;
    bottom: -44px;
    width: min(720px, 186vw);
    opacity: 0.76;
    transform: translateX(50%);
  }

  body[data-page="equipo-tvo"] .team-portrait-card {
    width: min(252px, 66vw);
    padding: 8px;
    box-shadow: 0 22px 50px rgba(45, 0, 45, 0.14);
  }

  body[data-page="equipo-tvo"] .team-orbit-one {
    width: min(300px, 76vw);
  }

  body[data-page="equipo-tvo"] .team-orbit-two {
    width: min(232px, 58vw);
    transform: translate(22px, 8px) rotate(16deg);
  }

  body[data-page="equipo-tvo"] .team-proof-card {
    right: 2px;
    left: auto;
    bottom: 2px;
    max-width: 156px;
    padding: 9px 11px;
    border-radius: 16px;
  }

  body[data-page="equipo-tvo"] .team-proof-card strong {
    font-size: 0.82rem;
  }

  body[data-page="equipo-tvo"] .team-proof-card span {
    font-size: 0.7rem;
  }

  body[data-page="equipo-tvo"] .team-hero-media-group {
    gap: 0;
    margin-top: 8px;
  }

  body[data-page="equipo-tvo"] .team-hero-media-group .team-portrait-card {
    width: min(84%, 330px);
    aspect-ratio: 4 / 3;
    padding: 6px;
    border-radius: 24px;
  }

  body[data-page="equipo-tvo"] .team-hero-media-group .team-orbit-one {
    width: min(92%, 355px);
    aspect-ratio: 4 / 3;
    border-radius: 28px;
  }

  body[data-page="equipo-tvo"] .team-hero-media-group .team-orbit-two {
    width: min(82%, 320px);
    aspect-ratio: 4 / 3;
    border-radius: 24px;
    transform: translate(10px, 8px) rotate(2.5deg);
  }

  body[data-page="equipo-tvo"] .team-method-section {
    padding: 22px 14px 28px;
  }

  body[data-page="equipo-tvo"] .team-method-card {
    padding: 22px 16px 18px;
    border-radius: 24px;
    overflow: hidden;
  }

  body[data-page="equipo-tvo"] .team-section-mark {
    width: 46px;
    height: 46px;
    margin-bottom: 12px;
  }

  body[data-page="equipo-tvo"] .team-section-mark .icon {
    width: 21px;
    height: 21px;
    font-size: 21px;
  }

  body[data-page="equipo-tvo"] .team-copy h2,
  body[data-page="equipo-tvo"] .team-subheading h2,
  body[data-page="equipo-tvo"] .team-agents-section .section-heading h2 {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
    line-height: 1.06;
  }

  body[data-page="equipo-tvo"] .team-copy .lead-paragraph,
  body[data-page="equipo-tvo"] .team-subheading p,
  body[data-page="equipo-tvo"] .team-agents-section .section-heading p:not(.eyebrow) {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  body[data-page="equipo-tvo"] .team-highlights {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    margin: 18px -16px 0;
    padding: 0 16px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  body[data-page="equipo-tvo"] .team-highlights::-webkit-scrollbar {
    display: none;
  }

  body[data-page="equipo-tvo"] .team-highlight {
    flex: 0 0 min(255px, 78vw);
    min-height: 0;
    padding: 20px 16px;
    border-radius: 18px;
    scroll-snap-align: center;
  }

  body[data-page="equipo-tvo"] .team-highlight-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  body[data-page="equipo-tvo"] .team-highlight-icon .icon {
    width: 30px;
    height: 30px;
    font-size: 30px;
  }

  body[data-page="equipo-tvo"] .team-highlight h3 {
    font-size: 1rem;
    margin-bottom: 0.45rem;
  }

  body[data-page="equipo-tvo"] .team-highlight p {
    font-size: 0.86rem;
    line-height: 1.4;
  }

  body[data-page="equipo-tvo"] .team-leadership-section {
    padding: 22px 14px;
  }

  body[data-page="equipo-tvo"] .team-leadership-section .container {
    padding: 48px 14px 22px;
    border-radius: 24px;
  }

  body[data-page="equipo-tvo"] .team-leadership-section .container::before {
    top: 22px;
    width: 68%;
    height: 2px;
  }

  body[data-page="equipo-tvo"] .team-leadership-section .member-grid {
    gap: 10px;
    margin-top: 18px;
  }

  body[data-page="equipo-tvo"] .team-leadership-section .member-card {
    grid-template-columns: 1fr;
    gap: 14px;
    justify-items: center;
    min-height: auto;
    padding: 24px 16px 22px;
    border-radius: 18px;
    text-align: center;
  }

  body[data-page="equipo-tvo"] .team-leadership-section .member-photo {
    width: 112px;
    height: 112px;
  }

  body[data-page="equipo-tvo"] .team-leadership-section .member-card h2 {
    font-size: 1.45rem;
  }

  body[data-page="equipo-tvo"] .team-leadership-section .member-card p {
    max-width: 220px;
    font-size: 0.9rem;
    line-height: 1.35;
  }

  body[data-page="equipo-tvo"] .team-leadership-section .member-card small {
    font-size: 0.74rem;
  }

  body[data-page="equipo-tvo"] .team-agents-section {
    padding: 28px 14px;
  }

  body[data-page="equipo-tvo"] .team-agents-section .section-heading {
    margin-bottom: 18px;
  }

  body[data-page="equipo-tvo"] .team-agents-section .section-heading h2::after {
    width: 44px;
    height: 3px;
    margin-top: 14px;
  }

  body[data-page="equipo-tvo"] .team-agents-section .agents-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
  }

  body[data-page="equipo-tvo"] .team-agents-section .agent-card {
    min-height: 0;
    padding: 14px 8px;
    border-radius: 18px;
  }

  body[data-page="equipo-tvo"] .team-agents-section .agent-photo {
    width: 72px;
    height: 72px;
    margin-bottom: 8px;
  }

  body[data-page="equipo-tvo"] .team-agents-section .agent-card strong {
    font-size: 0.88rem;
    line-height: 1.15;
  }

  body[data-page="equipo-tvo"] .team-agents-section .agent-instagram {
    font-size: 0.74rem;
    line-height: 1.15;
  }

  body[data-page="equipo-tvo"] .site-footer {
    padding-bottom: calc(110px + env(safe-area-inset-bottom, 0px));
  }

}
