/* ============================================================
   main.css — Teacher Gustavo Belo
   Estilos por seção. Tradução literal do Figma (px exatos).
   ============================================================ */

/* ====================================================
   BUTTONS (compartilhado)
   ==================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: var(--radius-md); /* 10px */
  font-family: var(--font-display);
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  line-height: 1.5;
  transform: translateY(0);
  transition:
    background var(--transition-base),
    color var(--transition-base),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
  will-change: transform;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
  transition-duration: 80ms;
}

.btn--sm { padding: 8px 16px; font-size: 14px; }
.btn--lg { padding: 8px 24px; font-size: 16px; min-height: 56px; }

.btn--primary {
  background: var(--primary-pure);
  color: var(--white);
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* Shine sweep — gradiente branco passa diagonalmente no hover */
.btn--primary::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: -75%;
  width: 50%;
  background: linear-gradient(110deg,
    transparent 25%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 75%);
  transform: skewX(-15deg);
  transition: left 700ms cubic-bezier(.2, .85, .35, 1);
  pointer-events: none;
  z-index: 0;
}
.btn--primary > * { position: relative; z-index: 1; }
.btn--primary:hover::before { left: 175%; }
.btn--primary:hover {
  background: var(--primary-dark);
}
/* Icon-box no primary com ícone — leve scale e slide pra direita no hover */
.btn--primary.btn--with-icon:hover .btn__icon-box {
  transform: translateX(3px) scale(1.04);
}

.btn--soft {
  background: var(--secondary-lightest);
  color: var(--secondary-dark);
}
.btn--soft:hover {
  background: #C9C4C8;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.btn--ghost {
  background: transparent;
  color: var(--secondary-dark);
}
.btn--ghost:hover {
  background: rgba(0,0,0,0.04);
}

/* Icon-box bounce no botão primário com ícone */
.btn--with-icon .btn__icon-box {
  transition: transform var(--transition-fast);
}
.btn--with-icon:hover .btn__icon-box {
  transform: translateX(2px);
}

.btn--with-icon { padding-left: 24px; padding-right: 8px; }
.btn__icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--white);
  border-radius: var(--radius-sm); /* 6px */
}
.btn__icon-box img { width: 20px; height: 20px; }

/* ====================================================
   SITE HEADER (top of page) — sempre sticky, sem layout shift
   ==================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-hero);
  border-bottom: 1px solid var(--secondary-lightest);
  transition: background var(--transition-base), padding var(--transition-base);
}
.site-header__logo img {
  transition: width var(--transition-base), height var(--transition-base);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--content-w);
  margin-inline: auto;
  padding-block: 18px;
  padding-inline: var(--section-px);
  box-sizing: content-box;
}
.site-header__logo { display: inline-flex; align-items: center; }
.site-header__logo img { display: block; width: 153px; height: 64px; }

.site-header__cluster {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  color: var(--secondary-dark);
}
.site-header__nav a { transition: color var(--transition-fast); }
.site-header__nav a:hover { color: var(--primary-pure); }

.site-header__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ====================================================
   HERO
   ==================================================== */
.hero {
  display: flex;
  flex-direction: column;
  background: var(--bg-hero);
}
/* (estilos base do site-header consolidados acima) */

/* Bloco superior: textual */
.hero__content-wrap {
  padding-block: 80px;
  padding-inline: var(--section-px);
  display: flex;
  justify-content: center;
}
.hero__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 180px;
  max-width: var(--content-w);
  width: 100%;
}

.hero__title {
  width: 591px;
  max-width: 591px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 56px;
  line-height: 1.1;
  color: var(--secondary-dark);
  margin: 0;
  flex-shrink: 0;
}

.hero__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  width: 445px;
  flex-shrink: 0;
}
.hero__subtitle {
  font-size: 18px;
  line-height: 1.5;
  color: var(--secondary-dark);
  margin: 0;
}
.hero__ctas {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

/* Bloco inferior: badges + imagem */
.hero__image-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  isolation: isolate;
  width: 100%;
}
.hero__badges-wrap {
  display: flex;
  justify-content: center;
  width: auto;
  max-width: min(var(--content-w), calc(100% - var(--section-px) * 2));
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  align-items: center;
  background: var(--secondary-lightest);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  margin-bottom: -16px;
  position: relative;
  z-index: 2;
  width: auto;
  list-style: none;
  box-sizing: border-box;
}
/* Esconde a metade duplicada no desktop */
.hero__badge[aria-hidden="true"] { display: none; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.3;
  color: var(--secondary-dark);
  white-space: nowrap;
}
.hero__badge-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: var(--primary-pure);
  border-radius: 999px;
  flex-shrink: 0;
}
.hero__badge-check img { width: 8px; height: 8px; display: block; }

.hero__image {
  width: 100%;
  height: 601px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ====================================================
   EYEBROW TAG (compartilhado)
   ==================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(142, 41, 41, 0.08);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary-pure);
  width: fit-content;
}
.eyebrow__icon { width: 18px; height: 16px; flex-shrink: 0; display: block; }
.pos__col--image .pos__image img { opacity: 1; }

/* ====================================================
   SECTION 2 — POSICIONAMENTO (7190:161)
   ==================================================== */
.pos {
  background: var(--bg-hero);
  padding-block: 112px;
  padding-inline: var(--section-px);
}
.pos__inner {
  display: grid;
  grid-template-columns: 552fr 552fr;
  gap: 112px;
  max-width: var(--content-w);
  margin-inline: auto;
  align-items: center;
}
.pos__col--image .pos__image {
  margin: 0;
  width: 100%;
  aspect-ratio: 552 / 430;
  border-radius: 16px;
  overflow: hidden;
  background: var(--secondary-lightest);
}
.pos__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pos__col--text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.pos__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-h2);
  line-height: 1.1;
  color: var(--secondary-dark);
  margin: 0;
}
.pos__desc {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--secondary-dark);
}
.pos__desc p { margin: 0; }
.pos__desc strong { font-weight: 700; color: var(--secondary-dark); }

