/* ═══════════════════════════════════════════
   VARIÁVEIS
═══════════════════════════════════════════ */
:root {
  --teal:        #0D7C7C;
  --teal-dark:   #0A5C5C;
  --mint:        #5EEAD4;
  --mint-soft:   #D5F5EF;
  --off-white:   #FBFCFB;
  --text-dark:   #14302E;
  --text-body:   #4A6360;
  --coral:       #FF8C6B;

  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'Inter', system-ui, -apple-system, sans-serif;

  --r-card: 16px;
  --r-btn:  8px;
  --shadow: 0 4px 24px rgba(13,124,124,.08);
  --shadow-hover: 0 10px 40px rgba(13,124,124,.16);

  --ease: .25s ease;
  --max-w: 1180px;
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { font-family: inherit; }

/* ═══════════════════════════════════════════
   UTILITÁRIOS DE LAYOUT
═══════════════════════════════════════════ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-dark  { background: var(--teal-dark); color: var(--off-white); position: relative; overflow: hidden; }
.section-light { background: var(--off-white);  color: var(--text-dark);  }

/* Labels */
.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--mint-soft);
  padding: .3rem .8rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-label--light { color: var(--mint); background: rgba(94,234,212,.15); }

/* Títulos */
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}
.section-title--light { color: #fff; }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 540px;
  margin-bottom: 3rem;
}

.body-text {
  color: var(--text-body);
  font-size: 1.025rem;
  line-height: 1.8;
  margin-bottom: 1.1rem;
}

/* Círculos decorativos */
.circle {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(94,234,212,.14);
  pointer-events: none;
}
.c1 { width: 540px; height: 540px; top: -160px;  right: -120px; }
.c2 { width: 360px; height: 360px; top:   30px;  right:  60px;  border-color: rgba(94,234,212,.08); }
.c3 { width: 180px; height: 180px; bottom:-60px;  left:  80px;  border-color: rgba(94,234,212,.06); }
.c4 { width: 600px; height: 600px; bottom:-220px; left: -180px; }
.c5 { width: 280px; height: 280px; top:  -80px;  right:  -60px; border-color: rgba(94,234,212,.08); }
.c6 { width: 520px; height: 520px; top: -160px;  right: -140px; }
.c7 { width: 700px; height: 700px; bottom:-260px; right: -200px; }
.c8 { width: 340px; height: 340px; top: -100px;  left:  -100px; border-color: rgba(94,234,212,.07); }

/* Dots background pattern */
.dots-bg {
  background-image: radial-gradient(circle, rgba(94,234,212,.18) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
}

/* ═══════════════════════════════════════════
   BOTÕES
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--r-btn);
  font-family: var(--sans);
  font-size: .925rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), border-color var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--lg   { padding: 1rem 2rem; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

.btn--primary { background: var(--teal); color: #fff; }
.btn--primary:hover { background: #0a6b6b; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,124,124,.3); }

.btn--coral { background: var(--coral); color: #fff; }
.btn--coral:hover { background: #ff7a55; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,140,107,.35); }

.btn--mint { background: var(--mint); color: var(--text-dark); }
.btn--mint:hover { background: #4dd9c0; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(94,234,212,.35); }

.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--outline-light:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.65); }

.badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mint);
  background: rgba(94,234,212,.15);
  padding: .32rem .9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

/* ═══════════════════════════════════════════
   NAVEGAÇÃO
═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: background var(--ease), padding var(--ease), box-shadow var(--ease);
}
.nav.scrolled {
  background: rgba(10,92,92,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: .75rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.nav__name     { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: #fff; }
.nav__subtitle { font-size: .62rem; font-weight: 600; color: var(--mint); text-transform: uppercase; letter-spacing: .07em; margin-top: .15rem; }

.nav__links {
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
}
.nav__links a {
  color: rgba(255,255,255,.78);
  font-size: .875rem;
  font-weight: 500;
  transition: color var(--ease);
}
.nav__links a:hover { color: var(--mint); }

.nav__cta { flex-shrink: 0; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s ease;
}
.nav__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--teal-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.mobile-menu a { color: #fff; font-size: 1.2rem; font-weight: 500; }
.mobile-menu a:hover { color: var(--mint); }

.mobile-menu__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  color: rgba(255,255,255,.6);
  font-size: 1.4rem;
  cursor: pointer;
  padding: .5rem;
  transition: color var(--ease);
}
.mobile-menu__close:hover { color: #fff; }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 5rem;
}
.hero__deco { position: absolute; inset: 0; pointer-events: none; }

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__headline {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.25rem;
}
.hero__headline em { font-style: italic; color: var(--mint); }

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.75rem; }

/* Micro stats */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero__stat { display: flex; flex-direction: column; }
.hero__stat strong {
  font-family: var(--serif);
  font-size: 1.55rem;
  color: var(--mint);
  font-weight: 700;
  line-height: 1;
}
.hero__stat span {
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  margin-top: .25rem;
  white-space: nowrap;
}
.hero__stat-sep { width: 1px; height: 42px; background: rgba(255,255,255,.14); }

/* Avatar visual */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.avatar-wrap {
  position: relative;
  width: 300px;
  height: 300px;
}
.avatar-img {
  position: absolute;
  inset: 28px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--teal);
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.avatar-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

.avatar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.avatar-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(94,234,212,.28);
}
.avatar-ring--inner { inset: 12px; }
.avatar-ring--outer {
  inset: 0;
  border-color: rgba(94,234,212,.14);
  animation: pulse-ring 3s ease-in-out infinite;
}

