/* Plano&Plano — design tokens (Brandbook Fev/2024) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Roboto:wght@400;500;700&display=swap');

:root {
  /* Cores institucionais */
  --navy-900: #001651;
  --navy-800: #061c5c;
  --navy-700: #0c2a78;
  --red-500: #ff2732;
  --red-600: #e4141e;
  --white: #ffffff;
  --gray-900: #414042;
  --gray-400: #9d9d9c;

  /* Superfícies e texto */
  --surface-page: #faf9f6;
  --text-muted: #33415f;
  --text-soft: #445270;
  --text-subtle: #5b6a8a;
  --border-subtle: rgba(0,22,81,0.08);
  --border-input: rgba(0,22,81,0.16);

  /* Tipografia */
  --font-display: 'Poppins', 'Roboto', sans-serif;
  --font-body: 'Poppins', 'Roboto', sans-serif;

  /* Espaçamento e raios */
  --space-1: 4px; --space-2: 8px; --space-3: 12px; --space-4: 16px;
  --space-5: 24px; --space-6: 32px; --space-7: 48px; --space-8: 64px; --space-9: 96px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-card: 0 28px 70px -24px rgba(0,22,81,0.4);
  --shadow-soft: 0 10px 28px -18px rgba(0,22,81,0.25);

  --container-max: 1180px;
}

/* Plano&Plano — Landing Goiânia */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--surface-page); font-family: var(--font-body); color: var(--navy-900); }
img { max-width: 100%; }
a { color: var(--navy-900); }
a:hover { color: var(--red-500); }
.container { max-width: var(--container-max); margin: 0 auto; padding-left: 48px; padding-right: 48px; }

/* Botões */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: var(--red-500); color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 15px; padding: 15px 30px; border: none; border-radius: var(--radius-sm); text-decoration: none; cursor: pointer; transition: filter .15s ease, transform .1s ease; }
.btn:hover { filter: brightness(0.9); color: #fff; }
.btn:active { transform: scale(0.98); }
.btn--sm { font-size: 14px; padding: 11px 26px; }

/* Eyebrow */
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-family: var(--font-display); font-weight: 700; font-size: 12.5px; letter-spacing: 0.1em; color: var(--red-500); }

/* ============ NAV ============ */
.nav { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 48px; background: rgba(250,250,247,0.94); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(0,22,81,0.07); }
.nav__logo { flex-shrink: 0; display: flex; }
.nav__logo img { height: 47px; display: block; }
.nav__links { display: flex; gap: 32px; flex: 1 1 auto; justify-content: center; white-space: nowrap; }
.nav__links a { color: var(--navy-900); text-decoration: none; font-size: 14px; font-weight: 500; }
.nav__links a:hover { color: var(--red-500); }
.nav__toggle { display: none; background: none; border: none; padding: 8px; cursor: pointer; }
.nav__toggle svg { display: block; stroke: var(--navy-900); }

