/* =========================================================
   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);
  border: none;
  outline: none;
  font-family: var(--font-base);
  font-weight: var(--fw-medium);
  font-size: var(--t-body);
  line-height: var(--lh-body);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.btn:hover,
.btn:active {
  transform: scale(0.97);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
}

.btn:active {
  transform: scale(0.95);
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.22);
}

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

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

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

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

.btn--terracotta {
  background: var(--c-terracotta);
  color: var(--c-sand);
}

.btn--terracotta:focus-visible {
  outline-color: var(--c-sand);
}

/* =========================================================
   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: 30px;
  width: 300px;
  height: 312px;
  background-image: url('../img/grafismo.webp');
}

.grafismo--gold-left {
  left: 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;
  bottom: 30px;
}

/* =========================================================
   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: start;
}

.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__panel--gold {
  background: var(--c-gold);
  color: var(--c-wine);
}

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

.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__eyebrow a {
  color: inherit;
  text-decoration: none;
}

.hero__eyebrow a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.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__lead {
  font-style: italic;
  font-size: var(--t-body-lg);
  line-height: var(--lh-body-lg);
  margin-bottom: 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--terracotta { background: var(--c-terracotta); color: var(--c-sand); }
.section--offwhite   { background: #e8dfce;             color: var(--c-wine); }

.section__title {
  position: relative;
  z-index: 1;
  font-size: var(--t-h3-tight);
  line-height: var(--lh-h3-tight);
  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-2);
}

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

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

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

/* Grupo de CTAs empilhados no fim de uma seção */
.section__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
  max-width: 520px;
}

.section__actions .btn {
  width: 100%;
}

.section__actions--wide {
  max-width: 569px;
}

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

/* Sobre a Anthea — borboletas de cabeça para baixo no canto superior direito */
.section--gold .grafismo--gold-right {
  top: 30px;
  background-image: url('../img/grafismo.webp');
  transform: rotate(180deg);
}

/* -------- 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-top: var(--sp-3);
}

.bullet-list li,
.plain-list li {
  margin-top: 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: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: var(--sp-2);
  max-width: 583px;
}

.date-grid.justify-center {
  justify-content: center;
}

.date-grid--period {
  margin-bottom: var(--sp-3);
}

.date-grid--dates {
  margin-bottom: var(--sp-4);
}

.date-card {
  margin-bottom: 0;
  background: var(--c-wine);
  color: var(--c-sand);
  max-width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 var(--sp-5);
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  font-family: var(--font-base);
  font-weight: var(--fw-medium);
  font-size: var(--t-body);
  line-height: var(--lh-body);
  text-align: center;
  box-shadow: var(--shadow-sm);
  box-sizing: border-box;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.date-card--outline {
  background: transparent;
  color: var(--c-wine);
  border-color: var(--c-wine);
  box-shadow: none;
}

.turma__details p + p {
  margin-top: var(--sp-2);
}

.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);
  align-items: start;
}
.parece-que h2.section__title.section__title--tight {
  max-width: 483px;
}
.parece-que > :first-child {
  display: flex;
  flex-direction: column;
  min-height: 395px;
}

.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: auto;
  padding-top: var(--sp-2);
  max-width: 538px;
}

.parece-que__role {
  margin-bottom: var(--sp-3);
  font-weight: var(--fw-bold);
}

.parece-que__person {
  position: relative;
  text-align: center;
  width: fit-content;
}

.parece-que__photo {
  width: 300px;
  height: auto;
  aspect-ratio: 262 / 345;
  border-radius: var(--r-sm);
  object-fit: cover;
}

.parece-que__name {
  margin-top: 12px;
  padding: 0;
  font-size: 16px;
  line-height: 21px;
  font-weight: var(--fw-medium);
  color: var(--c-gold);
  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);
}

/* =========================================================
   Anthea Talks — Edições anteriores
   ========================================================= */

.edicoes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}

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

.edicao-card__media {
  overflow: hidden;
  border-radius: var(--r-md);
  /* background: var(--c-terracotta); */
}

/* Placeholder enquanto não há imagem da matéria/evento */
.edicao-card__media--placeholder {
  aspect-ratio: 3 / 2;
  background: var(--c-terracotta);
}

.edicao-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--r-lg);
  transition: transform 0.2s ease;
}

.edicao-card:hover .edicao-card__img {
  transform: scale(1.03);
}

.edicao-card__badge {
  background: var(--c-terracotta);
  color: var(--c-sand);
  border-radius: var(--r-lg);
  padding: var(--sp-3) var(--sp-2);
  text-align: center;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--sp-2);
}

.edicao-card__badge span {
  font-size: var(--t-body);
  line-height: var(--lh-body);
  font-weight: var(--fw-semibold);
  display: block;
}

.edicao-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.edicao-card__title {
  font-size: 18px;
  line-height: 24px;
  font-weight: var(--fw-bold);
  color: var(--c-sand);
  margin: 0;
}

.edicao-card__speaker {
  font-size: 15px;
  line-height: 20px;
  font-weight: var(--fw-semibold);
  color: var(--c-gold);
  margin: 0;
}

.edicao-card__desc {
  font-size: 14px;
  line-height: 20px;
  font-weight: var(--fw-regular);
  color: var(--c-sand);
  opacity: 0.88;
  margin: 0;
}

/* Alguns temas — colunas estreitas (Palestras) */
.temas-columns {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--sp-4) var(--sp-3);
  margin-top: var(--sp-4);
}

.temas-columns__item {
  margin: 0;
  font-size: var(--t-card);
  line-height: var(--lh-card);
  font-weight: var(--fw-medium);
  color: var(--c-wine);
}

.temas-columns__item strong {
  font-weight: var(--fw-bold);
}

