/* ================================================================
   JUNTOS SAÚDE — HOME
   Identidade: Azul Profundo · Azul Principal · Azul Claro · Branco
================================================================ */

/* ================================================================
   RESET
================================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button, input { font-family: inherit; }
ul { list-style: none; }
svg { display: block; }

/* ================================================================
   TOKENS
================================================================ */
:root {
  --bg:         #0D1B2A;
  --bg-light:   #f5f8fc;
  --bg-soft:    #eef2f8;
  --white:      #ffffff;

  --blue:       #2563EB;
  --blue-h:     #1d4fc0;
  --sky:        #6FB6F2;

  --ink:        #0D1B2A;
  --ink-mid:    #314256;
  --ink-soft:   #56697e;
  --fog:        #8fa3b8;
  --mist:       #b6c5d6;

  --line-light: #dce4ee;
  --line-dark:  rgba(255,255,255,0.08);

  --r-sm: 6px;
  --r:    10px;
  --r-lg: 18px;

  --container: 1320px;
}

/* ================================================================
   BASE
================================================================ */
html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ================================================================
   CONTAINER
================================================================ */
.sc {
  width: min(calc(100% - 3rem), var(--container));
  margin-inline: auto;
}

/* ================================================================
   SHARED — BUTTONS
================================================================ */
.btn-primary,
.btn-ghost,
.btn-outline,
.btn-ghost-light,
.btn-outline-accent,
.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  height: 2.85rem;
  padding: 0 1.5rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.18s, box-shadow 0.22s;
}
.btn-primary i, .btn-primary svg,
.btn-ghost i, .btn-ghost svg,
.btn-outline i, .btn-outline svg,
.btn-ghost-light i, .btn-ghost-light svg,
.btn-outline-accent i, .btn-outline-accent svg,
.btn-light i, .btn-light svg { width: 1rem; height: 1rem; stroke-width: 2.2; }

.btn-lg { height: 3.2rem; padding: 0 1.85rem; font-size: 0.88rem; }

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(37,99,235,0.6);
}
.btn-primary:hover {
  background: var(--blue-h);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px -10px rgba(37,99,235,0.7);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: rgba(37,99,235,0.4);
}
.btn-outline:hover {
  background: rgba(37,99,235,0.06);
  border-color: var(--blue);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  font-weight: 500;
}
.btn-ghost:hover { color: var(--blue); }

.btn-ghost-light {
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  border-color: rgba(255,255,255,0.18);
}
.btn-ghost-light:hover { color: #fff; border-color: rgba(255,255,255,0.5); }

/* Botão claro (CTA secundário em fundo escuro) — fundo branco, texto azul */
.btn-light {
  background: var(--bg-light);
  color: var(--blue);
  font-weight: 700;
  border-color: var(--bg-light);
  box-shadow: 0 10px 24px -10px rgba(13,27,42,0.5);
}
.btn-light:hover { background: var(--bg-soft); transform: translateY(-1px); }
.btn-light svg { width: 1.2rem; height: 1.2rem; }

.btn-outline-accent {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
  height: 3rem;
  padding: 0 1.6rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.btn-outline-accent:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-1px);
}

/* ================================================================
   SHARED — SECTION LABELS & HEADERS
================================================================ */
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blue);
}
.sec-label__bar {
  display: inline-block;
  width: 2.25rem;
  height: 1px;
  background: var(--blue);
}
.sec-label--light { color: var(--sky); }
.sec-label--light .sec-label__bar { background: var(--sky); }

