/* ==========================================================================
   AMECOOP — Landing Page Institucional
   Direção estética: editorial cooperativista, off-white com toques de cor
   da paleta oficial. Tipografia: Nunito (display + body, com itálico
   expressivo) — alinhada ao logotipo arredondado da marca. Composição
   assimétrica, motion contido, textura de grão sutil.

   Paleta oficial:
     Teal     #099294
     Vermelho #D92B24
     Amarelo  #FAB81E
     Verde    #1F7B41
   ========================================================================== */

:root {
  /* Paleta AMECOOP — calibrada a partir dos posts reais do @ame.coop */
  --teal: #099294;
  --teal-deep: #07787a;
  --teal-ink: #0a3c3d;
  --teal-soft: #d7eaea;           /* highlight atrás de palavra */
  --teal-pill: #b9dcdc;           /* pílula teal saturada (tipo "transforma") */
  --red: #c43028;                 /* card-par vermelho */
  --red-deep: #9b251f;
  --red-soft: #f4dcd9;
  --yellow: #f1b03a;              /* badge / acento — nunca fundo grande */
  --yellow-soft: #fbe9c0;
  --green: #1f7b41;               /* pílulas tipo "Cronogramas de treinamento" */
  --green-deep: #155c30;

  /* Neutros — cinza-bege frio, sem calor de papel artesanal */
  --paper: #efece6;               /* fundo geral, como nos posts */
  --paper-soft: #f6f3ed;
  --ink: #0f1c1a;                 /* texto principal, quase preto-azulado */
  --ink-soft: #2f4441;
  --muted: #6b7975;
  --line: #d8d2c6;
  --line-strong: #b9b3a4;

  /* Tipografia */
  --display: 'Nunito', system-ui, -apple-system, Segoe UI, sans-serif;
  --body: 'Nunito', system-ui, -apple-system, Segoe UI, sans-serif;
  --ui: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;

  /* Raios — a marca usa pílulas longas e cards bem arredondados */
  --r-pill: 999px;
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 36px;

  /* Sombras — quase invisíveis. A marca é chapada, não brutalista. */
  --shadow-soft: 0 6px 20px rgba(10, 60, 61, 0.06);
  --shadow-card: 0 12px 32px rgba(10, 60, 61, 0.08);
  --shadow-strong: 0 20px 48px rgba(10, 60, 61, 0.12);

  --wrap: 1200px;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* Texto para leitores de tela e crawlers, invisível visualmente */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ----- Tipografia base ----- */
.display {
  font-family: var(--display);
  font-weight: 800;
  font-style: normal;
  letter-spacing: -0.025em;
  line-height: 1.04;
  color: var(--ink);
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  margin: 0 0 24px;
}
/* Pílula teal saturada atrás de uma palavra-chave — assinatura visual dos
   posts AMECOOP. Usada nos displays escuros sobre fundo claro. */
.display__accent,
.display em {
  display: inline-block;
  font-style: normal;
  background: var(--teal-pill);
  color: var(--ink);
  padding: 0.05em 0.4em;
  border-radius: 999px;
  font-weight: inherit;
  margin: 0 0.05em;
}
.display--md { font-size: clamp(1.8rem, 3.4vw, 2.8rem); margin-bottom: 18px; }
.display--light { color: #fff; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ui);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 18px;
}
.kicker__dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 999px;
  display: inline-block;
}
.kicker--center { justify-content: center; display: flex; }
.kicker--light { color: rgba(255,255,255,0.85); }

.prose {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin: 0 0 16px;
  max-width: 56ch;
}
.prose--lead { font-size: 1.15rem; max-width: 60ch; }
.prose--light { color: rgba(255,255,255,0.86); }

.lede {
  font-family: var(--display);
  font-weight: 500;
  font-style: normal;
  font-size: clamp(1.1rem, 1.6vw, 1.32rem);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 0 32px;
}
.lede em {
  font-style: italic;
  font-weight: 600;
  color: var(--ink);
}