/* Carrossel Onde já estivemos (Palestras) */
.edicoes-carousel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}

.edicoes-carousel__track {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.edicoes-carousel__track::-webkit-scrollbar {
  display: none;
}

.edicoes-carousel__track .edicao-card {
  flex: 0 0 calc((100% - (var(--sp-4) * 2)) / 3);
  min-width: 0;
  scroll-snap-align: start;
}

.edicoes-carousel__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background: rgba(231, 223, 206, 0.22);
  color: var(--c-sand);
  transition: background 0.15s ease, opacity 0.15s ease;
}

.edicoes-carousel__arrow svg {
  width: 18px;
  height: 18px;
}

.edicoes-carousel__arrow:hover:not(:disabled) {
  background: rgba(231, 223, 206, 0.38);
}

.edicoes-carousel__arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

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

/* =========================================================
   Anthea Talks — Próximos Talks
   ========================================================= */

.proximos-talks {
  position: relative;
}

.proximo-talk {
  display: grid;
  grid-template-columns: minmax(0, 410px) minmax(0, 1fr);
  gap: var(--sp-6);
  align-items: center;
}

.proximo-talk__card {
  background: var(--c-olive);
  border-radius: var(--r-lg);
  padding: 0;
  color: var(--c-sand);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  box-shadow: var(--shadow-md);
}

.proximo-talk__media {
  width: 100%;
  border-radius: var(--r-sm);
  overflow: hidden;
      padding: 45px 45px 0;
}

.proximo-talk__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-sm);
  object-fit: cover;
}

.proximo-talk__card-body {
  display: flex;
  flex-direction: column;
  padding-inline: 4px;
  padding: 0 54px 30px;
}

.proximo-talk__card-title {
  font-size: 22px;
  line-height: 1.25;
  font-weight: var(--fw-bold);
  color: var(--c-gold);
  margin: 0;
}

.proximo-talk__card-date {
  font-size: 18px;
  line-height: 1.3;
  color: var(--c-gold);
  opacity: 1;
  margin: 0 0 20px;
}

.proximo-talk__card-lead {
  font-size: 18px;
  line-height: 1.45;
  color: var(--c-sand);
  margin: 0 0 20px;
}

.proximo-talk__card-bio {
  font-size: 15px;
  line-height: 1.45;
  color: var(--c-sand);
  opacity: 0.95;
  margin: 0;
}

.proximo-talk__card-bio strong {
  color: #fff;
  font-weight: var(--fw-bold);
}

.proximo-talk__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.proximo-talk__title {
  font-size: var(--t-h2);
  line-height: var(--lh-h2);
  font-weight: var(--fw-bold);
  color: var(--c-wine);
  margin: 0 0 14px;
}

.proximo-talk__details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  font-size: 20px;
  line-height: 1.4;
  color: var(--c-wine);
  margin-bottom: 24px;
}

.proximo-talk__datetime {
font-size: 24px;
  margin: 0;
}

.proximo-talk__location {
  margin: 0;
}

.proximo-talk__price {
  font-weight: var(--fw-semibold);
  margin: 0;
}

.proximo-talk__highlight {
  font-weight: var(--fw-semibold);
  margin: 0;
}

.proximo-talk__cta {
  min-width: 220px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--t-body);
  font-weight: var(--fw-semibold);
  border-radius: var(--r-pill);
}

/* =========================================================
   Single Post / Newsletter (Artigo)
   ========================================================= */

.single-hero {
  width: 100%;
  overflow: hidden;
  background-color: var(--c-sand);
}

/* .single-hero__media {
  width: 100%;
  max-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
} */

.single-hero__img {
  width: 100%;
  height: auto;

}

.single-article {
  padding-top: var(--sp-6);
  padding-bottom: var(--sp-6);
}

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

.single-article__eyebrow {
  font-size: 15px;
  line-height: var(--lh-caption);
  margin-bottom: 0;
  font-style: italic;
}

.single-article__title {
  font-size: var(--t-h2);
  line-height: var(--lh-h2);
  font-weight: var(--fw-bold);
  color: var(--c-wine);
  margin-bottom: var(--sp-1);
}

.single-article__meta {
  display: inline-block;
  font-size: 15px;
  line-height: 22px;
  font-weight: var(--fw-medium);
  color: var(--c-wine);
  opacity: 0.8;
  margin-bottom: var(--sp-3);
}

.single-article__edicao {
  margin: 0 0 var(--sp-2);
  font-size: 15px;
  line-height: 22px;
  font-weight: var(--fw-semibold);
  color: var(--c-wine);
  opacity: 0.8;
}

.single-article__lead {
  margin: 0 0 var(--sp-4);
  font-size: var(--t-body);
  line-height: var(--lh-body);
  font-weight: var(--fw-semibold);
  color: var(--c-wine);
}

.single-article__content {
  font-size: var(--t-body);
  line-height: var(--lh-body);
  color: var(--c-wine);
}

.single-article__content p {
  margin-bottom: var(--sp-4);
}

.single-article__content h2,
.single-article__content h3 {
  color: var(--c-wine);
  font-weight: var(--fw-bold);
  margin-top: var(--sp-5);
  margin-bottom: var(--sp-2);
}

.single-article__content blockquote {
  border-left: 3px solid var(--c-gold);
  padding-left: var(--sp-3);
  margin: var(--sp-4) 0;
  font-style: italic;
  font-size: var(--t-quote);
  line-height: var(--lh-quote);
}

.single-article__nav {
  margin-top: var(--sp-6);
}

.single-article__nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.single-article__nav-category {
  font-size: 15px;
  color: var(--c-wine);
  text-decoration: none;
  transition: color var(--t-fast);
  font-style: italic;
}