.sec-head {
  max-width: 44rem;
  margin: 0 auto 4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.sec-head h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.04;
  font-weight: 300;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.sec-head h2 em {
  font-style: normal;
  font-weight: 600;
  color: var(--blue);
}
.sec-head p {
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
  color: var(--ink-soft);
}

/* Variante para seções de fundo escuro */
.sec-head--light h2 { color: #fff; }
.sec-head--light h2 em { color: var(--sky); }
.sec-head--light p { color: var(--mist); }

/* ================================================================
   SHARED — LOGO
================================================================ */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.logo img {
  height: 2.5rem;
  width: auto;
  display: block;
}
.logo__mark {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-block;
}
.logo__mark svg { width: 100%; height: 100%; }
.logo__type {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  padding-left: 0.75rem;
  border-left: 1px solid var(--line-light);
  line-height: 1;
}
.logo__type strong {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--bg);
}
.logo__type small {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  color: var(--blue);
}
.logo--light .logo__type strong { color: #fff; }
.logo--light .logo__type { border-left-color: rgba(255,255,255,0.12); }

/* ================================================================
   HEADER
================================================================ */
.sh {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--line-light);
}

/* Utility bar */
.sh__utility {
  height: 38px;
  background: var(--bg);
  color: var(--mist);
}
.sh__utility-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sh__contacts,
.sh__utility-right {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.sh__contact {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--mist);
  transition: color 0.2s;
}
.sh__contact:hover { color: #fff; }
.sh__contact i, .sh__contact svg {
  width: 0.78rem; height: 0.78rem;
  color: var(--sky); stroke-width: 2.2;
}
.sh__contact em {
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--sky);
}
.sh__contact--strong { color: #fff; font-weight: 600; }
.sh__contact--strong svg { width: 1rem; height: 1rem; }
.sh__dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
}
.sh__vline { width: 1px; height: 14px; background: rgba(255,255,255,0.1); }

/* Main bar */
.sh__main { height: 74px; }
.sh__main-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.sh__burger {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--bg);
  margin-left: auto;
  padding: 0.5rem;
}
.sh__burger svg { width: 1.4rem; height: 1.4rem; }

.sh__nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sh__nav ul {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.sh__nav a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-mid);
  transition: color 0.2s;
}
.sh__nav a:hover { color: var(--blue); }
.sh__nav-mobile-btn { display: none; }

.sh__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

/* Mobile CTA bar — exibida logo abaixo do hero (apenas no mobile) */
.sh__mcta {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: calc(100% - 1.5rem);
  margin: 1.4rem auto 1.5rem;
  height: 2.7rem;
  background: var(--blue);
  color: #fff;
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 20px -8px rgba(37,99,235,0.55);
}
.sh__mcta i, .sh__mcta svg { width: 0.95rem; height: 0.95rem; stroke-width: 2.2; }

/* ================================================================
   HERO — CARROSSEL DE BANNERS
================================================================ */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #fff;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1600 / 500;
  max-height: calc(100vh - 112px);
  min-height: 360px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #fff;
}
.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1s ease, transform 7s ease;
  pointer-events: none;
}
.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.hero__slide picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(13,27,42,0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.18s;
}
.hero__arrow:hover {
  background: rgba(37,99,235,0.85);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-50%) scale(1.06);
}
.hero__arrow svg { width: 1.2rem; height: 1.2rem; stroke-width: 2.2; }
.hero__arrow--prev { left: 1.5rem; }
.hero__arrow--next { right: 1.5rem; }

.hero__dots {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.7rem;
  background: rgba(13,27,42,0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
}
.hero__dot {
  width: 1.6rem;
  height: 0.4rem;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.hero__dot span {
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.32);
  transition: background 0.25s, width 0.25s;
}
.hero__dot.is-active span { background: var(--sky); }
.hero__dot:hover span { background: rgba(255,255,255,0.6); }

/* ================================================================
   BENEFÍCIOS
================================================================ */
.benefits {
  background: #fff;
  padding: 5rem 0 5.5rem;
  border-top: 1px solid var(--line-light);
}
.benefits__head {
  text-align: center;
  margin-bottom: 3rem;
}
.benefits__kicker {
  display: inline-block;
  position: relative;
  padding: 0 2.5rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--blue);
}
.benefits__kicker::before,
.benefits__kicker::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 1.8rem;
  height: 1px;
  background: rgba(37,99,235,0.4);
}
.benefits__kicker::before { left: 0; }
.benefits__kicker::after { right: 0; }

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}
.benefits__grid > .benefit { grid-column: span 2; }