/* ====================================================
   SECTION 3/4 — COURSE (7190:180, 7190:322)
   ==================================================== */
.course {
  background: var(--bg-hero);
  padding-block: 112px;
  padding-inline: var(--section-px);
}
.course__inner {
  display: grid;
  grid-template-columns: 552fr 552fr;
  gap: 112px;
  max-width: var(--content-w);
  margin-inline: auto;
  align-items: start;
}
.course__col--text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 43px; /* alinha com o topo da feature grid (155.5-112) */
}
.course__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-h2);
  line-height: 1.1;
  color: var(--secondary-dark);
  margin: 0;
  max-width: 500px;
}
.course__desc {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--secondary-dark);
}
.course__desc p { margin: 0; }
.course__col--text .btn { align-self: flex-start; margin-top: 16px; }

.course__col--features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Feature card */
.feature-card {
  background: var(--secondary-lightest);
  border-radius: 10px;
  padding: 24px;
  aspect-ratio: 268 / 240;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.feature-card__media {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}
.feature-card__media > img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.feature-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  color: var(--secondary-dark);
  margin: 0;
  /* mata viúvas: balance distribui texto em linhas equilibradas, pretty evita widow.
     Browsers modernos suportam balance (Chrome 114+, Firefox 121+). */
  text-wrap: balance;
}
/* Aplica viúva-killer em todos os títulos principais também */
.pos__title, .course__title, .features__title, .oscar__title,
.about__title, .testimonials__title, .cta-band__title, .prefooter__text h2 {
  text-wrap: balance;
}

/* Chat bubble */
.chat-bubble-mock {
  width: 100%;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  overflow: hidden;
  font-size: 12px;
}
.chat-bubble-mock__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 10px;
  background: #F0EDEE;
  font-weight: 600;
  color: var(--secondary-medium);
}
.chat-bubble-mock__x { font-size: 14px; }
.chat-bubble-mock__body {
  padding: 10px;
  display: flex; flex-direction: column; gap: 6px;
  min-height: 64px;
}
.chat-bubble-mock__msg { padding: 4px 10px; border-radius: 8px; max-width: 75%; font-size: 11px; }
.chat-bubble-mock__msg--left { background: #F0EDEE; align-self: flex-start; }
.chat-bubble-mock__msg--right { background: var(--secondary-dark); color: white; align-self: flex-end; }

/* Video call icons row */
.feature-card__media--icons { gap: 6px; flex-wrap: wrap; }
.vc-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.vc-icon--narrow { width: 28px; }
.vc-icon--red { background: var(--primary-pure); }

/* Avatars A M G L */
.feature-card__media--avatars { gap: 4px; }
.avatar {
  width: 40px; height: 40px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 14px;
}
.avatar--a { background: #5B5DEE; }
.avatar--m { background: #2DBA4E; }
.avatar--g { background: var(--primary-pure); }
.avatar--l { background: #1FA1A6; }

/* Calendar squares */
.feature-card__media--calendar { gap: 6px; }
.cal {
  width: 36px; height: 36px;
  border-radius: 6px;
  background: white;
  border: 1.5px solid var(--secondary-pure);
  position: relative;
}
.cal::before { content: ""; position: absolute; top: -4px; left: 7px; width: 4px; height: 8px; background: var(--secondary-pure); border-radius: 2px; box-shadow: 18px 0 0 var(--secondary-pure); }
.cal--on { background: var(--primary-pure); border-color: var(--primary-pure); }
.cal--on::before { background: var(--primary-dark); box-shadow: 18px 0 0 var(--primary-dark); }

/* Level cards */
.feature-card__media--levels { gap: 4px; }
.level {
  width: 36px; height: 48px;
  border-radius: 6px;
  background: white;
  border: 1.5px solid var(--secondary-pure);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 12px;
  color: var(--secondary-dark);
}
.level--red { background: var(--primary-pure); color: white; border-color: var(--primary-pure); }

/* Lightbulb */
.feature-card__media--bulb svg { width: 56px; height: 56px; }

/* Plan cards (mini week) */
.feature-card__media--plan { gap: 6px; align-items: stretch; }
.plan-card { background: white; border-radius: 6px; padding: 6px; width: 60px; display: flex; flex-direction: column; gap: 4px; }
.plan-card__h { font-size: 9px; font-weight: 600; color: var(--secondary-medium); }
.plan-card__line { height: 4px; background: #F0EDEE; border-radius: 2px; }

/* Day pills */
.feature-card__media--days { gap: 6px; }
.day-pill {
  width: 32px; height: 32px; border-radius: 999px;
  background: white;
  border: 1.5px solid var(--secondary-pure);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600; color: var(--secondary-dark);
}
.day-pill--blue { background: #5B5DEE; color: white; border-color: #5B5DEE; }

/* Mirror — feature cards on the left */
.course--mirror .course__col--features { order: -1; }

/* ====================================================
   SECTION 5 — FEATURES (Ellii + Oscar)
   ==================================================== */
.features {
  background: var(--bg-hero);
  padding-block: 112px;
  padding-inline: var(--section-px);
}
.features__head {
  max-width: var(--content-w);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.features__head-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 112px;
  align-items: start;
}
.features__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-h2);
  line-height: 1.1;
  color: var(--secondary-dark);
  margin: 0;
}
.features__intro {
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--secondary-dark);
  margin: 0;
  padding-top: 12px;
}
.features__panel {
  max-width: var(--content-w);
  margin-inline: auto;
  margin-top: 48px;
  background: transparent;
  border: 1px solid var(--secondary-lightest);
  border-radius: 10px;
  overflow: hidden;
}
.tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: transparent;
  padding: 8px;
  gap: 8px;
  border-bottom: 1px solid var(--secondary-lightest);
}
.tab {
  padding: 16px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--secondary-medium);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}
.tab:not(.is-active):hover {
  background: rgba(216, 212, 215, 0.4); /* secondary-lightest @ 40% */
  color: var(--secondary-dark);
}
.tab.is-active {
  background: var(--secondary-lightest); /* #D8D4D7 */
  border-color: transparent;
  color: var(--secondary-dark);
  font-weight: 600;
}
.tabs__content { padding: 0; }
.tabs__pane {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.tabs__pane[hidden] { display: none; }
.tabs__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--secondary-dark);
  padding: 32px;
}
.tabs__text h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  color: var(--secondary-dark);
  text-wrap: balance;
}
.tabs__text h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 16px 0 0;
  color: var(--secondary-dark);
  text-wrap: balance;
}
.tabs__text p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--secondary-medium);
  text-wrap: pretty;
}
.tabs__text .check-list { font-size: 16px; gap: 12px; color: var(--secondary-medium); }
.tabs__media {
  overflow: hidden;
  background: var(--secondary-lightest);
}
.tabs__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Check list */
.check-list { display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: var(--secondary-dark); }
.check-list li {
  position: relative;
  padding-left: 26px;
  list-style: none;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  background: var(--primary-pure);
  border-radius: 999px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8' fill='none'><path d='M6.67 2L3 5.67 1.33 4' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 8px;
}

