/* ============================================================
   Opte Ponto — Página 1
   Tipografia: Hanken Grotesk
   ============================================================ */

:root {
  --green:        #33ff74;   /* verde da marca (hero, cards, acentos)   */
  --green-deep:   #006e2b;   /* verde escuro (eyebrow, ícone container) */
  --ink:          #14323d;   /* títulos / texto escuro                  */
  --ink-soft:     #5a6a72;   /* parágrafos                              */
  --steel:        #275169;   /* botões "Solicitar Demo" / "Começar"     */
  --steel-deep:   #1d4154;   /* hover dos botões steel                  */
  --navy-900:     #020617;   /* footer                                  */
  --navy-800:     #0c1a2b;   /* cards escuros / footer exp-card         */
  --lavender:     #f5f2ff;   /* fundo seção bento                       */
  --line:         #e7e9f3;   /* bordas suaves                           */

  --cta-a:        #224761;
  --cta-b:        #2e5b6e;

  /* ---- página 2 (Funcionalidades) ---- */
  --ink-2:        #1a455d;   /* títulos da pág. 2 (navy mais claro)     */
  --green-forest: #127839;   /* cards/stats verdes (verde floresta)     */
  --lav-card:     #d9d7f0;   /* cards lavanda                           */
  --f-cta-a:      #324868;   /* gradiente CTA pág. 2 (navy)             */
  --f-cta-b:      #2e786f;   /* gradiente CTA pág. 2 (teal)             */

  --shadow-card:  0 24px 48px -24px rgba(20, 50, 61, .18);
  --shadow-green: 0 24px 48px -20px rgba(20, 180, 80, .45);
  --radius:       24px;

  --maxw:         1200px;
  --pad:          clamp(20px, 5vw, 64px);

  --font: "Space Grotesk", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.08; font-weight: 700; letter-spacing: -.01em; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* ---------- botões ---------- */
.btn {
  --b: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  padding: 14px 26px;
  border-radius: 4px;
  font-weight: 600;
  font-size: .98rem;
  border: 1.5px solid var(--b);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--dark {
  background: var(--steel);
  color: #fff;
  box-shadow: 0 12px 26px -12px rgba(20, 50, 70, .45);
}
.btn--dark:hover {
  background: var(--steel-deep);
  box-shadow: 0 16px 32px -12px rgba(20, 50, 70, .6);
  transform: translateY(-2px);
}

.btn--green {
  background: var(--green);
  color: var(--ink);
  box-shadow: var(--shadow-green);
}
.btn--green:hover { transform: translateY(-2px); filter: brightness(1.04); }

.btn--outline-dark {
  background: transparent;
  --b: rgba(20, 50, 61, .35);
  color: var(--ink);
}
.btn--outline-dark:hover { --b: var(--ink); background: rgba(255, 255, 255, .25); }

.btn--outline-light {
  background: rgba(255, 255, 255, .06);
  --b: rgba(255, 255, 255, .35);
  color: #fff;
}
.btn--outline-light:hover { --b: #fff; background: rgba(255, 255, 255, .12); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}
.nav__logo img { height: 40px; width: auto; }

.nav__links {
  display: flex;
  gap: 36px;
  margin-inline: auto;
  font-size: .96rem;
  color: #44525b;
}
.nav__links a { position: relative; padding: 6px 0; transition: color .2s; }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--green-deep);
  transition: width .25s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

/* ESTADO ATIVO — no PHP, marcar o link da página atual com aria-current="page".
   Ex.: <a href="precos.php" aria-current="page">Preços</a> */
.nav__links a[aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
}
.nav__links a[aria-current="page"]::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 22px; }
/* botão do nav é mais compacto (Figma: H 38) */
.nav__actions .btn--dark { padding: 10px 24px; }
.nav__login { font-size: .96rem; color: #44525b; transition: color .2s; }
.nav__login:hover { color: var(--ink); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 9px;
  background: none; border: none; cursor: pointer;
}
.nav__burger span {
  height: 2px; width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--green);
  overflow: hidden;
}
/* leve textura/atmosfera */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 85% 10%, rgba(255, 255, 255, .28), transparent 55%),
    radial-gradient(90% 80% at 0% 100%, rgba(0, 110, 43, .22), transparent 60%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 24px;
  min-height: 600px;
}
.hero__copy {
  padding: clamp(48px, 7vw, 96px) 0;
  max-width: 560px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
}
.badge svg { color: var(--green); }