.single-article__nav-category:hover {
  color: var(--c-terracotta);
}

.single-article__nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.single-article__nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 16px;
  border-radius: var(--r-pill);
  background: var(--c-sand);
  color: var(--c-wine);
  font-size: 15px;
  font-weight: var(--fw-semibold);
  line-height: 1;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(87, 51, 63, 0.18);
  transition: background-color var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
}

.single-article__nav-link:hover {
  background: var(--c-terracotta);
  color: var(--c-sand);
  box-shadow: none;
}

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

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

.testimonials .container {
  position: relative;
}

.testimonials__title {
  position: relative;
  z-index: 1;
  margin-bottom: var(--sp-4);
}

.testimonials__carousel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--sp-3);
}

/* Um único depoimento: sem setas, card em largura cheia */
.testimonials__carousel:has(.quote-card:only-child) .testimonials__arrow {
  display: none;
}

.testimonials__grid > .quote-card:only-child {
  flex-basis: 100%;
}

.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;
}

.testimonials__grid .quote-card {
  flex: 0 0 calc((100% - var(--sp-4)) / 2);
  min-width: 0;
  margin: 0;
  scroll-snap-align: start;
}

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

.quote-card blockquote::after {
  content: "\201D";
  font-style: normal;
}

.quote-card blockquote::before {
  content: "\201C";
  display: block;
  margin: 0 0 2px;
  font-size: var(--t-quote-mark);
  line-height: var(--lh-quote-mark);
  font-weight: var(--fw-bold);
  color: var(--c-gold);
  font-style: normal;
}

.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-semibold);
  color: var(--c-sand);
}

.testimonials__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background: rgba(231, 223, 206, 0.22);
  color: var(--c-sand);
  transition: background 0.15s ease, opacity 0.15s ease;
}

.testimonials__arrow svg {
  width: 18px;
  height: 18px;
}

.testimonials__arrow:hover:not(:disabled) {
  background: rgba(231, 223, 206, 0.38);
}

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

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

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

.newsletter {
  background: var(--c-wine);
  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 {
  margin-top: var(--sp-4);
  width: 100%;
}

.newsletter-form form .fields,
.newsletter-form .wpcf7-form .fields {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  width: 100%;
  position: relative;
}
.wpcf7-not-valid-tip {
    position: absolute;
    color: var(--c-sand);
    font-size: 14px;
    padding-left: var(--sp-2);
}
.newsletter-form .wpcf7-form-control-wrap {
  flex: 1 1 auto;
  display: block;
}

.newsletter-form__input {
  width: 100%;
  height: 60px;
  padding: 0 var(--sp-3);
  border: none;
  outline: 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);
  box-sizing: border-box;
}

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

.newsletter-form__submit {
  width: 300px;
  max-width: 100%;
  height: 60px;
  min-height: 60px;
  padding: 0 var(--sp-3);
  border: none;
  outline: none;
  border-radius: var(--r-pill);
  background: var(--c-gold);
  color: var(--c-wine);
  font-family: var(--font-base);
  font-size: var(--t-body);
  font-weight: var(--fw-medium);
  flex: 0 0 300px;
  cursor: pointer;
  box-sizing: border-box;
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.newsletter-form__submit:hover,
.newsletter-form__submit:active {
  transform: scale(0.97);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
}

.section--wine .newsletter-form__submit {
  background: var(--c-terracotta);
  color: var(--c-sand);
}

.newsletter-form .wpcf7-spinner {
  position: absolute;
  right: -30px;
  margin: 0;
}

.newsletter-form .wpcf7-response-output {
  margin: var(--sp-5) 0 0 !important;
  padding: 10px 15px !important;
  border-radius: var(--r-sm);
  font-size: 15px;
  color: var(--c-sand);
  border: none !important;
}

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

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

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

.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;
}

/* FAQ — Variante Sand */
.faq--sand {
  background: var(--c-sand);
  color: var(--c-wine);
}

.faq--sand .faq__item {
  border-bottom: 1px solid rgba(87, 51, 63, 0.2);
}

/* FAQ — Variante Wine */
.faq--wine {
  background: var(--c-wine);
  color: var(--c-sand);
}

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

.site-footer {
  background: var(--c-sand);
}

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

.site-footer__brand {
  display: block;
}

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

.site-footer__mid {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: var(--sp-7);
}

.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: 37px;
  height: 37px;
  margin-top: -3px;
}

.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);
}

/* =========================================================
   Contato flutuante + popup
   ========================================================= */

.contact-widget {
  position: fixed;
  right: var(--sp-3);
  bottom: var(--sp-3);
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--sp-2);
}

.contact-fab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--r-full);
  background: var(--c-terracotta);
  color: var(--c-white);
  box-shadow: var(--shadow-lg);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.contact-fab:hover {
  transform: scale(0.97);
}

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

/* .contact-fab svg {
  width: 28px;
  height: 28px;
  display: block;
} */

.contact-modal {
  width: min(calc(100vw - 48px), 420px);
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal__dialog {
  max-height: min(70vh, 560px);
  overflow: auto;
  padding: var(--sp-3) var(--sp-3) var(--sp-1);
  border-radius: var(--r-lg);
  background: var(--c-white);
  box-shadow: var(--shadow-lg);
}

.contact-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-2);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid rgba(112, 112, 112, 0.25);
}

.contact-modal__title {
  font-size: var(--t-h4);
  line-height: var(--lh-h4);
  font-weight: var(--fw-bold);
  color: #1a1a1a;
}

.contact-modal__title em {
  font-style: italic;
  color: var(--c-terracotta);
}

.contact-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--r-full);
  border: 1px solid rgba(112, 112, 112, 0.35);
  color: #1a1a1a;
}

