/* ==========================================================================
   MESIAL, design system
   Paleta e tipografia do Branding & Media Kit: azul domina, dourado é acento.
   ========================================================================== */

:root {
  --navy-950: #050f26;
  --navy-900: #071d42; /* Azul Mesial */
  --navy-800: #0b2c5b; /* Azul Profundo */
  --navy-700: #103a72;
  --navy-600: #1a4d8f;
  --navy-500: #2a63ac;
  --navy-400: #5b86c4;
  --navy-300: #93b1da;
  --navy-200: #c3d5ec;
  --navy-100: #e6eef8;
  --navy-50:  #f4f8fd;

  --gold: #c58a16;        /* Dourado Mesial */
  --gold-light: #e4b85d;  /* Dourado Claro */
  --gold-soft: #f7e9c9;

  --ink: #0b1b33;
  --slate: #5b6574;       /* Cinza Neutro */
  --mist: #8b95a4;

  --line: var(--navy-100);
  --white: #ffffff;

  --font: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-display: "Sora", var(--font);

  --wrap: 76rem;
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --radius-pill: 999px;

  --shadow-soft: 0 1px 2px rgba(11,27,51,.04), 0 8px 24px rgba(11,27,51,.06);
  --shadow-lift: 0 2px 4px rgba(11,27,51,.05), 0 18px 48px rgba(11,27,51,.10);
  --shadow-navy: 0 24px 60px -20px rgba(7,29,66,.45);

  --ease: cubic-bezier(.16,1,.3,1);
  --header-h: 4.5rem;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
:target, [id] { scroll-margin-top: 6rem; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -.02em;
  line-height: 1.1;
  color: var(--navy-900);
  text-wrap: balance;
}
p { text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; padding: 0; }

::selection { background: var(--gold-light); color: var(--navy-950); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--navy-900); color: #fff; padding: .6rem 1rem; border-radius: 8px;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 1.25rem; }
@media (min-width: 768px) { .wrap { padding-inline: 2rem; } }

.section { padding-block: 5rem; }
@media (min-width: 768px) { .section { padding-block: 7rem; } }
.section--tint { background: color-mix(in srgb, var(--navy-50) 55%, #fff); }
.section--navy { background: var(--navy-950); color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .16em;
  color: var(--gold);
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.section--navy .eyebrow { color: var(--gold-light); }

.sec-head { display: flex; flex-direction: column; gap: 1rem; max-width: 42rem; }
.sec-head--center { align-items: center; text-align: center; margin-inline: auto; }
.sec-head h2 { font-size: clamp(1.9rem, 1.3rem + 2.4vw, 2.6rem); font-weight: 600; }
.sec-head p { font-size: 1.125rem; color: var(--slate); }
.section--navy .sec-head h2 { color: #fff; }
.section--navy .sec-head p { color: var(--navy-200); }

.text-gold {
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* decorative grid + glows */
.bg-grid {
  background-image:
    linear-gradient(to right, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 56px 56px;
}
.glow { position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  height: 2.75rem; padding-inline: 1.35rem; border: 0; cursor: pointer;
  border-radius: var(--radius-pill); font-family: var(--font); font-size: .95rem; font-weight: 500;
  white-space: nowrap; transition: all .2s var(--ease); will-change: transform;
}
.btn:active { transform: scale(.98); }
.btn--lg { height: 3.25rem; padding-inline: 1.75rem; font-size: 1rem; }
.btn--block { width: 100%; }
.btn svg { width: 1.15rem; height: 1.15rem; }
.btn--primary { background: var(--gold); color: var(--navy-950); box-shadow: 0 8px 24px -8px rgba(197,138,22,.6); }
.btn--primary:hover { background: var(--gold-light); }
.btn--secondary { background: var(--navy-900); color: #fff; }
.btn--secondary:hover { background: var(--navy-800); }
.btn--ghost { background: transparent; color: var(--navy-900); box-shadow: inset 0 0 0 1px var(--navy-200); }
.btn--ghost:hover { background: var(--navy-50); box-shadow: inset 0 0 0 1px var(--navy-300); }
.btn--ondark { background: rgba(255,255,255,.10); color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,.25); backdrop-filter: blur(6px); }
.btn--ondark:hover { background: rgba(255,255,255,.20); }
.btn .arrow { transition: transform .2s var(--ease); }
.btn:hover .arrow { transform: translateX(2px); }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 50;
  transition: background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.85); backdrop-filter: blur(12px); border-bottom-color: var(--navy-100);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; }
.brand img { height: 2rem; width: auto; }
.brand .logo-light { display: block; }
.brand .logo-color { display: none; }
.is-scrolled .brand .logo-light { display: none; }
.is-scrolled .brand .logo-color { display: block; }

.nav { display: none; }
@media (min-width: 1024px) { .nav { display: flex; align-items: center; gap: .25rem; } }
.nav a {
  position: relative; padding: .5rem .75rem; border-radius: var(--radius-pill);
  font-size: .95rem; font-weight: 500; color: rgba(255,255,255,.85); white-space: nowrap; transition: color .2s;
}
.nav a:hover { color: #fff; }
.is-scrolled .nav a { color: var(--navy-800); }
.is-scrolled .nav a:hover { color: var(--navy-950); }
.nav a.current-menu-item::after {
  content: ""; position: absolute; inset-inline: .75rem; bottom: -1px; height: 2px; border-radius: 2px; background: var(--gold);
}

.header__cta { display: none; align-items: center; gap: .5rem; }
@media (min-width: 1024px) { .header__cta { display: flex; } }
.header__login {
  padding: .5rem 1rem; border-radius: var(--radius-pill); font-size: .95rem; font-weight: 500;
  color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,.25); transition: all .2s;
}
.header__login:hover { background: rgba(255,255,255,.10); }
.is-scrolled .header__login { color: var(--navy-800); box-shadow: inset 0 0 0 1px var(--navy-200); }
.is-scrolled .header__login:hover { background: var(--navy-50); }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem;
  border-radius: var(--radius-pill); background: transparent; border: 0; cursor: pointer;
  color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
}
.is-scrolled .nav-toggle { color: var(--navy-900); box-shadow: inset 0 0 0 1px var(--navy-200); }
.nav-toggle svg { width: 1.35rem; height: 1.35rem; }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

/* mobile off-canvas */
.mobile-nav { position: fixed; inset: 0; top: var(--header-h); z-index: 40; visibility: hidden; }
.mobile-nav.is-open { visibility: visible; }
.mobile-nav__backdrop { position: absolute; inset: 0; background: rgba(5,15,38,.35); opacity: 0; transition: opacity .3s; }
.mobile-nav.is-open .mobile-nav__backdrop { opacity: 1; }
.mobile-nav__panel {
  position: absolute; inset-inline: 0; top: 0; background: #fff; padding: 1.25rem;
  border-bottom: 1px solid var(--navy-100); box-shadow: var(--shadow-lift);
  transform: translateY(-1rem); opacity: 0; transition: all .3s var(--ease);
}
.mobile-nav.is-open .mobile-nav__panel { transform: translateY(0); opacity: 1; }
.mobile-nav__panel a.nav-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem .75rem; border-radius: .75rem; font-size: 1.125rem; font-weight: 500; color: var(--navy-900);
}
.mobile-nav__panel a.nav-link:hover { background: var(--navy-50); }
.mobile-nav__panel a.nav-link svg { width: 1rem; height: 1rem; color: var(--navy-300); }
.mobile-nav__cta { display: flex; flex-direction: column; gap: .5rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--navy-100); }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--navy-950); color: #fff; padding-top: 8rem; padding-bottom: 5rem; }
@media (min-width: 768px) { .hero { padding-top: 10rem; padding-bottom: 7rem; } }
.hero__grid { display: grid; gap: 3.5rem; align-items: center; position: relative; }
@media (max-width: 767px) { .hero__art { display: none; } }
@media (min-width: 1024px) { .hero__grid { grid-template-columns: 1fr 1.05fr; } }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .5rem; padding: .4rem 1rem; border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.05); backdrop-filter: blur(6px);
  font-size: .78rem; font-weight: 500; text-transform: uppercase; letter-spacing: .14em; color: var(--navy-100);
}
.hero__eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.hero h1 { margin-top: 1.5rem; font-size: clamp(2.6rem, 1.8rem + 3.2vw, 3.5rem); font-weight: 600; color: #fff; line-height: 1.05; }
.hero__tagline { margin-top: 1rem; font-family: var(--font-display); font-size: clamp(1.25rem, 1rem + 1vw, 1.5rem); font-weight: 500; color: #fff; }
.hero__desc { margin-top: 1.25rem; max-width: 34rem; font-size: 1.125rem; color: var(--navy-200); }
.hero__cta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .75rem; }
.hero__checks { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; font-size: .9rem; color: var(--navy-300); }
.hero__checks span { display: inline-flex; align-items: center; gap: .4rem; }
.hero__checks svg { width: 1rem; height: 1rem; color: var(--gold-light); }
.hero__art { position: relative; }
.hero__art-glow { position: absolute; inset: -1.5rem; border-radius: 2rem; background: linear-gradient(120deg, rgba(197,138,22,.10), transparent 60%, rgba(42,99,172,.20)); filter: blur(40px); }

/* flow lines decorative */
.flow-lines { position: absolute; right: 0; bottom: 0; width: 66%; height: 100%; opacity: .6; pointer-events: none; }

/* ---------- dashboard mock ---------- */
.dash { position: relative; max-width: 100%; border-radius: 1.25rem; overflow: hidden; background: #fff; box-shadow: var(--shadow-navy); }
.dash__row { display: flex; color: var(--navy-900); }
.dash__side { width: 11rem; flex-shrink: 0; background: var(--navy-950); padding: 1rem; display: none; flex-direction: column; gap: .25rem; }
@media (min-width: 640px) { .dash__side { display: flex; } }
.dash__brand { display: flex; align-items: center; gap: .5rem; padding: 0 .25rem; margin-bottom: 1rem; }
.dash__brand img { height: 1.4rem; }
.dash__navitem { display: flex; align-items: center; gap: .6rem; padding: .5rem .6rem; border-radius: .5rem; font-size: .78rem; color: var(--navy-300); }
.dash__navitem svg { width: 1rem; height: 1rem; }
.dash__navitem.is-active { background: rgba(255,255,255,.10); color: #fff; font-weight: 500; }
.dash__main { min-width: 0; flex: 1; background: color-mix(in srgb, var(--navy-50) 60%, #fff); padding: 1rem; }
@media (min-width: 640px) { .dash__main { padding: 1.25rem; } }
.dash__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.dash__head h3 { font-size: 1rem; }
.dash__bell { width: 2rem; height: 2rem; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: #fff; box-shadow: inset 0 0 0 1px var(--navy-100); }
.dash__bell svg { width: 1rem; height: 1rem; color: var(--navy-500); }
.dash__stats { display: grid; grid-template-columns: repeat(3,1fr); gap: .6rem; }
.dash__card { background: #fff; border-radius: .75rem; padding: .75rem; box-shadow: inset 0 0 0 1px var(--navy-100); }
.dash__card .lbl { font-size: .6rem; color: var(--slate); }
.dash__card .val { margin-top: .25rem; font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; }
.dash__card .delta { margin-top: .1rem; font-size: .58rem; font-weight: 500; color: #0a8a3f; }
.dash__two { margin-top: .6rem; display: grid; grid-template-columns: 1fr; gap: .6rem; }
@media (min-width: 768px) { .dash__two { grid-template-columns: 1fr 1fr; } }
.dash__panel { background: #fff; border-radius: .75rem; padding: .85rem; box-shadow: inset 0 0 0 1px var(--navy-100); }
.dash__panel .ptitle { font-size: .7rem; font-weight: 600; color: var(--navy-800); margin-bottom: .6rem; }
.dash__agenda { display: flex; flex-direction: column; gap: .6rem; }
.dash__agrow { display: flex; align-items: center; gap: .6rem; }
.dash__agrow .t { font-size: .65rem; font-weight: 500; color: var(--slate); }
.dash__agrow .n { flex: 1; font-size: .72rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tag { border-radius: var(--radius-pill); padding: .1rem .5rem; font-size: .55rem; font-weight: 500; }
.tag--gold { background: var(--gold-soft); color: #8a5f0f; }
.tag--navy { background: var(--navy-100); color: var(--navy-700); }
.tag--slate { background: var(--navy-50); color: var(--slate); }
.donut-wrap { display: flex; align-items: center; gap: .65rem; }
.donut { position: relative; width: 4.5rem; height: 4.5rem; flex-shrink: 0; }
.donut svg { width: 4.5rem; height: 4.5rem; transform: rotate(-90deg); }
.donut .center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.donut .center .p { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; }
.donut .center .s { font-size: .55rem; color: var(--slate); }
.donut-legend { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: .35rem; font-size: .58rem; color: var(--slate); }
.donut-legend div { display: flex; align-items: center; gap: .4rem; white-space: nowrap; }
.donut-legend .dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.donut-legend strong { margin-left: auto; color: var(--navy-900); }
.dash__ret { margin-top: .6rem; }
.dash__retrow { display: flex; align-items: center; gap: .5rem; }
.dash__retrow .av { width: 1.5rem; height: 1.5rem; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--navy-100); font-size: .55rem; font-weight: 600; color: var(--navy-700); }
.dash__retgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: .5rem; }
.dash__badge {
  position: absolute; bottom: -1.25rem; left: -1.25rem; display: none; align-items: center; gap: .6rem;
  background: #fff; padding: .75rem 1rem .75rem .75rem; border-radius: .75rem; box-shadow: var(--shadow-lift);
}
@media (min-width: 640px) { .dash__badge { display: flex; } }
.dash__badge .ic { width: 2.25rem; height: 2.25rem; display: flex; align-items: center; justify-content: center; border-radius: .5rem; background: var(--gold-soft); color: var(--gold); }
.dash__badge .ic svg { width: 1.25rem; height: 1.25rem; }

/* ---------- generic cards ---------- */
.card {
  background: #fff; border: 1px solid var(--navy-100); border-radius: var(--radius); padding: 1.75rem;
  box-shadow: var(--shadow-soft); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.card__icon {
  display: inline-flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem;
  border-radius: .75rem; background: var(--navy-900); color: var(--gold-light); margin-bottom: 1.25rem;
}
.card__icon svg { width: 1.5rem; height: 1.5rem; }
.card__icon--lg { width: 3.5rem; height: 3.5rem; border-radius: 1rem; }
.card__icon--lg svg { width: 1.75rem; height: 1.75rem; }
.card h3 { font-size: 1.125rem; font-weight: 600; }
.card p { margin-top: .5rem; font-size: .95rem; color: var(--slate); }

/* grids */
.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2,1fr); } .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4,1fr); } }

/* differentials */
.diff { position: relative; display: flex; flex-direction: column; overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--navy-100); background: #fff; padding: 2rem; box-shadow: var(--shadow-soft); }
.diff__num { position: absolute; right: 1.5rem; top: 1.25rem; font-family: var(--font-display); font-size: 3rem; font-weight: 600; color: var(--navy-50); }
.diff__icon { display: inline-flex; align-items: center; justify-content: center; width: 3.5rem; height: 3.5rem; border-radius: 1rem; background: var(--navy-900); color: var(--gold-light); margin-bottom: 1.5rem; }
.diff__icon svg { width: 1.75rem; height: 1.75rem; }
.diff__kicker { font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; color: var(--gold); }
.diff h3 { margin-top: .5rem; font-size: 1.25rem; font-weight: 600; }
.diff p { margin-top: .75rem; font-size: .95rem; color: var(--slate); }

/* feature list card */
.feat { display: flex; flex-direction: column; }
.feat__head { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; }
.feat__lead { font-size: .95rem; font-weight: 500; color: var(--navy-800); }
.feat__list { margin-top: 1rem; display: flex; flex-direction: column; gap: .65rem; }
.feat__list li { display: flex; align-items: flex-start; gap: .65rem; font-size: .9rem; color: var(--slate); }
.check-dot { margin-top: .1rem; flex-shrink: 0; width: 1rem; height: 1rem; border-radius: 50%; background: var(--gold-soft); color: var(--gold); display: flex; align-items: center; justify-content: center; }
.check-dot svg { width: .75rem; height: .75rem; }

/* platform split */
.split { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .split { grid-template-columns: .85fr 1.15fr; gap: 4rem; align-items: center; } }

/* mesial flow */
.flow { position: relative; overflow: hidden; }
.flow__steps { position: relative; margin-top: 4rem; display: grid; gap: 2rem; }
@media (min-width: 640px) { .flow__steps { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .flow__steps { grid-template-columns: repeat(4,1fr); gap: 1.5rem; } }
.flow__line { display: none; }
@media (min-width: 1024px) { .flow__line { display: block; position: absolute; top: 1.75rem; left: 7.5%; right: 7.5%; height: 1px; background: linear-gradient(to right, transparent, rgba(197,138,22,.5), transparent); } }
.flow__step { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; }
@media (min-width: 1024px) { .flow__step { align-items: flex-start; text-align: left; } }
.flow__badge { position: relative; margin-bottom: 1.5rem; width: 3.5rem; height: 3.5rem; display: flex; align-items: center; justify-content: center; border-radius: 1rem; border: 1px solid rgba(255,255,255,.15); background: var(--navy-900); color: var(--gold-light); box-shadow: var(--shadow-navy); }
.flow__badge svg { width: 1.75rem; height: 1.75rem; }
.flow__badge .n { position: absolute; right: -.5rem; top: -.5rem; width: 1.5rem; height: 1.5rem; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--gold); color: var(--navy-950); font-size: .62rem; font-weight: 700; }
.flow__step h3 { color: #fff; font-size: 1.125rem; font-weight: 600; }
.flow__step p { margin-top: .5rem; font-size: .92rem; color: var(--navy-300); }
.flow__callout { margin-top: 3.5rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.03); padding: 2rem; backdrop-filter: blur(6px); }
@media (min-width: 640px) { .flow__callout { flex-direction: row; justify-content: space-between; text-align: left; } }
.flow__callout .txt { display: flex; align-items: center; gap: 1rem; }
.flow__callout .ic { flex-shrink: 0; width: 3rem; height: 3rem; display: flex; align-items: center; justify-content: center; border-radius: .75rem; background: var(--gold-soft); color: var(--gold); }
.flow__callout .ic svg { width: 1.5rem; height: 1.5rem; }
.flow__callout p.title { font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; color: #fff; }
.flow__callout p.sub { font-size: .9rem; color: var(--navy-300); }

/* painpoints chips */
.chips { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1rem; }
.chip { display: inline-flex; align-items: center; gap: .5rem; border-radius: var(--radius-pill); border: 1px solid var(--navy-100); background: #fff; padding: .5rem 1rem; font-size: .9rem; font-weight: 500; color: var(--navy-800); }
.chip svg { width: 1rem; height: 1rem; color: var(--gold); }

/* plans */
.plans { display: grid; gap: 1.25rem; align-items: stretch; }
@media (min-width: 768px) { .plans { grid-template-columns: repeat(3,1fr); } }
.plan { position: relative; display: flex; flex-direction: column; border-radius: var(--radius-lg); border: 1px solid var(--navy-100); background: #fff; padding: 2rem; box-shadow: var(--shadow-soft); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.plan:not(.plan--feat):hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.plan--feat { border-color: transparent; background: var(--navy-950); color: #fff; box-shadow: var(--shadow-navy); }
@media (min-width: 1024px) { .plan--feat { margin-block: -.5rem; padding-block: 2.5rem; } }
.plan__badge { position: absolute; top: -.75rem; left: 50%; transform: translateX(-50%); border-radius: var(--radius-pill); background: var(--gold); color: var(--navy-950); padding: .25rem 1rem; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.plan h3 { font-size: 1.125rem; font-weight: 600; }
.plan--feat h3 { color: #fff; }
.plan__tag { margin-top: .25rem; font-size: .875rem; color: var(--slate); }
.plan--feat .plan__tag { color: var(--navy-300); }
.plan__price { margin-top: 1.5rem; display: flex; align-items: flex-end; gap: .25rem; }
.plan__price .cur { font-size: .875rem; font-weight: 500; color: var(--slate); }
.plan--feat .plan__price .cur, .plan--feat .plan__price .cad { color: var(--navy-300); }
.plan__price .num { font-family: var(--font-display); font-size: 3rem; font-weight: 600; line-height: 1; color: var(--navy-900); }
.plan--feat .plan__price .num { color: #fff; }
.plan__price .cad { margin-bottom: .25rem; font-size: .875rem; color: var(--slate); }
.plan__feats { margin-top: 1.75rem; flex: 1; display: flex; flex-direction: column; gap: .75rem; }
.plan__feats li { display: flex; align-items: flex-start; gap: .65rem; font-size: .92rem; color: var(--navy-800); }
.plan--feat .plan__feats li { color: var(--navy-100); }
.plan__feats .check-dot { background: var(--gold-soft); color: var(--gold); }
.plan--feat .plan__feats .check-dot { background: var(--gold); color: var(--navy-950); }
.plan__cta { margin-top: 2rem; }
.plans-note { margin-top: 2rem; text-align: center; font-size: .875rem; color: var(--slate); }
.plans-note a { font-weight: 500; color: var(--navy-900); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 4px; }

/* trust band */
.trust { background: #fff; padding-block: 1.5rem; }
.trust__inner { border-radius: var(--radius-lg); background: var(--navy-950); padding: 2rem; }
@media (min-width: 768px) { .trust__inner { padding: 2.5rem; } }
.trust__grid { display: grid; gap: 2rem; }
@media (min-width: 640px) { .trust__grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .trust__grid { grid-template-columns: repeat(4,1fr); } }
.trust__item { display: flex; align-items: flex-start; gap: 1rem; }
.trust__item .ic { flex-shrink: 0; width: 2.75rem; height: 2.75rem; display: flex; align-items: center; justify-content: center; border-radius: .75rem; background: rgba(255,255,255,.10); color: var(--gold-light); }
.trust__item .ic svg { width: 1.5rem; height: 1.5rem; }
.trust__item p.t { font-weight: 600; color: #fff; }
.trust__item p.d { margin-top: .25rem; font-size: .875rem; color: var(--navy-300); }

/* faq */
.faq { border-top: 1px solid var(--navy-100); }
.faq__item { border-bottom: 1px solid var(--navy-100); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 0; text-align: left; background: none; border: 0; cursor: pointer; }
.faq__q span.q { font-size: 1.125rem; font-weight: 500; color: var(--navy-900); font-family: var(--font); }
.faq__q .ic { flex-shrink: 0; width: 2rem; height: 2rem; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--navy-50); color: var(--navy-700); transition: transform .3s, background .3s; }
.faq__q .ic svg { width: 1rem; height: 1rem; }
.faq__item.is-open .faq__q .ic { transform: rotate(45deg); background: var(--gold); color: var(--navy-950); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ease); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; padding-bottom: 1.25rem; }
.faq__a > div { overflow: hidden; }
.faq__a p { max-width: 44rem; font-size: .98rem; color: var(--slate); }

/* blog cards */
.post-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .post-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 768px) { .post-grid { grid-template-columns: repeat(3,1fr); } }
.post-card { display: flex; flex-direction: column; height: 100%; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--navy-100); background: #fff; box-shadow: var(--shadow-soft); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.post-cover { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--navy-950); }
.post-cover .bg-grid { position: absolute; inset: 0; opacity: .4; }
.post-cover .cglow { position: absolute; right: -2.5rem; top: -3rem; width: 10rem; height: 10rem; border-radius: 50%; filter: blur(40px); background: rgba(26,77,143,.4); }
.post-cover .cicon { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 3.75rem; height: 3.75rem; display: flex; align-items: center; justify-content: center; border-radius: 1rem; background: rgba(255,255,255,.07); box-shadow: inset 0 0 0 1px rgba(255,255,255,.12); color: var(--gold-light); }
.post-cover .cicon svg { width: 2rem; height: 2rem; stroke-width: 1.4; }
.post-cover .ccat { position: absolute; left: 1.25rem; top: 1.25rem; z-index: 1; border-radius: var(--radius-pill); background: rgba(255,255,255,.10); padding: .25rem .75rem; font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,.15); backdrop-filter: blur(6px); }
.post-cover .clogo { position: absolute; right: 1.1rem; bottom: 1.1rem; height: 1.15rem; width: auto; opacity: .7; }
.post-card__body { flex: 1; display: flex; flex-direction: column; padding: 1.5rem; }
.post-card__body h3, .post-card__body h2 { font-size: 1.125rem; font-weight: 600; line-height: 1.35; color: var(--navy-900); font-family: var(--font-display); }
.post-card__body p { margin-top: .5rem; flex: 1; font-size: .92rem; color: var(--slate); }
.post-meta { margin-top: 1rem; display: flex; align-items: center; gap: .75rem; font-size: .75rem; color: var(--mist); }
.post-meta .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--navy-200); }

/* prose (article) */
.prose { max-width: 48rem; }
.prose p { margin-top: 1.25rem; font-size: 1.05rem; line-height: 1.8; color: var(--slate); }
.prose h2 { margin-top: 3rem; font-size: 1.5rem; font-weight: 600; color: var(--navy-900); }
.prose h3 { margin-top: 2rem; font-size: 1.2rem; font-weight: 600; }
.prose ul { margin-top: 1.25rem; display: flex; flex-direction: column; gap: .65rem; }
.prose ul li { display: flex; align-items: flex-start; gap: .75rem; font-size: 1.02rem; color: var(--slate); }
.prose ul li::before { content: ""; margin-top: .6rem; width: 6px; height: 6px; flex-shrink: 0; border-radius: 50%; background: var(--gold); }
.prose blockquote { margin-top: 2rem; border-left: 4px solid var(--gold); background: color-mix(in srgb, var(--navy-50) 60%, #fff); padding: 1.25rem 1.5rem; font-size: 1.15rem; font-weight: 500; font-style: italic; color: var(--navy-900); }
.prose img { margin-top: 1.5rem; border-radius: var(--radius); }
.prose a { color: var(--navy-800); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
.prose a.btn { text-decoration: none; }
.prose a.btn--primary { color: var(--navy-950); }
.prose a.btn--secondary { color: #fff; }
.prose a.btn--ghost { color: var(--navy-900); }
.prose a.btn--ondark { color: #fff; }

/* page hero (inner pages) */
.page-hero { position: relative; overflow: hidden; background: var(--navy-950); color: #fff; padding-top: 9rem; padding-bottom: 5rem; }
@media (min-width: 768px) { .page-hero { padding-top: 11rem; padding-bottom: 6rem; } }
.page-hero__inner { max-width: 48rem; position: relative; }
.page-hero h1 { margin-top: 1rem; font-size: clamp(2.25rem, 1.6rem + 2.6vw, 3.25rem); font-weight: 600; color: #fff; }
.page-hero p.lead { margin-top: 1.25rem; max-width: 42rem; font-size: 1.125rem; color: var(--navy-200); }
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .875rem; color: var(--navy-300); margin-bottom: 1.5rem; }
.breadcrumb svg { width: .85rem; height: .85rem; }
.breadcrumb a:hover { color: #fff; }
.page-hero__cta { margin-top: 2rem; }

/* contact */
.contact-grid { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 4rem; } }
.info-card { display: flex; align-items: center; gap: 1rem; border-radius: var(--radius); border: 1px solid var(--navy-100); background: #fff; padding: 1rem; box-shadow: var(--shadow-soft); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.info-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.info-card .ic { flex-shrink: 0; width: 2.75rem; height: 2.75rem; display: flex; align-items: center; justify-content: center; border-radius: .75rem; background: var(--navy-900); color: var(--gold-light); }
.info-card .ic svg { width: 1.5rem; height: 1.5rem; }
.info-card .lbl { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--mist); }
.info-card .val { font-weight: 500; color: var(--navy-900); }
.form { border-radius: var(--radius-lg); border: 1px solid var(--navy-100); background: #fff; padding: 1.5rem; box-shadow: var(--shadow-soft); }
@media (min-width: 640px) { .form { padding: 2rem; } }
.form__grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form__grid { grid-template-columns: 1fr 1fr; } .form__grid .full { grid-column: 1 / -1; } }
.form label { display: block; margin-bottom: .35rem; font-size: .875rem; font-weight: 500; color: var(--navy-800); }
.field { width: 100%; border-radius: .75rem; border: 1px solid var(--navy-200); background: #fff; padding: .75rem 1rem; color: var(--navy-900); font-family: var(--font); font-size: 1rem; transition: border-color .2s, box-shadow .2s; }
.field::placeholder { color: var(--mist); }
.field:focus { outline: 0; border-color: var(--gold); box-shadow: 0 0 0 4px color-mix(in srgb, var(--gold) 15%, transparent); }
select.field { -webkit-appearance: none; appearance: none; padding-right: 2.75rem; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%235b6574' stroke-width='2' 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 1rem center; }
.form__note { margin-top: 1rem; display: flex; align-items: center; justify-content: center; gap: .5rem; font-size: .875rem; color: var(--slate); }
.form__note svg { width: 1rem; height: 1rem; color: #25D366; }
.form__fine { margin-top: .75rem; font-size: .75rem; color: var(--mist); }

/* footer */
.site-footer { position: relative; overflow: hidden; background: var(--navy-950); color: var(--navy-200); }
.site-footer .bg-grid { position: absolute; inset: 0; opacity: .4; }
.footer__top { position: relative; padding-block: 4rem; }
.footer__grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer__brand { max-width: 22rem; }
.footer__brand img { height: 2.4rem; }
.footer__brand p { margin-top: 1.25rem; font-size: .875rem; color: var(--navy-300); }
.footer__social { margin-top: 1.5rem; display: flex; gap: .75rem; }
.footer__social a { width: 2.5rem; height: 2.5rem; display: flex; align-items: center; justify-content: center; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(255,255,255,.15); color: var(--navy-200); transition: background .2s, color .2s; }
.footer__social a:hover { background: rgba(255,255,255,.10); color: #fff; }
.footer__social svg { width: 1.15rem; height: 1.15rem; }
.footer__col h4 { font-size: .875rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--navy-100); }
.footer__col ul { margin-top: 1rem; display: flex; flex-direction: column; gap: .75rem; }
.footer__col a { font-size: .875rem; color: var(--navy-300); transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__contact { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.10); display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .footer__contact { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .footer__contact { grid-template-columns: repeat(4,1fr); } }
.footer__contact div { display: flex; align-items: center; gap: .75rem; font-size: .875rem; }
.footer__contact svg { flex-shrink: 0; width: 1.25rem; height: 1.25rem; color: var(--gold-light); }
.footer__bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.10); display: flex; flex-direction: column; gap: .5rem; font-size: .75rem; color: var(--navy-400); }
@media (min-width: 640px) { .footer__bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer__bottom .links { display: flex; gap: 1.25rem; }
.footer__bottom a:hover { color: #fff; }

/* whatsapp FAB */
.wa-fab { position: fixed; bottom: 1.5rem; right: 1.25rem; z-index: 45; width: 3.375rem; height: 3.375rem; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: #25D366; color: #fff; box-shadow: 0 10px 30px -6px rgba(37,211,102,.6); transition: transform .2s var(--ease); }
.wa-fab:hover { transform: scale(1.05); }
.wa-fab svg { width: 1.75rem; height: 1.75rem; }

/* reveal animation, só esconde quando o JS está ativo (html.js), pra degradar sem JS */
html.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
html.js .reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* cookie banner */
.cookie { position: fixed; inset-inline: 1rem; bottom: 1rem; z-index: 60; max-width: 34rem; margin-inline: auto; background: var(--navy-950); color: #fff; border-radius: var(--radius); padding: 1.1rem 1.25rem; box-shadow: var(--shadow-navy); display: none; }
.cookie.is-show { display: block; }
.cookie p { font-size: .85rem; color: var(--navy-200); }
.cookie p a { text-decoration: underline; text-decoration-color: var(--gold); }
.cookie__row { margin-top: .85rem; display: flex; gap: .5rem; justify-content: flex-end; }

/* menu toggle icon swap + helpers */
.nav-toggle .icon-close { display: none; }
.site-header.nav-open .nav-toggle .icon-open { display: none; }
.site-header.nav-open .nav-toggle .icon-close { display: block; }
.d-md { display: none; }
@media (min-width: 768px) { .d-md { display: inline; } }
body.nav-locked { overflow: hidden; }