/* ----- Layout helpers ----- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
}
.wrap--narrow { max-width: 820px; }

.section { padding: 120px 0; }
.section--alt { background: var(--paper-soft); }
.section__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.section__head--left { text-align: left; margin-left: 0; margin-right: 0; }

/* ==========================================================================
   BOTÕES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-family: var(--ui);
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: 0.005em;
  border: 1.5px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  cursor: pointer;
  text-align: center;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn--solid {
  background: var(--teal);
  color: #fff;
}
.btn--solid:hover {
  background: var(--teal-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(9,146,148,0.32);
}
.btn--yellow {
  background: #fff;
  color: var(--teal-ink);
}
.btn--yellow:hover {
  background: var(--paper-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}
.btn--link {
  padding: 10px 4px;
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  border-radius: 0;
}
.btn--link:hover { color: var(--teal-deep); border-color: var(--teal-deep); }
.btn--sm { padding: 11px 18px; font-size: 0.86rem; }
.btn--lg { padding: 20px 32px; font-size: 1.02rem; }
.btn--block { width: 100%; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-bottom: 42px;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(239,236,230,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  transition: opacity .2s;
}
.brand:hover { opacity: 0.85; }
.brand img {
  height: 64px;
  width: auto;
  display: block;
}

.nav ul {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav a {
  font-family: var(--ui);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); }

.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  position: relative;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  margin: 5px auto;
  transition: transform .25s, opacity .25s;
}

/* ==========================================================================
   HERO — Slider full-width estilo Coopisaúde
   ========================================================================== */
.hero {
  position: relative;
  height: calc(100vh - 80px);
  min-height: 580px;
  max-height: 760px;
  overflow: hidden;
  background: var(--teal-ink);
}
.hero__slides {
  position: absolute;
  inset: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s ease, transform 8s ease;
  display: flex;
  align-items: center;
}
.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
/* Overlay teal-escuro com gradiente para garantir legibilidade do texto */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,47,48,0.88) 0%, rgba(5,47,48,0.66) 50%, rgba(5,47,48,0.58) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.42) 100%);
  pointer-events: none;
}
/* .hero__copy também é .wrap: mantém o container em 1200px centralizado na
   tela (margem esquerda alinhada ao logo do header). O conteúdo do texto é
   limitado e alinhado à ESQUERDA dentro do wrap, sem flutuar no centro. */