.contact-modal__close svg {
  width: 18px;
  height: 18px;
}

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

.contact-modal__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-modal__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(112, 112, 112, 0.2);
  color: inherit;
}

.contact-modal__item:last-child {
  border-bottom: none;
}

.contact-modal__item:hover .contact-modal__copy strong {
  text-decoration: underline;
}

.contact-modal__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--r-full);
  color: #1a1a1a;
}

.contact-modal__icon svg {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
  overflow: visible;
}

.contact-modal__icon--calendar {
  background: var(--c-gold);
  color: var(--c-wine);
}

.contact-modal__icon--whatsapp {
  background: var(--c-olive);
  color: var(--c-sand);
}

.contact-modal__icon--email {
  background: var(--c-sand);
  color: var(--c-wine);
}

.contact-modal__icon--linkedin {
  background: var(--c-wine);
  color: var(--c-sand);
}

.contact-modal__icon--instagram {
  background: var(--c-terracotta);
  color: var(--c-sand);
}

.contact-modal__copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.contact-modal__copy strong {
  font-size: var(--t-caption);
  line-height: var(--lh-caption);
  font-weight: var(--fw-bold);
  color: #1a1a1a;
}

.contact-modal__copy span {
  font-size: 15px;
  line-height: 22px;
  font-weight: var(--fw-regular);
  color: rgba(26, 26, 26, 0.65);
}

.contact-modal__arrow {
  display: flex;
  color: rgba(26, 26, 26, 0.55);
}

.contact-modal__arrow svg {
  width: 14px;
  height: 14px;
}

/* =========================================================
   Home Page — Componentes específicos
   ========================================================= */

/* Hero Home */
.hero-home {
  position: relative;
  overflow: hidden;
  background-color: var(--c-olive);
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero-home__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-home__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center left;
}

.hero-home__container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  padding-block: var(--sp-6);
}

.hero-home__content {
  max-width: 604px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-4);
}

.hero-home__title {
  font-size: 32px;
  line-height: 44px;
  font-weight: 700;
  font-style: normal;
  color: var(--c-sand);
}

.hero-home__cta {
  background: var(--c-terracotta);
  color: var(--c-sand);
  box-shadow: var(--shadow-sm);
}

/* Nosso propósito */
.section--proposito {
  position: relative;
  overflow: hidden;
  background: var(--c-sand);
  padding-block: var(--sp-7);
}

.proposito__title {
  position: relative;
  z-index: 1;
  font-size: var(--t-h3);
  line-height: var(--lh-h3);
  font-weight: var(--fw-bold);
  color: var(--c-terracotta);
  margin-bottom: var(--sp-2);
}

.proposito__lead {
  position: relative;
  z-index: 1;
  font-size: var(--t-h4);
  line-height: var(--lh-body-lg);
  font-style: italic;
  color: var(--c-wine);
  margin-bottom: var(--sp-3);
}

.proposito__lead strong {
  font-weight: var(--fw-bold);
  font-style: normal;
}

.proposito__body {
  font-size: var(--t-body);
  line-height: var(--lh-body);
  color: var(--c-wine);
}

/* Como podemos caminhar juntos (Caminhos) */
.section--caminhos {
  padding-block: var(--sp-7);
}

.caminhos-page__eyebrow {
  position: relative;
  z-index: 1;
  font-size: var(--t-eyebrow);
  line-height: var(--lh-eyebrow);
  font-style: italic;
  font-weight: var(--fw-medium);
  letter-spacing: 0.05em;
  margin-bottom: var(--sp-2);
}

.section--caminhos .section__title {
  margin-bottom: var(--sp-2);
}

.section__intro {
  font-size: var(--t-body);
  line-height: var(--lh-body);
  color: var(--c-sand);
  margin-bottom: var(--sp-6);
  max-width: 900px;
}

.section__intro strong {
  font-weight: var(--fw-bold);
  color: var(--c-terracotta);
}

/* .caminho-card__desc strong {
  font-weight: var(--fw-bold);
} */
/*
.caminho-card--gold .caminho-card__desc strong {
  color: var(--c-terracotta);
} */

.caminhos-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.caminho-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.caminho-card__media {
  width: 100%;
  height: 100%;
  min-height: 300px;
  overflow: hidden;
  height: 460px;
}

.caminho-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.caminho-card__content {
  padding: var(--sp-4) var(--sp-5);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.caminho-card__badge {
  font-size: 36px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
}

.caminho-card__title {
  font-size: 24px;
  line-height: 32px;
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-2);
}

.caminho-card__desc {
  font-size: 17px;
  line-height: 26px;
  font-weight: var(--fw-medium);
  margin-bottom: var(--sp-3);
}

.caminho-card__cta {
  margin-top: auto;
}

/* Cores específicas dos cards de caminhos */
.caminho-card--light {
  background: var(--c-sand);
  color: var(--c-wine);
}

.caminho-card--light .caminho-card__badge {
  color: var(--c-wine);
}

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

.caminho-card--olive .caminho-card__badge {
  color: var(--c-sand);
}

.caminho-card--gold {
  background: var(--c-gold);
  color: var(--c-wine);
}

.caminho-card--gold .caminho-card__badge {
  color: var(--c-wine);
}

.caminho-card--salmon {
  background: #C05753;
  color: var(--c-sand);
}

.caminho-card--salmon .caminho-card__badge {
  color: var(--c-sand);
}

.caminho-card--salmon .btn--terracotta {
  background: var(--c-wine);
  color: var(--c-sand);
}

/* Newsletters / Artigos / Mídia */
.section--artigos,
.section--midia {
  padding-block: var(--sp-6);
}

