/* =============================================================================
   GreenSign Talk Show — landing de captura
   Cores e medidas extraídas da referência (Hostinger Builder) com amostragem
   de pixel e getComputedStyle. Container do desenho original: 1224px.
   ========================================================================== */

:root {
  --verde-cta:    #00B51C;  /* botão Inscrever-se */
  --verde-cta-h:  #009B18;
  --verde-esc:    #007C3F;  /* ícones e círculos */
  --verde-acento: #00DA50;  /* traço acima dos títulos */
  --verde-neon:   #00EB5B;  /* "acesso exclusivo" */
  --verde-claro:  #BCFC8A;  /* "provas digitais?" */

  --escuro:     #00262C;
  --escuro-2:   #022C33;
  --escuro-3:   #04303A;
  --hero-esc:   #001921;
  --claro:      #F5F9FC;
  --branco:     #FFFFFF;

  --texto:      #1D1E20;
  --texto-2:    #3F4448;
  --input-bg:   #F1F1F1;
  --borda:      rgba(255, 255, 255, .09);

  --wrap:       1224px;   /* container do hero */
  --wrap-miolo: 1110px;   /* container das seções abaixo do hero (medido na referência) */
  --gut:        100px;

  --t: "Open Sans", system-ui, -apple-system, Segoe UI, sans-serif;
  --c: "DM Sans", system-ui, -apple-system, Segoe UI, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--claro);
  color: var(--texto);
  font-family: var(--c);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
ul  { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }

.wrap {
  width: min(var(--wrap-miolo), calc(100% - var(--gut) * 2));
  margin-inline: auto;
}

/* ------------------------------- HERO ------------------------------------ */

.hero {
  position: relative;
  isolation: isolate;
  background: var(--hero-esc);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}

.hero__inner {
  width: min(var(--wrap), calc(100% - var(--gut) * 2));
  margin-inline: auto;
  min-height: 793px;
  display: grid;
  grid-template-columns: 1fr 478px;
  align-items: start;
  column-gap: 30px;
}

.hero__copy {
  padding-top: 84px;
  max-width: 528px;
  position: relative;
  z-index: 2;
}

.hero__logo {
  width: 310px;
  height: auto;
  margin: 0 0 44px -6px;
}

.hero__title {
  font-family: var(--t);
  font-weight: 600;
  font-size: 48px;
  line-height: 1.3;
  color: var(--branco);
  letter-spacing: -.01em;
}
.hero__title span { color: var(--verde-claro); }

.hero__sub {
  margin-top: 32px;
  max-width: 400px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .82);
}

/* Foto da convidada — sangra para o meio do hero, cortada no rodapé.
   480x697 com recorte no topo é a caixa medida no original. */
.hero__peck {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-54%);
  width: 480px;
  height: 697px;
  object-fit: cover;
  object-position: 50% 0;
  z-index: 1;
  pointer-events: none;
}

/* ---------------------------- CARD DE CAPTURA ---------------------------- */

.card-form {
  position: relative;
  z-index: 3;
  align-self: start;
  width: 459px;
  max-width: 100%;
  margin: 24px 19px 40px 0;
  padding: 24px 30px 32px;
  background: var(--branco);
  border-radius: 4px;
  box-shadow: 0 10px 34px rgba(0, 0, 0, .12);
}

.field { margin-bottom: 17px; }

.field label,
.consent label {
  display: block;
  font-family: var(--t);
  font-size: 16px;
  font-weight: 400;
  color: var(--texto);
  margin-bottom: 6px;
}
.field label b, .consent label b { color: inherit; font-weight: 400; }

.field input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid transparent;
  border-radius: 0;
  background: var(--input-bg);
  font-family: var(--c);
  font-size: 16px;
  color: var(--texto);
  transition: border-color .15s, background .15s;
}
.field input::placeholder { color: #8C9095; }
.field input:focus-visible {
  outline: none;
  border-color: var(--verde-cta);
  background: #FAFAFA;
}
.field input[aria-invalid="true"] { border-color: #D93025; background: #FEF6F5; }

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin: 18px 0 4px;
}
.consent input {
  width: 17px;
  height: 17px;
  margin: 3px 0 0;
  accent-color: var(--verde-cta);
  flex: none;
}
.consent label {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  cursor: pointer;
}

.erro {
  display: none;
  font-size: 13px;
  color: #D93025;
  margin-top: 5px;
}
.erro[data-visivel] { display: block; }

.btn {
  display: block;
  margin: 22px auto 0;
  padding: 18px 42px;
  border: 0;
  border-radius: 999px;
  background: var(--verde-cta);
  color: var(--branco);
  font-family: var(--t);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background .15s, transform .1s;
}
.btn:hover  { background: var(--verde-cta-h); }
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 3px solid var(--verde-claro); outline-offset: 2px; }
.btn[disabled] { opacity: .6; cursor: progress; }

