/* ==========================================================
   Newliv Seguros — Modern Website
   Design tokens + components
   ========================================================== */

:root {
  --primary:       #0458D4;
  --primary-dark:  #023B9A;
  --primary-700:   #0449B0;
  --primary-400:   #3B82F6;
  --primary-300:   #60A5FA;
  --primary-soft:  #EBF2FF;
  --navy-900:      #041B4A;
  --navy-800:      #0A2D6F;
  --ink-900:       #0F172A;
  --ink-700:       #334155;
  --ink-500:       #64748B;
  --ink-300:       #CBD5E1;
  --ink-100:       #F1F5F9;
  --bg:            #FFFFFF;
  --bg-soft:       #F5F8FC;

  /* Legacy aliases kept mapped to new palette */
  --teal-500: var(--primary);
  --teal-400: var(--primary-400);
  --mint-50:  var(--primary-soft);

  --radius-sm: 10px;
  --radius:    18px;
  --radius-lg: 28px;

  --shadow-sm:  0 4px 16px rgba(9, 30, 66, 0.06);
  --shadow:     0 18px 40px -12px rgba(9, 30, 66, 0.18);
  --shadow-lg:  0 32px 64px -20px rgba(9, 30, 66, 0.28);

  --ease: cubic-bezier(.22,.8,.22,1);

  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-serif: 'Fraunces', 'Georgia', serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

/* ===== Typography ===== */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; }
h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--navy-900); }
h3 { font-size: 1.25rem; color: var(--navy-900); }
h4 { font-size: 1rem; color: var(--navy-900); }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}

.section { padding: 120px 0; }

.section__head {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}
.section__head p {
  color: var(--ink-500);
  font-size: 1.05rem;
  margin-top: 14px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(4,88,212,.55);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -10px rgba(4,88,212,.7); }
.btn--ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: rgba(255,255,255,.15); transform: translateY(-2px); }
.btn--sm { padding: 10px 18px; font-size: 0.85rem; }
.btn--lg { padding: 18px 32px; font-size: 1rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--primary);
  transition: gap .3s var(--ease);
}
.link-arrow:hover { gap: 14px; }

/* ==========================================================
   NAV
   ========================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all .4s var(--ease);
}
.nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  padding: 14px 0;
}
.nav__inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #fff;
  transition: color .3s var(--ease);
}
.nav.scrolled .nav__logo { color: var(--navy-900); }
.logo-img {
  height: 44px;
  width: auto;
  display: block;
  transition: filter .3s var(--ease);
}
.nav:not(.scrolled) .logo-img {
  filter: brightness(0) invert(1);
}
.footer .logo-img {
  filter: brightness(0) invert(1);
  height: 54px;
}

.nav__links { display: flex; gap: 30px; align-items: center; }
.nav__links a {
  color: rgba(255,255,255,.85);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color .3s var(--ease);
}
.nav.scrolled .nav__links a { color: var(--ink-700); }
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  height: 2px; width: 0; background: var(--primary);
  transition: width .3s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

.nav__burger { display: none; flex-direction: column; gap: 5px; }
.nav__burger span { width: 26px; height: 2px; background: #fff; transition: all .3s; }
.nav.scrolled .nav__burger span { background: var(--navy-900); }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero__bg {
  position: absolute; inset: -10% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
  transform: scale(1.1);
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(4,27,74,.85) 0%, rgba(2,59,154,.7) 50%, rgba(4,88,212,.45) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 80px;
}
.hero__eyebrow {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(10px);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 900px;
}
.hero__title .accent {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(120deg, var(--primary-300), #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  max-width: 580px;
  color: rgba(255,255,255,.9);
  margin-bottom: 40px;
}
.hero__actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero__meta {
  display: flex; gap: 32px; flex-wrap: wrap;
  font-size: 0.9rem;
  color: rgba(255,255,255,.85);
}
.hero__meta i { color: var(--primary-300); margin-right: 8px; }

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 14px;
  z-index: 3;
}
.hero__scroll span {
  position: absolute;
  left: 50%; top: 8px;
  width: 4px; height: 8px;
  background: #fff;
  border-radius: 4px;
  transform: translateX(-50%);
  animation: scroll 1.8s var(--ease) infinite;
}
@keyframes scroll { 0%{opacity:1; top:8px;} 100%{opacity:0; top:24px;} }

/* ==========================================================
   STATS
   ========================================================== */