.section__subtitle {
  font-size: var(--t-body-lg);
  line-height: var(--lh-body-lg);
  font-style: normal;
  font-weight: var(--fw-medium);
  color: var(--c-wine);
  margin-top: calc(-1 * var(--sp-1));
  margin-bottom: var(--sp-4);
}

.artigos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}

.artigo-card {
  background: var(--c-sand);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch;
  min-height: 240px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.artigo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.artigo-card__media {
  flex: 0 0 42%;
  width: 42%;
  max-width: 42%;
  align-self: stretch;
  min-height: 240px;
  overflow: hidden;
}

.artigo-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.artigo-card__body {
  flex: 1 1 auto;
  padding: var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  min-width: 0;
  background: var(--c-sand);
}

.artigo-card__title {
  font-size: 20px;
  line-height: 28px;
  font-weight: var(--fw-bold);
  color: var(--c-wine);
}

.artigo-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast);
}

.artigo-card__title a:hover {
  color: var(--c-wine);
  opacity: 0.85;
}

.artigo-card__edicao {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: var(--fw-semibold);
  color: var(--c-wine);
  opacity: 0.75;
}

.artigo-card__desc {
  font-size: 16px;
  line-height: 24px;
  font-weight: var(--fw-medium);
  color: var(--c-wine);
}

.artigo-card__meta {
  font-size: 13px;
  line-height: 18px;
  font-weight: var(--fw-medium);
  color: var(--c-wine);
  margin-top: auto;
  padding-top: var(--sp-2);
}

/* =========================================================
   Página de Newsletters e Artigos (/newsletters/)
   ========================================================= */

.section--newsletters {
  padding-top: var(--sp-6);
  padding-bottom: var(--sp-6);
}
.section--newsletters .container {
  max-width: 800px;
}
.newsletters-page__header {
  margin-bottom: var(--sp-5);
  text-align: left;
}

.newsletters-page__title {
  font-size: var(--t-h1);
  line-height: var(--lh-h1);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  color: var(--c-sand);
  margin: 0 0 var(--sp-2);
}

.newsletters-page__subtitle {
  font-size: var(--t-body);
  line-height: var(--lh-body);
  font-weight: var(--fw-medium);
  font-style: normal;
  color: var(--c-sand);
  margin: 0 0 var(--sp-4);
}

.newsletters-search {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-2);
  max-width: 420px;
}

.newsletters-search__label {
  font-size: var(--t-body);
  line-height: var(--lh-body);
  font-weight: var(--fw-medium);
  color: var(--c-sand);
}

.newsletters-search__field {
  position: relative;
  width: 100%;
}

.newsletters-search__input {
  width: 100%;
  min-height: 56px;
  padding: 0 56px 0 var(--sp-4);
  border: none;
  border-radius: var(--r-pill);
  background: var(--c-sand);
  color: var(--c-wine);
  font-family: var(--font-base);
  font-size: var(--t-body);
  line-height: var(--lh-body);
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.newsletters-search__input::-webkit-search-decoration,
.newsletters-search__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.newsletters-search__input::placeholder {
  color: var(--c-wine);
  opacity: 0.85;
}

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

.newsletters-search__submit {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: var(--r-full);
  background: transparent;
  color: var(--c-wine);
  cursor: pointer;
}

.newsletters-search__submit svg {
  width: 22px;
  height: 22px;
}

.newsletters-search__submit:hover {
  opacity: 0.8;
}

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

.newsletters-page__empty {
  color: var(--c-sand);
  margin-top: var(--sp-4);
}

.newsletters-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  max-width: 800px;
  margin-inline: auto;
}

.artigo-card--full {
  width: 100%;
  border-radius: var(--r-lg);
  min-height: 260px;
  max-height: 300px;
  background: var(--c-sand);
}

.artigo-card--full .artigo-card__media {
  flex: 0 0 28%;
  width: 28%;
  max-width: 28%;
  min-height: 260px;
  height: 300px;
  max-height: 300px;
}

.artigo-card--full .artigo-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.artigo-card--full .artigo-card__body {
  padding: var(--sp-4) var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.artigo-card--full .artigo-card__title {
  font-size: 22px;
  line-height: 30px;
  font-weight: var(--fw-bold);
  color: var(--c-wine);
}

.artigo-card--full .artigo-card__desc {
  font-size: 16px;
  line-height: 24px;
  font-weight: var(--fw-medium);
  color: var(--c-wine);
  margin-top: 4px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.artigo-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(87, 51, 63, 0.22);
  width: 100%;
}

.artigo-card__plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--r-pill);
  background-color: var(--c-terracotta);
  color: var(--c-sand);
  transition: transform 0.15s ease, background-color 0.15s ease;
  flex-shrink: 0;
}

.artigo-card__plus svg {
  width: 16px;
  height: 16px;
}

.artigo-card__plus:hover {
  transform: scale(1.1);
  background-color: var(--c-wine);
}

/* Página Mídia */
.midia-page__title {
  text-align: left;
}

.midia-page__veiculo {
  font-size: 16px;
  line-height: 22px;
  font-weight: var(--fw-bold);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.midia-page__cta {
  min-height: 44px;
  padding: 0 var(--sp-3);
  font-size: 15px;
  line-height: 1.2;
  flex-shrink: 0;
  white-space: nowrap;
}

.midia-page .artigo-card__footer {
  gap: var(--sp-2);
  flex-wrap: wrap;
  align-items: center;
}

.newsletters-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
}

.newsletters-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--r-pill);
  background: var(--c-sand);
  color: var(--c-wine);
  font-weight: var(--fw-semibold);
  font-size: 15px;
  text-decoration: none;
  transition: all var(--t-fast);
}