.benefit {
  position: relative;
  overflow: hidden;
  padding: 1.6rem 1.4rem 1.5rem;
  background: #e7f0fb;
  border: 1px solid rgba(37,99,235,0.12);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.benefit::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  border-radius: 3px 0 0 3px;
  background: linear-gradient(180deg, var(--blue) 0%, var(--sky) 100%);
}
.benefit:hover {
  transform: translateY(-4px);
  border-color: rgba(37,99,235,0.3);
  box-shadow: 0 22px 40px -22px rgba(13,27,42,0.25);
}
.benefit__icon {
  height: 5.5rem;
  width: auto;
  object-fit: contain;
}
.benefit h3 {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--blue);
}
.benefit p {
  font-size: 0.92rem;
  line-height: 1.6;
  font-weight: 400;
  color: var(--ink-soft);
}
.benefit p strong { font-weight: 800; color: var(--blue); }

/* Botão "Saiba mais" — ancorado no rodapé do card */
.benefit__more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.52rem 1.2rem;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue);
  background: #fff;
  border: 1.5px solid rgba(37,99,235,0.35);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.18s;
}
.benefit__more i { width: 1rem; height: 1rem; }
.benefit__more:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-1px);
}

/* ================================================================
   MODAL DE BENEFÍCIOS
================================================================ */
.bmodal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}
.bmodal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.25s ease, visibility 0s linear 0s;
}

.bmodal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,0.62);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.bmodal__box {
  position: relative;
  width: 100%;
  max-width: 620px;
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: 0 30px 70px -18px rgba(13,27,42,0.55);
  overflow: hidden;
  transform: translateY(18px) scale(0.97);
  transition: transform 0.25s ease;
}
.bmodal.is-open .bmodal__box { transform: translateY(0) scale(1); }

.bmodal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.7rem 1.1rem;
  border-bottom: 1px solid var(--line-light);
}
.bmodal__title {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--blue);
}
.bmodal__close {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border: none;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--ink-mid);
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.bmodal__close i { width: 1.15rem; height: 1.15rem; }
.bmodal__close:hover { background: #fde3e3; color: #dc2626; }

.bmodal__body {
  padding: 1.3rem 1.7rem 1.6rem;
  overflow-y: auto;
}
.bmodal__body p {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 0.85rem;
}
.bmodal__body p:last-child { margin-bottom: 0; }
.bmodal__body p strong { color: var(--ink-mid); font-weight: 700; }
.bmodal__body h4 {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--blue);
  margin: 1.3rem 0 0.65rem;
}
.bmodal__body ul {
  list-style: none;
  display: grid;
  gap: 0.42rem;
  margin-bottom: 0.85rem;
}
.bmodal__body ul li {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.bmodal__body ul li::before {
  content: '';
  position: absolute;
  left: 0.05rem;
  top: 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--sky);
}
.bmodal__body ul li strong { color: var(--ink-mid); font-weight: 700; }
.bmodal__body ul.bmodal__cols { grid-template-columns: 1fr 1fr; column-gap: 1.1rem; }

.bmodal__foot {
  padding: 1rem 1.7rem 1.4rem;
  border-top: 1px solid var(--line-light);
  display: flex;
  justify-content: flex-end;
}
.bmodal__back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 1.6rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  background: var(--blue);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s;
}
.bmodal__back i { width: 1.05rem; height: 1.05rem; }
.bmodal__back:hover { background: var(--blue-h); transform: translateY(-2px); }

@media (max-width: 640px) {
  .bmodal { padding: 0.9rem; }
  .bmodal__head { padding: 1.2rem 1.2rem 0.9rem; }
  .bmodal__body { padding: 1.1rem 1.2rem 1.3rem; }
  .bmodal__foot { padding: 0.9rem 1.2rem 1.2rem; }
  .bmodal__title { font-size: 1.08rem; }
  .bmodal__body ul.bmodal__cols { grid-template-columns: 1fr; }
}