.hero__copy {
  position: relative;
  z-index: 2;
}
.hero__copy > * {
  max-width: 480px;
}
.hero__slide.is-active .hero__copy > * {
  opacity: 0;
  transform: translateY(20px);
  animation: heroRise .9s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero__slide.is-active .hero__copy .kicker { animation-delay: .15s; }
.hero__slide.is-active .hero__copy .display { animation-delay: .3s; }
.hero__slide.is-active .hero__copy .hero__lede { animation-delay: .5s; }
.hero__slide.is-active .hero__copy .hero__ctas { animation-delay: .65s; }
@keyframes heroRise {
  to { opacity: 1; transform: translateY(0); }
}

.hero .display {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.0;
  margin-bottom: 24px;
  color: #fff;
  letter-spacing: -0.03em;
  text-wrap: balance;
  text-shadow: 0 2px 18px rgba(5,47,48,0.28);
}
/* Destaque do hero: tipográfico e limpo, sem pílula. Amarelo oficial da marca
   (#FAB81E) — alto contraste sobre o overlay teal escuro. */
.hero .display em {
  display: inline;
  background: none;
  padding: 0;
  margin: 0;
  border-radius: 0;
  color: #FAB81E; /* amarelo oficial do manual da marca */
  font-weight: 900;
  font-style: normal;
  text-shadow: 0 2px 22px rgba(5,47,48,0.45);
}
.hero__lede {
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  max-width: 560px;
  margin: 0 0 36px;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__ctas .btn--solid {
  background: var(--teal);
  color: #fff;
}
.hero__ctas .btn--solid:hover {
  background: var(--teal-deep);
  box-shadow: 0 16px 32px rgba(9,146,148,0.36);
}

/* ----- Form fixo do hero (canto direito, glass semi-opaco) ----- */
.hero__formwrap {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none; /* deixa cliques passarem para setas/dots fora do form */
}
.hero__form {
  pointer-events: auto;
  width: 380px;
  max-width: 100%;
  background: rgba(8, 60, 61, 0.55);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  box-shadow: 0 24px 60px rgba(5, 47, 48, 0.45);
  color: #fff;
}
.hero__form-head { margin-bottom: 20px; }
.hero__form-tag {
  display: inline-block;
  font-family: var(--ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FAB81E;
  margin-bottom: 8px;
}
.hero__form-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.6rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  color: #fff;
}
.hero__form-sub {
  font-family: var(--ui);
  font-size: 0.86rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}
.hfield { display: block; margin-bottom: 12px; }
.hfield > span {
  display: block;
  font-family: var(--ui);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.85);
}
.hfield input,
.hfield select {
  width: 100%;
  min-height: 46px;
  background: rgba(255, 255, 255, 0.94);
  border: 1.5px solid transparent;
  border-radius: 10px;
  padding: 11px 13px;
  font-family: var(--ui);
  font-size: 0.92rem;
  color: var(--ink);
  color-scheme: light; /* dropdown nativo sempre claro, mesmo com SO em dark */
  transition: border-color .15s, box-shadow .15s;
}
.hfield input::placeholder { color: var(--muted); }
.hfield input:focus,
.hfield select:focus {
  outline: none;
  border-color: #FAB81E;
  box-shadow: 0 0 0 4px rgba(250, 184, 30, 0.28);
}
.hfield-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ----- Dropdown customizado (Profissão) — cores e tipografia da marca ----- */
/* Por padrão (desktop): esconde o select nativo e mostra a UI custom. */
.hselect__native {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
.hselect { position: relative; }
/* Botão fechado: igual aos inputs do form (branco), com seta */
.hselect__btn {
  width: 100%;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: rgba(255, 255, 255, 0.94);
  border: 1.5px solid transparent;
  border-radius: 10px;
  padding: 11px 13px;
  font-family: var(--ui);
  font-size: 0.92rem;
  line-height: 1.2;
  color: var(--ink);
  text-align: left;
  transition: border-color .15s, box-shadow .15s;
}
.hselect__value[data-empty="true"] { color: var(--muted); }
.hselect__caret {
  width: 18px; height: 18px;
  color: var(--teal-deep);
  flex-shrink: 0;
  transition: transform .2s ease;
}
.hselect.is-open .hselect__btn {
  border-color: #FAB81E;
  box-shadow: 0 0 0 4px rgba(250, 184, 30, 0.28);
}
.hselect.is-open .hselect__caret { transform: rotate(180deg); }
/* Menu aberto: fundo teal da marca, texto branco, fonte da marca */
.hselect__list {
  position: absolute;
  /* Profissão é o último campo antes do botão: abre para CIMA para o menu
     não cobrir o "Quero me cooperar" nem vazar a borda inferior do card. */
  bottom: calc(100% + 8px);
  left: 0; right: 0;
  z-index: 20;
  background: var(--teal-deep);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-sm);
  padding: 6px;
  box-shadow: 0 18px 44px rgba(5, 47, 48, 0.5);
  font-family: var(--ui);
  max-height: 196px;
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity .16s ease, transform .16s ease;
}
.hselect.is-open .hselect__list {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.hselect__opt {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transition: background .12s ease, color .12s ease;
}
.hselect__opt:hover,
.hselect__opt.is-active {
  background: #FAB81E;       /* destaque na cor da marca, não no azul do SO */
  color: var(--teal-ink);
  font-weight: 700;
}
.hselect__opt.is-selected:not(:hover):not(.is-active) {
  color: #FAB81E;            /* opção já escolhida marcada em amarelo */
  font-weight: 700;
}

.hero__form-btn {
  margin-top: 6px;
  background: #FAB81E;
  color: var(--teal-ink);
  font-weight: 700;
}
.hero__form-btn:hover {
  background: #ffc63f;
  box-shadow: 0 14px 30px rgba(250, 184, 30, 0.4);
}
.hero__form-legal {
  display: block;
  margin-top: 12px;
  font-family: var(--ui);
  font-size: 0.72rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
}

/* Dots */
.hero__dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero__dot {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.35);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: background .25s, width .25s;
}
.hero__dot:hover { background: rgba(255,255,255,0.6); }
.hero__dot.is-active {
  background: var(--yellow);
  width: 56px;
}

/* Arrows */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.hero__arrow:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-50%) scale(1.08);
}
.hero__arrow svg { width: 22px; height: 22px; }
.hero__arrow--prev { left: 28px; }
.hero__arrow--next { right: 28px; }

