/* =========================================================
   Botões
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 var(--sp-5);
  border-radius: var(--r-pill);
  font-family: var(--font-base);
  font-weight: var(--fw-medium);
  font-size: var(--t-body);
  line-height: var(--lh-body);
  text-align: center;
  transition: filter 0.15s ease, transform 0.1s ease;
}

.btn:hover {
  filter: brightness(0.94);
}

.btn:active {
  transform: translateY(1px);
}

.btn:focus-visible {
  outline: 3px solid var(--c-wine);
  outline-offset: 3px;
}

.btn--gold {
  background: var(--c-gold);
  color: var(--c-wine);
  box-shadow: var(--shadow-sm);
}

.btn--wine {
  background: var(--c-wine);
  color: var(--c-sand);
  box-shadow: var(--shadow-sm);
}

.btn--wine:focus-visible {
  outline-color: var(--c-gold);
}

/* =========================================================
   Grafismo — padrão decorativo de pétalas
   ========================================================= */

.grafismo {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
}

.grafismo--gold-right {
  right: 30px;
  width: 300px;
  height: 312px;
  background-image: url('../img/grafismo-dourado.webp');
}

.grafismo--gold-right.grafismo--lg {
  width: 300px;
  height: 312px;
}

.grafismo--gold-br {
  right: 330px;
  bottom: 30px;
  width: 300px;
  height: 312px;
  background-color: var(--c-gold);
  -webkit-mask-image: url('../img/grafismo.webp');
          mask-image: url('../img/grafismo.webp');
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  transform: scaleX(-1);
  transform-origin: right bottom;
}

.grafismo--wine-left {
  left: 0;
  width: 300px;
  height: 312px;
  background-image: url('../img/grafismo.webp');
}

.grafismo--gold-left {
  left: 0;
  width: 300px;
  height: 312px;
  background-color: var(--c-gold);
  -webkit-mask-image: url('../img/grafismo.webp');
          mask-image: url('../img/grafismo.webp');
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

/* =========================================================
   Header
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: var(--c-sand);
}

.site-header .container {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "logo login"
    "logo nav";
  align-items: center;
  column-gap: var(--sp-4);
  row-gap: var(--sp-1);
  height: 100%;
  padding-block: var(--sp-2);
}

.site-header__logo {
  grid-area: logo;
  display: block;
  width: 190px;
  height: auto;
  align-self: center;
}

.site-header__logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(var(--shadow-sm));
}

.site-nav {
  grid-area: nav;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-self: end;
  gap: var(--sp-2);
}

.site-nav a {
  font-size: var(--t-nav);
  line-height: var(--lh-nav);
  font-weight: var(--fw-medium);
  color: var(--c-wine);
  white-space: nowrap;
}

.site-nav a:hover {
  text-decoration: underline;
}

.site-header__login {
  grid-area: login;
  justify-self: end;
  align-self: end;
  width: 100px;
}

/* Botão do menu — só aparece a partir do breakpoint do drawer (ver Responsivo) */
.site-header__toggle {
  grid-area: toggle;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--c-wine);
}

.site-header__toggle-bar {
  display: block;
  width: 26px;
  height: 2px;
  margin-inline: auto;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-header__toggle:focus-visible {
  outline: 3px solid var(--c-wine);
  outline-offset: 2px;
}

body.is-nav-open {
  overflow: hidden;
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-height: 530px;
}

.hero__media {
  overflow: hidden;
  max-height: 530px;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__panel {
  background: var(--c-wine);
  color: var(--c-sand);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--sp-3);
  padding: var(--sp-5) var(--sp-6);
  height: 100%;
}

.hero__eyebrow {
  font-size: var(--t-eyebrow);
  line-height: var(--lh-eyebrow);
  font-style: italic;
  font-weight: var(--fw-medium);
  letter-spacing: 0.05em;
  margin-bottom: 50px;
}

.hero__title {
  font-size: var(--t-h1);
  line-height: var(--lh-h1);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
}

.hero__subtitle {
  font-size: var(--t-h4);
  line-height: var(--lh-h4);
  font-weight: var(--fw-bold);
  max-width: 560px;
}

.hero__cta {
  margin-top: var(--sp-3);
  align-self: flex-start;
}

/* =========================================================
   Intro editorial
   ========================================================= */

.intro {
  position: relative;
  overflow: hidden;
  background: var(--c-sand);
  padding-block: var(--sp-7);
}

.intro__text {
  position: relative;
  z-index: 1;
  color: var(--c-wine);
}

.intro__text p + p {
  margin-top: var(--sp-3);
}

.intro .grafismo {
  top: 30px;
}

/* =========================================================
   Seções de conteúdo editorial
   (Para quem é / As perguntas / Como funciona / O resultado / Turma / Parece que)
   ========================================================= */

.section {
  position: relative;
  overflow: hidden;
  padding-block: var(--sp-6) var(--sp-6);
}

.section--wine  { background: var(--c-wine);  color: var(--c-sand); }
.section--gold  { background: var(--c-gold);  color: var(--c-wine); }
.section--olive { background: var(--c-olive); color: var(--c-sand); }
.section--sand  { background: var(--c-sand);  color: var(--c-wine); }

.section__title {
  position: relative;
  z-index: 1;
  font-size: var(--t-h2);
  line-height: var(--lh-h2);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-2);
}