/* ================================================================
   SOBRE
================================================================ */
.about {
  background: #fff;
  padding: 7rem 0;
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 5rem;
  align-items: center;
}
.about__title {
  margin: 1.4rem 0 1.5rem;
  max-width: 24ch;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.08;
  font-weight: 300;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.about__title em { font-style: normal; font-weight: 600; color: var(--blue); }
.about__lead {
  max-width: 34rem;
  margin-bottom: 2.5rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
.about__left .about__lead + .about__lead { margin-top: -1.25rem; }

.about__quote {
  position: relative;
  align-self: center;
  padding: 3rem 3rem 3rem 3.25rem;
  background: var(--bg-light);
  border-left: 3px solid var(--blue);
  border-radius: 4px 18px 18px 4px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.about__quote-mark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 5rem;
  line-height: 0.6;
  font-weight: 400;
  height: 2rem;
  color: var(--blue);
}
.about__quote-text {
  font-size: 1.02rem;
  line-height: 1.75;
  font-style: italic;
  font-weight: 400;
  color: var(--ink-mid);
}

/* ================================================================
   PROPÓSITO — VÍDEO INSTITUCIONAL
================================================================ */
.purpose {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 7rem 0 8rem;
  background: linear-gradient(160deg, #0D1B2A 0%, #11253D 55%, #0D1B2A 100%);
}
/* Brilho azul difuso descendo do topo, atrás do título */
.purpose::before {
  content: '';
  position: absolute;
  z-index: 0;
  left: 50%;
  top: -20rem;
  width: 62rem;
  height: 40rem;
  transform: translateX(-50%);
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(37,99,235,0.3) 0%, transparent 65%);
}
.purpose__decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.55;
  pointer-events: none;
}
.purpose__decor svg { width: 100%; height: 100%; }
.purpose__inner { position: relative; z-index: 1; }

.vplayer {
  position: relative;
  max-width: 62rem;
  margin-inline: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  isolation: isolate;
  background: #0a1523;
  border: 1px solid rgba(111,182,242,0.16);
  border-radius: 20px;
  box-shadow: 0 40px 90px -35px rgba(0,0,0,0.85);
}
.vplayer__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.vplayer:not(.is-playing):hover .vplayer__video { transform: scale(1.03); }

.vplayer__cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  border: 0;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(13,27,42,0.15) 0%, rgba(13,27,42,0.5) 100%);
  transition: opacity 0.35s ease, visibility 0.35s;
}
.vplayer.is-playing .vplayer__cover {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.vplayer__play {
  position: relative;
  width: 5.5rem;
  height: 5.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 16px 36px -10px rgba(37,99,235,0.7);
  transition: background 0.22s, transform 0.22s;
}
/* Anel pulsante ao redor do play */
.vplayer__play::before {
  content: '';
  position: absolute;
  inset: -0.5rem;
  border-radius: 50%;
  border: 1px solid rgba(111,182,242,0.5);
  animation: vplayerPulse 2.4s ease-out infinite;
}
.vplayer__play i, .vplayer__play svg {
  width: 2rem;
  height: 2rem;
  margin-left: 0.22rem; /* compensa o centro óptico do triângulo */
  fill: #fff;
  stroke-width: 1;
}
.vplayer__cover:hover .vplayer__play {
  background: var(--blue-h);
  transform: scale(1.07);
}

@keyframes vplayerPulse {
  0%   { transform: scale(1);    opacity: 0.9; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

.vplayer__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-indent: 0.3em; /* recentra o texto, compensando o letter-spacing do último caractere */
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 10px rgba(13,27,42,0.55);
}

@media (prefers-reduced-motion: reduce) {
  .vplayer__play::before { animation: none; }
  .vplayer__video, .vplayer__play { transition: none; }
}

/* ================================================================
   SERVIÇOS / BENTO
================================================================ */
.services {
  background: var(--bg-light);
  padding: 7rem 0;
}
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  gap: 1rem;
}
.bento__card {
  position: relative;
  min-height: 11rem;
  padding: 2.1rem 2rem;
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  transition: transform 0.22s, box-shadow 0.25s, border-color 0.22s;
}
.bento__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.bento__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -16px rgba(13,27,42,0.18);
  border-color: rgba(37,99,235,0.25);
}
.bento__icon {
  width: 3.75rem;
  height: 3.75rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bento__icon i, .bento__icon svg {
  width: 1.5rem; height: 1.5rem;
  color: var(--blue); stroke-width: 1.9;
}
.bento__card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.bento__card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.bento__card--wide { grid-column: span 2; }
.bento__card--wide .bento__icon { width: 4.75rem; height: 4.75rem; }
.bento__card--wide .bento__icon i, .bento__card--wide .bento__icon svg { width: 1.95rem; height: 1.95rem; }
.bento__card--dark {
  background: linear-gradient(140deg, #0D1B2A 0%, #11253D 100%);
  border-color: transparent;
}
.bento__card--accent {
  background: linear-gradient(140deg, #2563EB 0%, #1d4fc0 100%);
  border-color: transparent;
}
.bento__card--dark .bento__icon,
.bento__card--accent .bento__icon {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.18);
}
.bento__card--dark .bento__icon i, .bento__card--dark .bento__icon svg { color: var(--sky); }
.bento__card--accent .bento__icon i, .bento__card--accent .bento__icon svg { color: #fff; }
.bento__card--dark h3,
.bento__card--dark p,
.bento__card--accent h3,
.bento__card--accent p { color: #fff; }

.bento__pill {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  height: 1.65rem;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.18);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}
.bento__card--dark .bento__pill {
  background: rgba(111,182,242,0.12);
  border-color: rgba(111,182,242,0.22);
  color: var(--sky);
}
.bento__pill--light {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.28);
  color: #fff;
}

.services__tags { margin-top: 3rem; }
.services__tags-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  padding: 1.5rem 2rem;
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 999px;
}
.services__tags-bar span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mid);
}
.services__tags-bar i, .services__tags-bar svg {
  width: 1rem; height: 1rem;
  color: var(--blue); stroke-width: 1.8;
}

