/* ===================================================================
   AuPair Connect — AuPair USA by InterExchange (Epic Mex)
   Static recreation of the "AuPair Connect.dc.html" design.
   Palette: blue #044c84 · teal #64c6c2 · sky #88cbeb · coral #fc5b62
   =================================================================== */

:root {
  --bg: #fefefe;
  --blue: #044c84;
  --blue-d: #03396a;
  --teal: #64c6c2;
  --sky: #88cbeb;
  --coral: #fc5b62;
  --cream: #fcf5ed;
  --border: #e7eef5;
  --panel: #f5f9fc;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--blue);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { display: block; max-width: 100%; }
button { font-family: inherit; }
a { color: inherit; }

/* ---------- Icons ---------- */
.ic { display: block; width: 24px; height: 24px; }
.ic--wa { flex: none; }
.ic--plane { width: 30px; height: 30px; }

/* ---------- Page fade wrapper ---------- */
.app { transition: opacity .3s ease; }
.app.is-fading { opacity: 0; }
.page { transition: opacity .3s ease; }
.js .page.is-hidden { display: none; }

/* ===================== NAV ===================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(254, 254, 254, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(4, 76, 132, 0.05);
}
.nav__inner {
  max-width: 1200px; margin: 0 auto;
  padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav__logo { display: flex; align-items: center; }
.nav__logo img { height: 44px; width: auto; }
.toggle {
  display: flex; gap: 6px;
  background: #eef4f9; padding: 4px; border-radius: 14px;
}
.toggle__btn {
  border: 0; cursor: pointer;
  font-weight: 600; font-size: 13px;
  padding: 8px 14px; border-radius: 11px;
  background: transparent; color: var(--blue);
  transition: color .25s ease, background .25s ease;
  white-space: nowrap;
}
.toggle__btn.is-active { background: var(--blue); color: #fff; }
/* Compact the nav on small phones so the logo + both pills always fit */
@media (max-width: 400px) {
  .nav__inner { padding: 10px 14px; gap: 10px; }
  .nav__logo img { height: 36px; }
  .toggle { padding: 3px; gap: 4px; }
  .toggle__btn { font-size: 12px; padding: 7px 10px; }
}

/* ===================== SECTION SHELLS ===================== */
.sec--white { background: var(--bg); }
.sec--blue  { background: var(--blue); color: var(--bg); }
.sec--teal  { background: var(--teal); }
.sec--coral { background: var(--coral); }
.sec--cream { background: var(--cream); }
.sec--clip  { overflow: hidden; }

.wrap { max-width: 1200px; margin: 0 auto; padding: clamp(48px, 7vw, 80px) 24px; }
.wrap--narrow   { max-width: 1100px; }
.wrap--cta      { max-width: 1080px; }
.wrap--timeline { max-width: 880px; }
.wrap--plan     { max-width: 920px; }
.wrap--finalcta {
  max-width: 820px; text-align: center;
  padding-top: clamp(52px, 8vw, 90px);
  padding-bottom: clamp(52px, 8vw, 90px);
}

/* ---------- Split layout ---------- */
.split {
  max-width: 1200px; margin: 0 auto;
  padding: clamp(48px, 7vw, 80px) 24px;
  display: grid; gap: 48px; align-items: center;
  grid-template-columns: 2fr 3fr;
}
.split--3-2 { grid-template-columns: 3fr 2fr; }
.split__media { position: relative; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 28px; }
  .split--rev > *:nth-child(2) { order: -1; }
}

/* ---------- Generic grid ---------- */
.grid { display: grid; gap: 24px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 1000px) {
  .grid--4, .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
}

/* ===================== HEADINGS / TEXT ===================== */
.h2 {
  text-align: center; font-weight: 700;
  font-size: clamp(28px, 3.6vw, 40px);
  margin: 0 0 44px;
}
.h2--blue  { color: var(--blue); }
.h2--light { color: var(--bg); text-shadow: 0 2px 6px rgba(4, 76, 132, 0.3); }
.h2--coral { color: var(--coral); }
.h2--tight {
  font-size: clamp(26px, 3.6vw, 40px); line-height: 1.15;
  margin-bottom: 16px; text-shadow: 0 2px 8px rgba(4, 76, 132, 0.25);
}
.sec--blue .h2--light { text-shadow: none; }
/* Section-specific h2 sizes that differ in the source */
.sec--teal .wrap--narrow .h2 { margin-bottom: 14px; }       /* A5 */
.wrap--cta > .h2 { font-size: clamp(26px, 3.4vw, 38px); }   /* A8 */
.sec--blue .wrap--narrow .h2 { font-size: clamp(26px, 3.4vw, 38px); } /* B4 */
.sec--duties .h2 { font-size: clamp(26px, 3.4vw, 38px); }   /* B5 */