/* ====================================================
   SECTION 6 — OSCAR
   ==================================================== */
.oscar {
  background: var(--bg-hero);
  padding-block: 0 112px;
  padding-inline: var(--section-px);
}
.oscar__head {
  max-width: var(--content-w);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 32px;
}
.oscar__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-h2);
  line-height: 1.1;
  color: var(--secondary-dark);
  margin: 0;
  max-width: 800px;
  text-wrap: balance;
}
.oscar__panel {
  max-width: var(--content-w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--secondary-lightest);
  border-radius: 10px;
  overflow: hidden;
  align-items: stretch;
}
.oscar__media {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.oscar__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.oscar__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  font-size: 16px;
  line-height: 1.6;
  color: #454044;
  align-self: center;
}
.oscar__text p { margin: 0; text-wrap: pretty; }
/* Parágrafos com texto inteiramente em <strong> são destaques (20px) */
.oscar__text p:has(> strong) { font-size: 20px; line-height: 1.4; }
.oscar__text strong { font-weight: 700; color: #454044; }
.oscar__text .check-list { font-size: 16px; color: #454044; gap: 12px; }

/* <picture> wrappers transparentes pro layout — img é o item direto.
   Vale desktop E mobile pra mobile-only image swaps via <source media> não quebrarem grid. */
.cta-band__card picture,
.prefooter > picture,
.hero__image picture { display: contents; }

/* ====================================================
   SECTION 7 — CTA BANNER
   ==================================================== */
.cta-band {
  background: var(--bg-hero);
  padding: 112px var(--section-px) 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.cta-band__card {
  width: 100%;
  max-width: var(--content-w);
  margin-inline: auto;
  background: var(--secondary-dark);
  border-radius: 10px;
  padding: 0 56px; /* SO laterais — vertical fica no .cta-band__text */
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: end;
  justify-content: flex-end;
  position: relative;
  isolation: isolate;
}
/* Pattern bg — abs top-left, 827×496, z-1 */
.cta-band__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
  width: 827px;
  height: 496px;
  max-width: 100%;
  object-fit: contain;
  object-position: top left;
  z-index: 1;
  pointer-events: none;
  border-radius: 0;
}
/* Person — em FLUXO (não absolute), z-3, vaza 58 pelo topo SEM esticar a altura do card */
.cta-band__person {
  position: relative;
  z-index: 3;
  width: 492px;
  height: 427px;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  pointer-events: none;
  flex-shrink: 0;
  margin: 0;
  margin-right: auto;       /* empurra a coluna de texto pra direita */
  margin-top: -58px;        /* vaza pelo topo do card */
  margin-bottom: 0;
  align-self: end;
  border-radius: 10px 0 0 10px; /* respeita arredondamento do card no canto esquerdo */
}
/* Text column — direita do card, z-2, padding-block 56 (vertical) AQUI */
.cta-band__text {
  position: relative;
  z-index: 2;
  padding-block: 56px;
  padding-inline: 0;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  align-self: center;
  width: auto;
  max-width: 100%;
}
.cta-band__text > .btn { margin-top: 16px; } /* 16 base + 16 = 32 (figma column gap) */
.eyebrow--dark {
  background: rgba(216, 212, 215, 0.1);
  color: #D8D4D7;
  border-radius: 6px;
}
.eyebrow--dark .eyebrow__icon { filter: brightness(0) invert(1); }
.cta-band__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 48px;
  line-height: 1.1;
  margin: 0;
  color: white;
  white-space: nowrap;
}
.cta-band__sub {
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
  color: white;
  width: 100%; /* wrappa dentro da coluna (titulo nowrap define a width) */
  text-wrap: pretty;
}

/* ====================================================
   SECTION 8 — ABOUT (node 7190:587)
   ==================================================== */
.about {
  background: var(--bg-hero);
  padding-block: 112px;
  padding-inline: var(--section-px);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 112px;
  max-width: var(--content-w);
  margin-inline: auto;
  align-items: start;
}
.about__left { display: flex; flex-direction: column; gap: 24px; }
.about__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-h2);
  line-height: 1.1;
  color: var(--secondary-dark);
  margin: 0;
  text-wrap: balance;
}
.about__desc {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--secondary-dark);
}
.about__desc p { margin: 0; text-wrap: pretty; }
.about__desc strong { font-weight: 700; }