.form-ok { text-align: center; padding: 60px 10px; }
.form-ok img { margin: 0 auto 16px; }
.form-ok__t { font-family: var(--t); font-size: 22px; font-weight: 700; }
.form-ok__s { margin-top: 8px; color: var(--texto-2); }

/* ------------------------------- SEÇÕES ---------------------------------- */

.secao { padding: 0; }
.secao--temas   { padding: 50px 0 0; }
.secao--peck    { padding: 38px 0 0; }
.secao--motivos { padding: 44px 0 0; }
.secao--cta     { padding: 34px 0 72px; }

.traco {
  display: block;
  width: 52px;
  height: 5px;
  border-radius: 3px;
  background: var(--verde-acento);
  margin-bottom: 16px;
}

.titulo {
  font-family: var(--t);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--texto);
}

.lead {
  margin-top: 12px;
  font-size: 13.5px;
  line-height: 1.62;
  color: var(--texto-2);
}
.lead strong { color: var(--texto); font-weight: 700; }

/* --------------------------------- CHIPS --------------------------------- */

.chips {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 13px;
}

.chip {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 50px;
  padding: 9px 14px;
  background: var(--branco);
  border-radius: 9px;
  box-shadow: 0 2px 9px rgba(16, 40, 60, .055);
  font-family: var(--t);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.22;
  color: var(--texto);
}
.chip img { width: 24px; height: 24px; flex: none; }
.chip--sozinho { grid-column: 3; }

/* ---------------------------- CONVIDADA (PECK) ---------------------------- */

.peck {
  margin-top: 30px;
  padding: 24px 28px 22px;
  border-radius: 16px;
  background: linear-gradient(160deg, var(--escuro-3) 0%, var(--escuro) 55%, #011F26 100%);
  color: var(--branco);
}

.peck__kicker {
  font-family: var(--t);
  font-size: 15px;
  font-weight: 700;
  color: var(--verde-acento);
  margin-bottom: 16px;
}

.peck__grid {
  display: grid;
  grid-template-columns: 189px 224px 1fr;
  gap: 20px;
  align-items: start;
}

.peck__foto {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .16);
}

.peck__id { padding-top: 6px; }

.peck__badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 5px;
  background: var(--verde-esc);
  font-family: var(--t);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--branco);
}

.peck__nome { margin-top: 8px; font-family: var(--t); }
.peck__nome span {
  display: block;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: .04em;
  line-height: 1.1;
}
.peck__nome b {
  display: block;
  font-size: 55px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
}
.peck__nome i {
  display: inline-block;
  vertical-align: 12px;
  margin-left: 6px;
  padding: 2px 9px;
  border-radius: 5px;
  background: var(--verde-esc);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}

.peck__esp {
  margin-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
  font-size: 15.5px;
  color: rgba(255, 255, 255, .92);
}

/* Os recortes saíram do PNG original sem canal alpha; o alpha foi reconstruído a
   partir da luminância (ver _build/assets.sh), por isso assentam direto no fundo. */
.peck__assinatura { margin-top: 16px; width: 218px; height: auto; }

/* stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.stats li {
  padding: 10px 12px;
  border: 1px solid var(--borda);
  border-radius: 10px;
  background: rgba(255, 255, 255, .035);
}
.stats img { width: 21px; height: 21px; margin-bottom: 5px; opacity: .95; }
.stats b {
  display: block;
  font-family: var(--t);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}
.stats li:last-child b { font-size: 19px; letter-spacing: -.01em; }
.stats span {
  display: block;
  margin-top: 3px;
  font-size: 11.5px;
  line-height: 1.3;
  color: rgba(255, 255, 255, .72);
  text-transform: uppercase;
  letter-spacing: .02em;
}

/* bio em duas colunas */
.bio {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 30px;
}
.bio li {
  position: relative;
  padding-left: 21px;
  margin-bottom: 8px;
  font-size: 11.8px;
  line-height: 1.4;
  color: rgba(255, 255, 255, .88);
}
.bio li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1.5px solid var(--verde-acento);
  background:
    linear-gradient(45deg, transparent 42%, var(--verde-acento) 42%, var(--verde-acento) 56%, transparent 56%) no-repeat 3px 6px / 6px 3px,
    linear-gradient(-45deg, transparent 46%, var(--verde-acento) 46%, var(--verde-acento) 60%, transparent 60%) no-repeat 5px 2px / 7px 7px;
}

/* prêmios */
.premios {
  margin-top: 18px;
  padding: 10px 8px;
  border: 1px solid var(--borda);
  border-radius: 14px;
  background: rgba(0, 0, 0, .22);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: center;
}
.premios > * + * { border-left: 1px solid var(--borda); }
.premios__t {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--t);
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .95);
}
.premios__t img { width: 30px; height: 30px; filter: sepia(1) saturate(6) hue-rotate(3deg) brightness(1.05); }
.premios__i {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 72px;
  padding: 0 12px;
}
.premios__i img { width: auto; max-height: 66px; }
.premios__txt {
  font-family: var(--t);
  text-align: center;
  line-height: 1.2;
}
.premios__txt small { display: block; font-size: 12.5px; letter-spacing: .06em; color: rgba(255,255,255,.85); }
.premios__txt b     { display: block; font-size: 17px; font-weight: 700; margin-top: 3px; }
.premios__txt em    { display: block; font-size: 22px; font-weight: 800; font-style: normal; margin-top: 1px; }
.premios__txt--dir  { text-align: left; font-size: 14.5px; line-height: 1.35; }

/* ---------------------------- POR QUE PARTICIPAR --------------------------- */

.motivos {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* ícone à esquerda, título ao lado, descrição alinhada ao título (igual à referência) */
.motivo {
  padding: 20px 18px 22px;
  background: var(--branco);
  border-radius: 14px;
  box-shadow: 0 3px 14px rgba(16, 40, 60, .07);
  display: grid;
  grid-template-columns: 62px 1fr;
  column-gap: 16px;
  align-content: start;
}
.motivo__ic {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--verde-esc);
}
.motivo__ic img { width: 26px; height: 26px; }
.motivo h3 {
  align-self: center;
  font-family: var(--t);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.28;
  color: var(--texto);
}
.motivo p {
  grid-column: 2;
  margin-top: 12px;
  font-size: 12.8px;
  line-height: 1.45;
  color: var(--texto-2);
}

/* -------------------------------- BANNER CTA ------------------------------ */

.cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 172px;
  padding: 26px 44px;
  border-radius: 4px;
  background: linear-gradient(105deg, #001A20 0%, var(--escuro) 42%, #01313A 100%);
  color: var(--branco);
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  column-gap: 26px;
}

/* Decorativos recortados do PNG (sem alpha): `screen` apaga o fundo preto e
   deixa só o grafismo, emendando com o gradiente do banner. */
.cta__pontos,
.cta__escudo {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}
.cta__pontos { left: 0; bottom: 0; width: 148px; opacity: .9; }
.cta__escudo { right: 0; bottom: -14px; width: 240px; opacity: .8; }

.cta > :not(.cta__pontos):not(.cta__escudo) { position: relative; z-index: 1; }

.cta__mic { width: 120px; height: auto; justify-self: center; }

.cta__t {
  font-family: var(--t);
  font-size: 33px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.01em;
}
.cta__t span { color: var(--verde-neon); }

.cta__s {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.42;
  color: rgba(255, 255, 255, .86);
}

.cta__nota {
  display: flex;
  align-items: center;
  gap: 9px;
  align-self: end;
  margin-bottom: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, .9);
  white-space: nowrap;
}
.cta__nota img { width: 20px; height: 20px; opacity: .95; }

/* =============================== RESPONSIVO ================================ */

@media (max-width: 1280px) {
  :root { --gut: 40px; }
  .hero__peck { transform: translateX(-62%); width: 430px; }
}