.dots-grid {
  position: absolute;
  width: 76px; height: 76px;
  bottom: 14px; right: -18px;
  z-index: 3;
}

@keyframes pulse-ring {
  0%, 100% { transform: scale(1);    opacity: 1; }
  50%       { transform: scale(1.06); opacity: .6; }
}

/* ═══════════════════════════════════════════
   SOBRE
═══════════════════════════════════════════ */
.about { padding: 6rem 0; }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about__text .btn { margin-top: 1.25rem; }

/* Diferenciais */
.about__cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.diff-card {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: var(--mint-soft);
  border-radius: var(--r-card);
  padding: 1.5rem;
  transition: transform var(--ease), box-shadow var(--ease);
}
.diff-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.diff-card__icon { width: 48px; height: 48px; flex-shrink: 0; }
.diff-card__icon svg { width: 100%; height: 100%; }

.diff-card h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: .35rem;
}
.diff-card p { font-size: .875rem; color: var(--text-body); line-height: 1.65; }

/* ═══════════════════════════════════════════
   RESULTADOS
═══════════════════════════════════════════ */
.results { padding: 6rem 0; text-align: center; }
.results__deco { position: absolute; inset: 0; pointer-events: none; }
.results__inner { position: relative; z-index: 1; }

.results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin: 2.75rem 0;
}

.result-card {
  background: rgba(94,234,212,.07);
  border: 1px solid rgba(94,234,212,.18);
  border-radius: var(--r-card);
  padding: 2.5rem 1.75rem;
  transition: transform var(--ease), background var(--ease);
}
.result-card:hover { transform: translateY(-5px); background: rgba(94,234,212,.12); }

.result-card__num {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--mint);
  line-height: 1;
  margin-bottom: .5rem;
}
.result-card__label {
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: .75rem;
}
.result-card__desc { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.65; }

/* Plataformas */
.platforms { padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,.1); }
.platforms__label { font-size: .85rem; color: rgba(255,255,255,.55); margin-bottom: 1.25rem; }
.platforms__list { display: flex; gap: .875rem; justify-content: center; flex-wrap: wrap; }

.platform-tag {
  background: rgba(94,234,212,.1);
  border: 1px solid rgba(94,234,212,.22);
  color: var(--mint);
  padding: .45rem 1.1rem;
  border-radius: 100px;
  font-size: .825rem;
  font-weight: 600;
  transition: background var(--ease);
}
.platform-tag:hover { background: rgba(94,234,212,.18); }

/* ═══════════════════════════════════════════
   SERVIÇOS
═══════════════════════════════════════════ */
.services { padding: 6rem 0; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.svc-card {
  background: #fff;
  border-radius: var(--r-card);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(13,124,124,.06);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(94,234,212,.4);
}

/* último card (Landing Pages) ocupa 2 colunas */
.svc-card--wide {
  grid-column: span 2;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}
.svc-card--wide .svc-card__body { display: flex; flex-direction: column; gap: .7rem; flex: 1; }

.svc-card__icon { width: 54px; height: 54px; flex-shrink: 0; }
.svc-card__icon svg { width: 100%; height: 100%; }

.svc-card__title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.svc-card__tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--teal);
  background: var(--mint-soft);
  padding: .2rem .6rem;
  border-radius: 5px;
}

.svc-card__benefit { font-size: .875rem; color: var(--text-body); line-height: 1.72; }

/* ═══════════════════════════════════════════
   COMO FUNCIONA
═══════════════════════════════════════════ */
.process {
  background: var(--teal);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.process__deco { position: absolute; inset: 0; pointer-events: none; }
.process__inner { position: relative; z-index: 1; text-align: center; }

.steps {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 3rem;
}

.step {
  flex: 1;
  text-align: center;
}

.step__num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--mint);
  opacity: .38;
  line-height: 1;
  margin-bottom: 1rem;
}
.step__body h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: .6rem;
}
.step__body p { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.7; }