.hero__title {
  margin-top: 26px;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
}
.hero__sub {
  margin-top: 22px;
  font-size: 1.05rem;
  color: #12402a;
  max-width: 430px;
}
.hero__cta {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__media {
  position: relative;
  align-self: end;
  justify-self: end;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.hero__media img {
  width: auto;
  max-height: 600px;
  filter: drop-shadow(0 30px 50px rgba(0, 60, 24, .35));
}

/* entrada animada do hero */
.hero__copy > * { opacity: 0; animation: rise .7s cubic-bezier(.2, .7, .2, 1) forwards; }
.hero__copy .badge      { animation-delay: .05s; }
.hero__copy .hero__title{ animation-delay: .15s; }
.hero__copy .hero__sub  { animation-delay: .27s; }
.hero__copy .hero__cta  { animation-delay: .39s; }
.hero__media img        { opacity: 0; animation: rise .8s .25s cubic-bezier(.2, .7, .2, 1) forwards; }

@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SEÇÕES — títulos comuns
   ============================================================ */
.eyebrow {
  margin: 0 0 14px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .25em;
  color: var(--green-deep);
}
.eyebrow--muted { color: #8a97a0; }

.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
}

/* ============================================================
   BENTO / DIFERENCIAIS
   ============================================================ */
.bento {
  background: var(--lavender);
  padding: clamp(64px, 9vw, 110px) 0;
}
.bento .section-title { margin-bottom: clamp(40px, 6vw, 64px); }

.bento__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  position: relative;
  border-radius: var(--radius);
  padding: 40px;
  overflow: hidden;
  isolation: isolate;
}
.card--wide   { grid-column: span 2; }
.card--narrow { grid-column: span 1; }

.card--light {
  background: #fff;
  box-shadow: var(--shadow-card);
}
.card--green {
  background: var(--green);
  box-shadow: var(--shadow-green);
}

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 56px;
}
.card__icon--green {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--green-deep);
}
.card__icon--green img { filter: brightness(0) invert(1); width: 30px; height: auto; }
.card__icon--ink img   { width: auto; height: 32px; }

.card__num {
  position: absolute;
  top: 28px; right: 38px;
  font-size: 4.4rem;
  font-weight: 700;
  color: #d8d3f1;
  letter-spacing: -.04em;
  line-height: 1;
  z-index: -1;
}

.card__title {
  font-size: 1.45rem;
  color: var(--ink);
  margin-bottom: 14px;
}
.card__text {
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 46ch;
}
.card--green .card__text { color: rgba(13, 42, 24, .82); }

.card__watermark {
  position: absolute;
  right: 30px; bottom: 28px;
  width: 96px; height: auto;
  fill: rgba(20, 50, 61, .06);
  z-index: -1;
}

/* ============================================================
   LEGAL COMPLIANCE
   ============================================================ */
.legal {
  background: #fff;
  padding: clamp(64px, 9vw, 120px) 0;
}
.legal__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

.legal__media { position: relative; }
.legal__photo {
  position: relative;
  overflow: hidden;            /* sem border-radius (overlay vinha do Figma) */
  box-shadow: var(--shadow-card);
}
.legal__photo img {
  width: 100%;
  height: auto;
  display: block;
}
/* overlay sutil para o tom do design */
.legal__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 18, 24, .12) 0%, rgba(8, 18, 24, .38) 100%);
  pointer-events: none;
}

.legal__quote {
  position: absolute;
  left: -8px; bottom: -26px;
  margin: 0;
  max-width: 270px;
  padding: 20px 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 40px -16px rgba(20, 50, 61, .28);
}
.legal__quote blockquote {
  margin: 0;
  font-size: .98rem;
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
}

.legal__lead {
  margin: 22px 0 30px;
  font-size: 1.02rem;
  color: var(--ink-soft);
  max-width: 48ch;
}
.legal .section-title { margin-top: 6px; }

.checklist { display: grid; gap: 16px; }
.checklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  color: var(--ink);
}
.check {
  flex: none;
  width: 26px; height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--green-deep);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  background: var(--lavender);
  padding: clamp(48px, 7vw, 96px) 0;
}
.cta__box {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  color: #fff;
  background: linear-gradient(115deg, var(--cta-a), var(--cta-b));
}
.cta__box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 120% at 90% -10%, rgba(51, 255, 116, .18), transparent 50%);
  pointer-events: none;
}
.cta__title {
  position: relative;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
}
.cta__sub {
  position: relative;
  margin: 18px auto 32px;
  max-width: 520px;
  color: rgba(230, 240, 245, .82);
}
.cta__actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
/* botões do CTA são mais arredondados que os do nav/hero */
.cta__actions .btn { border-radius: 14px; padding: 16px 28px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-900);
  color: #c4cdd8;
  padding: clamp(56px, 7vw, 84px) 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer__logo { height: 28px; width: auto; margin-bottom: 22px; }