/* ==========================================================================
   PROBLEMA
   ========================================================================== */
.problem {
  position: relative;
  padding: 110px 0 90px;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.problem::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 400px at 0% 0%, rgba(250,184,30,0.10), transparent 50%),
    radial-gradient(700px 400px at 100% 100%, rgba(217,43,36,0.10), transparent 50%);
  pointer-events: none;
}
.problem__inner { position: relative; }
.problem .kicker { color: var(--yellow); }
.problem .display { color: #fff; text-align: center; max-width: 18ch; margin: 0 auto 60px; }
.problem__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pcard {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-xl);
  padding: 36px 30px;
  transition: transform .25s, border-color .25s, background .25s;
}
.pcard:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.20);
  transform: translateY(-4px);
}
.pcard__num {
  font-family: var(--ui);
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--yellow);
  margin-bottom: 22px;
}
.pcard h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.38rem;
  line-height: 1.22;
  margin: 0 0 12px;
  color: #fff;
  letter-spacing: -0.015em;
}
.pcard p {
  color: rgba(255,255,255,0.74);
  font-size: 0.98rem;
  margin: 0;
}
.problem__close {
  margin: 60px auto 0;
  max-width: 60ch;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.18rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.5;
}

/* ==========================================================================
   GUIA / SOBRE — split editorial
   ========================================================================== */
.guide {
  position: relative;
  overflow: hidden;
}
/* Marca-d'água do símbolo no canto, bem sutil — referência da identidade real */
.guide::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: url('assets/logos/symbol-only.png') no-repeat center / contain;
  opacity: 0.045;
  pointer-events: none;
  z-index: 0;
}
.guide .wrap { position: relative; z-index: 1; }

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}
.split--reverse .split__copy { order: 2; }
.split--reverse .art-card { order: 1; }

.signals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--line-strong);
}
.signals__num {
  display: block;
  font-family: var(--display);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--teal-deep);
  line-height: 1;
  letter-spacing: -0.02em;
}
.signals__label {
  display: block;
  font-size: 0.84rem;
  color: var(--ink-soft);
  margin-top: 6px;
  line-height: 1.45;
}

.split__art { position: relative; }
.frame {
  background: var(--teal);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 42px 36px;
  position: relative;
  box-shadow: var(--shadow-card);
}
.frame__tag {
  display: inline-block;
  font-family: var(--ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.frame blockquote {
  margin: 0 0 20px;
  font-family: var(--display);
  font-weight: 600;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.45;
  color: #fff;
  letter-spacing: -0.005em;
}
.frame figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
}
.frame__dot {
  width: 8px; height: 8px;
  background: var(--yellow);
  border-radius: 999px;
}
.frame__mark {
  position: absolute;
  width: 110px;
  height: 110px;
  object-fit: contain;
  bottom: -32px;
  right: -24px;
  background: #fff;
  padding: 18px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-card);
}

/* ==========================================================================
   PILARES 01-04 (inspiração: Coopisaúde)
   ========================================================================== */
.pilares { background: var(--paper-soft); }
.pilares__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.pilar {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 40px 28px 32px;
  border: 1px solid var(--line);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
}
.pilar:hover {
  transform: translateY(-6px);
  border-color: var(--teal);
  box-shadow: var(--shadow-soft);
}
.pilar__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1;
  color: #fff;
  background: var(--teal);
  padding: 8px 16px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}