/* ============ HERO ============ */
.hero { position: relative; min-height: 600px; overflow: hidden; display: flex; align-items: center; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: right center; }
.hero__fade-x { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(250,250,247,0.93) 26%, rgba(250,250,247,0.72) 40%, rgba(250,250,247,0) 60%); }
.hero__fade-y { position: absolute; left: 0; right: 0; bottom: 0; height: 260px; background: linear-gradient(180deg, rgba(250,249,246,0) 0%, #faf9f6 100%); }
.hero__inner { position: relative; width: 100%; padding-top: 72px; padding-bottom: 72px; }
.hero__content { max-width: 560px; }
.hero__content h1 { font-family: var(--font-display); font-weight: 700; font-size: 46px; line-height: 1.16; margin: 0 0 14px; }
.hero__content h1 span { color: var(--red-500); }
.hero__dash { width: 56px; height: 3px; background: var(--red-500); margin: 16px 0 24px; }
.hero__content p { font-size: 16px; line-height: 1.7; color: var(--text-muted); max-width: 460px; margin: 0 0 14px; }
.hero__content p:last-of-type { margin-bottom: 24px; }

/* ============ CARD DE CADASTRO ============ */
.signup-band { padding-top: 56px; }
.signup-band--bottom { padding-top: 96px; padding-bottom: 120px; }
.signup-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-card); padding: 48px; display: flex; gap: 48px; flex-wrap: wrap; align-items: flex-start; }
.signup-card__info { flex: 1 1 380px; min-width: 300px; padding-top: 4px; }
.signup-card__info h2 { font-family: var(--font-display); font-weight: 700; font-size: 32px; line-height: 1.22; margin: 0 0 16px; }
.signup-card__info .lead-red { font-size: 20px; line-height: 1.3; color: var(--red-500); font-family: var(--font-display); font-weight: 700; margin: 0 0 4px; }
.signup-card__text { font-size: 15px; line-height: 1.75; color: var(--text-muted); margin: 0 0 36px; }
.benefits { display: flex; gap: 4px; }
.signup-band--bottom .lead-red { margin-bottom: 36px; }
.benefit { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; flex: 1 1 0; padding: 0 14px; }
.benefit + .benefit { border-left: 1px solid rgba(0,22,81,0.12); }
.benefit span { font-size: 11.5px; line-height: 1.45; font-weight: 500; }
.signup-form { flex: 1 1 420px; min-width: 300px; display: flex; flex-direction: column; gap: 12px; }
.signup-form input[type="text"], .signup-form input[type="email"], .signup-form input[type="tel"] { border: 1px solid var(--border-input); border-radius: 10px; padding: 13px 16px; font-family: var(--font-body); font-size: 14px; color: var(--navy-900); background: #fff; outline: none; width: 100%; }
.signup-form input:focus { border-color: var(--navy-700); }
.signup-form__row { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-top: 4px; }
.signup-form__consent { display: flex; gap: 8px; align-items: center; font-size: 12.5px; color: var(--text-soft); flex: 1 1 260px; }
.signup-form__consent input { accent-color: var(--red-500); width: 16px; height: 16px; flex-shrink: 0; }
.signup-form .btn { letter-spacing: 0.03em; }
.signup-form__msg { font-size: 13px; margin: 0; display: none; }
.signup-form.is-success .signup-form__msg--ok { display: block; color: #178d42; }
.signup-form.is-error .signup-form__msg--err { display: block; color: var(--red-600); }

/* ============ HISTÓRIA ============ */
.historia { background: linear-gradient(180deg, #eef1f7 0%, rgba(0,22,81,0.1) 42%, rgba(0,22,81,0.55) 62%, rgba(0,22,81,0.9) 82%, var(--navy-900) 100%); }
.historia__head { padding-top: 96px; max-width: 680px; }
.historia__head h2, .historia__mid h2 { font-family: var(--font-display); font-weight: 700; font-size: 38px; line-height: 1.22; margin: 0 0 20px; }
.historia__head p { font-size: 15px; line-height: 1.8; color: var(--text-soft); margin: 0 0 40px; }
.historia__stats { padding-bottom: 96px; }
.historia__mid { max-width: 680px; }
.historia__mid h2 { font-size: 34px; color: #fff; }
.historia__mid p { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.82); margin: 0 0 40px; }
.historia__mid strong { color: #fff; }

/* Stats bar */
.stats-bar { background: #fff; border: 1px solid var(--border-subtle); border-radius: var(--radius-md); }
.stats-bar__inner { width: 100%; padding: 34px 40px; display: flex; align-items: stretch; }
.stat { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 7px; flex: 1 1 0; }
.stat__nums { font-family: var(--font-display); color: var(--navy-900); }
.stat__pre { font-weight: 700; font-size: 12px; letter-spacing: 0.04em; }
.stat__value { font-weight: 800; font-size: 28px; line-height: 1.1; }
.stat__label { font-weight: 700; font-size: 11.5px; letter-spacing: 0.02em; line-height: 1.3; }
.stat__desc { font-size: 11.5px; line-height: 1.5; color: var(--text-subtle); }
.stat-sep { align-self: center; color: var(--red-500); font-family: var(--font-display); font-weight: 700; font-size: 20px; padding: 0 16px; }

/* Valores (cards escuros) */
.values-grid { padding-bottom: 96px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.value-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius-md); padding: 28px 22px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; }
.value-card__icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; }
.value-card__title { font-family: var(--font-display); font-weight: 700; font-size: 12.5px; letter-spacing: 0.04em; color: #fff; }
.value-card__dash { width: 26px; height: 2px; background: var(--red-500); margin: 10px auto 0; }
.value-card__desc { font-size: 12.5px; line-height: 1.6; color: rgba(255,255,255,0.72); }

/* ============ COMO FAZEMOS ============ */
.fazemos__head { padding-top: 96px; padding-bottom: 64px; }
.fazemos__head h2 { font-family: var(--font-display); font-weight: 700; font-size: 38px; line-height: 1.22; margin: 0 0 18px; max-width: 760px; }
.fazemos__head .sub { font-size: 17px; line-height: 1.6; color: var(--text-subtle); margin: 0 0 22px; max-width: 640px; }
.fazemos__head .body { font-size: 15.5px; line-height: 1.8; color: var(--text-muted); max-width: 680px; margin: 0; }
.pilares-grid { padding-bottom: 96px; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.pilar-card { background: #fff; border: 1px solid var(--border-subtle); border-radius: var(--radius-md); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-soft); }
.pilar-card img { width: 100%; height: 170px; object-fit: cover; display: block; }
.pilar-card__body { padding: 22px 24px 28px; display: flex; flex-direction: column; align-items: flex-start; text-align: left; gap: 11px; }
.pilar-card__title { font-family: var(--font-display); font-weight: 700; font-size: 13.5px; letter-spacing: 0.04em; }
.pilar-card__dash { width: 26px; height: 2px; background: var(--red-500); margin-top: 8px; }
.pilar-card__desc { font-size: 13px; line-height: 1.65; color: var(--text-soft); }

/* ============ FOOTER ============ */
.footer-band { background: var(--navy-900); margin-top: 56px; min-height: 119px; display: flex; align-items: center; }
.footer-band__inner { padding-top: 26px; padding-bottom: 26px; display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; width: 100%; }
.footer-band__tagline { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; line-height: 1.6; color: #fff; text-align: right; }
.footer-band__divider { width: 1px; height: 40px; background: rgba(255,255,255,0.25); }
.footer-band img { height: 47px; display: block; }
.footer-bar { background: #fff; border-top: 1px solid var(--border-subtle); }
.footer-bar__inner { padding-top: 22px; padding-bottom: 22px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-bar__site { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0.03em; text-decoration: none; }
.footer-bar__divider { width: 1px; height: 32px; background: rgba(0,22,81,0.12); }
.footer-bar__label { font-size: 12.5px; line-height: 1.4; }
.footer-bar__social { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-bar__social a { display: flex; align-items: center; gap: 10px; text-decoration: none; font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0.02em; }
.tiktok-badge { width: 28px; height: 28px; border-radius: 8px; background: var(--navy-900); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer-bar__b3 { font-family: var(--font-display); font-weight: 700; font-size: 12.5px; display: flex; align-items: center; gap: 6px; margin-left: auto; }
.footer-bar__b3 .b3-badge { border: 1.5px solid var(--navy-900); border-radius: 4px; padding: 1px 5px; font-size: 11px; }
.footer-bar__b3 .b3-badge sup { font-size: 9px; }
.footer-bar__b3 .ticker { color: var(--red-500); }

/* ============ RESPONSIVO ============ */
@media (max-width: 1080px) {
  .nav { padding: 14px 24px; }
  .nav__links { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; background: #faf9f6; border-bottom: 1px solid rgba(0,22,81,0.1); box-shadow: 0 18px 30px -18px rgba(0,22,81,0.25); display: none; }
  .nav__links a { padding: 15px 24px; border-top: 1px solid rgba(0,22,81,0.07); font-size: 15px; }
  .nav.is-open .nav__links { display: flex; }
  .nav__toggle { display: block; }
  .nav__cta { display: none; }
  .nav.is-open .nav__cta--menu { display: flex; margin: 14px 24px 18px; }
}
@media (min-width: 1081px) { .nav__cta--menu { display: none; } }

@media (max-width: 900px) {
  .container { padding-left: 28px; padding-right: 28px; }
  .hero__content h1 { font-size: 38px; }
  .stats-bar__inner { flex-wrap: wrap; gap: 26px 0; padding: 30px 22px; }
  .stat { flex: 1 1 45%; min-width: 45%; }
  .stat-sep { display: none; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .historia__head h2, .fazemos__head h2 { font-size: 32px; }
  .historia__mid h2 { font-size: 29px; }
  .signup-card { padding: 36px 28px; gap: 36px; }
}

@media (max-width: 640px) {
  .container { padding-left: 20px; padding-right: 20px; }
  .nav { padding: 12px 16px; }
  .nav__logo img { height: 38px; }
  .hero { min-height: 0; }
  .hero__bg { object-position: 72% center; }
  .hero__fade-x { background: linear-gradient(180deg, rgba(250,250,247,0.94) 0%, rgba(250,250,247,0.86) 55%, rgba(250,250,247,0.55) 100%); }
  .hero__inner { padding-top: 32px; padding-bottom: 36px; }
  .hero__content h1 { font-size: 29px; line-height: 1.2; }
  .hero__content p { font-size: 15px; }
  .hero__content .btn { width: 100%; }
  .signup-band { padding-top: 28px; }
  .signup-band--bottom { padding-top: 48px; padding-bottom: 56px; }
  .signup-card { padding: 28px 20px; gap: 24px; }
  .signup-card__text { margin-bottom: 24px; }
  .signup-band--bottom .lead-red { margin-bottom: 24px; }
  .signup-card__info h2 { font-size: 25px; }
  .signup-card__info h2 br { display: none; }
  .benefits { flex-direction: column; gap: 14px; }
  .benefit { flex-direction: row; text-align: left; padding: 0; gap: 12px; }
  .benefit + .benefit { border-left: none; }
  .benefit svg { flex-shrink: 0; }
  .signup-form__row { flex-direction: column; align-items: stretch; }
  .signup-form__consent { flex: 0 0 auto; }
  .signup-form .btn { width: 100%; }
  .historia__head { padding-top: 48px; }
  .historia__head h2 { font-size: 27px; }
  .historia__head h2 br, .historia__mid h2 br { display: none; }
  .historia__head p { margin-bottom: 28px; }
  .historia__stats { padding-bottom: 48px; }
  .historia__mid p { margin-bottom: 28px; }
  .historia__mid h2 { font-size: 24px; }
  .stats-bar__inner { flex-direction: column; gap: 28px; }
  .stat { min-width: 0; }
  .values-grid { grid-template-columns: 1fr; padding-bottom: 48px; gap: 12px; }
  .fazemos__head { padding-top: 48px; padding-bottom: 28px; }
  .fazemos__head h2 { font-size: 27px; }
  .pilares-grid { padding-bottom: 48px; gap: 12px; }
  .footer-band { margin-top: 40px; }
  .stats-bar__inner { padding: 26px 20px; }
  .footer-band__tagline { text-align: center; }
  .footer-band__divider { display: none; }
  .footer-band__inner { flex-direction: column; gap: 16px; }
  .footer-bar__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-bar__divider { display: none; }
  .footer-bar__b3 { margin-left: 0; }
}