.footer__copy { color: #93a0ad; font-size: .95rem; margin: 0 0 22px; }

.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  transition: background .2s;
}
.footer__social a:hover { background: rgba(255, 255, 255, .14); }

.footer__col h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 20px;
}
.footer__col a {
  display: block;
  color: #93a0ad;
  font-size: .95rem;
  margin-bottom: 14px;
  transition: color .2s;
}
.footer__col a:hover { color: #fff; }

.exp-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 20px 22px;
}
.exp-card__label {
  display: block;
  color: #e7edf3;
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: 14px;
}
.exp-card__bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  overflow: hidden;
}
.exp-card__bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #1fae54, var(--green));
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #6f7d8a;
  font-size: .85rem;
}
.footer__meta { display: flex; gap: 36px; }
.footer__meta span { letter-spacing: .18em; font-size: .72rem; font-weight: 600; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1);
  transition-delay: var(--d, 0s);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 960px) {
  .bento__grid { grid-template-columns: 1fr; }
  .card--wide, .card--narrow { grid-column: span 1; }
  .card__icon { margin-bottom: 36px; }

  /* texto antes da foto no empilhado (igual ao mockup mobile) */
  .legal__inner { grid-template-columns: 1fr; }
  .legal__copy  { order: -1; }
  .legal__media { max-width: 480px; margin-top: 8px; }
  .legal__quote { left: 16px; right: auto; bottom: -22px; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__experience { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  /* nav mobile */
  .nav__inner { min-height: 64px; }
  .nav__burger { display: flex; }
  .nav__logo { margin-inline: auto; }
  .nav__actions .nav__login { display: none; }

  .nav__links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 4px;
    margin: 0;
    padding: 8px var(--pad) 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 32px -20px rgba(20, 50, 61, .25);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s, transform .25s;
  }
  .nav__links a { padding: 12px 0; font-size: 1.05rem; }
  .nav.is-open .nav__links {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  /* hero empilha */
  .hero__inner {
    grid-template-columns: 1fr;
    align-items: stretch;
    min-height: 0;
  }
  .hero__copy { padding: 44px 0 12px; max-width: none; }
  .hero__media { justify-self: center; }
  .hero__media img { max-height: 460px; }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }
  .footer__brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer__bottom { flex-direction: column; align-items: center; gap: 18px; text-align: center; }
  .footer__meta { gap: 24px; justify-content: center; }
}

@media (max-width: 440px) {
  .card { padding: 30px 26px; }
  .hero__cta .btn, .cta__actions .btn { width: 100%; }
}

/* respeita preferências de movimento */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   PÁGINA 2 — FUNCIONALIDADES
   ============================================================ */

/* ---- variantes de componentes compartilhados ---- */
.badge--green {
  background: var(--green);
  color: var(--green-deep);
}
.eyebrow--ink { color: var(--ink-2); }

.btn--white {
  background: #fff;
  color: var(--ink-2);
}
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(0,0,0,.4); }

/* ---- HERO ---- */
.f-hero { background: #fff; overflow: hidden; }
.f-hero__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  /* só vertical — preserva o padding-inline do .container (senão o hero cola na lateral) */
  padding-block: clamp(56px, 8vw, 104px);
}
.f-hero__title {
  margin: 26px 0 0;
  font-size: clamp(2.3rem, 4.6vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink-2);
}
.f-hero__title .is-green { color: #3d5b73; }  /* steel (destaque do protótipo) */
.f-hero__sub {
  margin: 22px 0 32px;
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 48ch;
}

.f-hero__media { position: relative; }
/* glow suave atrás (Background+Blur) */
.f-hero__media::before {
  content: "";
  position: absolute;
  inset: 6% 4%;
  border-radius: 40px;
  background: radial-gradient(60% 60% at 70% 30%, rgba(120, 150, 255, .22), transparent 70%);
  filter: blur(28px);
  z-index: 0;
}
/* frame claro translúcido com o dashboard inset */
.f-hero__dash {
  position: relative;
  z-index: 1;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  padding: 14px;
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(227, 222, 250, .8);
  box-shadow: 0 40px 72px -34px rgba(40, 44, 92, .35);
  backdrop-filter: blur(6px);
}
.f-hero__dash img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.status-badge {
  position: absolute;
  left: -14px; bottom: -26px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px 12px 12px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 22px 44px -18px rgba(20, 50, 61, .3);
}
.status-badge__icon {
  flex: none;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--green);                     /* #33ff74 */
  border: 1px solid rgba(255, 255, 255, .4);
  box-shadow: inset 0 0 0 1px rgba(0, 77, 31, .06);
}
.status-badge__icon img { width: 22px; height: 22px; display: block; }
.status-badge small {
  display: block;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .14em;
  color: #8a97a0;
}
.status-badge strong {
  display: block;
  font-size: .98rem;
  color: var(--ink-2);
}