/* ================================================================
   ÁREAS DE ATUAÇÃO
================================================================ */
.areas {
  background: #fff;
  padding: 7rem 0;
}
.areas__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}
.areas__head-text {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.areas__title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--blue);
}
.areas__subtitle {
  max-width: 44rem;
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.areas__subtitle strong {
  display: inline-block;
  padding: 0.05em 0.55em;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #fff;
  background: var(--blue);
  border-radius: 6px;
  box-shadow: 0 6px 14px -6px rgba(37,99,235,0.55);
}

.areas__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
.area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  text-align: center;
  transition: transform 0.22s;
}
.area:hover {
  transform: translateY(-4px);
}
.area__media {
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  border-radius: 14px;
}
.area__media::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(255,255,255,0.4) 0%, transparent 60%),
    linear-gradient(155deg, var(--bg) 0%, var(--blue) 60%, var(--sky) 110%);
}
.area__media[data-tone="b"]::before { background: radial-gradient(ellipse 60% 50% at 20% 20%, rgba(255,255,255,0.45) 0%, transparent 60%), linear-gradient(135deg, #6FB6F2 0%, #2563EB 90%); }
.area__media[data-tone="c"]::before { background: radial-gradient(ellipse 70% 60% at 100% 0%, rgba(255,255,255,0.4) 0%, transparent 60%), linear-gradient(165deg, #1d4fc0 0%, #6FB6F2 100%); }
.area__media[data-tone="d"]::before { background: radial-gradient(ellipse 60% 50% at 10% 90%, rgba(111,182,242,0.4) 0%, transparent 60%), linear-gradient(135deg, #15294A 0%, #2563EB 100%); }
.area__media[data-tone="e"]::before { background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(255,255,255,0.35) 0%, transparent 60%), linear-gradient(135deg, #2563EB 0%, #0D1B2A 100%); }
.area__media i, .area__media svg {
  position: relative;
  z-index: 1;
  width: 38%;
  height: 38%;
  color: #fff;
  stroke-width: 1.4;
  opacity: 0.95;
}
.area__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.area h3 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--blue);
}

.areas__more {
  margin-top: 2.5rem;
  animation: areasFade 0.4s ease;
}
@keyframes areasFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.areas__more-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1.15rem;
  background: var(--bg-soft);
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  transition: background 0.2s, color 0.2s, transform 0.18s;
}
.area-chip:hover {
  background: rgba(37,99,235,0.08);
  color: var(--blue);
  transform: translateY(-2px);
}
.area-chip i, .area-chip svg {
  width: 1rem; height: 1rem;
  color: var(--blue); stroke-width: 1.9;
  flex-shrink: 0;
}

.areas__cta {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
.areas__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  height: 3rem;
  padding: 0 2rem;
  border-radius: 999px;
  border: 1.5px solid rgba(37,99,235,0.35);
  background: rgba(37,99,235,0.04);
  color: var(--blue);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.18s;
}
.areas__toggle:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  transform: translateY(-1px);
}
.areas__toggle .areas__toggle-hide { display: none; }
.areas__toggle.is-open .areas__toggle-show { display: none; }
.areas__toggle.is-open .areas__toggle-hide { display: inline; }

/* ================================================================
   COMO FUNCIONA
================================================================ */
.how {
  background: #fff;
  padding: 7rem 0;
}
.how__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem 2rem;
}
.how__steps::before {
  content: '';
  position: absolute;
  left: calc(100% / 6);
  right: calc(100% / 6);
  top: 1.75rem;
  height: 1px;
  z-index: 0;
  background: linear-gradient(90deg, transparent, rgba(37,99,235,0.35), transparent);
}
.how__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.1rem;
}
.how__num {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--blue);
  box-shadow: 0 8px 18px -6px rgba(37,99,235,0.18);
}
.how__step h3 {
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.how__step p {
  max-width: 18rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ================================================================
   PLANOS
================================================================ */
.plans {
  background: var(--bg-light);
  padding: 7rem 0;
}
.plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 58rem;
  margin-inline: auto;
  align-items: stretch;
}
.plan {
  position: relative;
  padding: 2.5rem 2rem 2rem;
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  transition: transform 0.2s, box-shadow 0.25s, border-color 0.22s;
}
.plan:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -14px rgba(13,27,42,0.15);
  border-color: rgba(37,99,235,0.3);
}
.plan--featured {
  background: linear-gradient(160deg, #0D1B2A 0%, #15294A 100%);
  border-color: rgba(111,182,242,0.3);
  box-shadow: 0 22px 50px -16px rgba(13,27,42,0.4);
}
.plan__badge {
  position: absolute;
  top: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  height: 1.7rem;
  padding: 0 1rem;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 18px -6px rgba(37,99,235,0.55);
}
.plan__head { display: flex; flex-direction: column; gap: 0.6rem; }
.plan__head h3 {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.plan__head p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.plan--featured .plan__head h3 { color: #fff; }
.plan--featured .plan__head p { color: rgba(255,255,255,0.7); }

.plan__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.3rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px dashed var(--line-light);
  color: var(--ink);
}
.plan__price-currency {
  align-self: flex-start;
  margin-top: 0.45rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--blue);
}
.plan__price-value {
  font-size: 2.85rem;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--ink);
}
.plan__price-period {
  margin-left: 0.15rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.plan__price--light { border-bottom-color: rgba(255,255,255,0.12); }
.plan__price--light .plan__price-currency { color: var(--sky); }
.plan__price--light .plan__price-value { color: #fff; }
.plan__price--light .plan__price-period { color: rgba(255,255,255,0.7); }
.plan__price--custom {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}
.plan__price--custom .plan__price-value {
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}
.plan__price--custom .plan__price-period {
  margin-left: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.plan__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.plan__list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
}
.plan--featured .plan__list li { color: rgba(255,255,255,0.9); }
.plan__list i, .plan__list svg {
  width: 0.85rem; height: 0.85rem;
  color: var(--blue); stroke-width: 2.8;
  flex-shrink: 0;
}
.plan--featured .plan__list i, .plan--featured .plan__list svg { color: var(--sky); }

/* ================================================================
   CTA
================================================================ */
.cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 9rem 0 8rem;
  background: linear-gradient(160deg, #0D1B2A 0%, #11253D 60%, #0D1B2A 100%);
}
.cta__decor {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
}
.cta__decor svg { width: 100%; height: 100%; }
.cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.cta__title {
  margin: 0.5rem 0 0.75rem;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  line-height: 1.02;
  font-weight: 300;
  letter-spacing: -0.045em;
  color: #fff;
}
.cta__title em { font-style: normal; font-weight: 600; color: var(--sky); }
.cta__desc {
  max-width: 36rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--mist);
}
.cta__actions {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.cta__tags {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}
.cta__tags span {
  height: 2.1rem;
  padding: 0 1.1rem;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(111,182,242,0.28);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(111,182,242,0.85);
}

/* ================================================================
   FOOTER
================================================================ */
.ft {
  background: var(--bg);
  color: var(--mist);
}
.ft__main {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 5rem;
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--line-dark);
}
.ft__brand { display: flex; flex-direction: column; gap: 1.4rem; }
.ft__brand .logo { align-self: flex-start; }
.ft__tagline {
  max-width: 24rem;
  font-size: 0.92rem;
  line-height: 1.7;
  font-style: italic;
  color: var(--mist);
}
.ft__contacts { display: flex; flex-direction: column; gap: 0.65rem; }
.ft__contacts a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--mist);
  transition: color 0.2s;
}
.ft__contacts a:hover { color: #fff; }
.ft__contacts i, .ft__contacts svg {
  width: 0.9rem; height: 0.9rem;
  color: var(--sky); stroke-width: 2;
}

.ft__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding-top: 0.25rem;
}
.ft__col { display: flex; flex-direction: column; gap: 1.1rem; }
.ft__col strong {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
}
.ft__col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.ft__col a {
  font-size: 0.86rem;
  font-weight: 400;
  color: var(--mist);
  cursor: pointer;
  transition: color 0.2s;
}
.ft__col a:hover { color: #fff; }

.ft__social { display: flex; flex-direction: column; gap: 0.9rem; }
.ft__social strong {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
}
.ft__social-icons { display: flex; gap: 0.7rem; }
.ft__social-icons a {
  width: 2.4rem; height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  color: var(--mist);
  transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.2s;
}
.ft__social-icons a:hover {
  color: #fff;
  background: var(--sky);
  border-color: var(--sky);
  transform: translateY(-2px);
}
.ft__social-icons svg { width: 1.05rem; height: 1.05rem; }

.ft__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 3.5rem;
}
.ft__bottom-inner > p {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(182,197,214,0.55);
}
.ft__bottom-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.ft__version {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(111,182,242,0.6);
}
.ft__admin {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.12);
  transition: color 0.2s;
}
.ft__admin:hover { color: rgba(255,255,255,0.4); }