.section__title--tight {
  font-size: var(--t-h3-tight);
  line-height: var(--lh-h3-tight);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-4);
}

.section__body {
  position: relative;
  z-index: 1;
}

.section__body p + p {
  margin-top: var(--sp-3);
}

.section__cta {
  position: relative;
  z-index: 1;
  margin-top: var(--sp-5);
}

/* Como funciona — grafismo vinho, meio esquerda */
.section--gold .grafismo--wine-left {
  bottom: 30px;
}

/* -------- Listas -------- */

.bullet-list,
.plain-list {
  position: relative;
  z-index: 1;
  font-size: var(--t-body-lg);
  font-weight: var(--fw-medium);
  list-style: initial;
  padding-left: var(--sp-3);
  margin-bottom: var(--sp-3);
  margin-top: var(--sp-3);
}

.bullet-list li,
.plain-list li {
  margin-bottom: var(--sp-1);
}

.bullet-list li {
  position: relative;
}

/* .bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  border-radius: var(--r-full);
  background: currentColor;
} */

/* -------- Cards de data -------- */

.date-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 306px);
  gap: 4px 10px;
  margin-bottom: var(--sp-5);
}

.date-grid--period {
  grid-template-columns: repeat(2, 1fr);
}

.date-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: 0 var(--sp-3);
  border-radius: var(--r-md);
  background: var(--c-wine);
  color: var(--c-sand);
  font-size: var(--t-body-lg);
  line-height: var(--lh-date);
  font-weight: var(--fw-semibold);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.turma__info {
  position: relative;
  z-index: 1;
  font-size: var(--t-h4);
  line-height: var(--lh-h4);
  font-weight: var(--fw-semibold);
  color: var(--c-wine);
}

.turma__price {
  position: relative;
  z-index: 1;
  margin-top: var(--sp-3);
  font-size: var(--t-h4);
  line-height: var(--lh-h4);
  font-weight: var(--fw-semibold);
  color: var(--c-wine);
}

/* -------- Parece que o Novos Rumos... -------- */

.parece-que {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-6);
}

.parece-que__text {
  font-size: var(--t-body);
  line-height: var(--lh-body);
  font-weight: var(--fw-medium);
  max-width: 674px;
}

.parece-que__actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
  max-width: 538px;
}

.parece-que__person {
  text-align: center;
}

.parece-que__photo {
  width: 300px;
  height: 300px;
  border-radius: var(--r-full);
  object-fit: cover;
  border: 1px solid var(--c-gray-stroke);
}

.parece-que__name {
  margin-top: var(--sp-2);
  font-size: var(--t-caption);
  line-height: var(--lh-caption);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
}

.parece-que__name span {
  display: block;
}

/* =========================================================
   Quem estará com você — cards de facilitador
   ========================================================= */

.person-grid {
  display: grid;
  grid-template-columns: repeat(3, 262px);
  gap: var(--sp-6);
}

.person-card__photo {
  width: 262px;
  height: 345px;
  border-radius: var(--r-sm);
  object-fit: cover;
  margin-bottom: 11px;
}

.person-card__name {
  font-size: var(--t-card);
  line-height: var(--lh-card);
  font-weight: var(--fw-semibold);
  color: var(--c-wine);
}

.person-card__bio {
  margin-top: var(--sp-3);
  font-size: var(--t-card);
  line-height: var(--lh-card);
  font-weight: var(--fw-semibold);
  color: var(--c-wine);
}

/* =========================================================
   Depoimentos
   ========================================================= */