.pilar h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.18rem;
  margin: 0 0 10px;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.pilar p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 0;
}

/* ==========================================================================
   MISSÃO (foto + texto, inspiração: Coopisaúde)
   ========================================================================== */
.missao {
  padding: 120px 0;
  background: var(--paper);
}
.missao__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
}
.missao__photo {
  position: relative;
  margin: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  aspect-ratio: 4 / 5;
}
.missao__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s ease;
}
.missao__photo:hover img { transform: scale(1.04); }
.missao__badge {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: var(--teal);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(10,60,61,0.22);
}
.missao__values {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line-strong);
}
.missao__values li {
  font-size: 1rem;
  color: var(--ink-soft);
  padding-left: 28px;
  position: relative;
  line-height: 1.55;
}
.missao__values li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 16px;
  height: 2px;
  background: var(--teal);
}
.missao__values strong {
  color: var(--ink);
  font-weight: 700;
}

/* ==========================================================================
   FAIXA "SEJA UM COOPERADO" (ribbon)
   ========================================================================== */
.ribbon {
  background: var(--teal);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.ribbon::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -100px;
  width: 460px;
  height: 460px;
  background: url('assets/logos/symbol-only.png') no-repeat center / contain;
  opacity: 0.08;
  pointer-events: none;
}
.ribbon__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.ribbon .kicker { color: rgba(255,255,255,0.78); }
.ribbon .kicker__dot { background: var(--yellow); }
.ribbon .display { margin-bottom: 12px; color: #fff; }
.ribbon .prose { color: rgba(255,255,255,0.92); max-width: 50ch; margin: 0; }
.ribbon__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.ribbon__cta .btn--solid {
  background: #fff;
  color: var(--teal-ink);
}
.ribbon__cta .btn--solid:hover {
  background: var(--paper-soft);
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}
.ribbon__cta .btn--link {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.ribbon__cta .btn--link:hover {
  color: var(--yellow);
  border-color: var(--yellow);
}

/* ==========================================================================
   BENEFÍCIOS
   ========================================================================== */
.grid-six {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.ben {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 36px 28px;
  border: 1px solid var(--line);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.ben::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 60px; height: 60px;
  background: var(--teal-soft);
  border-radius: 0 0 0 100%;
  opacity: 0;
  transition: opacity .25s;
}
.ben:hover {
  transform: translateY(-6px);
  border-color: var(--teal);
  box-shadow: var(--shadow-soft);
}
.ben:hover::after { opacity: 1; }
.ben__ico {
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  margin-bottom: 22px;
}
.ben__ico svg { width: 26px; height: 26px; }
.ben h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  line-height: 1.25;
}
.ben p {
  font-size: 0.96rem;
  color: var(--ink-soft);
  margin: 0;
}

/* ==========================================================================
   PLANO — passos
   ========================================================================== */
.plan {
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--paper-soft) 100%);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 56px;
}
.steps__item {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 30px 30px;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}
.steps__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.steps__num {
  display: inline-block;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 0.92rem;
  color: var(--teal-deep);
  background: var(--teal-soft);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.steps__item h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.32rem;
  margin: 0 0 10px;
  letter-spacing: -0.015em;
  line-height: 1.22;
}
.steps__item p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  margin: 0 0 18px;
}
.steps__time {
  display: inline-block;
  font-family: var(--ui);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-weight: 700;
  border-top: 1px dashed var(--line-strong);
  padding-top: 14px;
}

.plan__promise {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 42px 44px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 36px;
  align-items: start;
}
.plan__promise h3 {
  font-family: var(--display);
  font-weight: 800;
  font-style: italic;
  font-size: 1.45rem;
  margin: 0;
  color: var(--yellow);
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.plan__promise ul {
  display: grid;
  gap: 14px;
}
.plan__promise li {
  position: relative;
  padding-left: 32px;
  font-size: 1rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.55;
}
.plan__promise li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 16px; height: 2px;
  background: var(--yellow);
}