.about__right {
  position: sticky;
  top: 100px; /* respeita altura do sticky header */
  align-self: start;
}
.about__photo {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--secondary-lightest);
  aspect-ratio: 552 / 654;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.about__photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Tags container — content (tags) limpos; blur+bg vão num pseudo masked atrás */
.about__caption {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px;
  justify-content: center;
  margin: 0;
  isolation: isolate;
}
/* Pseudo carrega o blur+gradient, com máscara fade (transparent top → black bottom).
   z-index: -1 coloca atrás dos filhos. parent isolation cria stacking context. */
.about__caption::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 100%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 55%, black 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, black 55%, black 100%);
}
/* Cada tag — fundo preto translúcido + texto branco uppercase */
.cred {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.4);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.5;
}
.cred__dot { width: 8px; height: 8px; background: var(--primary-pure); border-radius: 999px; flex-shrink: 0; }
.cred__icon { width: 16px; height: 18px; min-width: 16px; max-width: 16px; flex-shrink: 0; display: block; object-fit: contain; }

/* Timeline — block com linha vertical conectando os dots */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid var(--secondary-lightest);
  padding-top: 24px;
  margin-top: 16px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 30px;
  bottom: 4px;
  width: 1px;
  background: var(--secondary-lightest);
  z-index: 0;
}
.timeline li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 16px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.timeline__dot {
  width: 8px;
  height: 8px;
  background: var(--primary-pure);
  border-radius: 999px;
  margin-top: 6px;
  margin-left: 4px;
  box-shadow: 0 0 0 4px var(--bg-hero); /* "limpa" a linha atrás do dot */
}
.timeline__year { display: block; font-size: 11px; font-weight: 700; color: var(--primary-pure); letter-spacing: 0.05em; }
.timeline p { margin: 2px 0 0; font-size: 14px; color: var(--secondary-dark); line-height: 1.4; }

/* ====================================================
   SECTION 9 — TESTIMONIALS (node 7190:644)
   ==================================================== */
.testimonials {
  background: var(--secondary-lightest); /* #D8D4D7 */
  padding: 112px 0;
  display: flex;
  flex-direction: column;
  gap: 56px;
  overflow: hidden; /* contém o rail full-bleed */
}
.testimonials > * { max-width: var(--content-w); margin-inline: auto; width: calc(100% - var(--section-px) * 2); }
/* Rail vaza pros dois lados — full viewport com padding lateral pra alinhar com o grid */
.testimonials > .testimonials__rail {
  max-width: none;
  width: 100%;
  margin: 0;
  padding-left: max(var(--section-px), calc((100vw - var(--content-w)) / 2));
  padding-right: max(var(--section-px), calc((100vw - var(--content-w)) / 2));
}

/* Head */
.testimonials__head {
  display: flex; flex-direction: column; gap: 24px;
  align-items: center;
  text-align: center;
}
.testimonials__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 48px;
  line-height: 1.1;
  color: var(--secondary-dark);
  margin: 0;
  max-width: 664px;
  text-wrap: balance;
}
.testimonials__sub {
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
  max-width: 702px;
  color: var(--secondary-dark);
  text-wrap: pretty;
}

/* Hero row: video + featured (alturas independentes — featured = auto) */
.testimonials__hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.testimonials__video {
  background: var(--gray-10); /* #0C111D */
  border-radius: 10px;
  aspect-ratio: 16 / 9;
  display: flex; align-items: center; justify-content: center;
  padding: 10px;
  position: relative;
  overflow: hidden;
}
/* Vídeo embedado preenche TODO o container 16:9, sem depender de classe extra */
.testimonials__video.has-video { padding: 0 !important; }
.testimonials__video iframe,
.testimonials__video video {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  border: 0 !important;
  border-radius: 10px;
  object-fit: cover;
  z-index: 1;
}
.testimonials__play {
  width: 53px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.testimonials__play img { width: 100%; height: 100%; display: block; }

/* Card (testimonial) — usado em featured, rail e wp templates */
.t-card {
  background: #E4E1E3;
  border-radius: 10px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: var(--secondary-dark);
  font-size: 16px;
  line-height: 1.5;
  position: relative;
  overflow: hidden; /* contém qualquer overflow do quote-row */
}
.t-card--featured {
  background: transparent;
  padding: 32px;
  justify-content: center;
  overflow: visible;
  gap: 32px; /* override 24 do .t-card — Figma node 7190:661 = gap-32 */
  height: auto;
}
.t-card__quote-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  flex: 1 1 auto;
  min-height: 0;
  min-width: 0;
}
.t-card__quote-row > div,
.t-card__quote-row > p {
  flex: 1 1 auto;
  min-width: 0;
}
.t-card__quote-icon {
  width: 58px; height: 58px;
  flex-shrink: 0;
  display: block;
}
.t-card p { margin: 0 0 8px; }
.t-card p:last-child { margin-bottom: 0; }
.t-card strong { font-weight: 700; }