.stats {
  padding: 80px 0;
  background: var(--bg-soft);
  position: relative;
  z-index: 2;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat__num {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}
.stat__label {
  font-size: 0.95rem;
  color: var(--ink-500);
  font-weight: 500;
}

/* ==========================================================
   PLANOS
   ========================================================== */
.planos { background: var(--bg); }
.planos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.plano {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  position: relative;
}
.plano:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.plano__img {
  height: 200px;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  transition: transform 1s var(--ease);
  position: relative;
}
.plano__img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,28,44,.3), transparent);
}
.plano:hover .plano__img { transform: scale(1.08); }
.plano__body { padding: 28px; }
.plano__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid; place-items: center;
  font-size: 1.2rem;
  margin-bottom: 18px;
  margin-top: -54px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  border: 3px solid #fff;
}
.plano h3 { margin-bottom: 10px; }
.plano p {
  color: var(--ink-500);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

/* ==========================================================
   PARALLAX QUOTE
   ========================================================== */
.parallax-quote {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}
.parallax-quote__bg {
  position: absolute; inset: -15% 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  will-change: transform;
  z-index: 0;
}
.parallax-quote__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4,27,74,.88), rgba(4,88,212,.82));
  z-index: 1;
}
.parallax-quote__content {
  position: relative; z-index: 2;
  text-align: center;
}
.parallax-quote__content i {
  font-size: 2rem;
  color: var(--primary-300);
  margin-bottom: 20px;
}
.parallax-quote blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.parallax-quote p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================================
   SOBRE
   ========================================================== */
.sobre { background: var(--bg-soft); }
.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sobre__media {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 500px;
}
.sobre__img {
  position: absolute;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.sobre__img--main {
  inset: 0 40px 40px 0;
  z-index: 1;
}
.sobre__img--acc {
  width: 55%; height: 55%;
  right: 0; bottom: 0;
  border: 8px solid var(--bg-soft);
}
.sobre__img--logo {
  z-index: 3;
  width: 22%;
  height: 22%;
  right: 0;
  bottom: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  background-color: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
}
.sobre__caption {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 40px;
  bottom: 40px;
  padding: 16px 18px 14px;
  padding-right: 28%;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  background: linear-gradient(
    to top,
    rgba(4, 27, 74, 0.88) 0%,
    rgba(4, 27, 74, 0.4) 55%,
    transparent 100%
  );
  pointer-events: none;
}
.sobre__caption-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.sobre__caption-role {
  display: block;
  margin-top: 2px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.sobre__badge {
  position: absolute;
  top: 22px; left: -18px;
  background: #fff;
  padding: 12px 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 4;
}
.sobre__badge-num {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
}
.sobre__badge-txt {
  font-size: 0.72rem;
  color: var(--ink-700);
  line-height: 1.2;
}

.sobre__text p {
  color: var(--ink-700);
  margin-bottom: 18px;
  font-size: 1rem;
}
.sobre__features {
  list-style: none;
  margin: 30px 0;
}
.sobre__features li {
  padding: 10px 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink-700);
}
.sobre__features i { color: var(--primary); margin-top: 4px; }

/* ==========================================================
   DIFERENCIAIS
   ========================================================== */
.diferenciais { background: #fff; }
.dif__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dif {
  padding: 36px 30px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all .4s var(--ease);
}
.dif:hover {
  background: #fff;
  border-color: var(--ink-100);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.dif__icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary-400), var(--primary));
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.3rem;
  margin-bottom: 22px;
  box-shadow: 0 10px 24px -10px rgba(4,88,212,.6);
}
.dif h3 { margin-bottom: 10px; }
.dif p { color: var(--ink-500); font-size: 0.95rem; }

/* ==========================================================
   OPERADORAS (marquee)
   ========================================================== */
.operadoras {
  padding: 80px 0;
  background: var(--bg-soft);
  overflow: hidden;
}
.op__track {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.op__row {
  display: flex;
  gap: 80px;
  align-items: center;
  animation: marquee 35s linear infinite;
  white-space: nowrap;
  padding: 20px 0;
  width: max-content;
}
.op__row img {
  height: 60px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(100%) opacity(.55);
  transition: filter .4s var(--ease), transform .4s var(--ease);
  flex-shrink: 0;
}
.op__row img:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.08);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ==========================================================
   PROCESSO
   ========================================================== */
.processo { background: #fff; }
.proc__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}
.proc__grid::before {
  content: '';
  position: absolute;
  top: 30px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--primary-400), var(--ink-300));
  opacity: 0.3;
  z-index: 0;
}
.proc {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px;
}
.proc__num {
  display: inline-grid;
  place-items: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  transition: all .3s var(--ease);
}
.proc:hover .proc__num {
  background: var(--primary);
  color: #fff;
  transform: scale(1.08);
}
.proc h3 { margin-bottom: 8px; }
.proc p { color: var(--ink-500); font-size: 0.93rem; }

/* ==========================================================
   DEPOIMENTOS
   ========================================================== */