/* ==========================================================================
   STAKES (custo de inação)
   ========================================================================== */
.stakes {
  position: relative;
  padding: 120px 0;
  background:
    radial-gradient(800px 400px at 20% 0%, rgba(217,43,36,0.30), transparent 60%),
    radial-gradient(800px 400px at 80% 100%, rgba(9,146,148,0.40), transparent 60%),
    var(--teal-ink);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.stakes__inner {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}
.stakes .display { max-width: 18ch; margin: 0 auto 24px; }
.stakes .prose {
  margin: 0 auto 36px;
  max-width: 56ch;
}

/* ==========================================================================
   CONTRATANTES
   ========================================================================== */
.contratantes { background: var(--paper-soft); }
.checklist {
  display: grid;
  gap: 12px;
  margin: 28px 0 32px;
}
.checklist li {
  position: relative;
  padding-left: 32px;
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 18px; height: 2px;
  background: var(--red);
}
.art-card {
  position: relative;
  background: #fff;
  border-radius: var(--r-xl);
  padding: 42px 36px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}
.art-card__label {
  display: inline-block;
  font-family: var(--ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-deep);
  background: var(--teal-soft);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.art-card__list {
  display: grid;
  gap: 14px;
}
.art-card__list li {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.22rem;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.015em;
  line-height: 1.3;
}
.art-card__list li:last-child { border-bottom: 0; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  display: grid;
  gap: 14px;
}
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 28px;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.faq__item[open] {
  border-color: var(--teal);
  box-shadow: var(--shadow-soft);
}
.faq__item summary {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.12rem;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 40px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-family: var(--body);
  font-size: 1.6rem;
  color: var(--teal-deep);
  transition: transform .25s, content .25s;
  line-height: 1;
  font-weight: 300;
}
.faq__item[open] summary::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
}
.faq__item p {
  margin: 14px 0 4px;
  color: var(--ink-soft);
  font-size: 1rem;
}

/* ==========================================================================
   CTA FINAL
   ========================================================================== */
.cta-final {
  position: relative;
  padding: 120px 0;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.cta-final__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 400px at 10% 10%, rgba(9,146,148,0.35), transparent 60%),
    radial-gradient(700px 400px at 90% 90%, rgba(250,184,30,0.18), transparent 60%);
  pointer-events: none;
}
.cta-final__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: start;
}

.channels {
  display: grid;
  gap: 12px;
  margin-top: 36px;
}
.channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-md);
  transition: background .25s, transform .25s, border-color .25s;
}
.channel:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
  transform: translateX(6px);
}
.channel__ico {
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--yellow);
  color: var(--ink);
  border-radius: 12px;
}
.channel__ico svg { width: 22px; height: 22px; }
.channel strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 600;
}
.channel em {
  display: block;
  font-style: normal;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}