.sub { text-align: center; margin: 0 auto 44px; max-width: 560px; font-size: 16px; }
.sub--light { color: #eaf6f5; }

.prose { font-size: clamp(15px, 1.7vw, 18px); line-height: 1.65; margin: 0; }
.prose--light { color: #fff; }

.center { text-align: center; }
.mb-8  { margin-bottom: 8px !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mb-50 { margin-bottom: 50px !important; }
.mt-40 { margin-top: 40px; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; font-weight: 600;
  border-radius: 12px;
  transition: transform .3s, box-shadow .3s, background .3s;
}
.btn--wa {
  background: var(--blue); color: #fff;
  font-size: 18px; padding: 16px 30px;
  box-shadow: 0 12px 30px rgba(4, 76, 132, 0.4);
}
.btn--wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(4, 76, 132, 0.5);
  background: var(--blue-d);
}
.btn--solid {
  background: var(--blue); color: #fff;
  font-size: 18px; padding: 16px 34px;
  box-shadow: 0 12px 30px rgba(4, 76, 132, 0.3);
}
.btn--solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(4, 76, 132, 0.42);
  background: var(--blue-d);
}
.wrap--finalcta .btn--wa {
  font-size: 17px;
  box-shadow: 0 14px 34px rgba(4, 76, 132, 0.35);
}
.wrap--finalcta .btn--wa:hover {
  box-shadow: 0 20px 44px rgba(4, 76, 132, 0.5);
}

/* ===================== HERO ===================== */
.hero {
  position: relative; scroll-margin-top: 72px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero--agencias { min-height: 88vh; background: linear-gradient(135deg, #044c84, #64c6c2); }
.hero--aupairs  { min-height: 82vh; background: linear-gradient(135deg, #64c6c2, #88cbeb); }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; }
.hero__overlay--a { background: linear-gradient(160deg, rgba(4,76,132,0.62), rgba(4,76,132,0.34) 50%, rgba(252,91,98,0.30)); }
.hero__overlay--b { background: linear-gradient(160deg, rgba(4,76,132,0.58), rgba(100,198,194,0.30) 55%, rgba(252,91,98,0.30)); }
.hero__inner { position: relative; z-index: 2; text-align: center; max-width: 900px; padding: 120px 24px 90px; }
.hero--aupairs .hero__inner { padding: 110px 24px 80px; }
.hero__title {
  display: inline-block; background: var(--teal); color: #fff;
  font-weight: 700; font-size: clamp(34px, 6vw, 60px);
  line-height: 1.05; letter-spacing: -1px;
  padding: 14px 26px; border-radius: 16px;
  box-shadow: 0 14px 40px rgba(4, 76, 132, 0.35);
  text-shadow: 0 2px 8px rgba(4, 76, 132, 0.45);
}
.hero__subtitle {
  margin: 26px auto 0; max-width: 680px; display: inline-block;
  background: rgba(252, 91, 98, 0.95); color: var(--bg);
  font-weight: 600; font-style: italic;
  font-size: clamp(18px, 2.4vw, 24px); line-height: 1.4;
  padding: 14px 22px; border-radius: 14px;
  box-shadow: 0 10px 30px rgba(252, 91, 98, 0.35);
}
.hero--aupairs .hero__subtitle { max-width: 720px; font-size: clamp(17px, 2.2vw, 22px); line-height: 1.45; }
.hero__cta { margin-top: 32px; }
.hero--aupairs .hero__cta { margin-top: 30px; }

/* ===================== INTRO BAND (A2) ===================== */
.band { background: var(--blue); color: var(--bg); }
.band__inner { max-width: 920px; margin: 0 auto; padding: clamp(48px, 7vw, 80px) 24px; text-align: center; }
.band__lead { font-weight: 700; font-style: italic; font-size: clamp(20px, 2.6vw, 26px); line-height: 1.4; margin: 0 0 22px; }
.band__text { font-size: clamp(16px, 1.6vw, 18px); line-height: 1.7; margin: 0; color: #d8e5f0; }

/* ===================== TRUST LOGOS (A3) ===================== */
.trust { background: var(--bg); }
.trust__inner {
  max-width: 1100px; margin: 0 auto;
  padding: clamp(36px, 5vw, 56px) 24px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-around; gap: 36px;
}
.trust__logo { width: auto; object-fit: contain; opacity: .9; }

/* ===================== CHIP TITLE ===================== */
.chip-title {
  display: inline-block; background: var(--teal); color: #fff;
  font-weight: 700; font-size: clamp(24px, 3.2vw, 34px); line-height: 1.15;
  padding: 10px 20px; border-radius: 12px;
  text-shadow: 0 1px 3px rgba(4, 76, 132, 0.4);
  margin-bottom: 26px;
}
.chip-title--spaced { font-size: clamp(26px, 3.4vw, 38px); letter-spacing: 2px; margin-bottom: 0; }
.mb-40 .chip-title--spaced { margin-bottom: 0; }

/* ===================== MEDIA (split images) ===================== */
.media {
  width: 100%; border-radius: 16px;
  box-shadow: 0 24px 50px rgba(4, 76, 132, 0.28);
  object-fit: cover;
}
.media--portrait { aspect-ratio: 4 / 5; }

/* ===================== BULLET LISTS ===================== */
.bullets { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.bullet { display: flex; gap: 14px; align-items: flex-start; font-size: clamp(15px, 1.6vw, 17px); line-height: 1.5; }
.bullets--light .bullet { color: #fff; }
.bullet__check {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px; color: #fff;
}
.bullet__check .ic { width: 14px; height: 14px; }
.bullet__check--teal { width: 24px; height: 24px; background: var(--teal); margin-top: 1px; }
.bullet__check--teal .ic { width: 13px; height: 13px; }

/* ===================== FLIP CARDS (A5) ===================== */
.cards2 { display: grid; gap: 24px; grid-template-columns: repeat(2, 1fr); max-width: 880px; margin: 0 auto; }
@media (max-width: 640px) { .cards2 { grid-template-columns: 1fr; } }
.flip {
  position: relative; display: block; width: 100%; text-align: center;
  background: var(--blue); border: 0; border-radius: 16px;
  padding: 34px 28px; min-height: 230px; cursor: pointer; overflow: hidden;
  box-shadow: 0 16px 36px rgba(4, 76, 132, 0.22);
  transition: transform .3s, box-shadow .3s;
}
.flip:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 24px 50px rgba(4, 76, 132, 0.34); }
.flip__front { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px; }
.flip__icon { width: 74px; height: 74px; border-radius: 50%; background: #d0e2e4; display: flex; align-items: center; justify-content: center; }
.flip__icon img { width: 40px; height: 40px; object-fit: contain; }
.flip__title { margin: 0; color: var(--bg); font-weight: 700; font-size: 19px; line-height: 1.3; }
.flip__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #033c69, #055a9b);
  padding: 26px 24px; display: flex; align-items: center; justify-content: center; text-align: center;
  opacity: 0; transition: opacity .45s ease;
}
.flip__overlay span { margin: 0; color: var(--bg); font-size: 14.5px; line-height: 1.55; }
.flip:hover .flip__overlay,
.flip.is-open .flip__overlay { opacity: 1; }

/* ===================== FEATURE CARDS (A7, B2) ===================== */
.feature {
  background: var(--bg); border: 1px solid var(--border); border-radius: 16px;
  padding: 26px 22px; text-align: center;
  box-shadow: 0 8px 22px rgba(4, 76, 132, 0.06);
  transition: transform .3s, box-shadow .3s;
}
.feature:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(4, 76, 132, 0.14); }
.feature__icon { width: 64px; height: 64px; border-radius: 50%; background: var(--teal); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feature__icon img { width: 34px; height: 34px; object-fit: contain; filter: brightness(0) invert(1); }
.feature__text { margin: 0; color: var(--blue); font-weight: 500; font-size: 14.5px; line-height: 1.45; }
.feature--lg { padding: 32px 26px; }
.feature__icon--lg { width: 72px; height: 72px; margin-bottom: 18px; }
.feature__icon--lg img { width: 38px; height: 38px; }
.feature__text--strong { font-weight: 600; font-size: 16px; }

/* ===================== FINAL CTA AGENCIAS (A8) ===================== */
.cta-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
@media (max-width: 760px) { .cta-cols { grid-template-columns: 1fr; } }
.cta-card { border-radius: 16px; padding: 30px 28px; height: 100%; }
.cta-card--light { background: var(--bg); box-shadow: 0 14px 34px rgba(4, 76, 132, 0.14); }
.cta-card--dark { background: var(--blue); box-shadow: 0 14px 34px rgba(4, 76, 132, 0.2); }
.cta-card__title { margin: 0 0 18px; font-weight: 700; font-style: italic; color: var(--blue); font-size: 19px; }
.cta-card__title--light { color: var(--bg); margin: 0 0 20px; }
.cta-card .bullets { gap: 14px; }
.cta-card--light .bullet { color: var(--blue); font-size: 15.5px; line-height: 1.5; }
.steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.step { display: flex; gap: 14px; align-items: center; color: var(--bg); font-size: 15.5px; line-height: 1.4; }
.step__num { flex: none; width: 32px; height: 32px; border-radius: 50%; background: var(--coral); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 15px; }

/* ===================== CAROUSEL (B3) ===================== */
.carousel__viewport { overflow: hidden; width: 100%; }
.carousel__track { display: flex; gap: 24px; will-change: transform; transition: transform .55s cubic-bezier(.4, 0, .2, 1); }
.slide { flex: none; width: 62%; transition: transform .5s, opacity .5s; }
@media (max-width: 640px) { .slide { width: 86%; } }
.slide__card { background: var(--bg); border-radius: 16px; overflow: hidden; box-shadow: 0 18px 44px rgba(4, 76, 132, 0.25); }
.slide__card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.slide__caption { margin: 0; padding: 20px 22px; color: var(--blue); font-weight: 600; font-size: 16px; line-height: 1.45; text-align: center; }
.carousel__nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 30px; }
.carousel__btn { width: 44px; height: 44px; border-radius: 50%; border: 0; background: var(--bg); color: var(--coral); cursor: pointer; font-size: 20px; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 16px rgba(4, 76, 132, 0.2); }
.dots { display: flex; gap: 9px; }
.dot { width: 11px; height: 11px; border-radius: 6px; border: 0; cursor: pointer; padding: 0; transition: all .3s; background: rgba(255, 255, 255, 0.5); }
.dot.is-active { width: 28px; background: var(--bg); }

/* ===================== INCLUDES (B4) ===================== */
.includes { max-width: 980px; margin: 0 auto; }
.include { display: flex; gap: 14px; align-items: center; background: rgba(255, 255, 255, 0.06); border-radius: 14px; padding: 16px 18px; }
.include__icon { flex: none; width: 52px; height: 52px; border-radius: 50%; background: var(--teal); display: flex; align-items: center; justify-content: center; }
.include__icon img { width: 28px; height: 28px; object-fit: contain; filter: brightness(0) invert(1); }
.include__text { font-size: 15px; line-height: 1.45; color: #eaf1f8; }

/* ===================== DUTIES (B5) ===================== */
.sec--duties .wrap { padding-top: 0; }
.duty { margin: 0; transition: transform .3s; }
.duty:hover { transform: translateY(-5px); }
.duty__img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 16px; box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28); }
.duty__caption { margin: 14px 0 0; color: var(--bg); font-weight: 600; font-size: 15.5px; text-align: center; line-height: 1.35; }

/* ===================== REQUISITOS (B6) ===================== */
.req { display: flex; gap: 14px; align-items: flex-start; background: var(--panel); border-radius: 14px; padding: 18px 20px; }
.req__check { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--sky); display: flex; align-items: center; justify-content: center; margin-top: 1px; color: #fff; }
.req__check .ic { width: 14px; height: 14px; }
.req__text { color: var(--blue); font-size: 15px; line-height: 1.5; }
.rule { width: 64px; height: 4px; background: var(--sky); border-radius: 3px; margin: 0 auto 44px; }
.rule--sm { width: 54px; margin: 0 auto 20px; }
.male { text-align: center; margin-top: 54px; }
.male__title { color: var(--blue); font-weight: 700; font-style: italic; font-size: clamp(20px, 2.6vw, 26px); margin: 0 0 8px; }
.male__text { max-width: 680px; margin: 0 auto; color: var(--blue); font-size: 16px; line-height: 1.6; }

/* ===================== ROADMAP / TIMELINE (B7) ===================== */
.timeline { position: relative; padding-left: 8px; }
.timeline__track, .timeline__line { position: absolute; left: 35px; top: 10px; bottom: 10px; width: 4px; border-radius: 3px; }
.timeline__track { background: #e2d8cc; }
.timeline__line { background: var(--teal); transform-origin: top center; transform: scaleY(0); transition: transform 1.4s ease; }
.timeline__line.is-grown { transform: scaleY(1); }
.timeline__steps { display: flex; flex-direction: column; gap: 26px; position: relative; }
.tl-step { display: flex; gap: 22px; align-items: flex-start; }
.tl-node { flex: none; width: 60px; height: 60px; border-radius: 50%; background: var(--teal); border: 4px solid #fff; display: flex; align-items: center; justify-content: center; position: relative; z-index: 2; box-shadow: 0 8px 20px rgba(4, 76, 132, 0.16); color: #fff; }
.tl-node img { width: 32px; height: 32px; object-fit: contain; filter: brightness(0) invert(1); }
.tl-card { flex: 1; background: var(--bg); border-radius: 16px; padding: 22px 24px; box-shadow: 0 10px 26px rgba(4, 76, 132, 0.08); }
.tl-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.tl-card--final .tl-card__head { margin-bottom: 0; }
.tl-num { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--coral); color: #fff; font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center; }
.tl-title { margin: 0; color: var(--coral); font-weight: 700; font-size: 17px; line-height: 1.25; }
.tl-text { margin: 0; color: var(--blue); font-size: 14.5px; line-height: 1.55; }

/* ===================== PLAN DE PAGOS (B8) ===================== */
.plan__lead { text-align: center; color: var(--blue); font-weight: 700; font-style: italic; font-size: clamp(18px, 2.2vw, 22px); margin: 0 0 18px; }
.plan__intro { text-align: left; max-width: 680px; margin: 0 auto 36px; color: var(--blue); font-size: 16px; line-height: 1.6; }
.plan { overflow: hidden; border-radius: 16px; box-shadow: 0 14px 36px rgba(4, 76, 132, 0.12); border: 1px solid var(--border); }
.plan__head { display: grid; grid-template-columns: 1.1fr 1fr 2.2fr; background: var(--blue); color: #fff; font-weight: 700; font-size: 14px; }
.plan__row { display: grid; grid-template-columns: 1.1fr 1fr 2.2fr; border-top: 1px solid var(--border); background: #fff; }
.plan__row:nth-child(odd) { background: var(--panel); }
.plan__cell { padding: 16px 18px; display: flex; align-items: center; }
.plan__cell--etapa { font-weight: 600; color: var(--blue); }
.plan__cell--monto { font-weight: 700; color: var(--coral); }
.plan__cell--cuando { color: #3a6488; font-size: 14px; line-height: 1.4; }
.plan__note { margin: 18px 4px 0; font-style: italic; color: #6b86a0; font-size: 13.5px; }
@media (max-width: 560px) {
  .plan__head, .plan__row { grid-template-columns: 1fr 1fr 1.8fr; }
  .plan__cell { padding: 12px 10px; font-size: 13px; }
  .plan__head { font-size: 12.5px; }
  .plan__cell--cuando { font-size: 12.5px; }
}

/* ===================== FINAL CTA AUPAIRS (B9) ===================== */
.finalcta__text { color: #fff; font-size: clamp(16px, 1.9vw, 19px); line-height: 1.55; margin: 0 0 30px; font-weight: 500; }

/* ===================== FOOTER ===================== */
.footer { background: var(--blue); color: var(--bg); }
.footer__grid { max-width: 1100px; margin: 0 auto; padding: clamp(40px, 6vw, 64px) 24px 40px; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; align-items: start; }
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr; gap: 28px; } }
.footer__logo { height: 84px; width: auto; background: #fff; border-radius: 12px; padding: 10px; }
.footer__about { margin: 18px 0 0; color: #bcd3e6; font-size: 14px; line-height: 1.6; max-width: 280px; }
.footer__about strong { color: #fff; }
.footer__h { margin: 0 0 14px; font-weight: 700; font-size: 15px; color: #fff; }
.footer__link { display: block; color: #bcd3e6; text-decoration: none; font-size: 14px; margin-bottom: 10px; }
.footer__link:last-child { margin-bottom: 0; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); }
.footer__bottom-inner { max-width: 1100px; margin: 0 auto; padding: 18px 24px; color: #8eaccb; font-size: 12.5px; text-align: center; line-height: 1.8; }
.footer__designer { color: var(--sky); text-decoration: none; font-weight: 700; letter-spacing: .5px; }

/* ===================== REVEAL ANIMATIONS ===================== */
.js .reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1);
}
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .hero--agencias .hero__title    { transition-delay: .05s; }
.js .hero--agencias .hero__subtitle { transition-delay: .18s; }
.js .hero--agencias .hero__cta      { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .timeline__line { transition: none; }
  .app, .page { transition: none; }
  .carousel__track, .slide { transition: none; }
}