/* ---- BENTO / CAPACIDADES ---- */
.f-bento {
  background: var(--lavender);
  padding: clamp(64px, 9vw, 110px) 0;
}
.f-bento .section-title {
  color: var(--ink-2);
  max-width: 20ch;
  margin-inline: auto;
  text-align: center;
}
.f-bento__lead {
  margin: 18px auto clamp(40px, 6vw, 60px);
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 60ch;
  text-align: center;
}

.f-bento__grid { display: flex; gap: 24px; align-items: flex-start; }
.f-bento__col { flex: 1; display: flex; flex-direction: column; gap: 24px; min-width: 0; }

.fcard {
  position: relative;
  border-radius: 22px;
  padding: 36px;
  overflow: hidden;
}
.fcard--light { background: #fff; box-shadow: var(--shadow-card); }
.fcard--green { background: var(--green-forest); color: #fff; }
.fcard--lav   { background: var(--lav-card); }
.fcard--steel { background: var(--steel); color: #fff; }

/* ícone = div com cor de fundo + SVG puro dentro */
.ficon {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 14px;
  margin-bottom: 26px;
}
.ficon img { width: 28px; height: 28px; object-fit: contain; }
.ficon--steel { background: #335c74; }
.ficon--pc    { background: #348b55; }
.ficon--white { background: #fff; border: 1px solid var(--line); }
.fcard__title {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 14px;
  color: var(--ink-2);
}
.fcard--green .fcard__title,
.fcard--steel .fcard__title { color: #fff; }

.fcard__text { font-size: 1rem; color: var(--ink-soft); }
.fcard--green .fcard__text { color: rgba(255, 255, 255, .85); }
.fcard--steel .fcard__text { color: rgba(255, 255, 255, .8); }
.fcard--lav .fcard__text   { color: #54607a; }

/* lista do Hub */
.fcard__list { margin: 24px 0 0; display: grid; gap: 16px; }
.fcard__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--ink-2);
}
.fcard__list img { width: 22px; height: 22px; object-fit: contain; }

.fcard__shot {
  margin: 30px -36px -36px;
  padding: 26px 36px 0;
}
.fcard__shot img { width: 100%; display: block; }

/* subcards do Centro de Comando */
.subcard {
  margin-top: 16px;
  padding: 18px 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .14);
}
.subcard__label {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--green);
  margin-bottom: 6px;
}
.subcard__value { display: block; font-size: 1.05rem; color: #fff; }

/* Sincronização */
.fcard--sync { display: flex; align-items: center; gap: 24px; }
.fcard__sync-copy { flex: 1; }
/* duas divs sobrepostas (efeito de camadas) */
.fcard__sync-icons { position: relative; display: inline-flex; align-items: center; flex: none; }
.fcard__sync-icons .ficon {
  width: 64px; height: 64px;
  border-radius: 18px;
  margin-bottom: 0;
}
.fcard__sync-icons .ficon img { width: 30px; height: 30px; }
.fcard__sync-icons .ficon--white {
  transform: translateY(-8px);
  box-shadow: 0 16px 30px -16px rgba(20, 50, 61, .25);
}
.fcard__sync-icons .ficon--steel {
  margin-left: -22px;
  transform: translateY(8px);
  z-index: 2;
  box-shadow: 0 16px 30px -14px rgba(20, 50, 61, .35);
}

/* marca d'água de wifi (no-wifi) no fundo do card Resiliente */
.fcard--resilient { position: relative; }
.fcard--resilient::after {
  content: "";
  position: absolute;
  right: -20px; bottom: -16px;
  width: 210px; height: 163px;
  background: url(/assets/website/ic-wifi-off.svg) no-repeat center / contain;
  opacity: .06;
  pointer-events: none;
  z-index: 0;
}
.fcard--resilient > * { position: relative; z-index: 1; }

/* badge SINCRONIZAÇÃO LOCAL ATIVA */
.pill-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--green);
}
.pill-status__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--green);
  flex: none;
}

/* ---- DETAILED BREAKDOWN ---- */
.f-detail { background: #fff; padding: clamp(56px, 8vw, 100px) 0; }
.f-detail__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(36px, 6vw, 80px);
}
.f-detail__row + .f-detail__row { margin-top: clamp(56px, 8vw, 96px); }
.f-detail__row--reverse .f-detail__media { order: 2; }

/* o PNG já tem cantos arredondados e sombra embutidos — sem border-radius/box-shadow
   extras (senão vira um "card branco"). Só centralizado verticalmente na linha. */
.f-detail__media img {
  width: 100%;
  display: block;
}
.f-detail .section-title { color: var(--ink-2); margin-top: 8px; }
.f-detail__text {
  margin: 20px 0 28px;
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 50ch;
}

.feat-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 12px;
  background: var(--lavender);
  font-weight: 600;
  color: var(--ink-2);
}
.feat-pill + .feat-pill { margin-top: 14px; }
.feat-pill img { width: 22px; height: 22px; object-fit: contain; }