.newsletters-pagination .page-numbers.current,
.newsletters-pagination .page-numbers:hover {
  background: var(--c-terracotta);
  color: var(--c-sand);
}

/* =========================================================
   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: 1650px) {
  .intro .grafismo {
    top: 20px;
}
.section--gold .grafismo--wine-left {
  bottom: 20px;
}
  .grafismo--gold-right {
    right: 20px;
    width: 265px;
        height: 271px;
  }

  .grafismo--gold-right.grafismo--lg {
    width: 265px;
    height: 271px;
  }

  .grafismo--gold-br {
    width: 265px;
    height: 271px;
    right: 285px;
    bottom: 20px;
  }

  .grafismo--wine-left {
    left: 20px;
    width: 265px;
    height: 271px;
  }

  .grafismo--gold-left {
    left: 20px;
    width: 265px;
    height: 271px;
    bottom: 20px;
  }
}
@media (max-width: 1550px) {
  .section--gold .grafismo--wine-left {
    bottom: 10px;
  }
  .intro .grafismo {
    top: 10px;
}
  .grafismo--gold-right {
    right: 10px;
    width: 191px;
    height: 202px;
  }

  .grafismo--gold-right.grafismo--lg {
    width: 191px;
    height: 202px;
  }

  .grafismo--gold-br {
    width: 191px;
    height: 202px;
    right: 210px;
    bottom: 10px;
  }

  .grafismo--wine-left {
    width: 191px;
    height: 202px;
    left: 10px;
  }

  .grafismo--gold-left {
    width: 191px;
    height: 202px;
    left: 10px;
    bottom: 10px;
  }
}

/* ---------------------------------------------------------
   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: 1250px) {
    .grafismo--gold-right,
    .grafismo--gold-right.grafismo--lg,
    .grafismo--gold-br,
    .grafismo--wine-left,
    .grafismo--gold-left {
      display: none;
    }
   }

@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, 600px);
    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;
  }
  .section--gold .grafismo--wine-left {
    display: none;
  }

  /* -------- 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, .grafismo--gold-left {
    top: 16px;
    display: none;
  }

  /* -------- 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);
  } */
.container--narrow {
  padding: 0 20px;
}

  /* -------- 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);
    padding-top: 0;
  }

  .parece-que > :first-child {
    min-height: 0;
  }

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

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

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

  /* -------- 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: center;
    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);
  }

  .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-2);
  }

  .hero__cta,
  .section__cta,
  .parece-que__actions .btn {
    width: 93%;
    max-width: 420px;
    min-height: 44px;
    height: 44px;
    margin-left: auto;
    margin-right: auto;
    display: inline-flex;
  }
  .newsletter-form__input, .newsletter-form__submit {
    width: 100%;
  }
  .date-card {
    font-size: 18px;
    padding: 0 var(--sp-3);
    margin-bottom: 0;
    height: auto;
    min-height: 44px;
  }

  .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;
  }

  /* Talks */
  .edicoes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .edicoes-carousel__track .edicao-card {
    flex-basis: calc((100% - var(--sp-4)) / 2);
  }

  /* Home — Caminhos e Artigos Mobile */
  .hero-home {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .hero-home__media {
    position: relative;
    inset: auto;
    height: 280px;
  }

  .hero-home__bg {
    object-position: left top;
  }

  .hero-home__container {
    justify-content: center;
    padding-block: var(--sp-4) var(--sp-5);
    background-color: var(--c-olive);
  }

  .hero-home__content {
    max-width: 100%;
    align-items: center;
    gap: var(--sp-3);
  }

  .hero-home__title {
    font-size: 22px;
    line-height: 30px;
  }

  .hero-home__cta {
    width: 100%;
    max-width: 320px;
  }

  .caminho-card {
    grid-template-columns: 1fr;
  }
  .caminho-card__badge{
    font-size: 28px;
    line-height: 32px;
  }
  .caminho-card__title {
    font-size: 20px;
    line-height: 26px;
  }

  .caminho-card__media {
    min-height: 220px;
    max-height: 280px;
  }

  .caminho-card__content {
    padding: var(--sp-3) var(--sp-3) var(--sp-4);
  }

  .caminho-card__cta {
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
  }

  .artigos-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
  }

  .artigo-card,
  .artigo-card--full {
    flex-direction: column !important;
    min-height: 0;
    max-height: none !important;
  }

  .artigo-card__media,
  .artigo-card--full .artigo-card__media {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 220px !important;
    height: 220px !important;
    max-height: none !important;
  }

  .artigo-card--full .artigo-card__body {
    padding: var(--sp-3) var(--sp-4);
  }

  .section--newsletters {
    padding-top: var(--sp-4);
    padding-bottom: var(--sp-5);
  }

  .newsletters-search {
    max-width: none;
    width: 100%;
  }

  .newsletters-search__input {
    min-height: 52px;
  }

  .newsletters-list {
    gap: var(--sp-3);
  }

  /* -------- Depoimentos: 1 por visualização -------- */

  .testimonials__carousel {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: var(--sp-2);
  }

  .testimonials__grid .quote-card {
    flex: 0 0 100%;
  }

  .testimonials__arrow {
    width: 36px;
    height: 36px;
  }

  .testimonials__arrow svg {
    width: 14px;
    height: 14px;
  }

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

  .newsletter-form form .fields,
  .newsletter-form .wpcf7-form .fields {
    flex-direction: column;
    gap: var(--sp-2);
    align-items: center;
  }

  /* .newsletter-form .wpcf7-form-control-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
  } */

  .newsletter-form__input,
  .newsletter-form__submit {
    text-align: center;
  }

  /* -------- 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: 200px;
  }

  .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;
  }

  .contact-widget {
    right: var(--sp-2);
    bottom: var(--sp-2);
    gap: 10px;
  }

  .contact-fab {
    width: 56px;
    height: 56px;
  }

  .contact-modal {
    width: min(calc(100vw - 32px), 340px);
  }

  .contact-modal__dialog {
    max-height: none;
    overflow: visible;
    padding: 12px 12px 4px;
    border-radius: var(--r-md);
  }

  .contact-modal__header {
    gap: 8px;
    padding-bottom: 8px;
  }

  .contact-modal__title {
    font-size: 17px;
    line-height: 22px;
  }

  .contact-modal__close {
    width: 28px;
    height: 28px;
  }

  .contact-modal__close svg {
    width: 13px;
    height: 13px;
  }

  .contact-modal__item {
    gap: 8px;
    padding: 7px 0;
  }

  .contact-modal__icon {
    width: 32px;
    height: 32px;
  }

  .contact-modal__icon svg {
    width: 15px;
    height: 15px;
  }

  .contact-modal__copy strong {
    font-size: 14px;
    line-height: 18px;
  }

  .contact-modal__copy span {
    font-size: 11px;
    line-height: 15px;
  }

  .contact-modal__arrow svg {
    width: 11px;
    height: 11px;
  }
  .wpcf7-not-valid-tip {
    position: relative;
  }
  .proximo-talk__media {
      padding: 24px 24px 0;
  }
  .proximo-talk__card-body {
    padding: 0 24px 24px;
  }
}

/* ---------------------------------------------------------
   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);
  } */

  .artigo-card,
  .artigo-card--full {
    flex-direction: column !important;
    min-height: 0;
    max-height: none !important;
  }

  .artigo-card__media,
  .artigo-card--full .artigo-card__media {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 200px !important;
    height: 200px !important;
    max-height: none !important;
  }

  .artigo-card--full .artigo-card__body {
    padding: 16px 18px 20px;
  }

  .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: none;
  }

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

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

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

  .edicoes-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
  }

  .temas-columns {
    grid-template-columns: 1fr;
  }

  .edicoes-carousel__track .edicao-card {
    flex-basis: 100%;
  }

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

  .proximo-talk__card {
    max-width: 420px;
    margin-inline: auto;
  }

  .proximo-talk__info {
    align-items: flex-start;
  }

  .proximo-talk__title {
    font-size: 28px;
    line-height: 36px;
  }

  .proximo-talk__details {
    font-size: 17px;
    gap: var(--sp-2);
  }

  .proximo-talk__cta {
    width: 100%;
    max-width: 320px;
  }

  .parece-que__photo {
    width: 200px;
  }

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