.testimonials {
  background: var(--c-wine);
  color: var(--c-sand);
}

.testimonials .container {
  position: relative;
}

.testimonials__title {
  position: relative;
  z-index: 1;
  font-size: var(--t-h2-quote);
  line-height: var(--lh-h2);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-6);
}

.testimonials__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 312px 1fr;
  gap: var(--sp-6);
}

.testimonials__col-b {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.quote-card {
  margin: 0;
}

.quote-card--featured {
  display: flex;
  gap: var(--sp-4);
}

.quote-card__photo {
  flex-shrink: 0;
  width: 180px;
  height: 273px;
  border-radius: var(--r-sm);
  object-fit: cover;
}

.quote-card blockquote {
  margin: 0;
  font-size: var(--t-quote);
  line-height: var(--lh-quote);
  font-weight: var(--fw-medium);
  color: var(--c-sand);
}

.quote-card blockquote::before,
.quote-card blockquote::after {
  font-size: 1.55em;
  line-height: inherit;
  font-weight: var(--fw-semibold);
  color: var(--c-gold);
  font-style: normal;
}

.quote-card blockquote::before {
  content: "\201C";
  margin-right: 0.12em;
}

.quote-card blockquote::after {
  content: "\201D";
  margin-left: 0.08em;
}

.quote-card--featured blockquote {
  font-weight: var(--fw-bold);
}

.quote-card blockquote strong {
  font-weight: var(--fw-bold);
  color: var(--c-gold);
}

.quote-card figcaption {
  margin-top: var(--sp-2);
  font-size: var(--t-caption);
  line-height: var(--lh-caption);
  font-weight: var(--fw-medium);
  color: var(--c-sand);
}

/* Controles do carrossel — só aparecem quando o grid vira carrossel (ver Responsivo) */
.testimonials__controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}

.testimonials__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 49px;
  height: 49px;
  border-radius: var(--r-full);
  background: var(--c-sand);
  color: var(--c-wine);
  box-shadow: var(--shadow-sm);
}

.testimonials__arrow svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 3;
  fill: none;
}

.testimonials__arrow:disabled {
  opacity: 0.4;
  cursor: default;
}

.testimonials__arrow:focus-visible {
  outline: 3px solid var(--c-gold);
  outline-offset: 3px;
}

.testimonials__dots {
  display: flex;
  align-items: center;
  gap: 4px;
}

.testimonials__dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
}

.testimonials__dot::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: var(--r-full);
  background: rgba(231, 223, 206, 0.4);
  transition: background 0.2s ease;
}

.testimonials__dot[aria-current="true"]::after {
  background: var(--c-gold);
}

.testimonials__dot:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 0;
  border-radius: var(--r-full);
}

/* =========================================================
   Newsletter
   ========================================================= */

.newsletter {
  background: var(--c-olive);
  color: var(--c-sand);
}

.newsletter__title {
  font-size: var(--t-h2);
  line-height: var(--lh-h2);
  font-weight: var(--fw-semibold);
}

.newsletter__subtitle {
  margin-top: var(--sp-1);
  font-size: var(--t-caption);
  line-height: var(--lh-caption);
  font-weight: var(--fw-medium);
}

.newsletter-form {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}

.newsletter-form__input {
  width: 770px;
  height: 60px;
  padding: 0 var(--sp-3);
  border: none;
  border-radius: 100px;
  background: var(--c-sand);
  color: var(--c-wine);
  font-family: var(--font-base);
  font-size: var(--t-body);
  font-weight: var(--fw-medium);
}

.newsletter-form__input::placeholder {
  color: var(--c-wine);
  opacity: 0.7;
}

.newsletter-form__submit {
  width: 368px;
  height: 60px;
}

/* =========================================================
   FAQ
   ========================================================= */

.faq {
  position: relative;
  overflow: hidden;
  background: var(--c-wine);
  color: var(--c-sand);
  padding-block: var(--sp-7);
}

.faq .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 730px;
  gap: var(--sp-6);
}

