/* ===================== FONTES ===================== */
@font-face {
  font-family: 'Helvetica Now Display';
  src: url('../fonts/HelveticaNowDisplay-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Now Display';
  src: url('../fonts/HelveticaNowDisplay-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Now Display';
  src: url('../fonts/HelveticaNowDisplay-Thin.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Now Display';
  src: url('../fonts/HelveticaNowDisplay-ExtraLight.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Now Display';
  src: url('../fonts/HelveticaNowDisplay-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ===================== BASE ===================== */
:root {
  --brown: #42190C;
  --salmon: #EA7B5B;
  --grid-blue: #B9DAE1;
  --muted: #B1CED7;
  --maxw: 1180px;
}

/* Desktop: a seção 3 usa a imagem 2 (cards embutidos); os cards em HTML só no mobile */
.story__content { display: none; }

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Helvetica Now Display', 'Helvetica Neue', Arial, sans-serif;
  color: var(--brown);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

/* ===================== HERO ===================== */
.hero { position: relative; }

/* Barra de topo */
.topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--brown);
  color: var(--salmon);
  padding: 12px 16px;
  text-align: center;
}
.topbar__icon img { height: 26px; width: auto; display: block; }
.topbar__text {
  min-width: 0;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--salmon);
  letter-spacing: 0.1px;
}
.topbar__text strong { font-weight: 700; }

/* Palco — trava a proporção do svg (1920x1130) p/ alinhar cards ao grid */
.hero__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 1130;
  overflow: hidden;
  background: var(--grid-blue);
}

/* Fundo estático */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg picture { display: block; width: 100%; height: 100%; }

/* Cards do hero (só no mobile, sobre o svg 5) */
.hero__cards { display: none; }
.hero__bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

/* ===================== CARDS ===================== */
.card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  padding: 1.35% 1.45%;
}
.card p {
  font-size: clamp(12px, 1.28vw, 25px);
  line-height: 1.32;
  font-weight: 400;
}
.card p strong { font-weight: 700; }

/* Card salmão — alinhado ao rect x1103 y553 w558 h190 do svg */
.card--salmon {
  background: var(--salmon);
  color: var(--brown);
  left: 57.448%;
  top: 48.938%;
  width: 29.063%;
  height: 16.814%;
}

/* Card cinza — alinhado ao rect x361 y746 w369 h188 do svg */
.card--muted {
  background: var(--muted);
  color: var(--brown);
  left: 18.802%;
  top: 66.018%;
  width: 19.219%;
  height: 16.637%;
}

/* ===================== SEÇÃO 2 — VSL / CTA ===================== */
.promo {
  background: #fff;
  padding: clamp(40px, 5vw, 80px) clamp(20px, 5vw, 80px) clamp(48px, 6vw, 96px);
}

/* Cabeçalho: logo + tagline centralizados */
.promo__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 46px);
  flex-wrap: wrap;
}
.promo__logo {
  height: clamp(42px, 3.6vw, 58px);
  width: auto;
  display: block;
}
.promo__tagline {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.45;
  color: var(--brown);
}

/* Vídeo / VSL */
.promo__video {
  width: min(66%, 1180px);
  margin: clamp(28px, 4vw, 56px) auto 0;
}
.promo__video img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 50px;
}

