/* Vital Mais — design system 2026 (tokens + utilities estilo Tailwind + componentes) */
:root {
  --navy: #0c3b8c;
  --navy-deep: #082a68;
  --navy-card: #123a85;
  --blue: #1a56c4;
  --sky: #e7f3ff;
  --sky-2: #f4f9ff;
  --red: #e30613;
  --red-dark: #c10510;
  --ink: #0f172a;
  --muted: #475569;
  --line: #dbe7f5;
  --white: #fff;
  --shadow: 0 18px 50px rgba(8, 42, 104, 0.12);
  --radius: 1.25rem;
  --header-h: 3.85rem;
  --font-d: "Montserrat", system-ui, sans-serif;
  --font-b: "Manrope", system-ui, sans-serif;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+1E00-1EFF;
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
  src: url("../fonts/montserrat-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC;
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
  src: url("../fonts/montserrat-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+1E00-1EFF;
}

*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}
body {
  margin: 0;
  font-family: var(--font-b);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
[hidden] { display: none !important; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--navy); }
h1, h2, h3, h4 { font-family: var(--font-d); line-height: 1.12; letter-spacing: -0.03em; margin: 0 0 0.6rem; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff; padding: 0.75rem 1rem; z-index: 100;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container { width: min(1160px, calc(100% - 1.5rem)); margin-inline: auto; }
.icon { width: 1.25rem; height: 1.25rem; flex: none; }
.icon-lg { width: 1.7rem; height: 1.7rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  border-radius: 999px; padding: 0.85rem 1.35rem; font-weight: 700;
  border: 0; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-cta { background: var(--red); color: #fff; box-shadow: 0 10px 24px rgba(227, 6, 19, 0.28); }
.btn-cta:hover { background: var(--red-dark); color: #fff; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-deep); color: #fff; }
.btn-ghost { background: #fff; color: var(--navy); border: 2px solid var(--line); }
.btn-white { background: #fff; color: var(--navy); }
.btn-block { width: 100%; }
.btn-header { padding: 0.65rem 1rem; font-size: 0.92rem; flex-shrink: 0; white-space: nowrap; }
.btn-header span { display: none; }

.eyebrow {
  display: inline-block; font-weight: 800; font-size: 0.78rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 0.7rem;
}
.lead { font-size: 1.12rem; color: var(--muted); max-width: 38rem; }
.text-navy { color: var(--navy); }
.muted { color: var(--muted); font-size: 0.92rem; }
.mt-lg { margin-top: 2.5rem; }

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(12, 59, 140, 0.06); }
.header-inner { display: flex; align-items: center; gap: 0.55rem; min-height: var(--header-h); }
.brand { display: flex; align-items: center; margin-right: auto; min-width: 0; }
.brand img { width: auto; height: 48px; max-width: min(200px, calc(100vw - 8.25rem)); object-fit: contain; }
.brand-footer {
  display: inline-flex;
  background: none;
  padding: 0;
  margin-bottom: 0.85rem;
}
.brand-footer img { height: 52px; max-width: min(200px, 72vw); }
.nav-desktop { display: none; gap: 0.2rem; }
.nav-link { padding: 0.5rem 0.8rem; border-radius: 999px; color: var(--ink); font-weight: 650; font-size: 0.94rem; }
.nav-link:hover, .nav-link.is-active { background: var(--sky); color: var(--navy); }
.nav-toggle {
  display: grid; place-items: center; width: 2.45rem; height: 2.45rem;
  border: 0; background: var(--sky); color: var(--navy); border-radius: 0.8rem;
  flex-shrink: 0;
}
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }
.nav-mobile {
  display: grid; gap: 0.4rem; padding: 0.5rem 1rem 1.2rem;
  background: #fff; border-top: 1px solid var(--line);
}
.nav-mobile a { padding: 0.75rem; border-radius: 0.9rem; color: var(--ink); font-weight: 700; }
.nav-mobile a:hover { background: var(--sky); }
@media (min-width: 960px) {
  .nav-desktop { display: flex; }
  .nav-toggle, .nav-mobile { display: none !important; }
}

.hero {
  position: relative;
  overflow: hidden;
  background: #07163c;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.hero-media {
  position: relative;
  height: 188px;
  min-height: 168px;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 30%;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 22, 60, 0.15) 0%, rgba(7, 22, 60, 0.35) 100%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.15rem;
  padding: 1.05rem 0 1.2rem;
  background: linear-gradient(180deg, #f4f9ff 0%, #fff 100%);
}
.hero-copy h1 {
  font-size: clamp(1.48rem, 7.2vw, 1.95rem); font-weight: 900; text-transform: uppercase;
  color: var(--navy-deep); letter-spacing: -0.035em; line-height: 1.08; margin-bottom: 0.55rem;
  overflow-wrap: break-word;
}
.hero-copy .lead { font-size: 0.98rem; margin-bottom: 0.85rem; }
.hero-copy .eyebrow { margin-bottom: 0.45rem; }
.hero-copy h1 em { font-style: normal; color: var(--red); }
.hero-actions { display: flex; flex-direction: column; gap: 0.65rem; margin: 0.8rem 0 0.9rem; }
.hero-actions .btn { width: 100%; }
.hero-pills { display: grid; gap: 0.6rem; }
.hero-pills li {
  display: flex; align-items: center; gap: 0.55rem; font-weight: 700; color: var(--navy);
  font-size: 0.92rem;
}
.pill-icon {
  width: 2.25rem; height: 2.25rem; border-radius: 50%; display: grid; place-items: center;
  background: var(--navy); color: #fff;
}
.btn-ghost-light { background: #fff; }

.spec-panel {
  background: linear-gradient(180deg, var(--navy-card), var(--navy-deep));
  color: #fff; border-radius: 1.25rem; padding: 0.9rem 0.55rem 0.45rem 0.75rem;
  box-shadow: var(--shadow);
  scrollbar-width: thin; scrollbar-color: #5b86d6 transparent;
}
.spec-panel h2 {
  text-align: center; font-size: 0.95rem; letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(255,255,255,0.08); border-radius: 999px; padding: 0.45rem; margin-bottom: 0.6rem;
}
.spec-panel-list { display: grid; }
.spec-panel-list a {
  display: flex; align-items: center; gap: 0.55rem; color: #fff; font-size: 0.72rem;
  font-weight: 800; letter-spacing: 0.04em; padding: 0.38rem 0.4rem; border-radius: 0.5rem;
}
.spec-panel-list a:hover { background: rgba(255,255,255,0.08); color: #fff; }
.spec-panel-list .is-exam a { background: var(--red); margin: 0.15rem 0; }
.spec-ico {
  width: 1.7rem; height: 1.7rem; border-radius: 50%; display: grid; place-items: center;
  background: #1a56c4; color: #fff; flex: none;
}
.spec-ico .icon { width: 0.95rem; height: 0.95rem; }
.spec-ico-lg { width: 3.2rem; height: 3.2rem; margin-bottom: 0.8rem; }
.spec-ico-lg .icon { width: 1.5rem; height: 1.5rem; }

.hero-bar {
  position: relative;
  z-index: 3;
  display: grid; gap: 0.15rem; text-align: center; background: var(--red); color: #fff;
  padding: 0.85rem 1rem; font-weight: 800;
}
.hero-bar:hover { color: #fff; background: var(--red-dark); }
.hero-bar-kicker { display: inline-flex; align-items: center; justify-content: center; gap: 0.35rem; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.92; }
.hero-bar strong { font-family: var(--font-d); font-size: clamp(1.1rem, 3vw, 1.7rem); text-transform: uppercase; }
.hero-bar-phone { font-size: 0.95rem; }

.trust-bar { background: var(--navy); color: #fff; padding: 1.05rem 0; }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.trust-grid strong { display: block; font-family: var(--font-d); font-size: 1.35rem; }
.trust-grid span { opacity: 0.85; font-size: 0.88rem; }

.section { padding: 2.5rem 0; }
.section-sky { background: var(--sky-2); }
.section-navy { background: linear-gradient(180deg, var(--navy-deep), var(--navy)); color: #fff; }
.section-head { max-width: 40rem; margin-bottom: 1.35rem; }
.section-head h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
.section-head.on-dark .eyebrow { color: #9ec1ff; }
.section-head.on-dark p { color: rgba(255,255,255,0.82); }
.section-more { margin-top: 1.8rem; text-align: center; }

.steps-grid { display: grid; gap: 1rem; }
.step-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem; box-shadow: 0 10px 30px rgba(12,59,140,0.04);
}
.step-n { font-family: var(--font-d); font-size: 1.8rem; color: var(--red); font-weight: 900; }

.offers-grid { display: grid; gap: 1rem; }
.offer-card {
  background: #fff; border-radius: 1.5rem; padding: 1.5rem; box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.offer-card h3 { font-size: 1.45rem; }
.offer-sub { color: var(--blue); font-weight: 800; text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.08em; }
.offer-price { font-family: var(--font-d); font-size: 2.4rem; font-weight: 900; color: var(--red); margin: 0.4rem 0; }
.offer-price-ask { font-size: 1.8rem; color: var(--navy); }
.offer-note { color: var(--muted); font-size: 0.9rem; }
.offer-navy { background: linear-gradient(180deg, #fff, #eef5ff); }
.offer-red { background: linear-gradient(180deg, #fff, #ffecec); }
.offer-sky { background: linear-gradient(180deg, #fff, #eaf6ff); }

.bento, .exam-grid { display: grid; gap: 1rem; }
.spec-card, .exam-card {
  display: grid; gap: 0.4rem; padding: 1.15rem; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line); color: inherit;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.spec-card:hover, .exam-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #b9d4f5; color: inherit; }
.spec-card h3, .exam-card h3, .exam-card h2 { font-size: 1.05rem; }
.spec-card p, .exam-card p { color: var(--muted); font-size: 0.92rem; margin: 0; }
.spec-card-exam { border-color: #f4c4c7; }
.exam-card { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.12); color: #fff; }
.exam-card p { color: rgba(255,255,255,0.8); }
.exam-card-light { background: #fff; color: var(--ink); }
.exam-card-light p { color: var(--muted); }
.link-more { display: inline-flex; align-items: center; gap: 0.3rem; font-weight: 800; color: #9ec1ff; font-size: 0.88rem; }
.exam-card-light .link-more { color: var(--blue); }

.explorer { display: grid; gap: 1rem; }
.explorer-bar {
  display: grid; gap: 0.7rem; background: #fff; border: 1px solid var(--line);
  padding: 0.8rem; border-radius: 1.2rem;
}
.explorer-bar input, .explorer-bar select, .contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 0.9rem; padding: 0.8rem 1rem; background: var(--sky-2);
}
.chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.chip {
  border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 0.4rem 0.8rem;
  font-weight: 700; color: var(--navy); cursor: pointer;
}
.chip.is-on { background: var(--navy); color: #fff; border-color: var(--navy); }
.empty-state { text-align: center; padding: 2rem; color: var(--muted); }

.about-grid, .detail-grid, .contact-grid, .faq-layout { display: grid; gap: 1.5rem; }
.about-card {
  background: #fff; border: 1px solid var(--line); border-radius: 1.5rem; padding: 1.4rem;
  display: grid; gap: 0.7rem; box-shadow: var(--shadow);
}
.check-list { display: grid; gap: 0.55rem; margin: 1rem 0 1.4rem; }
.check-list li { display: flex; gap: 0.55rem; align-items: flex-start; }
.check-list .icon { color: var(--red); margin-top: 0.15rem; }
.prose h2 { font-size: 1.7rem; margin-top: 0.4rem; }
.prose h3 { font-size: 1.15rem; margin-top: 1.2rem; }
.prose-wide { max-width: 46rem; }
.inline-offer {
  display: grid; gap: 0.2rem; background: #ffecec; border-radius: 1rem; padding: 1rem; margin: 1rem 0;
  color: var(--red-dark);
}

.faq-list { display: grid; gap: 0.6rem; }
.faq-item, .faq-list details {
  background: #fff; border: 1px solid var(--line); border-radius: 1rem; overflow: hidden;
}
.faq-item button, .faq-list summary {
  width: 100%; text-align: left; background: none; border: 0; padding: 1rem 1.1rem;
  font-weight: 800; cursor: pointer; font-family: var(--font-d);
}
.faq-item p, .faq-list details p { padding: 0 1.1rem 1rem; color: var(--muted); }
.faq-item button[aria-expanded="true"] { color: var(--navy); }

.cta-band { background: var(--red); color: #fff; padding: 1.5rem 0; }
.cta-band-inner { display: flex; flex-direction: column; gap: 1rem; align-items: stretch; }
.cta-band .btn { width: 100%; }
.cta-band h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin: 0; }
.cta-band p { margin: 0; opacity: 0.92; }

.page-hero { padding: 1.6rem 0 0.7rem; background: linear-gradient(180deg, var(--sky), #fff); }
.page-hero h1 { font-size: clamp(1.45rem, 7vw, 3.2rem); color: var(--navy-deep); overflow-wrap: break-word; }
.crumbs { display: flex; flex-wrap: wrap; gap: 0.4rem; font-size: 0.88rem; color: var(--muted); margin-bottom: 1rem; }
.contact-phone { font-family: var(--font-d); font-size: 1.45rem; color: var(--navy); font-weight: 900; }
.contact-form { display: grid; gap: 0.8rem; background: #fff; border: 1px solid var(--line); border-radius: 1.5rem; padding: 1.4rem; }
.contact-form label { display: grid; gap: 0.35rem; font-weight: 700; }

.site-footer { background: #061c45; color: #d5e4ff; padding: 2.4rem 0 5.4rem; }
.footer-grid { display: grid; gap: 1.6rem; }
.site-footer h2 { color: #fff; font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase; }
.site-footer a { color: #fff; }
.site-footer a:hover { color: #ffd2d5; }
.logo-on-dark { filter: brightness(0) invert(1); }
.footer-base { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: space-between; align-items: center; font-size: 0.85rem; }
.dev-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #d5e4ff;
  font-weight: 600;
}
.dev-credit:hover { color: #fff; }
.dev-credit img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.dev-credit:hover img { opacity: 1; }

.wa-float {
  position: fixed; right: 0.75rem; bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px)); z-index: 50;
  display: flex; align-items: center; gap: 0.45rem;
  background: #25d366; color: #fff; font-weight: 800;
  padding: 0.8rem; border-radius: 999px;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}
.wa-float span { display: none; }
.wa-float:hover { color: #fff; transform: translateY(-2px); }
.wa-float::after {
  content: ""; position: absolute; inset: -6px; border-radius: inherit;
  border: 2px solid rgba(37,211,102,0.5); animation: pulse 2s infinite;
}
@keyframes pulse { 70% { transform: scale(1.08); opacity: 0; } }

.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); animation: rise 0.7s ease forwards; }
  .reveal:nth-child(2) { animation-delay: 0.08s; }
  .reveal:nth-child(3) { animation-delay: 0.16s; }
}
@keyframes rise { to { opacity: 1; transform: none; } }

@media (min-width: 720px) {
  .container { width: min(1160px, calc(100% - 2rem)); }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .steps-grid, .offers-grid, .bento, .exam-grid { grid-template-columns: repeat(2, 1fr); }
  .exam-grid-page { grid-template-columns: 1fr; }
  .hero-pills { grid-template-columns: repeat(3, 1fr); }
  .hero-pills li { font-size: 1rem; }
  .pill-icon { width: 2.6rem; height: 2.6rem; }
  .hero-actions { flex-direction: row; flex-wrap: wrap; }
  .hero-actions .btn { width: auto; }
  .about-grid, .detail-grid, .contact-grid { grid-template-columns: 1.2fr 0.8fr; align-items: start; }
  .explorer-bar { grid-template-columns: 1fr auto; align-items: center; }
  .cta-band-inner { flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: space-between; }
  .cta-band .btn { width: auto; }
  .wa-float { right: 1rem; padding: 0.85rem 1.05rem; }
  .wa-float span { display: inline; }
  .site-footer { padding-bottom: 1.6rem; }
}
@media (min-width: 960px) {
  :root { --header-h: 5rem; }
  .header-inner { gap: 1rem; }
  .brand img { height: 62px; max-width: min(240px, 28vw); }
  .nav-toggle { width: 2.6rem; height: 2.6rem; }
}
@media (min-width: 980px) {
  .section { padding: 4.2rem 0; }
  .section-head { margin-bottom: 2rem; }
  .page-hero { padding: 3rem 0 1rem; }
  .trust-bar { padding: 1.4rem 0; }
  .cta-band { padding: 2rem 0; }
  .contact-phone { font-size: 1.8rem; }
  .hero { min-height: 680px; }
  .hero-media {
    position: absolute;
    inset: 0;
    height: auto;
    min-height: 100%;
    max-height: none;
  }
  .hero-photo { object-position: 78% 28%; }
  .hero-overlay {
    background: linear-gradient(90deg, rgba(7, 22, 60, 0.88) 0%, rgba(7, 22, 60, 0.62) 36%, rgba(7, 22, 60, 0.22) 68%, rgba(7, 22, 60, 0.08) 100%);
  }
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    background: transparent;
    padding: 5.2rem 0 2.2rem;
    min-height: 680px;
    gap: 1.5rem;
  }
  .hero-copy h1 {
    font-size: clamp(2.35rem, 4.1vw, 3.85rem);
    max-width: 11.5ch;
    color: #fff;
    letter-spacing: -0.04em;
  }
  .hero-copy h1 .hero-line {
    display: inline;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    color: inherit;
    margin: 0;
  }
  .hero-copy .lead { color: rgba(255, 255, 255, 0.92); font-size: 1.12rem; }
  .hero-copy .eyebrow { color: #9ec1ff; margin-bottom: 0.7rem; }
  .hero-pills li { color: #fff; }
  .hero-bar { padding: 1rem 1.2rem; }
  .btn-ghost-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
  }
  .btn-ghost-light:hover { background: #fff; color: var(--navy); }
  .spec-panel {
    max-height: 34rem;
    overflow: auto;
    border-radius: 1.5rem;
    padding: 1.1rem 0.7rem 0.6rem 1rem;
    background: linear-gradient(180deg, rgba(18, 58, 133, 0.94), rgba(8, 42, 104, 0.96));
    backdrop-filter: blur(12px);
  }
  .bento { grid-template-columns: repeat(4, 1fr); }
  .exam-grid { grid-template-columns: repeat(4, 1fr); }
  .exam-grid-page { grid-template-columns: repeat(2, 1fr); }
  .offers-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 0.8fr 1fr; }
  .site-footer { padding: 3rem 0 1.4rem; }
}
@media (min-width: 1180px) {
  .btn-header span { display: inline; }
}

@media (max-width: 979px) {
  .hero > .container.hero-grid {
    width: 100%;
    padding: 1.2rem 1.25rem 1.45rem;
  }
  .hero-copy h1 {
    font-size: clamp(1.55rem, 7.6vw, 1.85rem);
    letter-spacing: -0.02em;
    line-height: 1.12;
    margin-bottom: 0.7rem;
  }
  .hero-copy h1 .hero-line {
    display: block;
    font-size: 0.72rem;
    line-height: 1.35;
    letter-spacing: 0.06em;
    font-weight: 800;
    color: var(--blue);
    margin: 0 0 0.4rem;
  }
  .hero-copy .lead {
    font-size: 0.95rem;
    line-height: 1.55;
    max-width: none;
  }
}