/* Card autor (rodapé) — sempre no fim */
.t-card__author {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--secondary-lightest);
  margin-top: auto; /* empurra pro fim do card mesmo se quote curto */
  flex-shrink: 0;
}
.t-card--featured .t-card__author { border-color: var(--secondary-lightest); }
.t-card__avatar {
  width: 58px; height: 58px;
  border-radius: 999px;
  background: linear-gradient(160deg, var(--secondary-pure), var(--secondary-medium));
  flex-shrink: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.t-card__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.t-card__name {
  flex: 1 0 0;
  display: flex; flex-direction: column; gap: 4px;
  min-width: 0;
  overflow: hidden;
}
.t-card__name strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary-dark);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.t-card__name small {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-pure);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.t-card__stars {
  font-size: 16px;
  color: var(--secondary-dark);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Card de quote longo com scroll interno + gradient fade */
.t-card__quote-row { position: relative; }
.t-card__scroll {
  overflow-y: auto;
  padding-right: 20px; /* 4px bar + 16px gap */
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
}
/* Esconde scrollbar nativa por completo */
.t-card__scroll {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge legacy */
}
.t-card__scroll::-webkit-scrollbar { width: 0; height: 0; display: none; }
/* Barra custom (div div) — sem setas porque não é scrollbar nativa */
.t-card__bar {
  position: absolute;
  top: 0; right: 0;
  width: 4px;
  height: 100%;
  background: var(--secondary-lightest);
  border-radius: 999px;
  overflow: hidden;
  pointer-events: none;
}
.t-card__bar-thumb {
  width: 100%;
  height: 30%;
  background: var(--primary-pure);
  border-radius: 999px;
  transition: transform 80ms linear;
  transform: translateY(0);
}
.t-card--scroll .t-card__quote-row::after {
  content: '';
  position: absolute;
  inset: auto 12px 0 74px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(228,225,227,0) 0%, #E4E1E3 100%);
  pointer-events: none;
  opacity: 1;
  transition: opacity 150ms ease;
}
.t-card--scroll.is-bottom .t-card__quote-row::after { opacity: 0; }

/* Rail (carrossel horizontal de cards) — drag-to-scroll com mouse */
.testimonials__rail {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
  align-items: stretch;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.testimonials__rail.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.testimonials__rail::-webkit-scrollbar { display: none; }
.testimonials__rail .t-card {
  width: 592px;
  min-width: 592px;
  max-width: 592px;
  height: 448px;
  pointer-events: auto;
}
.testimonials__rail.is-dragging * {
  pointer-events: none;
}

/* Slider de progresso */
.testimonials__slider {
  height: 4px;
  background: #E4E1E3;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}
.testimonials__slider-thumb {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 150px;
  background: var(--primary-pure);
  border-radius: 999px;
  transition: left 80ms linear;
}

/* ====================================================
   SECTION 10 — PRE-FOOTER CTA (node 7190:776)
   Full-bleed container — bg #454044, padding 112, person overflow top
   ==================================================== */
.prefooter {
  background: #454044;
  position: relative;
  padding: 112px var(--section-px);
  overflow: visible;
  isolation: isolate;
}
.prefooter__pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 827px;
  max-width: calc(100% - 100px);
  height: 496px;
  object-fit: contain;
  object-position: right top;
  pointer-events: none;
  z-index: 1;
  /* Clipa o pattern dentro da section (não deixa vazar pelo topo) */
  clip-path: inset(0);
}
.prefooter__person {
  position: absolute;
  top: -24px;
  right: 112px;
  width: 438px;
  height: 550px;
  object-fit: cover;
  object-position: bottom center;
  pointer-events: none;
  z-index: 2;
}
.prefooter__inner {
  max-width: var(--content-w);
  margin-inline: auto;
  position: relative;
  z-index: 3;
}
.prefooter__text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  color: white;
  width: 700px;
  max-width: 100%;
}
.prefooter__text h2 {
  font-family: var(--font-display);
  font-weight: 600; /* semibold */
  font-size: 48px;
  line-height: 1.1;
  margin: 0;
  color: white;
  text-wrap: balance;
}
.prefooter__text > div,
.prefooter__text > p {
  margin: 0;
}
.prefooter__text p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  max-width: 584px;
}

/* ====================================================
   SITE FOOTER (node 7190:793)
   ==================================================== */
.site-footer {
  background: #211F21;
  color: #D8D4D7;
  padding: 112px var(--section-px) 0;
  position: relative;
  overflow: hidden;
  border-bottom: none;
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: flex-end;
}
.site-footer > * { width: 100%; max-width: var(--content-w); margin-inline: auto; }

/* Big logo (assinatura grande no topo — webp já cortado, usa como veio) */
.site-footer__big-logo {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: var(--content-w);
}
.site-footer__big-logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Main row: 2 nav columns esq + contato dir */
.site-footer__main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  width: 100%;
}
.site-footer__nav-cols {
  display: flex;
  gap: 112px;
  align-items: flex-start;
  font-size: 14px;
}
.site-footer__col {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.site-footer__col h4 {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  color: #D8D4D7;
  white-space: nowrap;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.5;
}
.site-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 107px;
}
.site-footer__col a {
  font-size: 14px;
  font-weight: 400;
  color: #D8D4D7;
  line-height: 1.5;
  transition: color var(--transition-fast);
}
.site-footer__col a:hover { color: var(--primary-lightest); }

/* Contato à direita */
.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
  text-align: right;
  width: 386px;
  max-width: 50%;
}
.site-footer__city {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: #D8D4D7;
  line-height: 1.5;
}
.site-footer__bigtxt {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #D8D4D7;
  line-height: 1.5;
}
.site-footer__bigtxt a {
  color: #D8D4D7;
  transition: color var(--transition-fast);
}
.site-footer__bigtxt a:hover { color: var(--primary-lightest); }