.faq__title {
  font-size: var(--t-h2);
  line-height: var(--lh-h2);
  font-weight: var(--fw-semibold);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.faq__item {
  border-bottom: 1px solid rgba(231, 223, 206, 0.2);
  padding-bottom: var(--sp-2);
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  cursor: pointer;
  list-style: none;
  font-size: var(--t-caption);
  line-height: var(--lh-caption);
  font-weight: var(--fw-medium);
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 20px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.faq__item[open] summary::after {
  content: '\2212';
}

.faq__item > .faq__panel {
  display: block;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

.faq__item p {
  margin: var(--sp-2) 0 0;
  font-size: var(--t-caption);
  line-height: var(--lh-caption);
  font-weight: var(--fw-medium);
  opacity: 0.85;
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
  background: var(--c-sand);
  padding-block: var(--sp-6) var(--sp-4);
}

.site-footer__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: var(--sp-6);
}

.site-footer__brand {
  display: block;
}

.site-footer__logo {
  width: 280px;
  height: auto;
}

.site-footer__mid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: var(--sp-7);
  padding-top: 6px;
}

.site-footer__col h3 {
  font-size: var(--t-footer);
  line-height: var(--lh-footer);
  font-weight: var(--fw-medium);
  color: var(--c-wine);
  text-transform: uppercase;
  margin-bottom: var(--sp-1);
}

.site-footer__nav ul {
  display: flex;
  flex-direction: column;
}

.site-footer__nav a,
.site-footer__col a {
  font-size: var(--t-footer);
  line-height: var(--lh-footer);
  font-weight: var(--fw-medium);
  color: var(--c-wine);
  text-transform: uppercase;
}

.site-footer__nav a:hover,
.site-footer__col a:hover,
.site-footer__legal a:hover {
  text-decoration: underline;
}

.site-footer__icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.site-footer__icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--c-wine);
}
.site-footer__icons a.email, .site-footer__icons a.email svg {
  width: 40px;
  height: 40px;
}

.site-footer__icons svg {
  width: 32px;
  height: 32px;
  fill: none;
}

.site-footer__legal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
  font-size: var(--t-legal);
  line-height: var(--lh-legal);
  font-weight: var(--fw-regular);
  color: var(--c-wine);
}

/* =========================================================
   Responsivo
   Degraus derivados do design system (1.2): xl 1200 · lg 992 · md 768 · sm 576.
   Escrito desktop-first, um degrau sobrescrevendo o anterior.
   ========================================================= */

@media (max-width: 1850px) {
  .grafismo--gold-right {
    right: 20px;
    width: 260px;
    height: 272px;
  }

  .grafismo--gold-right.grafismo--lg {
    width: 260px;
    height: 272px;
  }

  .grafismo--gold-br {
    width: 260px;
    height: 272px;
    right: 280px;
    bottom: 20px;
  }

  .grafismo--wine-left {
    left: 0;
    width: 260px;
    height: 272px;
  }

  .grafismo--gold-left {
    left: 0;
    width: 260px;
    height: 272px;
  }
}

/* ---------------------------------------------------------
   xl — até 1199px · o menu de 9 itens não cabe mais em linha:
   vira drawer acionado pelo botão do header
   --------------------------------------------------------- */

@media (max-width: 1199px) {
  :root {
    --header-height: 96px;
  }

  .site-header .container {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto;
    grid-template-areas: "logo login toggle";
    column-gap: var(--sp-2);
    row-gap: 0;
  }

  .site-header__logo {
    width: 160px;
  }

  .site-header__login {
    align-self: center;
    width: 88px;
  }

  .site-header__toggle {
    display: flex;
  }

  /* painel ancorado no .site-header (sticky). O reset de grid-area/justify-self
     é necessário: mantendo o justify-self: end do desktop, o navegador resolve
     left/right contra a área do grid e o painel encolhe no canto direito. */
  .site-nav {
    position: absolute;
    grid-area: auto;
    justify-self: stretch;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    padding: var(--sp-1) var(--container-gutter) var(--sp-3);
    background: var(--c-sand);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .site-nav[data-open="true"] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding-block: var(--sp-2);
    border-bottom: 1px solid rgba(87, 51, 63, 0.15);
    font-size: var(--t-body);
    line-height: var(--lh-body);
  }

  .site-nav a:last-child {
    border-bottom: none;
  }

  .hero__panel {
    padding: var(--sp-5);
  }

  .person-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--sp-4);
  }

  .person-card__photo {
    width: 100%;
    height: auto;
    aspect-ratio: 262 / 345;
  }

  /* a coluna de 730px do FAQ não cabe no container narrow abaixo de ~1050px */
  .faq .container {
    grid-template-columns: auto minmax(0, 730px);
    column-gap: var(--sp-4);
  }

  .newsletter-form__input {
    width: auto;
    flex: 1 1 auto;
    min-width: 0;
  }

  .newsletter-form__submit {
    width: auto;
    flex: 0 0 auto;
    padding-inline: var(--sp-4);
  }
}