.depoimentos { background: var(--bg-soft); }
.dep__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.dep {
  background: #fff;
  padding: 36px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .4s var(--ease);
}
.dep:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.dep__q {
  font-size: 1.8rem;
  color: var(--primary-400);
  opacity: 0.5;
  margin-bottom: 16px;
}
.dep blockquote {
  color: var(--ink-700);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.dep figcaption {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--ink-100);
}
.dep figcaption img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.dep figcaption strong {
  display: block;
  color: var(--navy-900);
  font-size: 0.95rem;
}
.dep figcaption span {
  font-size: 0.85rem;
  color: var(--ink-500);
}

/* ==========================================================
   CTA BANNER
   ========================================================== */
.cta-banner {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
  color: #fff;
  text-align: center;
}
.cta-banner__bg {
  position: absolute; inset: -15% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
}
.cta-banner__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(4,27,74,.88), rgba(4,88,212,.65));
  z-index: 1;
}
.cta-banner__content {
  position: relative; z-index: 2;
}
.cta-banner h2 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin-bottom: 18px;
}
.cta-banner p {
  font-size: 1.1rem;
  opacity: .9;
  margin-bottom: 36px;
}

/* ==========================================================
   CONTATO
   ========================================================== */
.contato { background: #fff; }
.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contato__info h2 { margin: 10px 0 20px; }
.contato__info > p { color: var(--ink-500); margin-bottom: 40px; }
.contato__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contato__list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contato__list i {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid; place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contato__list strong {
  display: block;
  color: var(--navy-900);
  margin-bottom: 4px;
  font-size: 0.95rem;
}
.contato__list a, .contato__list span {
  color: var(--ink-700);
  font-size: 0.95rem;
  transition: color .3s;
}
.contato__list a:hover { color: var(--primary); }

.contato__form {
  background: var(--bg-soft);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-700);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 12px;
  font: inherit;
  color: var(--ink-900);
  transition: all .3s;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(4,88,212,.15);
}
.contato__form .btn { width: 100%; justify-content: center; margin-top: 4px; }
.form__hint {
  font-size: 0.8rem;
  color: var(--ink-500);
  text-align: center;
  margin-top: 14px;
}
.form__hint i { color: var(--primary); margin-right: 6px; }

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.7);
  padding: 80px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer__brand .nav__logo { color: #fff; }
.footer__brand p {
  margin-top: 18px;
  font-size: 0.9rem;
  max-width: 340px;
}
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: grid; place-items: center;
  color: #fff;
  transition: all .3s var(--ease);
}
.footer__social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}
.footer h4 {
  color: #fff;
  margin-bottom: 20px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.footer a, .footer span {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: color .3s;
}
.footer a:hover { color: var(--primary-300); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  font-size: 0.82rem;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ==========================================================
   WHATSAPP FLOAT
   ========================================================== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.6rem;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,.6);
  z-index: 90;
  animation: pulse 2.4s ease-in-out infinite;
  transition: transform .3s var(--ease);
}
.wa-float:hover { transform: scale(1.1); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 12px 30px -8px rgba(37,211,102,.6), 0 0 0 0 rgba(37,211,102,.5); }
  50% { box-shadow: 0 12px 30px -8px rgba(37,211,102,.6), 0 0 0 14px rgba(37,211,102,0); }
}

/* ==========================================================
   REVEAL ANIMATIONS
   ========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1024px) {
  .section { padding: 90px 0; }
  .planos__grid, .dif__grid, .dep__grid, .proc__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .sobre__grid, .contato__grid { grid-template-columns: 1fr; gap: 60px; }
  .sobre__media { max-width: 100%; margin: 0 auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .proc__grid::before { display: none; }
}

@media (max-width: 720px) {
  .section { padding: 70px 0; }
  .nav__links {
    display: none;
    position: fixed;
    inset: 80px 0 0 0;
    background: #fff;
    flex-direction: column;
    padding: 40px;
    gap: 20px;
    align-items: flex-start;
  }
  .nav__links.open { display: flex; }
  .nav__links a { color: var(--navy-900) !important; font-size: 1.2rem; }
  .nav__burger { display: flex; }
  .nav .btn--primary { display: none; }
  .planos__grid, .dif__grid, .dep__grid, .proc__grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero__meta { gap: 14px; flex-direction: column; }
  .hero__actions .btn { flex: 1; justify-content: center; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .sobre__badge { left: 10px; top: 10px; padding: 10px 14px; gap: 6px; }
  .sobre__badge-num { font-size: 1.35rem; }
  .sobre__badge-txt { font-size: 0.68rem; }
  .sobre__caption { padding: 12px 14px 11px; padding-right: 34%; }
  .sobre__caption-name { font-size: 0.95rem; }
  .sobre__caption-role { font-size: 0.65rem; }
  .parallax-quote__bg { background-attachment: scroll; }
  .contato__form { padding: 28px; }
  .footer__bottom .container { flex-direction: column; text-align: center; }
}