/* Bottom: copyright + criado por (com border-top) */
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 32px;
  border-top: 1px solid #454044;
  font-size: 14px;
  color: #D8D4D7;
  width: 100%;
}
.site-footer__bottom small {
  font-size: 14px;
  color: #D8D4D7;
  line-height: 1.5;
}
.site-footer__creator {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-footer__creator img {
  width: 19px;
  height: 16px;
  display: block;
}

/* Sticky / scrolled variant — variante compacta com botão primário vermelho (node 7190:844) */
.site-header.is-sticky {
  background: #E4E1E3;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.site-header.is-sticky .site-header__inner { padding-block: 12px; }
.site-header.is-sticky .site-header__logo img { width: 144px; height: 60px; }
.site-header.is-sticky .site-header__ctas .btn--soft:first-child {
  background: var(--primary-pure);
  color: var(--white);
}

/* ========================================================================================
   ============================== M O B I L E ==============================================
   Estratégia: tudo abaixo só roda em viewport ≤ 899px. Reusa tokens do desktop e sobrescreve.
   ======================================================================================== */

.site-header__burger { display: none; }
.mobile-drawer { display: none; }

@media (max-width: 899px) {
  /* ============================================================
     HEADER (node 7226:286)
     ============================================================ */
  .site-header__inner {
    padding-block: 14px;
    padding-inline: var(--mobile-section-px);
    max-width: 100%;
    box-sizing: border-box; /* override do desktop content-box que causava overflow 32px */
  }
  .site-header__logo img { width: 120px; height: auto; }
  .site-header__cluster { display: none; }

  .site-header__burger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    border: 0;
    flex-shrink: 0;
    transition: background var(--transition-fast);
  }
  .site-header__burger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--secondary-dark);
    border-radius: 999px;
    transition: transform 220ms ease, opacity 150ms ease;
  }
  .site-header__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header__burger.is-open span:nth-child(2) { opacity: 0; }
  .site-header__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .site-header.is-sticky .site-header__logo img { width: 110px; height: auto; }
  .site-header.is-sticky .site-header__inner { padding-block: 10px; }

  /* ============================================================
     MOBILE DRAWER
     ============================================================ */
  .mobile-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    z-index: 110; /* acima do header (100) pra evitar 2 X's */
    background: var(--bg-hero);
    transform: translateX(100%);
    transition: transform 280ms ease;
    overflow: hidden;
  }
  .mobile-drawer.is-open { transform: translateX(0); }
  body.is-drawer-open { overflow: hidden; }
  /* Esconde o burger quando drawer aberto (X do drawer assume) */
  body.is-drawer-open .site-header__burger { visibility: hidden; }

  /* Top fixo do drawer: logo + close button — não scrolla */
  .mobile-drawer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px var(--mobile-section-px);
    padding-top: calc(14px + var(--safe-area-top));
    border-bottom: 1px solid var(--secondary-lightest);
    flex-shrink: 0;
    background: var(--bg-hero);
  }
  .mobile-drawer__logo { display: inline-flex; }
  .mobile-drawer__logo img { display: block; width: 120px; height: auto; }
  .mobile-drawer__close {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: white;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-dark);
  }
  .mobile-drawer__close:hover { background: var(--secondary-lightest); }

  /* Body scrollável do drawer */
  .mobile-drawer__body {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 32px var(--mobile-section-px) calc(32px + var(--safe-area-bottom));
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .mobile-drawer__nav { display: flex; flex-direction: column; gap: 4px; }
  .mobile-drawer__nav a {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-dark);
    padding: 14px 0;
    border-bottom: 1px solid rgba(216, 212, 215, 0.6);
    transition: color var(--transition-fast);
  }
  .mobile-drawer__nav a:hover { color: var(--primary-pure); }
  .mobile-drawer__ctas { display: flex; flex-direction: column; gap: 12px; margin-top: auto; }
  .mobile-drawer__ctas .btn { width: 100%; justify-content: center; }

  /* ============================================================
     HERO (node 7226:285)
     ============================================================ */
  .hero__content-wrap { padding: 56px var(--mobile-section-px); }
  .hero__content { flex-direction: column; gap: 24px; width: 100%; max-width: 100%; }
  .hero__title { width: 100%; max-width: 100%; font-size: 34px; line-height: 1.1; }
  .hero__right { width: 100%; max-width: 100%; gap: 24px; }
  .hero__subtitle { font-size: 16px; }
  .hero__ctas { flex-direction: column; gap: 12px; width: 100%; max-width: 100%; }
  .hero__ctas .btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
  /* PADRÃO MOBILE — todos os botões 100% width, centralizados, com gap fixo 16 */
  .btn {
    width: 100%;
    justify-content: center;
  }
  .btn--with-icon {
    gap: 16px;
    padding-left: 24px;
  }

  /* Hero badges = MARQUEE infinito (revela os duplicados que estavam ocultos no desktop) */
  .hero__badge[aria-hidden="true"] { display: inline-flex; }
  .hero__badges-wrap {
    width: 100%;
    max-width: none;
    overflow: hidden;
    background: var(--secondary-lightest);
    border-radius: var(--radius-md);
    margin-bottom: -16px;
    position: relative;
    z-index: 2;
    padding-block: 8px;
  }
  .hero__badges {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    max-width: none;
    background: transparent;
    padding: 0 12px;
    margin: 0;
    gap: 24px;
    animation: hero-marquee 28s linear infinite;
    border-radius: 0;
  }
  .hero__badges:hover { animation-play-state: paused; }
  .hero__badge { flex-shrink: 0; }
  @keyframes hero-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); } /* lista duplicada → vai pra metade pra parecer infinito */
  }
  .hero__image { height: 410px; }

  /* ============================================================
     POSICIONAMENTO (node 7226:355)
     ============================================================ */
  .pos { padding-block: 56px; padding-inline: var(--mobile-section-px); }
  .pos__inner { grid-template-columns: 1fr; gap: 32px; }
  .pos__col--text { order: 1; }
  .pos__col--image { order: 2; }
  .pos__title { font-size: 32px; }
  .pos__desc { font-size: 16px; }

  /* ============================================================
     COURSE (Aulas em grupo + Aulas individuais)
     ============================================================ */
  .course { padding-block: 56px; padding-inline: var(--mobile-section-px); }
  .course__inner { grid-template-columns: 1fr; gap: 32px; }
  .course__col--text { padding-top: 0; }
  .course__title { font-size: 32px; max-width: 100%; }
  .course__desc { font-size: 16px; }
  .course__col--features { grid-template-columns: 1fr; gap: 16px; }
  .course--mirror .course__col--features { order: 1; }
  .feature-card { padding: 24px; align-items: center; }
  .feature-card__media { width: 100%; }
  .feature-card__title { font-size: 20px; line-height: 1.3; text-align: center; }

  /* ============================================================
     FEATURES — ELLII + TABS (node 7226:688)
     ============================================================ */
  .features { padding-block: 56px; padding-inline: var(--mobile-section-px); }
  .features__head-row { grid-template-columns: 1fr; gap: 16px; }
  .features__title { font-size: 32px; }
  .features__intro { font-size: 16px; padding-top: 0; }
  .features__panel { margin-top: 24px; }
  .tabs { grid-template-columns: 1fr 1fr; padding: 6px; gap: 6px; }
  .tab { padding: 12px 8px; font-size: 13px; }
  .tabs__pane { grid-template-columns: 1fr; gap: 0; }
  .tabs__text { padding: 24px var(--mobile-section-px); gap: 12px; }
  .tabs__text h3 { font-size: 18px; }
  .tabs__text p, .tabs__text .check-list { font-size: 14px; }

  /* ============================================================
     OSCAR (node 7226:741)
     ============================================================ */
  .oscar { padding-block: 56px; padding-inline: var(--mobile-section-px); }
  .oscar__title { font-size: 32px; line-height: 1.15; }
  .oscar__panel { grid-template-columns: 1fr; gap: 0; }
  .oscar__text { padding: 24px var(--mobile-section-px); align-self: stretch; font-size: 16px; order: 1; }
  .oscar__media { order: 2; }
  .oscar__text p:has(> strong) { font-size: 18px; }

  /* ============================================================
     CTA BANNER (node 7226:792)
     ============================================================ */
  .cta-band { padding-block: 56px 0; padding-inline: var(--mobile-section-px); } /* atípico — bottom 0 */
  .cta-band__card {
    flex-direction: column;
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
    overflow: hidden;
    padding: 0;
    align-items: stretch;
    justify-content: flex-start;
  }
  /* No mobile o bg fica visível (versão portrait dedicada) */
  .cta-band__bg { display: block; }
  .cta-band__text {
    width: 100%;
    padding: 32px;
    padding-block: 32px;
    padding-inline: 32px;
    text-align: center;
    align-items: center;
    align-self: auto;
    order: 1;
  }
  /* Override do desktop que tinha width:auto no btn dentro do cta */
  .cta-band__text .btn,
  .cta-band__text .eyebrow { width: auto; }
  .cta-band__text .btn { width: 100%; }
  .cta-band__person {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    height: auto;
    max-width: none;
    margin: 0;
    display: block;
    object-fit: contain;
    object-position: center bottom;
    order: 2;
    transform: none; /* override desktop translateY/margin */
    border-radius: 0; /* override desktop border-radius */
    align-self: auto;
    flex-shrink: 1;
  }
  .cta-band__title { font-size: 28px; white-space: normal; }
  .cta-band__sub { font-size: 16px; max-width: none; }

  /* ============================================================
     ABOUT (node 7226:876)
     ============================================================ */
  .about { padding-block: 56px; padding-inline: var(--mobile-section-px); }
  .about__inner { grid-template-columns: 1fr; gap: 32px; }
  .about__left { order: 1; }
  .about__right { position: relative; top: 0; order: 2; } /* foto depois do texto — padrão do site */
  .about__title { font-size: 32px; }
  .about__desc { font-size: 16px; }
  .about__caption { padding: 16px; gap: 8px; justify-content: flex-start; }
  .cred { padding: 4px 10px; font-size: 10px; gap: 6px; }
  .timeline { grid-template-columns: 1fr; gap: 12px; padding-top: 16px; }
  .timeline p { font-size: 14px; }

  /* ============================================================
     TESTIMONIALS (node 7226:933)
     ============================================================ */
  .testimonials { padding: 56px 0; gap: 32px; }
  .testimonials > * { width: calc(100% - var(--mobile-section-px) * 2); }
  .testimonials > .testimonials__rail {
    padding-left: var(--mobile-section-px);
    padding-right: var(--mobile-section-px);
  }
  .testimonials__title { font-size: 32px; max-width: 100%; }
  .testimonials__sub { font-size: 16px; max-width: 100%; }
  .testimonials__hero { grid-template-columns: 1fr; gap: 16px; }
  .testimonials__video { aspect-ratio: 16 / 10; }
  .t-card--featured { padding: 24px 0; gap: 24px; }
  .testimonials__rail { gap: 16px; }
  .testimonials__rail .t-card {
    width: calc(100vw - var(--mobile-section-px) * 2 - 32px);
    min-width: calc(100vw - var(--mobile-section-px) * 2 - 32px);
    max-width: 320px;
    height: 474px;
    min-height: 474px;
    padding: 20px;
  }
  .t-card { font-size: 14px; gap: 16px; padding: 20px; }
  .t-card__quote-row { flex-direction: column; gap: 12px; }
  .t-card__quote-icon { width: 40px; height: 40px; }
  .t-card__avatar { width: 48px; height: 48px; }
  .t-card__name strong { font-size: 14px; }
  .t-card__name small { font-size: 10px; }

  /* ============================================================
     PRE-FOOTER (node 7226:1072)
     ============================================================ */
  .prefooter {
    padding: 56px var(--mobile-section-px) 0; /* atípico — bottom 0 */
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  /* Pattern: bg full width absolute como no desktop, mas versão mobile */
  .prefooter__pattern {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    inset: 0;
  }
  /* Texto primeiro, pessoa depois (ordem do site) */
  .prefooter__inner { max-width: 100%; order: 1; }
  .prefooter__text {
    width: 100%;
    gap: 20px;
    text-align: center;
    align-items: center;
    max-width: 100%;
  }
  .prefooter__text h2 { font-size: 28px; }
  .prefooter__text p { font-size: 16px; max-width: none; }
  /* Pessoa full width depois — alinhada à direita pra encostar o braço na borda */
  .prefooter__person {
    position: relative;
    top: 0;
    right: 0;
    width: calc(100% + 60px); /* extrapola 60px pra direita */
    max-width: none;
    height: auto;
    margin: 32px -60px 0 0;
    display: block;
    object-fit: contain;
    object-position: right bottom; /* foto cola na direita */
    order: 2;
  }

  /* ============================================================
     FOOTER (node 7226:1089)
     ============================================================ */
  .site-footer { padding: 56px var(--mobile-section-px) 0; gap: 32px; align-items: stretch; }
  .site-footer > * { max-width: 100%; }
  .site-footer__big-logo { width: 100%; }
  .site-footer__main { flex-direction: column; align-items: stretch; gap: 32px; }
  .site-footer__nav-cols { flex-direction: column; gap: 32px; }
  .site-footer__col { gap: 24px; }
  /* Header com largura fixa pra todos os ul's alinharem na mesma coluna */
  .site-footer__col h4 { width: 80px; flex-shrink: 0; }
  .site-footer__contact { width: 100%; align-items: flex-start; text-align: left; }
  .site-footer__bigtxt { font-size: 18px; line-height: 1.35; }
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-block: 24px calc(24px + var(--safe-area-bottom));
  }
}