.form {
  background: #fff;
  color: var(--ink);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-strong);
}
.form__title {
  font-family: var(--display);
  font-weight: 800;
  font-style: italic;
  font-size: 1.65rem;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.form__sub {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0 0 24px;
}
.field {
  display: block;
  margin-bottom: 16px;
}
.field span {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  color: var(--ink-soft);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: #fff;
  color-scheme: light; /* dropdown nativo sempre claro, mesmo com SO em dark */
  border: 1.5px solid var(--line-strong);
  border-radius: 10px;
  padding: 13px 14px;
  font-family: var(--ui);
  font-size: 0.96rem;
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.field span {
  font-family: var(--ui);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(17,34,31,0.12);
}
.field textarea { resize: vertical; min-height: 90px; }
.form__legal {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
  line-height: 1.5;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--teal-ink);
  color: rgba(255,255,255,0.78);
  padding: 56px 0 28px;
}
.footer__partners {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  text-align: center;
}
.footer__partners h4 {
  font-family: var(--ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
  margin: 0 0 24px;
}
.partners__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.partners__slot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 60px;
  padding: 0 18px;
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(255,255,255,0.18);
  border-radius: 10px;
  font-family: var(--ui);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.footer__social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  color: #fff;
  transition: background .2s, transform .2s, color .2s;
}
.footer__social a:hover {
  background: var(--yellow);
  color: var(--ink);
  transform: translateY(-2px);
}
.footer__social svg { width: 18px; height: 18px; }
.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer__brand img {
  height: 72px;
  margin-bottom: 20px;
  width: auto;
  display: block;
}
.footer__brand p {
  max-width: 360px;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}
.footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.footer__nav h4 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.005em;
}
.footer__nav ul {
  display: grid;
  gap: 10px;
  font-size: 0.94rem;
}
.footer__nav a:hover { color: var(--yellow); }
.footer__base {
  display: flex;
  justify-content: space-between;
  padding-top: 26px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   WHATSAPP FLOAT
   ========================================================================== */
.wpp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 14px 14px;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 18px 32px rgba(37,211,102,0.42);
  transition: transform .2s, box-shadow .2s;
}
.wpp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px rgba(37,211,102,0.5);
}
.wpp-float svg { width: 22px; height: 22px; }

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */
@media (max-width: 1024px) {
  .split,
  .split--reverse,
  .missao__inner,
  .ribbon__inner,
  .cta-final__grid { grid-template-columns: 1fr; gap: 48px; }
  .split--reverse .split__copy { order: initial; }
  .split--reverse .art-card { order: initial; }
  /* Hero vira grid de 2 linhas: mídia+texto em cima, form embaixo.
     Os slides continuam absolutos DENTRO da linha 1 (slider intacto). */
  .hero {
    height: auto;
    max-height: none;
    min-height: 0;
    padding: 0 0 64px;
    display: grid;
    grid-template-rows: minmax(440px, 64vh) auto;
  }
  .hero__slides { position: relative; }
  .hero__slide { padding: 80px 0; }
  .hero__arrow { display: none; }
  /* Form sai da sobreposição e ocupa a linha 2, ainda glass */
  .hero__formwrap {
    position: relative;
    inset: auto;
    z-index: 4;
    justify-content: center;
    padding-top: 36px;
  }
  .hero__form {
    width: 100%;
    max-width: 460px;
    background: var(--teal-deep);
  }
  /* No mobile, usa o select nativo (melhor no toque) e esconde a UI custom */
  .hselect { display: none; }
  .hselect__native {
    position: static;
    width: 100%; height: auto;
    clip: auto; margin: 0;
    overflow: visible; white-space: normal;
  }
  .problem__list,
  .grid-six,
  .steps,
  .pilares__grid { grid-template-columns: repeat(2, 1fr); }
  .plan__promise { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 36px; }
  .missao__photo { max-width: 480px; margin: 0 auto; }
  .ribbon__cta { align-items: flex-start; }
}

@media (max-width: 720px) {
  .section { padding: 84px 0; }
  .hero { min-height: 520px; padding: 60px 0; }
  .hero__lede { font-size: 1rem; }
  .brand img { height: 52px; }
  .header__inner { padding: 10px 20px; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }
  .hero__dots { bottom: 20px; }
  .hero__dot { width: 28px; }
  .hero__dot.is-active { width: 44px; }
  .header__cta { display: none; }
  .nav { display: none; }
  .nav.is-open {
    display: block;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 20px 28px;
  }
  .nav.is-open ul {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .nav__toggle { display: inline-block; }

  .problem__list,
  .grid-six,
  .steps,
  .pilares__grid,
  .signals { grid-template-columns: 1fr; gap: 16px; }

  .frame { transform: none; }
  .frame__mark { display: none; }
  .art-card { transform: none; }

  .footer__nav { grid-template-columns: 1fr; gap: 28px; }
  .footer__base { flex-direction: column; align-items: flex-start; }

  .wpp-float span { display: none; }
  .wpp-float { padding: 14px; }
}

/* Respeitar quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