/* stats do Motor de Relatórios */
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat {
  padding: 26px 28px;
  border-radius: 16px;
  color: #fff;
}
.stat--steel { background: var(--steel); }
.stat--green { background: var(--green-forest); }
.stat strong {
  display: block;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1;
}
.stat span {
  display: block;
  margin-top: 10px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .82);
}

/* ---- CTA ---- */
.f-cta { background: var(--lavender); padding: clamp(48px, 7vw, 92px) 0; }
.f-cta__box {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  color: #fff;
  background: linear-gradient(110deg, var(--f-cta-a), var(--f-cta-b));
}
.f-cta__title { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 700; }
.f-cta__sub {
  margin: 18px auto 32px;
  max-width: 540px;
  color: rgba(235, 245, 245, .85);
}
.f-cta__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.f-cta__actions .btn { border-radius: 10px; padding: 16px 30px; }

/* ---- RESPONSIVO PÁGINA 2 ---- */
@media (max-width: 960px) {
  /* mobile: texto primeiro, dashboard depois (igual ao protótipo) */
  .f-hero__inner { grid-template-columns: 1fr; }
  .f-hero__media { margin-top: 6px; }

  /* empilha mantendo a ordem do design mobile:
     Hub -> Centro de Comando -> Sincronização -> Resiliente */
  .f-bento__grid { flex-direction: column; }
  .f-bento__col { display: contents; }
  .fcard--hub       { order: 1; }
  .fcard--command   { order: 2; }
  .fcard--sync      { order: 3; }
  .fcard--resilient { order: 4; }

  .f-detail__row { grid-template-columns: 1fr; }
  .f-detail__row--reverse .f-detail__media { order: -1; }
}

@media (max-width: 560px) {
  .fcard { padding: 28px 24px; }
  .fcard__shot { margin: 26px -24px -28px; padding: 22px 24px 0; }
  /* mantém texto à esquerda + ícones à direita (como no protótipo), não empilha */
  .fcard__sync-icons .ficon { width: 56px; height: 56px; }
  .fcard__sync-icons .ficon img { width: 26px; height: 26px; }
  .stat-grid { grid-template-columns: 1fr; }
  .f-cta__actions .btn { width: 100%; }
  /* badge = largura de conteúdo, sobreposto no canto inferior-esquerdo (não full-width) */
  .status-badge { left: -10px; right: auto; bottom: -20px; }
}

/* ============================================================
   PÁGINA 3 — PREÇOS
   ============================================================ */
:root {
  --p3-green: #2d7034;   /* verde floresta (eyebrow, título, CTA)   */
  --p3-dark:  #2c4a62;   /* card Profissional / coluna destacada    */
}

/* ---- HEADER ---- */
.p3-head { background: var(--lavender); padding: clamp(56px, 8vw, 100px) 0; }
.p3-head__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  align-items: end;
  gap: clamp(32px, 5vw, 72px);
}
.p3-head .eyebrow { color: var(--p3-green); }
.p3-head__title {
  margin: 0;
  font-size: clamp(2.3rem, 4.8vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink-2);
  max-width: 16ch;
}
.p3-head__title .is-green { color: var(--p3-green); }
.p3-head__note {
  margin: 0;
  padding-left: 26px;
  border-left: 2px solid #c9cde0;
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 42ch;
}

/* ---- PLANOS ---- */
.plans { background: var(--lavender); padding: clamp(16px, 3vw, 32px) 0 clamp(64px, 9vw, 112px); }
.plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 24px;
  align-items: stretch;
  max-width: 1080px;
  margin-inline: auto;
}
.plan {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 24px;
  padding: 36px 32px 32px;
  box-shadow: 0 8px 32px -12px rgba(20, 50, 61, .14);
  transition: box-shadow .2s, transform .2s;
}
.plan:hover {
  box-shadow: 0 20px 48px -16px rgba(20, 50, 61, .22);
  transform: translateY(-3px);
}
.plan--featured {
  position: relative;
  background: var(--p3-dark);
  border-color: transparent;
  color: #fff;
  padding: 52px 36px 40px;
  border-radius: 28px;
  box-shadow: 0 32px 64px -24px rgba(20, 44, 66, .50);
  z-index: 1;
}
.plan--featured:hover {
  box-shadow: 0 40px 72px -24px rgba(20, 44, 66, .60);
  transform: translateY(-4px);
}
.plan__badge {
  position: absolute;
  top: -15px; left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  border-radius: 999px;
  background: var(--p3-green);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .16em;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(61, 193, 120, .35);
}
.plan__header { margin-bottom: 4px; }
.plan__name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink-2);
  letter-spacing: -.01em;
  margin-bottom: 0;
}
.plan--featured .plan__name { color: #fff; }

.plan__price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 2px 8px; margin: 20px 0 0; }
.plan__price strong {
  font-size: clamp(2.2rem, 3.8vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink-2);
  line-height: 1;
}
.plan--featured .plan__price strong { color: #fff; }
.plan__price span { font-size: .95rem; color: var(--ink-soft); font-weight: 500; }
.plan__price--text strong { font-size: clamp(1.5rem, 2.4vw, 2rem); }
.plan--featured .plan__price span { color: rgba(255,255,255,.6); }

.plan__divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 24px 0;
}
.plan--featured .plan__divider { border-color: rgba(255,255,255,.15); }