/* ================================================================
   RESPONSIVE — 1200px
================================================================ */
@media (max-width: 1200px) {
  .sh__utility { display: none; }
  .about__inner { grid-template-columns: 1fr; gap: 3rem; }
}

/* ================================================================
   RESPONSIVE — 960px
================================================================ */
@media (max-width: 960px) {
  /* header */
  .sh__main { position: relative; }
  .sh__burger { display: flex; }
  .sh__actions { display: none; }
  .sh__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.5rem 0;
    background: #fff;
    border-bottom: 1px solid var(--line-light);
    box-shadow: 0 18px 28px -18px rgba(13,27,42,0.18);
  }
  .sh__nav.is-open { display: flex; }
  .sh__nav ul { flex-direction: column; align-items: center; gap: 1.15rem; }
  .sh__nav a { font-size: 0.95rem; }
  .sh__nav .sh__nav-mobile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2.6rem;
    padding: 0 2.2rem;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    font-size: 0.86rem;
    font-weight: 700;
  }
  .sh__mcta { display: flex; }

  /* benefits */
  .benefits__grid { grid-template-columns: repeat(3, 1fr); row-gap: 1.25rem; }
  .benefits__grid > .benefit { grid-column: auto; }

  /* propósito */
  .purpose { padding: 5rem 0 5.5rem; }
  .vplayer__play { width: 4.5rem; height: 4.5rem; }
  .vplayer__play i, .vplayer__play svg { width: 1.6rem; height: 1.6rem; }

  /* bento */
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__card--wide { grid-column: span 2; }

  /* areas */
  .areas__grid { grid-template-columns: repeat(3, 1fr); }
  .areas__more-grid { grid-template-columns: repeat(2, 1fr); }

  /* how */
  .how__steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .how__steps::before { display: none; }

  /* plans */
  .plans__grid { grid-template-columns: 1fr; max-width: 28rem; }

  /* footer */
  .ft__main { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 0 3rem; }
}

