:root {
  /* Brand */
  --navy:        #102050;
  --navy-600:    #1b2f6b;
  --navy-800:    #0b1639;
  --green:       #9fcf1e;   /* slightly desaturated lime for sober feel */
  --green-bright:#b0e030;
  --green-deep:  #6fae3a;
  --blue:        #2070d0;
  --blue-600:    #195bb0;
  --teal:        #4090b0;   /* mid-gradient tone from logo swoosh */
  --whatsapp:    #25d366;
  --whatsapp-700:#1da851;

  /* Neutrals (cool, low chroma) */
  --bg:          #ffffff;
  --bg-soft:     #f3f6fb;
  --bg-softer:   #f8fafd;
  --ink:         #131a30;
  --muted:       #5b6480;
  --muted-soft:  #8b93aa;
  --line:        #e4e9f2;
  --line-strong: #d3dbe9;

  /* Effects */
  --shadow-sm:  0 1px 2px rgba(16,32,80,.06), 0 1px 3px rgba(16,32,80,.05);
  --shadow-md:  0 6px 18px rgba(16,32,80,.08), 0 2px 6px rgba(16,32,80,.05);
  --shadow-lg:  0 24px 60px rgba(16,32,80,.14), 0 8px 20px rgba(16,32,80,.08);
  --radius:     16px;
  --radius-sm:  10px;
  --radius-lg:  24px;
  --grad-brand: linear-gradient(100deg, var(--blue) 0%, var(--teal) 42%, var(--green) 100%);
  --grad-navy:  linear-gradient(160deg, #16265e 0%, #0c1838 100%);

  --maxw: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);

  --font-head: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }

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

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; letter-spacing: -0.02em; color: var(--navy); font-weight: 700; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--soft { background: var(--bg-soft); }