.plan__features { display: grid; gap: 14px; margin-bottom: 28px; flex: 1; align-content: start; }
.plan__features li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: .94rem;
  font-weight: 600;
  color: var(--ink-2);
  line-height: 1.3;
}
.plan--featured .plan__features li { color: rgba(255,255,255,.92); }
.plan__features img { width: 20px; height: 20px; object-fit: contain; flex: none; }

.plan__btn { margin-top: auto; width: 100%; text-align: center; }

/* ---- COMPARATIVO ---- */
.cmp { background: var(--lavender); padding: clamp(48px, 7vw, 90px) 0; }
.cmp__title {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 700;
  color: var(--ink-2);
}
.cmp__rule {
  display: block;
  width: 120px; height: 4px;
  border-radius: 4px;
  background: var(--p3-green);
  margin: 16px 0 clamp(28px, 4vw, 44px);
}
.cmp__scroll { overflow-x: auto; border-radius: 18px; }

.cmp-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.cmp-table th,
.cmp-table td {
  padding: 22px 28px;
  text-align: left;
  font-size: 1rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.cmp-table thead th {
  background: #eef1f7;
  color: #6b7785;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  border-bottom: none;
}
.cmp-table tbody th[scope="row"] {
  color: var(--ink-2);
  font-weight: 600;
}
.cmp-table tbody tr:last-child th,
.cmp-table tbody tr:last-child td { border-bottom: none; }

/* coluna Profissional destacada */
.cmp-table .is-featured { background: #f3f6f9; }
.cmp-table thead th.is-featured { background: var(--p3-dark); color: #fff; }
.cmp-table strong { color: var(--ink-2); font-weight: 700; }

.ck { display: block; }
.ck--green { width: 18px; height: auto; }
.ck--navy { width: 22px; height: auto; }
.dash { color: #b7c0cc; font-size: 1.2rem; }

/* ---- CTA FINAL ---- */
.final { background: var(--lavender); padding: 0 0 clamp(64px, 9vw, 110px); }
.final__box {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: clamp(48px, 8vw, 90px) clamp(28px, 5vw, 64px);
  text-align: center;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(18, 38, 50, .78), rgba(16, 34, 46, .85));
    /* imagem de fundo do CTA final: cadastrar via CMS */
}
.final__title {
  font-size: clamp(1.8rem, 3.8vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -.01em;
}
.final__sub {
  margin: 18px auto 30px;
  max-width: 540px;
  color: rgba(235, 242, 245, .85);
}
.final__btn {
  background: var(--p3-green);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  padding: 16px 32px;
  box-shadow: 0 18px 36px -18px rgba(20, 70, 30, .6);
}
.final__btn:hover { filter: brightness(1.08); transform: translateY(-2px); }

/* ---- RESPONSIVO PÁGINA 3 ---- */
@media (max-width: 940px) {
  .p3-head__inner { grid-template-columns: 1fr; align-items: start; }
  .p3-head__note { padding-left: 20px; }
  .plans__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
    gap: 20px 0;
  }
  .plan--featured { padding: 44px 28px 32px; }
}
@media (min-width: 600px) and (max-width: 940px) {
  .plans__grid { grid-template-columns: repeat(2, 1fr); max-width: 680px; gap: 20px; }
}

/* ============================================================
   PÁGINA 4 — CONTATO
   ============================================================ */
:root { --p4-green: #7efb85; }   /* card do formulário / círculos de ícone */

.contact { background: var(--lavender); padding: clamp(48px, 7vw, 90px) 0; }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

/* ---- coluna info ---- */
.contact__title {
  font-size: clamp(2.2rem, 4.4vw, 3.3rem);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink-2);
  max-width: 12ch;
}
.contact__title .is-green { color: var(--p3-green); }
.contact__lead {
  margin: 22px 0 30px;
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 44ch;
}

.channels { display: grid; gap: 18px; margin-bottom: 38px; }
.channels li { display: flex; align-items: center; gap: 14px; }
.channels__icon {
  flex: none;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--p4-green);
}
.channels__icon img { width: 20px; height: 20px; object-fit: contain; }
.channels__text small {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: #8a97a0;
}
.channels__text strong { display: block; font-size: 1.05rem; color: var(--ink-2); }

/* ---- depoimentos ---- */
.testimonials { display: grid; gap: 22px; }
.testi {
  margin: 0;
  padding: 26px 28px;
  background: #fff;
  border-radius: 14px;
  border-left: 4px solid;
  box-shadow: 0 16px 36px -28px rgba(20, 50, 61, .25);
}
.testi--green  { border-left-color: #2f6c33; }
.testi--purple { border-left-color: #5d2a65; }
.testi blockquote {
  margin: 0 0 20px;
  font-style: italic;
  font-size: 1.02rem;
  color: #3c4a52;
  line-height: 1.5;
}
.testi figcaption { display: flex; align-items: center; gap: 12px; }
.testi figcaption img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex: none; }
.testi figcaption strong { display: block; font-size: .95rem; color: var(--ink-2); }
.testi figcaption small { display: block; font-size: .82rem; color: var(--ink-soft); }

/* ---- formulário ---- */
.contact__form { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.form-card {
  width: 100%;
  background: var(--p4-green);
  border-radius: 22px;
  padding: clamp(28px, 3vw, 40px);
  box-shadow: 0 30px 60px -32px rgba(20, 120, 60, .5);
}
.form-card__title { font-size: 1.7rem; font-weight: 700; color: var(--ink-2); }
.form-card__sub { margin: 10px 0 26px; color: #1d4a2b; font-size: .98rem; }

.dform { display: grid; gap: 18px; }
.dform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field > span {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: #1c3a26;
}
.field input,
.field select {
  width: 100%;
  font: inherit;
  font-size: .98rem;
  color: var(--ink-2);
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(20, 70, 40, .14);
  background: rgba(255, 255, 255, .55);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.field input::placeholder { color: #5c7a64; }
.field input:focus,
.field select:focus {
  outline: none;
  background: rgba(255, 255, 255, .8);
  border-color: var(--ink-2);
  box-shadow: 0 0 0 3px rgba(20, 50, 70, .12);
}
.field select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231a455d' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}

.dform__submit { width: 100%; margin-top: 6px; padding: 16px; }
.dform__terms {
  margin: 0;
  text-align: center;
  font-size: .78rem;
  color: #1d4a2b;
}
.dform__terms a { color: #14361f; font-weight: 600; text-decoration: underline; }

.avail-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #eef1f7;
  border: 1px solid var(--line);
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-2);
}
.avail-pill__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #1fae54;
  box-shadow: 0 0 0 4px rgba(31, 174, 84, .18);
}

/* ---- RESPONSIVO PÁGINA 4 ---- */
@media (max-width: 920px) {
  .contact__inner { grid-template-columns: 1fr; }
  .contact__title { max-width: none; }
}
@media (max-width: 520px) {
  .dform__row { grid-template-columns: 1fr; }
}

/* ===================== CMS Placeholder ===================== */
.cms-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  background: #f5f7fa;
  border: 2px dashed #c8d0db;
  border-radius: 12px;
  color: #8a9bb0;
  font-size: .85rem;
  text-align: center;
  padding: 1.5rem;
}
.cms-placeholder--hero  { min-height: 380px; }
.cms-placeholder--dash  { min-height: 300px; }
.cms-placeholder--small { min-height: 140px; }


/* ===================== Nav locale selector ===================== */
.nav__locale form { margin: 0; }

/* ============================================================
   PÁGINA 5 — SOBRE
   ============================================================ */

/* ---- HERO ---- */
.ab-hero {
  background: var(--navy-900);
  overflow: hidden;
  position: relative;
  padding: clamp(64px, 9vw, 112px) 0;
}
.ab-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 60% at 0% 0%, rgba(51, 255, 116, .10), transparent 55%),
    radial-gradient(60% 50% at 100% 100%, rgba(39, 81, 105, .30), transparent 60%);
  pointer-events: none;
}
.ab-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(48px, 7vw, 88px);
  align-items: center;
}
.ab-hero .badge { background: rgba(51, 255, 116, .12); color: var(--green); border: 1px solid rgba(51, 255, 116, .22); }
.ab-hero .badge svg { color: var(--green); }
.ab-hero__title {
  margin-top: 26px;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -.025em;
  color: #fff;
  line-height: 1.05;
}
.ab-hero__title--green { color: var(--green); }
.ab-hero__sub {
  margin-top: 24px;
  font-size: 1.05rem;
  color: #8fadb8;
  max-width: 52ch;
  line-height: 1.65;
}

.ab-hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .07);
}
.ab-stat {
  padding: 32px 28px;
  background: rgba(255, 255, 255, .04);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background .2s;
}
.ab-stat:hover { background: rgba(255, 255, 255, .07); }
.ab-stat strong {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1;
}
.ab-stat strong span { color: var(--green); }
.ab-stat > span { font-size: .82rem; color: #6a8090; font-weight: 500; letter-spacing: .04em; }

/* ---- MISSÃO ---- */
.ab-mission {
  background: #fff;
  padding: clamp(72px, 10vw, 128px) 0;
}
.ab-mission__inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}
.ab-mission__quote {
  position: sticky;
  top: 96px;
  background: var(--navy-900);
  border-radius: 24px;
  padding: 44px 40px;
  color: #fff;
}
.ab-mission__quote::before {
  content: "\201C";
  display: block;
  font-size: 5rem;
  line-height: .8;
  color: var(--green);
  font-family: Georgia, serif;
  margin-bottom: 16px;
}
.ab-mission__quote blockquote {
  margin: 0 0 26px;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  color: rgba(220, 235, 245, .9);
}
.ab-mission__quote figcaption {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: #6a8090;
}
.ab-mission__text {
  margin: 22px 0 36px;
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.ab-pillars { display: grid; gap: 22px; }
.ab-pillars li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.ab-pillars__icon {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--green);
  display: grid;
  place-items: center;
  color: var(--ink);
}
.ab-pillars li > div { display: flex; flex-direction: column; gap: 4px; }
.ab-pillars strong { font-size: 1rem; color: var(--ink); font-weight: 700; }
.ab-pillars span { font-size: .95rem; color: var(--ink-soft); }