/* ================================================================
   RESPONSIVE — 640px
================================================================ */
@media (max-width: 640px) {
  .sc { width: min(calc(100% - 2rem), var(--container)); }

  /* hero — banner completo sem corte no mobile */
  .hero {
    aspect-ratio: auto;
    min-height: 0;
    max-height: none;
  }
  .hero__slides { position: relative; inset: auto; height: auto; }
  .hero__slide { position: relative; inset: auto; aspect-ratio: auto; }
  .hero__slide:not(.is-active) { display: none; }
  /* No mobile a imagem vertical define a própria altura, sem corte */
  .hero__slide picture,
  .hero__slide img { height: auto; }
  .hero__arrow { width: 2.25rem; height: 2.25rem; }
  .hero__arrow svg { width: 0.95rem; height: 0.95rem; }
  .hero__arrow--prev { left: 0.5rem; }
  .hero__arrow--next { right: 0.5rem; }
  .hero__dots { bottom: 0.4rem; padding: 0.3rem 0.55rem; }
  .hero__dot { width: 1.1rem; }

  .benefits__grid { grid-template-columns: 1fr; }

  .vplayer { border-radius: 14px; }
  .vplayer__cover { gap: 1rem; }
  .vplayer__play { width: 3.8rem; height: 3.8rem; }
  .vplayer__play i, .vplayer__play svg { width: 1.35rem; height: 1.35rem; }
  .vplayer__label { font-size: 0.66rem; letter-spacing: 0.22em; text-indent: 0.22em; }

  .bento { grid-template-columns: 1fr; }
  .bento__card--wide { grid-column: span 1; }

  .services__tags-bar { border-radius: 18px; gap: 0.6rem 1.2rem; padding: 1.2rem; }
  .services__tags-bar span { font-size: 0.72rem; }

  .areas__grid { grid-template-columns: min(80%, 340px); justify-content: center; }
  .areas__head { gap: 1rem; }
  .areas__more-grid { grid-template-columns: 1fr; }

  .cta__title { font-size: clamp(2.2rem, 9vw, 3.4rem); }
  .cta__actions { flex-direction: column; width: 100%; }
  .cta__actions .btn-primary,
  .cta__actions .btn-ghost-light { width: 100%; }

  .ft__nav { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .ft__bottom-inner {
    flex-direction: column;
    height: auto;
    padding: 1.25rem 0;
    gap: 0.5rem;
    text-align: center;
  }
}

/* ================================================================
   RESPONSIVE — 420px
================================================================ */
@media (max-width: 420px) {
  .sc { width: min(calc(100% - 1.5rem), var(--container)); }

  .logo__mark { width: 2.1rem; height: 2.1rem; }
  .logo img { height: 2.1rem; }
  .logo__type strong { font-size: 0.88rem; }

  .benefits__grid { grid-template-columns: 1fr; }
  .ft__nav { grid-template-columns: 1fr; }
}

/* ===== Botão flutuante de WhatsApp (desktop + mobile) ===== */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 500;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 26px -6px rgba(37,99,235,0.5), 0 4px 12px rgba(13,27,42,0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.whatsapp-float:hover {
  background: var(--blue-h);
  transform: scale(1.06);
  box-shadow: 0 14px 32px -6px rgba(37,99,235,0.6), 0 6px 16px rgba(13,27,42,0.22);
}
.whatsapp-float svg { width: 33px; height: 33px; }
@media (max-width: 640px) {
  .whatsapp-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .whatsapp-float svg { width: 30px; height: 30px; }
}