/* =========================================================
   Página 404
   ========================================================= */

.error-404__hero {
  position: relative;
  overflow: hidden;
  padding-block: var(--sp-7) var(--sp-8);
  text-align: left;
}

.error-404__grafismo {
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.95;
}

.error-404__container {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.error-404__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 var(--sp-4);
  padding: 8px 18px;
  border-radius: var(--r-pill);
  background: var(--c-gold);
  color: var(--c-wine);
  font-size: 13px;
  line-height: 1;
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.error-404__title {
  margin: 0 0 var(--sp-3);
  font-size: var(--t-h2);
  line-height: var(--lh-h2);
  font-weight: var(--fw-bold);
  color: var(--c-sand);
  max-width: 560px;
}

.error-404__subtitle {
  margin: 0;
  max-width: 560px;
  font-size: var(--t-body);
  line-height: var(--lh-body);
  font-weight: var(--fw-medium);
  color: var(--c-gold);
}

.error-404__cta {
  padding-block: var(--sp-6) var(--sp-7);
  text-align: left;
}

.error-404__cta-title {
  margin: 0 0 var(--sp-4);
  font-size: var(--t-h3-tight);
  line-height: var(--lh-h3-tight);
  font-weight: var(--fw-bold);
  color: var(--c-wine);
}

.error-404__btn {
  margin-bottom: var(--sp-4);
  color: var(--c-gold);
}

.error-404__btn:hover {
  color: var(--c-sand);
}

.error-404__help {
  margin: 0;
  max-width: 560px;
  font-size: var(--t-body);
  line-height: var(--lh-body);
  font-weight: var(--fw-medium);
  color: var(--c-wine);
}

.error-404__email {
  font-weight: var(--fw-bold);
  color: var(--c-wine);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.error-404__email:hover {
  opacity: 0.8;
}

@media (max-width: 767px) {
  .error-404__hero {
    padding-block: var(--sp-6) var(--sp-7);
  }

  .error-404__grafismo {
    opacity: 0.45;
    width: 180px;
    height: 190px;
  }

  .error-404__title {
    font-size: 28px;
    line-height: 36px;
  }

  .error-404__cta-title {
    font-size: 26px;
    line-height: 34px;
  }

  .error-404__btn {
    width: 100%;
  }
}

/* =========================================================
   Página Sobre / Quem Somos
   ========================================================= */

/* -------- Hero simples (só imagem, largura cheia) -------- */

.hero--simple {
  display: block;
  max-height: none;
}

.hero--simple .hero__media {
  width: 100%;
  max-height: 420px;
}

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

/* -------- Subtítulos dentro de blocos editoriais de seção -------- */

.section__body h3 {
  font-size: var(--t-h4);
  line-height: var(--lh-h4);
  font-weight: var(--fw-bold);
  margin: 0 0 var(--sp-2);
}

/* -------- Fundadora (foto + bio em duas colunas) -------- */

.founder {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: var(--sp-6);
  align-items: start;
}

.founder__photo {
  width: 100%;
  border-radius: var(--r-md);
  object-fit: cover;
}

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

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

/* Nossas Crenças — duas colunas */
.crencas-columns {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-5) var(--sp-6);
  margin-top: var(--sp-4);
}

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

.crencas-columns__col strong {
  font-weight: var(--fw-bold);
}

/* -------- Parceiros — carrossel -------- */

.partners__carousel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}