/* Botão CTA */
.promo__cta {
  text-align: center;
  margin-top: clamp(28px, 4vw, 52px);
}
.btn {
  display: inline-block;
  background: var(--salmon);
  color: var(--brown);
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.34px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 19px 64px;
  border-radius: 999px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.btn:hover { background: #e26a48; transform: translateY(-1px); }

/* ===================== SEÇÃO 3 — HISTÓRIA ===================== */
.story {
  position: relative;
  background: var(--salmon);   /* faixa que o card azul sobrepõe e emenda com a seção 4 */
  padding-bottom: 4.6vw;
}

/* Barra superior */
.story__bar {
  background: var(--brown);
  color: #C7B3AA;
  text-align: center;
  padding: clamp(16px, 1.6vw, 26px) 16px;
  font-family: 'Helvetica Now Display', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 300;
  letter-spacing: 0;
}
.story__bar-inner {
  display: block;
  max-width: var(--maxw);
  margin-inline: auto;
}
.story__bar strong { color: var(--salmon); font-weight: 700; }

/* Palco com a foto (full-bleed) + cards em HTML por cima */
.story__stage {
  position: relative;
  width: 100%;
}
.story__stage picture { display: block; width: 100%; }
.story__photo { width: 100%; display: block; }

/* Quadradinho salmão de destaque */
.story__accent {
  position: absolute;
  left: 49.5%;
  top: 30.3%;
  width: 4.3%;
  aspect-ratio: 1 / 1;
  background: var(--salmon);
}

/* Cards */
.story__card { position: absolute; }

.story__card--salmon {
  left: 54%;
  top: 39.7%;
  width: 31.7%;
  background: var(--salmon);
  color: #fff;
  padding: 2.1% 2.3%;
}
.story__card--salmon p {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(11px, 1.02vw, 15px);
  line-height: 1.5;
}
.story__card--salmon p + p { margin-top: 1em; }

.story__card--blue {
  left: 18%;
  top: 78.2%;
  width: 35.8%;
  background: var(--grid-blue);
  color: var(--brown);
  padding: 2.4% 2.6%;
}
.story__card--blue p {
  font-family: 'Helvetica Now Display', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  font-size: clamp(26px, 3.35vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

/* ===================== SEÇÃO 4 — BENEFÍCIOS ===================== */
.benefits {
  background: var(--salmon);
  color: var(--brown);
  padding: clamp(32px, 4vw, 72px) clamp(20px, 5vw, 40px) clamp(48px, 6vw, 96px);
}
.benefits__inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.benefits__title {
  font-family: 'Helvetica Now Display', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  font-size: clamp(26px, 3.1vw, 46px);
  line-height: 1.28;
  letter-spacing: -0.01em;
  margin-bottom: clamp(20px, 2.6vw, 42px);
}

.benefits__list { list-style: none; }

.benefit {
  display: flex;
  align-items: flex-start;
  gap: clamp(16px, 1.8vw, 30px);
  padding: 32px 0;
  border-bottom: 1px solid rgba(66, 25, 12, 0.4);
}
.benefit:last-child { border-bottom: 0; }

.benefit__icon {
  flex: 0 0 auto;
  width: 72px;
  display: flex;
  justify-content: center;
  padding-top: 2px;
}
.benefit__icon img {
  width: 100%;
  display: block;
}

.benefit__text {
  flex: 1 1 auto;
  min-width: 0;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  color: var(--brown);
}
.benefit__lead {
  font-weight: 700;
  font-size: clamp(15px, 1.45vw, 21px);
  line-height: 1.3;
  margin-bottom: 3px;
}
.benefit__desc {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}
.benefit__strong { font-weight: 500; }  /* itens 2–6: título no mesmo peso do texto */

/* ===================== MARQUEE ===================== */
.marquee {
  overflow: hidden;
  background: #fff;
  padding: clamp(28px, 3.5vw, 52px) 0;   /* simétrico: mesmo espaço acima e abaixo do texto */
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
.marquee__group {
  display: flex;
  flex: 0 0 auto;
}
.marquee__group > span {
  font-family: 'Helvetica Now Display', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  font-size: clamp(28px, 3.4vw, 52px);
  line-height: 1.1;
  color: var(--brown);
  white-space: nowrap;
}
/* separador uniforme entre as frases */
.marquee__group > span::after {
  content: "•";
  color: var(--salmon);
  padding: 0 0.6em;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ===================== SEÇÃO 6 — CADASTRO ===================== */
.signup {
  background: #fff;
  color: var(--brown);
  /* padding-top 0: o espaço acima do título vem do padding do marquee (fica simétrico) */
  padding: 0 clamp(20px, 5vw, 40px) clamp(48px, 6vw, 104px);
}
.signup__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: clamp(32px, 6vw, 96px);
  align-items: flex-start;
  flex-wrap: wrap;
}

/* Coluna esquerda — intro */
.signup__intro { flex: 1 1 320px; max-width: 430px; }
.signup__title {
  font-family: 'Helvetica Now Display', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  font-size: clamp(30px, 3.4vw, 50px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: clamp(20px, 2.4vw, 34px);
}
.signup__title span { color: var(--salmon); }
.signup__intro p {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.65;
  color: var(--brown);
}
.signup__intro p + p { margin-top: 1.4em; }

/* Coluna direita — formulário */
.signup__form { flex: 1 1 480px; max-width: 591px; }

.signup__input {
  width: 100%;
  height: 54px;
  background: transparent;
  border: 1.5px solid var(--brown);
  border-radius: 999px;
  padding: 0 30px;
  margin-bottom: 16px;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brown);
  outline: none;
}
.signup__input::placeholder { color: var(--brown); opacity: 1; }
.signup__input:focus { border-color: var(--salmon); }
.signup__input--center { text-align: center; }

/* Honeypot anti-spam (escondido) */
.signup__hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Estado como select, sem seta */
select.signup__input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: none;
  cursor: pointer;
  text-align-last: center;
}
select.signup__input:invalid { color: var(--brown); }
select.signup__input option { text-transform: none; color: var(--brown); }

.signup__row { display: flex; gap: 12px; }
.signup__row .signup__input { flex: 1 1 auto; margin-bottom: 16px; }
.signup__row .signup__input--uf { flex: 0 0 32%; }

/* Termos + checkbox */
.signup__terms {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 10px 0 26px;
  cursor: pointer;
}
.signup__check {
  flex: 0 0 auto;
  appearance: none;
  -webkit-appearance: none;
  width: 26px;
  height: 26px;
  border: 1.5px solid var(--brown);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}
.signup__check:checked { background: var(--salmon); border-color: var(--salmon); }
.signup__terms span {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(9px, 0.8vw, 11px);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.4;
}

.signup__actions { text-align: right; }
.signup__actions .btn { border: 0; cursor: pointer; }

/* ===================== PÁGINA DE OBRIGADO ===================== */
.thanks {
  min-height: 100vh;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
}
.thanks__inner { max-width: 620px; }
.thanks__logo { height: 54px; width: auto; margin: 0 auto clamp(28px, 4vw, 48px); display: block; }
.thanks__title {
  font-family: 'Helvetica Now Display', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--brown);
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.05;
  margin-bottom: clamp(16px, 2vw, 26px);
}
.thanks__text {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  color: var(--brown);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
  margin-bottom: clamp(28px, 4vw, 42px);
}
.thanks__text strong { font-weight: 700; }

/* ===================== SEÇÃO 7 — RODAPÉ ===================== */
.footer {
  background: #fff;
  padding: clamp(30px, 4vw, 56px) clamp(20px, 5vw, 40px) clamp(40px, 5vw, 72px);
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}
.footer__inner { max-width: var(--maxw); margin: 0 auto; }

/* Linha 1: logo + tagline + sociais */
.footer__top {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  padding: clamp(20px, 2.4vw, 34px) 0;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}
.footer__logo { height: clamp(40px, 3vw, 52px); width: auto; display: block; flex: 0 0 auto; }
.footer__tagline {
  flex: 1 1 auto;
  max-width: 300px;
  font-size: clamp(11px, 0.85vw, 13px);
  line-height: 1.5;
  color: #5f5f5f;
}
.footer__social { display: flex; gap: 10px; margin-left: auto; flex: 0 0 auto; }
.footer__social a {
  width: 36px;
  height: 36px;
  border: 1px solid #e6e6e6;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.footer__social a:hover { border-color: #bdbdbd; background: #fafafa; }
.footer__social img { width: 17px; height: 17px; display: block; }

/* Linha 2: colunas de links + bloco da marca */
.footer__cols {
  display: flex;
  justify-content: space-between;
  gap: clamp(30px, 5vw, 60px);
  padding-top: clamp(26px, 3vw, 46px);
  flex-wrap: wrap;
}
.footer__navs { display: flex; gap: clamp(28px, 4vw, 64px); flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; }
.footer__col h3 {
  font-size: clamp(12px, 0.95vw, 14px);
  font-weight: 700;
  color: #1D1D1B;
  margin-bottom: clamp(12px, 1.4vw, 20px);
}
.footer__col a {
  font-size: clamp(11px, 0.9vw, 13px);
  color: #5f5f5f;
  text-decoration: none;
  margin-bottom: clamp(10px, 1.1vw, 15px);
  transition: color 0.2s ease;
}
.footer__col a:hover { color: var(--salmon); }

/* Bloco da marca */
.footer__brand { flex: 1 1 300px; max-width: 380px; }
.footer__wordmark {
  font-family: 'Helvetica Now Display', 'Helvetica Neue', Arial, sans-serif;
  text-transform: uppercase;
  color: var(--salmon);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 300;
  letter-spacing: 0.01em;
  margin-bottom: clamp(16px, 1.8vw, 26px);
}
.footer__wordmark em { font-style: italic; font-weight: 100; margin-left: 0.3em; }
.footer__legal p {
  font-size: clamp(10px, 0.82vw, 12px);
  line-height: 1.7;
  color: #6b6b6b;
}
.footer__legal strong { color: #2b2b2b; font-weight: 700; }

/* ===================== RESPONSIVO ===================== */

/* --- Tablet e abaixo: empilha colunas --- */
@media (max-width: 900px) {
  /* Seção 6 — cadastro */
  .signup__inner { flex-direction: column; gap: clamp(28px, 5vw, 48px); }
  .signup__intro,
  .signup__form { flex: 1 1 auto; max-width: 100%; width: 100%; }

  /* Rodapé */
  .footer__cols { flex-direction: column; gap: 40px; }
  .footer__brand { max-width: 100%; flex-basis: auto; }
}

/* --- Mobile --- */
@media (max-width: 768px) {
  /* Barra de topo — ícone em cima, texto embaixo */
  .topbar { flex-direction: column; gap: 6px; padding: 12px 16px; }
  .topbar__icon img { height: 22px; }
  .topbar__text { font-size: 13px; letter-spacing: 0; }

  /* Seção 2 — promo */
  .promo__head { flex-direction: column; gap: 16px; text-align: center; }
  .promo__tagline { max-width: 100%; }
  .promo__video { width: 100%; }
  .promo__video img { border-radius: 26px; }

  /* Seção 1 — hero mobile (svg 5 vertical + cards em HTML) */
  .hero__stage { aspect-ratio: 700 / 1000; }
  .hero__cards {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 2;
  }
  .hero__card {
    position: absolute;
    left: 10.3%;
    width: 79.4%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    padding: 3.5% 6%;
  }
  .hero__card p {
    font-family: 'Helvetica Now Display', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
    font-size: clamp(13px, 4vw, 20px);
    line-height: 1.35;
    color: var(--brown);
  }
  .hero__card--salmon p strong { font-weight: 700; }
  .hero__card--muted {
    top: 31.2%;
    height: 18.7%;
    background: var(--muted);
  }
  .hero__card--salmon {
    top: 60.6%;
    height: 18.8%;
    background: var(--salmon);
  }

  /* Seção 3 — barra */
  .story__bar { font-size: 15px; padding: 12px 14px; }

  /* Seção 3 — foto no topo, cards embaixo */
  .story { padding-bottom: 0; background: #fff; }
  .story__stage { aspect-ratio: auto; }
  .story__photo { height: 340px; object-fit: cover; object-position: 10% center; }
  .story__content {
    position: static;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px;
  }
  .story__accent { display: none; }
  .story__card { position: static; width: auto; }
  .story__card--salmon { padding: 20px; }
  .story__card--salmon p { font-size: 14px; line-height: 1.45; }
  .story__card--blue { padding: 18px 20px; }
  .story__card--blue p { font-size: 30px; line-height: 1.1; }

  /* Seção 4 — benefícios (ícone em cima, texto embaixo) */
  .benefits__title { font-size: 30px; }
  .benefit { flex-direction: column; align-items: flex-start; gap: 14px; padding: 26px 0; }
  .benefit__icon { width: 48px; justify-content: flex-start; padding-top: 0; }
  .benefit__lead { font-size: 17px; }
  .benefit__desc { font-size: 15px; line-height: 1.4; }
  .benefit__desc br { display: none; }   /* no mobile o texto quebra sozinho */

  /* Marquee */
  .marquee__group > span { font-size: 26px; }

  /* Seção 6 — cadastro */
  .signup__input { height: 52px; font-size: 12px; }
  /* Cidade e Estado: um por linha (Estado em cima) — evita o corte */
  .signup__row { flex-direction: column; gap: 0; }
  .signup__row .signup__input--uf { flex: 1 1 auto; order: -1; }
  /* alinhar à esquerda como os demais */
  .signup__input--center { text-align: left; }
  select.signup__input--center { text-align-last: left; }
  .signup__actions { text-align: center; }
  .signup__actions .btn { width: 100%; padding: 18px 24px; }

  /* Botão geral */
  .btn { padding: 17px 40px; }

  /* Rodapé */
  .footer__top { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer__social { margin-left: 0; }
  .footer__tagline { max-width: 100%; }
  .footer__navs { gap: 30px 44px; }
}

/* --- Celular pequeno --- */
@media (max-width: 420px) {
  .story__bar { font-size: 13px; }
  .benefits__title { font-size: 25px; }
  .marquee__group > span { font-size: 22px; }
  .footer__navs { flex-direction: column; gap: 26px; }
  .thanks__title { font-size: 32px; }
}