/* ---- VALORES ---- */
.ab-values {
  background: var(--lavender);
  padding: clamp(72px, 10vw, 120px) 0;
}
.ab-values__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.ab-val {
  border-radius: 24px;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}
.ab-val--ink { background: var(--navy-900); color: #fff; }
.ab-val--green { background: var(--green); }
.ab-val--light { background: #fff; box-shadow: var(--shadow-card); }

.ab-val__num {
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  opacity: .08;
  position: absolute;
  top: 20px; right: 32px;
}
.ab-val--green .ab-val__num { opacity: .18; color: var(--ink); }
.ab-val--light .ab-val__num { color: var(--ink); }

.ab-val h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #fff;
  position: relative;
}
.ab-val--green h3 { color: var(--ink); }
.ab-val--light h3 { color: var(--ink); }

.ab-val p {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, .75);
  position: relative;
}
.ab-val--green p { color: rgba(14, 40, 22, .82); }
.ab-val--light p { color: var(--ink-soft); }

/* ---- TIMELINE ---- */
.ab-timeline {
  background: #fff;
  padding: clamp(72px, 10vw, 120px) 0;
}
.ab-tl { position: relative; padding-left: 36px; }
.ab-tl::before {
  content: "";
  position: absolute;
  left: 10px; top: 0; bottom: 0;
  width: 2px;
  background: var(--line);
}
.ab-tl__item {
  position: relative;
  padding: 0 0 56px 40px;
}
.ab-tl__item:last-child { padding-bottom: 0; }
.ab-tl__marker {
  position: absolute;
  left: -11px; top: 4px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--line);
  transition: border-color .3s, background .3s;
}
.ab-tl__marker--active {
  background: var(--green);
  border-color: var(--green-deep);
  box-shadow: 0 0 0 5px rgba(51, 255, 116, .18);
}
.ab-tl__item:hover .ab-tl__marker:not(.ab-tl__marker--active) {
  border-color: var(--steel);
  background: var(--lavender);
}
.ab-tl__year {
  display: inline-block;
  margin-bottom: 10px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .2em;
  color: var(--green-deep);
  background: rgba(0, 110, 43, .08);
  padding: 4px 12px;
  border-radius: 999px;
}
.ab-tl__content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}
.ab-tl__content p {
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 64ch;
  line-height: 1.65;
}

/* ---- RESPONSIVO PÁGINA 5 ---- */
@media (max-width: 960px) {
  .ab-hero__inner { grid-template-columns: 1fr; }
  .ab-hero__stats { max-width: 480px; }
  .ab-mission__inner { grid-template-columns: 1fr; }
  .ab-mission__quote { position: static; }
  .ab-values__grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .ab-val { padding: 34px 28px; }
  .ab-tl { padding-left: 24px; }
  .ab-tl__item { padding-left: 28px; }
}