/* ---------------------------------------------------------
   lg — até 991px · tablet retrato: hero empilha, grids de 3
   colunas caem para 2, depoimentos viram carrossel
   --------------------------------------------------------- */

@media (max-width: 991px) {
  :root {
    --t-h1: 40px;
    --lh-h1: 56px;
    --t-h2: 30px;
    --lh-h2: 44px;
    --t-h2-quote: 40px;
    --t-h3: 30px;
    --lh-h3: 40px;
    --t-h3-tight: 28px;
    --lh-h3-tight: 38px;
    --t-h4: 22px;
    --lh-h4: 34px;
    --t-quote: 22px;
    --lh-quote: 32px;
    --t-date: 28px;
    --lh-date: 36px;
  }

  /* -------- Ritmo vertical -------- */

  .section {
    padding-block: var(--sp-5);
  }

  .intro,
  .faq {
    padding-block: var(--sp-5);
  }

  .section__title--tight {
    margin-bottom: var(--sp-3);
  }

  /* -------- Grafismo -------- */

  .grafismo--gold-right,
  .grafismo--gold-right.grafismo--lg,
  .grafismo--wine-left,
  .grafismo--gold-left,
  .grafismo--gold-br {
    width: 200px;
    height: 208px;
  }

  .grafismo--gold-right {
    right: 0;
  }

  /* espelhado a partir do centro: com transform-origin no canto direito, o
     scaleX(-1) jogaria a peça inteira para fora da viewport */
  .grafismo--gold-br {
    right: 0;
    bottom: 0;
    transform-origin: center;
  }

  .intro .grafismo {
    top: 16px;
  }

  /* -------- Hero -------- */

  .hero {
    grid-template-columns: 1fr;
    max-height: none;
  }

  .hero__media {
    max-height: 320px;
  }

  .hero__eyebrow {
    margin-bottom: var(--sp-3);
  }

  .hero__panel {
    gap: var(--sp-2);
    padding: var(--sp-5) var(--sp-4);
  }

  /* -------- Cards de data -------- */

  .date-grid,
  .date-grid--period {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: var(--sp-4);
  }

  .date-card {
    height: auto;
    min-height: 72px;
    padding: var(--sp-2) var(--sp-3);
  }

  /* -------- Parece que… -------- */

  .parece-que {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }

  .parece-que__text {
    max-width: none;
  }

  .parece-que__actions {
    max-width: none;
    margin-top: var(--sp-3);
  }

  .parece-que__person {
    justify-self: center;
  }

  /* -------- Facilitadores -------- */

  .person-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--sp-4) var(--sp-5);
  }

  /* -------- Depoimentos como carrossel -------- */

  .testimonials__title {
    margin-bottom: var(--sp-4);
  }

  /* trilho de altura controlada pelo JS: acompanha o slide ativo em vez de
     assumir a altura do depoimento mais alto */
  .testimonials__grid {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-4);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    transition: height 0.3s ease;
  }

  .testimonials__grid::-webkit-scrollbar {
    display: none;
  }

  /* achata a coluna B para que os 3 depoimentos sejam slides irmãos */
  .testimonials__col-b {
    display: contents;
  }

  .testimonials__grid .quote-card {
    flex: 0 0 100%;
    min-width: 0;
    scroll-snap-align: start;
  }

  .testimonials__controls {
    display: flex;
  }

  /* -------- FAQ -------- */

  .faq .container {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }

  /* -------- Footer -------- */

  .site-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "brand nav"
      "mid   mid";
    align-items: start;
    column-gap: var(--sp-4);
    row-gap: var(--sp-5);
  }

  .site-footer__brand {
    grid-area: brand;
  }

  .site-footer__mid {
    grid-area: mid;
    justify-content: flex-start;
    gap: var(--sp-6);
    padding-top: 0;
  }

  .site-footer__nav {
    grid-area: nav;
    justify-self: end;
  }

  .site-footer__legal {
    margin-top: var(--sp-5);
  }
}

/* ---------------------------------------------------------
   md — até 767px · mobile: tudo em coluna única
   (corpo de texto no piso de 18px definido em Acessibilidade)
   --------------------------------------------------------- */