@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr 420px; column-gap: 24px; }
  .card-form   { width: 420px; margin-right: 0; }
  .hero__title { font-size: 40px; }
  .hero__peck  { width: 370px; transform: translateX(-68%); }
  .chips   { grid-template-columns: repeat(3, 1fr); }
  .chip--sozinho { grid-column: 2; }
  .motivos { grid-template-columns: repeat(2, 1fr); }
  .peck__grid { grid-template-columns: 180px 1fr; }
  .peck__dir  { grid-column: 1 / -1; }
  .stats      { grid-template-columns: repeat(4, 1fr); }
  .cta        { grid-template-columns: 160px 1fr; row-gap: 22px; }
  .cta__mic   { width: 140px; }
  .cta__nota  { grid-column: 2; align-self: start; margin: 0; }
  .cta__t     { font-size: 34px; }
}

@media (max-width: 840px) {
  :root { --gut: 24px; }

  .hero { padding-bottom: 34px; }
  .hero__inner {
    grid-template-columns: 1fr;
    min-height: 0;
    row-gap: 0;
  }
  .hero__copy  { padding-top: 34px; max-width: none; }
  .hero__logo  { width: 250px; margin-bottom: 26px; }
  .hero__title { font-size: 34px; }
  .hero__title br.qd { display: none; }   /* quebras do desktop não valem aqui */
  .hero__sub   { margin-top: 20px; max-width: none; }

  /* a foto passa a ocupar uma faixa própria, sem sobrepor o texto */
  .hero__peck {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: 300px;
    height: auto;
    margin: 22px auto -12px;
  }

  .card-form { width: auto; margin: 0; padding: 20px 20px 26px; }

  .secao--temas   { padding-top: 44px; }
  .secao--peck    { padding-top: 34px; }
  .secao--motivos { padding-top: 40px; }
  .secao--cta     { padding: 32px 0 56px; }

  .titulo { font-size: 25px; }
  .lead   { font-size: 15px; }
  .lead br { display: none; }

  .chips { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .chip  { font-size: 14px; min-height: 54px; padding: 10px 13px; gap: 10px; }
  .chip--sozinho { grid-column: auto; }

  .peck       { padding: 22px 18px; border-radius: 14px; }
  .peck__grid { grid-template-columns: 1fr; gap: 18px; }
  .peck__esq  { display: flex; justify-content: center; }
  .peck__foto { width: 200px; }
  .peck__id   { text-align: center; }
  .peck__nome span { font-size: 26px; }
  .peck__nome b    { font-size: 46px; }
  .peck__assinatura { margin: 16px auto 0; width: 200px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .bio   { grid-template-columns: 1fr; gap: 0; margin-top: 16px; }

  .premios { grid-template-columns: 1fr 1fr; row-gap: 4px; }
  .premios > * + * { border-left: 0; }
  .premios > :nth-child(n+3) { border-top: 1px solid var(--borda); padding-top: 12px; }
  .premios__t { justify-content: flex-start; padding: 6px 8px; }

  .motivos { grid-template-columns: 1fr; gap: 14px; }
  .motivo  { padding: 20px 18px 22px; }
  .motivo__ic { width: 54px; height: 54px; margin-bottom: 12px; }
  .motivo__ic img { width: 30px; height: 30px; }

  .cta {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 34px 22px 30px;
    row-gap: 18px;
  }
  .cta__mic    { width: 120px; }
  .cta__t      { font-size: 28px; }
  .cta__s      { font-size: 15px; }
  .cta__s br   { display: none; }
  .cta__nota   { grid-column: auto; white-space: normal; justify-content: center; }
  /* no celular os decorativos ficam bem apagados para não competir com o texto */
  .cta__escudo { width: 190px; right: -46px; bottom: -10px; opacity: .3; }
  .cta__pontos { width: 170px; opacity: .35; }
}

@media (max-width: 420px) {
  .hero__title { font-size: 29px; }
  .chip   { font-size: 12.5px; padding: 9px 10px; gap: 8px; min-height: 50px; }
  .chip img { width: 21px; height: 21px; }
  .stats  { grid-template-columns: 1fr 1fr; }
  .premios { grid-template-columns: 1fr; }
  .premios > :nth-child(n+2) { border-top: 1px solid var(--borda); padding-top: 12px; }
}

@media (max-width: 340px) {
  .chips { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