html.is-ios, html.is-ios body { -webkit-overflow-scrolling: touch; }

/* ========================================================================================
   ============================== T A B L E T  /  N O T E B O O K =========================
   Range: 900-1199px. Só ajustes de layout — não muda desktop (≥1200) nem mobile (≤899).
   Estratégia: encolher gaps que estão hardcoded em 112px, ajustar widths fixos do desktop,
   manter 2-col onde fizer sentido.
   ======================================================================================== */

@media (min-width: 900px) and (max-width: 1199px) {
  /* ============================================================
     HEADER — compacta nav + esconde 1 CTA pra caber
     ============================================================ */
  .site-header__cluster {
    gap: 20px;
  }
  .site-header__nav {
    gap: 16px;
    font-size: 13px;
  }
  .site-header__ctas {
    gap: 10px;
  }
  .site-header__ctas .btn--sm {
    padding: 8px 12px;
    font-size: 13px;
  }
  /* Esconde o secundário "Conhecer os cursos" no header (só fica o primário) */
  .site-header__ctas .btn--soft:last-child {
    display: none;
  }

  /* ============================================================
     HERO — texto e CTAs compactos, evita overflow das duas colunas
     ============================================================ */
  .hero__content {
    gap: 48px; /* desktop 180 → 48 */
  }
  .hero__title {
    width: auto;
    max-width: 440px;
    font-size: 40px;
  }
  .hero__right {
    width: auto;
    max-width: 360px;
  }
  .hero__ctas {
    flex-wrap: wrap;
    gap: 12px;
  }
  .hero__ctas .btn--lg {
    padding: 8px 16px;
    min-height: 52px;
    font-size: 15px;
  }

  /* ============================================================
     POSICIONAMENTO — 2-col mas gap menor + título menor
     ============================================================ */
  .pos {
    padding-block: 80px;
  }
  .pos__inner {
    gap: 48px; /* desktop 112 → 48 */
  }
  .pos__title { font-size: 40px; }

  /* ============================================================
     COURSE (grupo + individual)
     ============================================================ */
  .course {
    padding-block: 80px;
  }
  .course__inner {
    gap: 48px;
  }
  .course__title { font-size: 36px; }
  .course__col--features {
    gap: 12px;
  }
  .feature-card {
    padding: 20px;
  }
  .feature-card__title { font-size: 18px; }

  /* ============================================================
     FEATURES (Ellii tabs)
     ============================================================ */
  .features {
    padding-block: 80px;
  }
  .features__head-row {
    gap: 48px;
  }
  .features__title { font-size: 40px; }
  .tabs__pane {
    gap: 24px;
  }

  /* ============================================================
     OSCAR — texto mais compacto
     ============================================================ */
  .oscar {
    padding-block: 0 80px;
  }
  .oscar__title { font-size: 40px; }
  .oscar__panel {
    gap: 0; /* mantém layout side-by-side */
  }

  /* ============================================================
     CTA BANNER — pessoa pode encolher levemente
     ============================================================ */
  .cta-band__card {
    padding: 0 40px;
    gap: 24px;
  }
  .cta-band__person {
    width: 380px;
    height: 330px;
    margin-top: -44px; /* ajusta proporcional ao height menor */
  }
  .cta-band__title { font-size: 40px; }

  /* ============================================================
     ABOUT — 2-col com gap menor + foto menor
     ============================================================ */
  .about {
    padding-block: 80px;
  }
  .about__inner {
    gap: 48px;
  }
  .about__title { font-size: 38px; }
  .timeline {
    gap: 12px 32px;
  }

  /* ============================================================
     TESTIMONIALS — rail cards menores
     ============================================================ */
  .testimonials {
    padding: 80px 0;
    gap: 40px;
  }
  .testimonials__title { font-size: 40px; }
  .testimonials__hero {
    gap: 24px;
  }
  .testimonials__rail {
    gap: 20px;
  }
  .testimonials__rail .t-card {
    width: 480px;
    min-width: 480px;
    max-width: 480px;
    height: 420px;
  }

  /* ============================================================
     PRE-FOOTER — pattern + pessoa menores
     ============================================================ */
  .prefooter {
    padding: 80px var(--section-px);
  }
  .prefooter__pattern {
    width: 640px;
    height: 380px;
  }
  .prefooter__person {
    width: 380px;
    height: 460px;
    right: 80px;
  }
  .prefooter__text {
    width: 580px;
  }
  .prefooter__text h2 { font-size: 40px; }

  /* ============================================================
     FOOTER — gap das colunas menor
     ============================================================ */
  .site-footer {
    padding-block: 80px 0;
  }
  .site-footer__nav-cols {
    gap: 64px; /* desktop 112 → 64 */
  }
  .site-footer__contact {
    width: 320px;
  }
}