@media (max-width: 767px) {
  :root {
    --container-gutter: 20px;
    --t-h1: 34px;
    --lh-h1: 44px;
    --t-h2: 26px;
    --lh-h2: 36px;
    --t-h2-quote: 32px;
    --t-h3: 26px;
    --lh-h3: 36px;
    --t-h3-tight: 24px;
    --lh-h3-tight: 32px;
    --t-h4: 20px;
    --lh-h4: 30px;
    --t-body-lg: 18px;
    --lh-body-lg: 30px;
    --t-body: 18px;
    --lh-body: 28px;
    --t-quote: 20px;
    --lh-quote: 30px;
    --t-date: 22px;
    --lh-date: 30px;
    --t-card: 18px;
    --lh-card: 28px;
    --t-caption: 18px;
    --lh-caption: 28px;
  }

  /* -------- Botões: largura cheia nos CTAs de fluxo -------- */

  .btn {
    min-height: 56px;
    padding-inline: var(--sp-4);
  }

  .hero__cta,
  .section__cta,
  .parece-que__actions .btn {
    width: 100%;
    max-width: 420px;
  }

  .section__cta {
    margin-top: var(--sp-4);
  }

  /* -------- Header -------- */

  .site-header__logo {
    width: 140px;
  }

  .site-header__login {
    width: 76px;
  }

  /* -------- Hero -------- */

  .hero__media {
    max-height: 260px;
  }

  .hero__panel {
    padding: var(--sp-4) var(--sp-3) var(--sp-5);
  }

  /* -------- Listas -------- */

  .bullet-list,
  .plain-list {
    padding-left: var(--sp-2);
  }

  /* -------- Parece que… -------- */

  .parece-que__photo {
    width: 240px;
    height: 240px;
  }

  /* -------- Depoimentos -------- */

  .quote-card--featured {
    gap: var(--sp-3);
  }

  .quote-card__photo {
    width: 140px;
    height: auto;
    aspect-ratio: 180 / 273;
  }

  /* -------- Newsletter -------- */

  .newsletter-form {
    flex-direction: column;
    gap: var(--sp-2);
  }

  .newsletter-form__input,
  .newsletter-form__submit {
    width: 100%;
  }

  /* -------- FAQ -------- */

  .faq__item summary {
    gap: var(--sp-2);
  }

  /* -------- Footer -------- */

  .site-footer {
    padding-block: var(--sp-5) var(--sp-4);
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "nav"
      "mid";
    justify-items: center;
    row-gap: var(--sp-4);
    text-align: center;
  }

  .site-footer__logo {
    width: 220px;
  }

  .site-footer__mid {
    justify-content: center;
    gap: var(--sp-5);
  }

  .site-footer__nav {
    justify-self: center;
  }

  .site-footer__nav ul {
    align-items: center;
  }

  .site-footer__icons {
    justify-content: center;
  }

  .site-footer__legal {
    flex-direction: column;
    gap: var(--sp-1);
    margin-top: var(--sp-4);
    text-align: center;
  }
}

/* ---------------------------------------------------------
   sm — até 575px · telas estreitas
   --------------------------------------------------------- */

@media (max-width: 575px) {
  :root {
    --container-gutter: 16px;
    --header-height: 80px;
    --t-h1: 30px;
    --lh-h1: 40px;
    --t-h2-quote: 28px;
  }

  .section {
    padding-block: var(--sp-4);
  }

  .intro,
  .faq {
    padding-block: var(--sp-4);
  }

  .site-header__logo {
    width: 120px;
  }

  .site-header__login {
    width: 68px;
  }

  .grafismo--gold-right,
  .grafismo--gold-right.grafismo--lg,
  .grafismo--wine-left,
  .grafismo--gold-left,
  .grafismo--gold-br {
    width: 150px;
    height: 156px;
  }

  .hero__media {
    max-height: 220px;
  }

  .date-grid,
  .date-grid--period {
    grid-template-columns: 1fr;
  }

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

  .person-card {
    max-width: 320px;
  }

  .parece-que__photo {
    width: 200px;
    height: 200px;
  }

  .quote-card--featured {
    flex-direction: column;
  }

  .quote-card__photo {
    width: 160px;
  }

  .testimonials__controls {
    gap: var(--sp-2);
  }

  .site-footer__logo {
    width: 200px;
  }
}

/* ---------------------------------------------------------
   Movimento reduzido
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .testimonials__grid {
    scroll-behavior: auto;
    transition: none;
  }

  .site-nav,
  .site-header__toggle-bar,
  .faq__item > .faq__panel {
    transition: none;
  }
}