.step__arrow {
  color: var(--mint);
  font-size: 1.5rem;
  opacity: .45;
  margin-top: 2.5rem;
  flex-shrink: 0;
  user-select: none;
}

/* ═══════════════════════════════════════════
   CTA FINAL / CONTATO
═══════════════════════════════════════════ */
.cta-final { padding: 6rem 0; }
.cta-final__deco { position: absolute; inset: 0; pointer-events: none; }

.cta-final__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.cta-final__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
}
.cta-final__sub { font-size: 1.05rem; color: rgba(255,255,255,.68); line-height: 1.75; }

.cta-final__trust {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  padding-top: .5rem;
}
.cta-final__trust span { font-size: .82rem; color: rgba(255,255,255,.55); }

/* Formulário */
.contact-form {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-card);
  padding: 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contact-form__title {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.form-group { margin-bottom: 1.15rem; }

.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  margin-bottom: .4rem;
  letter-spacing: .02em;
}
.label-opt { font-weight: 400; opacity: .6; }

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 8px;
  padding: .75rem 1rem;
  color: #fff;
  font-family: var(--sans);
  font-size: .925rem;
  outline: none;
  transition: border-color var(--ease), background var(--ease);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.32); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--mint);
  background: rgba(255,255,255,.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-privacy {
  font-size: .72rem;
  color: rgba(255,255,255,.35);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--text-dark);
  padding: 4rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__name {
  display: block;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}
.footer__role {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  color: var(--mint);
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-top: .25rem;
  margin-bottom: .875rem;
}
.footer__tagline { font-size: .875rem; color: rgba(255,255,255,.38); }

.footer__contact h4 {
  font-family: var(--serif);
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1rem;
}
.footer__contact ul { display: flex; flex-direction: column; gap: .75rem; }
.footer__contact li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .875rem;
  color: rgba(255,255,255,.55);
}
.footer__contact svg { opacity: .45; flex-shrink: 0; }
.footer__contact a { color: rgba(255,255,255,.55); transition: color var(--ease); }
.footer__contact a:hover { color: var(--mint); }

.footer__bottom {
  padding: 1.5rem 0;
  text-align: center;
}
.footer__bottom p { font-size: .78rem; color: rgba(255,255,255,.25); }

/* ═══════════════════════════════════════════
   WHATSAPP STICKY
═══════════════════════════════════════════ */
.wa-sticky {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: .5rem;
  background: #25D366;
  color: #fff;
  padding: .875rem 1.25rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: .875rem;
  box-shadow: 0 6px 24px rgba(37,211,102,.38);
  transition: transform var(--ease), box-shadow var(--ease);
}
.wa-sticky:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,211,102,.5);
}

/* Em desktop: mostrar só ícone */
@media (min-width: 769px) {
  .wa-sticky span { display: none; }
  .wa-sticky {
    width: 58px; height: 58px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}

/* ═══════════════════════════════════════════
   ANIMAÇÕES DE SCROLL
═══════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   RESPONSIVIDADE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__grid       { gap: 2.5rem; }
  .about__grid      { gap: 3rem; }
  .services__grid   { grid-template-columns: repeat(2, 1fr); }
  .svc-card--wide   { grid-column: span 2; }
  .steps            { flex-wrap: wrap; }
  .step__arrow      { display: none; }
  .step             { flex: 0 0 calc(50% - 1rem); }
  .cta-final__grid  { gap: 2.5rem; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  /* Hero */
  .hero { padding: 6rem 0 4rem; }
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero__visual { order: -1; }
  .avatar-wrap  { width: 220px; height: 220px; margin: 0 auto; }
  .hero__ctas   { justify-content: center; }
  .hero__stats  { justify-content: center; }
  .hero__sub    { margin: 0 auto 2.5rem; }

  /* About */
  .about__grid  { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Results */
  .results__grid { grid-template-columns: 1fr; }

  /* Services */
  .services__grid { grid-template-columns: 1fr; }
  .svc-card--wide { grid-column: span 1; flex-direction: column; }

  /* Process */
  .steps { flex-direction: column; gap: 1.75rem; }
  .step  { flex: none; }

  /* CTA */
  .cta-final__grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 2.25rem; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: 2rem; }
  .hero__ctas     { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__stats    { flex-wrap: wrap; gap: 1rem; }
  .hero__stat-sep { display: none; }
}