.partners__track {
  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;
}

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

.partner-card {
  flex: 0 0 calc((100% - (var(--sp-4) * 3)) / 4);
  min-width: 0;
  scroll-snap-align: start;
}

.partner-card__photo {
  aspect-ratio: 262 / 345;
  border-radius: var(--r-sm);
  background: var(--c-wine);
  overflow: hidden;
  margin-bottom: var(--sp-2);
}

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

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

.partner-card__role {
  margin-top: 4px;
  font-size: 15px;
  line-height: 22px;
  font-weight: var(--fw-medium);
  color: var(--c-wine);
}

.partners__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background: rgba(87, 51, 63, 0.15);
  color: var(--c-wine);
  transition: background 0.15s ease, opacity 0.15s ease;
}

.partners__arrow svg {
  width: 18px;
  height: 18px;
}

.partners__arrow:hover:not(:disabled) {
  background: rgba(87, 51, 63, 0.28);
}

.partners__arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

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

/* -------- Newsletter — variante Olive -------- */

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

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

/* -------- Responsivo -------- */

@media (max-width: 991px) {
  .founder {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: var(--sp-5);
  }

  .partner-card {
    flex-basis: calc((100% - var(--sp-4)) / 2);
  }

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

  .edicoes-carousel__track .edicao-card {
    flex-basis: calc((100% - var(--sp-4)) / 2);
  }
}

@media (max-width: 767px) {
  .hero--simple .hero__media {
    max-height: 260px;
  }

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

  .founder__media {
    max-width: 320px;
  }

  .crencas-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .partner-card {
    flex-basis: 100%;
  }

  .edicoes-carousel__track .edicao-card {
    flex-basis: 100%;
  }
}

/* =========================================================
   Página Depoimentos
   ========================================================= */

.depoimentos__grid {
  position: relative;
  z-index: 1;
  columns: 2;
  column-gap: var(--sp-6);
  margin-top: var(--sp-5);
}

.depoimentos__item {
  break-inside: avoid;
  margin: 0 0 var(--sp-6);
}

/* Citação em coluna: aspas grande no topo + aspas comum de fechamento no texto */
.quote-card--plain blockquote::after {
  content: "\201D";
  font-style: normal;
}

.quote-card--plain blockquote::before {
  content: "\201C";
  display: block;
  margin: 0 0 2px;
  font-size: var(--t-quote-mark);
  line-height: var(--lh-quote-mark);
  font-weight: var(--fw-bold);
  color: var(--c-gold);
}

.depoimentos__item.quote-card blockquote {
  font-size: var(--t-quote);
}

/* Bloco de mídia — vídeo do participante ou foto */
.depoimentos-media__box {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3 / 4;
  border-radius: var(--r-md);
  background: var(--c-terracotta);
  overflow: hidden;
}

.depoimentos-media__box img,
.depoimentos-media__box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.depoimentos-media__play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.2);
  color: var(--c-white);
  transition: transform 0.15s ease, background 0.15s ease;
}

.depoimentos-media__play svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
}

a.depoimentos-media__box:hover .depoimentos-media__play {
  transform: scale(1.06);
  background: rgba(255, 255, 255, 0.32);
}

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

.depoimentos-media__caption {
  margin-top: var(--sp-2);
  font-size: var(--t-caption);
  line-height: var(--lh-caption);
  font-weight: var(--fw-semibold);
  color: var(--c-sand);
}

@media (max-width: 767px) {
  .depoimentos__grid {
    columns: 1;
  }
}

/* =========================================================
   Página Parceiros
   ========================================================= */

.parceiros-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  margin-top: var(--sp-5);
}

.parceiro-card {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: var(--sp-5);
  align-items: start;
}

.parceiro-card__media {
  aspect-ratio: 240 / 300;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-gray-stroke);
}

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

.parceiro-card__body {
  display: flex;
  flex-direction: column;
}

.parceiro-card__name {
  font-size: var(--t-h4);
  line-height: var(--lh-h4);
  font-weight: var(--fw-bold);
  color: var(--c-sand);
}

.parceiro-card__role {
  font-weight: var(--fw-bold);
  color: var(--c-sand);
  margin-bottom: var(--sp-2);
}

.parceiro-card__bio {
  font-size: var(--t-body);
  line-height: var(--lh-body);
  color: var(--c-sand);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.parceiro-card.is-expanded .parceiro-card__bio {
  -webkit-line-clamp: unset;
  overflow: visible;
}

.parceiro-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-3);
  padding-top: var(--sp-2);
  border-top: 1px solid rgba(231, 223, 206, 0.3);
}

.parceiro-card__toggle {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 15px;
  line-height: 1.4;
  color: var(--c-sand);
}

.parceiro-card__toggle-label {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.parceiro-card__plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: var(--r-pill);
  background-color: var(--c-terracotta);
  color: var(--c-sand);
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.parceiro-card__plus svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.parceiro-card__toggle:hover .parceiro-card__plus {
  transform: scale(1.1);
  background-color: var(--c-wine);
}

.parceiro-card.is-expanded .parceiro-card__plus svg {
  transform: rotate(45deg);
}

.parceiro-card__toggle:focus-visible {
  outline: 3px solid var(--c-sand);
  outline-offset: 3px;
}

@media (max-width: 767px) {
  .parceiro-card {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
  }

  .parceiro-card__media {
    max-width: 240px;
  }
}

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

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

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

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

  .btn:hover,
  .btn:active,
  .contact-fab:hover {
    transform: none;
  }
}