/* ---------- Eyebrow / headings ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head);
  font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--grad-brand); border-radius: 2px; }
.eyebrow--center::after { content: ""; width: 22px; height: 2px; background: var(--grad-brand); border-radius: 2px; }

.h-display { font-size: clamp(34px, 5.2vw, 60px); }
.h-section { font-size: clamp(28px, 3.6vw, 44px); }
.lede { font-size: clamp(17px, 1.4vw, 20px); color: var(--muted); max-width: 60ch; }

.section-head { max-width: 760px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head .lede { margin-top: 18px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  --btn-bg: var(--navy);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  padding: 14px 24px; border-radius: 999px; border: 1.5px solid transparent;
  background: var(--btn-bg); color: var(--btn-fg);
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--primary { --btn-bg: var(--navy); }
.btn--primary:hover { background: var(--navy-600); }
.btn--blue { --btn-bg: var(--blue); }
.btn--blue:hover { background: var(--blue-600); }
.btn--whatsapp { --btn-bg: var(--whatsapp); }
.btn--whatsapp:hover { background: var(--whatsapp-700); }
.btn--ghost {
  background: transparent; color: var(--navy); border-color: var(--line-strong);
}
.btn--ghost:hover { background: var(--bg); border-color: var(--navy); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: #fff; }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn--lg { padding: 17px 30px; font-size: 16px; }
.btn--sm { padding: 10px 18px; font-size: 14px; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled { background: rgba(255,255,255,.92); backdrop-filter: blur(12px); box-shadow: var(--shadow-sm); border-bottom-color: var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 40px; width: auto; flex-shrink: 0; }
.brand .logo-color { display: none; }
.brand .logo-white { display: block; }
.header.is-scrolled .logo-color { display: block; }
.header.is-scrolled .logo-white { display: none; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--font-head); font-weight: 600; font-size: 15px; color: #fff;
  padding: 9px 14px; border-radius: 999px; position: relative; transition: color .2s, background .2s;
}
.nav a:hover { background: rgba(255,255,255,.14); }
.nav a.is-active { color: var(--green-bright); }
.header.is-scrolled .nav a { color: var(--navy); }
.header.is-scrolled .nav a:hover { background: var(--bg-soft); }
.header.is-scrolled .nav a.is-active { color: var(--blue); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone { font-family: var(--font-head); font-weight: 700; color: #fff; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; }
.header-phone svg { width: 17px; height: 17px; color: var(--green-bright); }
.header.is-scrolled .header-phone { color: var(--navy); }
.header.is-scrolled .header-phone svg { color: var(--blue); }

/* Mobile toggle */
.nav-toggle { display: none; width: 46px; height: 46px; border: 1.5px solid var(--line-strong); border-radius: 12px; background: #fff; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: 132px; padding-bottom: clamp(60px, 8vw, 110px); overflow: hidden; background: var(--grad-navy); }
.hero::after {
  content: ""; position: absolute; right: -10%; top: -20%; width: 70%; height: 140%;
  background: radial-gradient(closest-side, var(--hero-tint, rgba(159,207,30,.16)), transparent 70%);
  z-index: 0; pointer-events: none;
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.hero .eyebrow { color: var(--green-bright); }
.hero .eyebrow::before { background: var(--green-bright); }
.hero h1 { color: #fff; font-size: clamp(36px, 5vw, 62px); }
.hero h1 .accent { color: var(--green-bright); }
.hero__lede { color: #c4ccdf; font-size: clamp(17px, 1.4vw, 20px); margin-top: 22px; max-width: 52ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 18px 52px; margin-top: 42px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.14); }
.hero__trust .stat .n { font-family: var(--font-head); font-weight: 800; font-size: 22px; color: #fff; line-height: 1.15; white-space: nowrap; }
.hero__trust .stat .n span { color: var(--green-bright); }
.hero__trust .stat .l { font-size: 13px; color: #9aa6c4; line-height: 1.4; margin-top: 6px; }

.hero__media { position: relative; }
.hero__media .media { border-radius: var(--radius-lg); aspect-ratio: 4/5; box-shadow: var(--shadow-lg); }
.hero__badge {
  position: absolute; left: -28px; bottom: 38px; background: #fff; border-radius: var(--radius);
  padding: 18px 22px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 14px; max-width: 280px;
}
.hero__badge .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--grad-brand); display: grid; place-items: center; flex: none; }
.hero__badge .ic svg { width: 24px; height: 24px; color: #fff; }
.hero__badge .t { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 15px; line-height: 1.25; }
.hero__badge .s { font-size: 12.5px; color: var(--muted); line-height: 1.35; }

/* ============================================================
   MEDIA placeholder/fallback system
   ============================================================ */
.media { position: relative; overflow: hidden; background: var(--bg-soft); }
.media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.media--fallback img { display: none; }
.media--fallback {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.5) 0 2px, transparent 2px 11px),
    var(--grad-navy);
}
.media--fallback::after {
  content: attr(data-ph);
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 16px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 12.5px; letter-spacing: .03em;
  color: rgba(255,255,255,.85);
}

/* ============================================================
   INSURERS STRIP
   ============================================================ */
.insurers { background: #fff; border-block: 1px solid var(--line); padding: 30px 0; }
.insurers__label { text-align: center; font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-soft); margin-bottom: 14px;; }
.marquee { position: relative; overflow: hidden; padding-block: 8px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 18px; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.insurer-chip {
  font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--navy);
  padding: 13px 26px; border: 1px solid var(--line); border-radius: 999px; background: var(--bg-softer); white-space: nowrap;
}

/* ============================================================
   SEGUROS
   ============================================================ */
.seg-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 40px 0 44px; }
.seg-filter button {
  font-family: var(--font-head); font-weight: 600; font-size: 14.5px; color: var(--navy);
  padding: 10px 20px; border-radius: 999px; border: 1.5px solid var(--line-strong); background: #fff; cursor: pointer;
  transition: all .2s var(--ease);
}
.seg-filter button:hover { border-color: var(--navy); }
.seg-filter button.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.section-head + .card-grid { margin-top: 44px; }
.seg-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s;
}
.seg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.seg-card:hover .media img { transform: scale(1.06); }
.seg-card__media { aspect-ratio: 16/10; position: relative; }
.seg-card__media .tag {
  position: absolute; left: 14px; top: 14px; z-index: 2; background: rgba(255,255,255,.92); backdrop-filter: blur(4px);
  font-family: var(--font-head); font-weight: 700; font-size: 12px; letter-spacing: .04em; text-transform: uppercase;
  color: var(--blue); padding: 6px 12px; border-radius: 999px;
}
.seg-card__body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.seg-card__body h3 { font-size: 21px; margin-bottom: 10px; }
.seg-card__body p { color: var(--muted); font-size: 15px; flex: 1; }
.seg-card__cover { margin: 16px 0 20px; display: flex; flex-wrap: wrap; gap: 7px; }
.seg-card__cover span { font-size: 12.5px; font-weight: 600; color: var(--navy-600); background: var(--bg-soft); border: 1px solid var(--line); padding: 5px 11px; border-radius: 999px; }
.seg-card__link {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 700; font-size: 14.5px; color: var(--blue);
  margin-top: auto; align-self: flex-start; transition: gap .2s var(--ease);
}
.seg-card__link svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.seg-card:hover .seg-card__link { gap: 11px; }

/* ============================================================
   FEATURE / SPLIT BLOCKS (Previdência)
   ============================================================ */
/* heading rhythm inside split / about content blocks */
.split__content > .eyebrow, .about__content > .eyebrow { margin-bottom: 16px; }
.split__content > h2, .about__content > h2 { margin-bottom: 20px; }
.split__content > .lede, .about__content > .lede { margin-bottom: 4px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--rev .split__media { order: 2; }
.split__media .media { border-radius: var(--radius-lg); aspect-ratio: 5/4; box-shadow: var(--shadow-md); }
.feature-list { display: grid; gap: 16px; margin-top: 28px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .fi { width: 38px; height: 38px; border-radius: 11px; background: var(--bg-soft); border: 1px solid var(--line); display: grid; place-items: center; flex: none; }
.feature-list .fi svg { width: 19px; height: 19px; color: var(--blue); }
.feature-list .ft { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 16px; }
.feature-list .fd { font-size: 14.5px; color: var(--muted); }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.pill { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--navy); background: #fff; border: 1px solid var(--line-strong); border-radius: 999px; padding: 10px 16px; }
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }

/* ============================================================
   CONSÓRCIOS
   ============================================================ */
.cons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.cons-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px;
  display: flex; flex-direction: column; gap: 12px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.cons-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.cons-card .ic { width: 50px; height: 50px; border-radius: 13px; background: var(--bg-soft); border: 1px solid var(--line); display: grid; place-items: center; }
.cons-card .ic svg { width: 25px; height: 25px; color: var(--navy); }
.cons-card h4 { font-size: 18px; }
.cons-card p { font-size: 14px; color: var(--muted); }

/* ============================================================
   SOBRE
   ============================================================ */
.about { position: relative; }
.about__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 60px; align-items: center; }
.about__media { position: relative; }
.about__media .media { border-radius: var(--radius-lg); aspect-ratio: 4/3; box-shadow: var(--shadow-md); }
.about__media .media.media--2 { position: absolute; width: 52%; aspect-ratio: 1; right: -20px; bottom: -32px; border: 6px solid #fff; box-shadow: var(--shadow-lg); }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.stat-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.stat-box .n { font-family: var(--font-head); font-weight: 800; font-size: clamp(28px, 3vw, 38px); color: var(--navy); line-height: 1; }
.stat-box .n span { color: var(--green-deep); }
.stat-box .l { font-size: 13.5px; color: var(--muted); margin-top: 8px; }
.values { display: grid; gap: 14px; margin-top: 28px; }
.values li { display: flex; gap: 13px; align-items: flex-start; font-size: 15.5px; }
.values .ck { width: 26px; height: 26px; border-radius: 50%; background: var(--grad-brand); display: grid; place-items: center; flex: none; margin-top: 1px; }
.values .ck svg { width: 14px; height: 14px; color: #fff; }
.values b { font-family: var(--font-head); color: var(--navy); }

/* ============================================================
   CTA band
   ============================================================ */
.ctaband { position: relative; overflow: hidden; }
.ctaband__card {
  background: var(--grad-navy); border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 72px);
  display: grid; grid-template-columns: 1.4fr auto; gap: 40px; align-items: center; position: relative; overflow: hidden;
}
.ctaband__card::after { content: ""; position: absolute; right: -8%; top: -40%; width: 50%; height: 180%; background: radial-gradient(closest-side, rgba(159,207,30,.22), transparent 70%); pointer-events: none; }
.ctaband__card h2 { color: #fff; font-size: clamp(26px, 3vw, 40px); position: relative; z-index: 1; }
.ctaband__card p { color: #c4ccdf; margin-top: 14px; font-size: 17px; position: relative; max-width: 48ch; z-index: 1; }
.ctaband__actions { display: flex; flex-direction: column; gap: 13px; position: relative; z-index: 1; }

/* ============================================================
   CONTATO
   ============================================================ */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.contact-list { display: grid; gap: 14px; margin-top: 30px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; transition: border-color .25s, box-shadow .25s; }
.contact-item:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.contact-item .ci { width: 46px; height: 46px; border-radius: 12px; background: var(--bg-soft); border: 1px solid var(--line); display: grid; place-items: center; flex: none; }
.contact-item .ci svg { width: 22px; height: 22px; color: var(--blue); }
.contact-item .k { font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted-soft); }
.contact-item .v { font-size: 16.5px; color: var(--ink); font-weight: 500; margin-top: 2px; }
.contact-item a.v:hover { color: var(--blue); }
.contact__map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); aspect-ratio: 4/3.6; min-height: 380px; }
.contact__map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(.2) contrast(1.02); }
.contact__hours { display: flex; align-items: center; gap: 10px; margin-top: 20px; font-size: 14.5px; color: var(--muted); }
.contact__hours svg { width: 18px; height: 18px; color: var(--green-deep); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-800); color: #c7cfe2; padding: 64px 0 28px; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 44px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand img { height: 42px; margin-bottom: 18px; }
.footer__brand p { font-size: 14.5px; color: #97a1bd; max-width: 42ch; }
.footer h5 { font-family: var(--font-head); color: #fff; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 18px; }
.footer__links { display: grid; gap: 11px; }
.footer__links a { font-size: 14.5px; color: #aab3cd; transition: color .2s; }
.footer__links a:hover { color: var(--green-bright); }
.footer__contact { display: grid; gap: 12px; font-size: 14.5px; color: #aab3cd; }
.footer__contact div { display: flex; gap: 11px; align-items: flex-start; }
.footer__contact svg { width: 17px; height: 17px; color: var(--green); flex: none; margin-top: 3px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding-top: 26px; font-size: 13px; color: #7c87a6; flex-wrap: wrap; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 40px; height: 40px; border-radius: 11px; border: 1px solid rgba(255,255,255,.14); display: grid; place-items: center; transition: background .2s, border-color .2s; }
.footer__social a:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.3); }
.footer__social svg { width: 19px; height: 19px; color: #c7cfe2; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 60px; height: 60px; border-radius: 50%;
  background: var(--whatsapp); display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,.45);
  transition: transform .25s var(--ease); animation: wa-pulse 2.6s infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; color: #fff; }
@keyframes wa-pulse { 0%,100% { box-shadow: 0 10px 30px rgba(37,211,102,.45); } 50% { box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 0 0 12px rgba(37,211,102,.08); } }

/* ============================================================
   REVEAL animation
   ============================================================ */
/* reveals only hide once JS confirms it can animate them back in */
.js-reveal .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__media { max-width: 460px; }
  .split, .about__grid, .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .split--rev .split__media { order: 0; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .cons-grid { grid-template-columns: repeat(2, 1fr); }
  .ctaband__card { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav, .header-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.is-open {
    display: flex; flex-direction: column; align-items: stretch; gap: 6px;
    position: absolute; top: 76px; left: 0; right: 0; background: #fff; padding: 16px 24px 24px;
    box-shadow: var(--shadow-lg); border-top: 1px solid var(--line);
  }
  .nav.is-open a { font-size: 17px; padding: 13px 14px; border-radius: 12px; color: var(--navy); }
  .nav.is-open a:hover { background: var(--bg-soft); }
  .nav.is-open a.is-active { color: var(--blue); }
}

@media (max-width: 620px) {
  .wrap { padding-inline: 18px; }
  .header .btn--whatsapp .btn__label { display: none; }
  .header .btn--whatsapp.btn--sm { padding-inline: 12px; }
  .card-grid, .cons-grid, .stat-grid { grid-template-columns: 1fr; }
  .seg-filter { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; margin-inline: -18px; padding-inline: 18px; -webkit-mask-image: linear-gradient(90deg,#000 92%,transparent); }
  .seg-filter button { flex: none; }
  .footer__top, .footer__bottom { grid-template-columns: 1fr; }
  .footer__top { gap: 32px; }
  .hero__badge { left: 0; right: 0; margin-inline: auto; }
  .hero__trust { gap: 20px; }
  .about__media .media.media--2 { display: none; }
  .ctaband__actions { width: 100%; }
  .ctaband__actions .btn { width: 100%; }
}

/* WordPress body class */
.home .site-content { padding: 0; margin: 0; }
.admin-bar .header { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .header { top: 46px; }
}
/* Block editor full-width */
.wp-block-post-content { margin: 0; padding: 0; }
