/* ============================================================
   SAT SEGUROS — Estilos
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-soft: #f5f3fb;
  --bg-card: #ffffff;
  --bg-dark: #001e3a;
  --bg-dark-2: #00132a;
  --primary: #5f3ee8;
  --primary-hover: #4d2ed4;
  --primary-soft: rgba(95, 62, 232, .12);
  --whatsapp: #25d366;
  --whatsapp-hover: #1ebd5a;
  --star: #fbb851;
  --gold: #d4a445;
  --text: #1a1a3d;
  --text-muted: #6b6e8a;
  --text-light: rgba(255,255,255,.78);
  --border: rgba(95, 62, 232, .12);
  --shadow-sm: 0 2px 12px rgba(0, 30, 58, .08);
  --shadow-md: 0 12px 32px rgba(0, 30, 58, .12);
  --shadow-lg: 0 24px 64px rgba(0, 30, 58, .18);
  --shadow-purple: 0 16px 40px rgba(95, 62, 232, .35);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body: 'Poppins', system-ui, sans-serif;

  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============== TIPOGRAFIA ============== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--text);
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 5.6vw, 4.4rem); font-weight: 800; }
h2 { font-size: clamp(2.1rem, 4vw, 3.2rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p { text-wrap: pretty; }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
  padding-bottom: .35rem;
  border-bottom: 2px solid var(--primary);
}
.eyebrow--light { color: #fff; border-color: rgba(255,255,255,.4); }
.text-accent { color: var(--primary); }

/* ============== BOTÕES ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .9rem 1.6rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: all .25s ease;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn--primary { background: var(--primary); color: #fff; }
.btn--primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-purple);
}
.btn--whatsapp { background: var(--whatsapp); color: #fff; }
.btn--whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, .35);
}
.btn--large { padding: 1.05rem 2rem; font-size: .9rem; }
.btn--block { width: 100%; }
.btn .icon-wa { width: 16px; height: 16px; fill: currentColor; }

/* ============== IMAGEM COM GLOW ============== */
.framed-image {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 400px;
}
.framed-image::after {
  content: '';
  position: absolute;
  left: 8%; right: 8%;
  bottom: -18px;
  height: 30px;
  background: var(--primary);
  filter: blur(28px);
  opacity: .55;
  border-radius: 50%;
  z-index: -1;
}
.framed-image img,
.framed-image .image-placeholder {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.image-placeholder {
  background:
    linear-gradient(135deg, rgba(95, 62, 232, .15), rgba(0, 30, 58, .25)),
    repeating-linear-gradient(45deg, #d8d4ee 0 14px, #c8c2e2 14px 28px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .85);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .8rem;
  position: relative;
  overflow: hidden;
}

/* ============== LOGO ============== */
.logo-img {
  height: 100px;
  width: auto;
  display: block;
}
.logo-img--footer { height: 90px; }

@media (max-width: 760px) {
  .logo-img { height: 72px; }
}

/* ============== HEADER ============== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  background: transparent;
  transition: transform .35s cubic-bezier(.4,0,.2,1),
              background-color .3s ease,
              padding .3s ease,
              box-shadow .3s ease;
  will-change: transform;
}
.header--scrolled {
  background: rgba(0, 19, 42, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: .7rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
}
.header--hidden {
  transform: translateY(-100%);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.header__logo {
  display: inline-block;
  flex-shrink: 0;
}
.header__logo .logo-img { max-height: 72px; width: auto; transition: max-height .3s; }
.header--scrolled .header__logo .logo-img { max-height: 58px; }

/* ============== NAV DESKTOP ============== */
.header__nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-list > li { position: relative; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .65rem 1rem;
  color: #fff;
  font-size: .92rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background-color .2s, color .2s;
  white-space: nowrap;
}
.nav-link:hover { background: rgba(255, 255, 255, .08); }
.nav-link__caret {
  width: 10px; height: 10px;
  transition: transform .25s ease;
}
.nav-item--dropdown:hover .nav-link__caret,
.nav-item--dropdown.is-open .nav-link__caret {
  transform: rotate(180deg);
}

/* Dropdown Serviços */
.nav-dropdown {
  position: absolute;
  top: calc(100% + .5rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 240px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  z-index: 101;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-bottom-color: #fff;
  border-top: 0;
}
.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: .65rem .9rem;
  color: var(--text);
  font-size: .9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background-color .15s, color .15s;
}
.nav-dropdown a:hover {
  background: var(--primary-soft);
  color: var(--primary);
}
.nav-dropdown a[aria-current="page"] {
  background: var(--primary);
  color: #fff;
}

/* CTA no header */
.header__cta {
  flex-shrink: 0;
  padding: .7rem 1.2rem;
  font-size: .78rem;
}

/* Hamburger (mobile) */
.header__hamburger {
  display: none;
  width: 44px; height: 44px;
  padding: 0;
  border-radius: var(--radius-sm);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  transition: background-color .2s;
}
.header__hamburger:hover { background: rgba(255, 255, 255, .08); }
.header__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s ease, opacity .25s ease;
}
.header__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__hamburger.is-open span:nth-child(2) { opacity: 0; }
.header__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============== MENU MOBILE ============== */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(86vw, 360px);
  height: 100vh;
  height: 100dvh;
  background: var(--bg-dark);
  box-shadow: -8px 0 32px rgba(0,0,0,.3);
  padding: 5.5rem 1.5rem 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  z-index: 99;
  visibility: hidden;
}
.mobile-menu.is-open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
  z-index: 98;
}
.mobile-menu__overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu > ul {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  margin-bottom: 1.5rem;
}
.mobile-menu a,
.mobile-menu__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: .95rem 1rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background-color .2s;
  text-align: left;
}
.mobile-menu a:hover,
.mobile-menu__toggle:hover { background: rgba(255, 255, 255, .08); }
.mobile-menu a[aria-current="page"] {
  background: var(--primary);
  color: #fff;
}
.mobile-submenu {
  display: none;
  flex-direction: column;
  padding-left: 1rem;
  border-left: 2px solid rgba(255,255,255,.15);
  margin: .25rem 0 .5rem .75rem;
}
.mobile-submenu.is-open { display: flex; }
.mobile-submenu a {
  font-size: .92rem;
  padding: .65rem 1rem;
  color: var(--text-light);
}
.mobile-menu__toggle .nav-link__caret { transition: transform .25s ease; }
.mobile-menu__toggle.is-open .nav-link__caret { transform: rotate(180deg); }
.mobile-menu__cta {
  width: 100%;
  margin-top: 1rem;
}

@media (max-width: 980px) {
  .header__nav { display: none; }
  .header__cta { display: none; }
  .header__hamburger { display: inline-flex; }
}

/* ============== HERO ============== */
.hero {
  position: relative;
  background-color: var(--bg-dark);
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  min-height: 100vh;
  padding: 11rem 0 7rem;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero__title {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
}
.hero__title-line {
  display: block;
  white-space: nowrap;
}
.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  margin-bottom: 2.25rem;
  max-width: 520px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

@media (max-width: 880px) {
  .hero {
    padding: 9rem 0 14rem;
    min-height: 90vh;
    background-position: center bottom;
  }
  .hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark) 30%, rgba(0,30,58,.6) 60%, transparent 100%);
    z-index: 1;
  }
}

/* ============== SEÇÕES ============== */
.section { padding: 5.5rem 0; position: relative; }
.section__header { max-width: 720px; margin-bottom: 3.5rem; }
.section__header--center { margin: 0 auto 3.5rem; text-align: center; }
.section__title { margin-bottom: 1rem; }
.section__lead { font-size: 1rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.section__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.section__grid--reverse { grid-template-columns: 1.1fr 1fr; }
.section__content > * + * { margin-top: 1rem; }
.section__content .btn { margin-top: 1.75rem; }
.section__visual { display: flex; justify-content: center; }

@media (max-width: 880px) {
  .section { padding: 4rem 0; }
  .section__grid, .section__grid--reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .section__grid--reverse .section__visual { order: -1; }
}

/* ============== SERVIÇOS ============== */
.section--servicos { background: var(--bg-soft); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1080px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px)  { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--bg-card);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card__icon {
  width: 56px;
  height: 56px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-card__icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.service-card p {
  color: var(--text-muted);
  font-size: .92rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
  line-height: 1.55;
}
.service-card__link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .8rem;
  color: var(--primary);
  text-align: left;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.service-card__link:hover { color: var(--primary-hover); }
.service-card__link--current {
  color: var(--whatsapp);
  cursor: default;
  pointer-events: none;
}

/* ============== PARCEIROS — CARROSSEL INFINITO ============== */
.section--parceiros {
  background: var(--bg);
  padding: 5rem 0 5.5rem;
}
.section--parceiros .section__header { margin-bottom: 3rem; }

.partners {
  overflow: hidden;
  padding: 1rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.partners__track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  align-items: center;
  animation: scroll-x 40s linear infinite;
}
.partners:hover .partners__track { animation-play-state: paused; }

.partners__item {
  flex-shrink: 0;
  width: 180px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners__item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform .3s ease;
}
.partners__item:hover img {
  transform: scale(1.05);
}

@media (max-width: 760px) {
  .partners__track { gap: 2rem; }
  .partners__item { width: 130px; height: 70px; }
}

@media (prefers-reduced-motion: reduce) {
  .partners__track { animation: none; }
  .partners {
    overflow-x: auto;
    -webkit-mask-image: none;
            mask-image: none;
  }
}

/* ============== POR QUE ============== */
.section--porque { background: var(--bg-soft); }
.benefits {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.benefits li { display: flex; gap: 1rem; align-items: flex-start; }
.benefits__icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
}
.benefits h4 { margin-bottom: .25rem; font-size: 1rem; }
.benefits p { color: var(--text-muted); font-size: .9rem; line-height: 1.55; }

/* ============== DEPOIMENTOS — LOOP INFINITO ============== */
.section--depoimentos { background: var(--bg-soft); }
.reviews-summary {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: .9rem;
}
.reviews-summary__stars { color: var(--star); font-size: 1.15rem; letter-spacing: .08em; }
.reviews-summary strong { color: var(--text); }

.testimonials {
  overflow: hidden;
  padding: 1rem 0 2rem;
  margin: 0 -1.5rem;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.testimonials__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: scroll-x 50s linear infinite;
}
.testimonials:hover .testimonials__track { animation-play-state: paused; }

@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .testimonials__track { animation: none; }
  .testimonials {
    overflow-x: auto;
    -webkit-mask-image: none;
            mask-image: none;
  }
}

.testimonial {
  flex: 0 0 340px;
  background: #fff;
  padding: 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
.testimonial__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonial__stars-wrap { display: flex; align-items: center; gap: .35rem; }
.testimonial__stars { color: var(--star); letter-spacing: .05em; font-size: 1rem; }
.testimonial__google { width: 22px; height: 22px; }
.testimonial__text {
  font-size: .92rem;
  line-height: 1.6;
  color: var(--text);
  flex-grow: 1;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
}
.testimonial__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #8a6df0);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  flex-shrink: 0;
}
.testimonial__author strong { display: block; color: var(--text); font-size: .9rem; font-weight: 600; }
.testimonial__author span { color: var(--text-muted); font-size: .78rem; }

/* ============== CTA FINAL — FULL WIDTH ============== */
.cta-final {
  background: var(--bg-dark);
  color: #fff;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: -30%; left: 50%;
  transform: translateX(-50%);
  width: 80%;
  aspect-ratio: 2/1;
  background: radial-gradient(ellipse, var(--primary), transparent 65%);
  opacity: .25;
  filter: blur(60px);
  pointer-events: none;
}
.cta-final__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-final h2 {
  color: #fff;
  margin-bottom: 1rem;
  max-width: 720px;
}
.cta-final p {
  color: var(--text-light);
  max-width: 560px;
  margin-bottom: 2.25rem;
  font-size: 1.05rem;
}

@media (max-width: 760px) {
  .cta-final { padding: 4.5rem 0; }
}

/* ============== FOOTER ============== */
.footer {
  background: var(--bg-dark-2);
  color: var(--text-light);
  padding: 4rem 0 2rem;
}
.footer h4 { color: #fff; margin-bottom: .75rem; font-size: 1rem; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  align-items: start;
}
.footer__col a { display: inline-block; transition: color .2s; }
.footer__col a:hover { color: var(--primary); }

/* Coluna da logo: centraliza horizontalmente e cresce a logo */
.footer__col:first-child {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__col:first-child .logo-img--footer {
  height: 160px;
}
@media (max-width: 760px) {
  .footer__col:first-child .logo-img--footer { height: 120px; }
}
.footer__phone {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff !important;
}
.footer__social { display: flex; gap: .85rem; margin-top: .25rem; }
.footer__social a {
  width: 56px; height: 56px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
  color: #fff;
}
.footer__social a:hover {
  background: var(--primary);
  color: #fff !important;
  transform: translateY(-3px);
}
.footer__social svg { width: 26px; height: 26px; }

.footer__bottom {
  padding-top: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .35rem;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
}
.footer__bottom p { line-height: 1.55; }
.footer__bottom-link {
  color: var(--gold);
  font-weight: 600;
  transition: color .2s;
}
.footer__bottom-link:hover { color: #fff; }

@media (max-width: 760px) {
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============== MODAL ============== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal.is-open { display: flex; }
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 30, 58, .75);
  backdrop-filter: blur(4px);
  animation: fadeIn .25s ease;
}
.modal__content {
  position: relative;
  background: var(--bg-card);
  width: 100%;
  max-width: 520px;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-height: 92vh;
  overflow-y: auto;
  animation: slideUp .35s cubic-bezier(.2, .8, .2, 1);
}
.modal__content h3 { font-size: 1.6rem; margin-bottom: .5rem; }
.modal__content > p { color: var(--text-muted); margin-bottom: 1.75rem; font-size: .92rem; }
.modal__close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-soft);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--text);
  transition: all .2s;
}
.modal__close:hover { background: var(--primary); color: #fff; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============== FORM ============== */
.form { display: flex; flex-direction: column; gap: 1rem; }
.form__group { display: flex; flex-direction: column; gap: .35rem; }
.form__group label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .82rem;
  color: var(--text);
}
.form__group input,
.form__group select {
  padding: .85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  background: #fff;
  color: var(--text);
  transition: border-color .2s;
}
.form__group input:focus,
.form__group select:focus { outline: none; border-color: var(--primary); }
.form__group input.is-invalid,
.form__group select.is-invalid { border-color: #d93939; }
.form__hint {
  font-size: .78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: .5rem;
}
.form__actions { margin-top: .5rem; }

.form__group--consent { margin-top: .25rem; }
.form__consent {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}
.form__consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--primary);
  cursor: pointer;
}
.form__consent a {
  color: var(--primary);
  text-decoration: underline;
}
.form__consent input.is-invalid + span { color: #d93939; }

/* ============== ANIMAÇÕES SCROLL ============== */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   MOBILE — centralização e ajustes finos
   ============================================================ */
@media (max-width: 760px) {
  /* HERO — texto centralizado, botão centralizado */
  .hero {
    text-align: center;
    padding: 9rem 0 6rem;
    min-height: 92vh;
    background-position: center;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    text-align: center;
  }
  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero__title {
    font-size: clamp(2.4rem, 10vw, 3.4rem);
    margin-bottom: 1.5rem;
  }
  .hero__title-line {
    white-space: normal;
  }
  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
    margin-bottom: 2rem;
  }
  .hero__actions { justify-content: center; }
  .hero::before {
    background: linear-gradient(180deg, rgba(0,30,58,.85) 0%, rgba(0,30,58,.6) 60%, rgba(0,30,58,.85) 100%);
  }

  /* HEADER já é gerenciado pelo bloco principal — hamburger em mobile */

  /* SEÇÕES — tudo centralizado em mobile */
  .section { padding: 3.5rem 0; }
  .section__header,
  .section__header--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .section__grid,
  .section__grid--reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .section__grid--reverse .section__visual { order: -1; }
  .section__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .section__content > * + * { margin-top: 1rem; }

  /* Imagem com glow centralizada */
  .framed-image { max-width: 300px; }

  /* TÍTULOS gerais menores em mobile */
  h2 { font-size: clamp(1.7rem, 6vw, 2.1rem); }
  .section__lead { font-size: .98rem; }

  /* SERVIÇOS — 1 coluna, texto centralizado */
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .service-card {
    text-align: center;
    align-items: center;
    padding: 1.75rem 1.25rem;
  }
  .service-card__icon { margin-left: auto; margin-right: auto; }
  .service-card__link { align-self: center; }
  .service-card h3 { font-size: 1.15rem; }
  .service-card p { font-size: .92rem; }

  /* BENEFÍCIOS — alinha à esquerda dentro do bloco centralizado */
  .benefits {
    text-align: left;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  /* CTA FINAL */
  .cta-final { padding: 4rem 0; }
  .cta-final p { font-size: .98rem; margin-bottom: 1.75rem; }

  /* DEPOIMENTOS */
  .testimonial { flex: 0 0 280px; padding: 1.5rem; }
  .testimonial__text { font-size: .88rem; }

  /* PARCEIROS */
  .section--parceiros { padding: 3.5rem 0 4rem; }
  .partners__track { gap: 2rem; }
  .partners__item { width: 130px; height: 70px; }

  /* FOOTER — coluna única centralizada */
  .footer { padding: 3rem 0 1.5rem; }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .footer__col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer__col:first-child { justify-content: center; }
  .footer__col:first-child .logo-img--footer { height: 130px; }
  .footer__social { justify-content: center; }

  /* SUBRODAPÉ — gap menor e fonte menor */
  .footer__bottom { font-size: .8rem; padding-top: 1.5rem; }

  /* MODAL — padding menor */
  .modal { padding: 1rem; }
  .modal__content { padding: 1.75rem 1.5rem; }
  .modal__content h3 { font-size: 1.35rem; }
}

/* Telas muito pequenas (<420px) */
@media (max-width: 420px) {
  .hero__title { font-size: clamp(2rem, 11vw, 2.8rem); }
  .btn { padding: .85rem 1.25rem; font-size: .8rem; }
  .btn--large { padding: 1rem 1.5rem; font-size: .85rem; }
}

/* ============== WHATSAPP FLUTUANTE ============== */
.wa-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
  z-index: 90;
  transition: transform .25s ease, box-shadow .25s ease;
  animation: wa-pulse 2.4s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, .6);
  color: #fff;
}
.wa-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, .5); }
  50%      { box-shadow: 0 8px 24px rgba(37, 211, 102, .45), 0 0 0 14px rgba(37, 211, 102, 0); }
}
@media (max-width: 560px) {
  .wa-float {
    right: 1rem;
    bottom: 1rem;
    width: 54px;
    height: 54px;
  }
  .wa-float svg { width: 28px; height: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float { animation: none; }
}

/* ============== COOKIE CONSENT (LGPD) ============== */
.cookie-banner {
  position: fixed;
  z-index: 2000;
  left: 1.25rem;
  bottom: 1.25rem;
  max-width: 420px;
  background: var(--bg-dark);
  color: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem 1.5rem 1.25rem;
  font-size: .9rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}
.cookie-banner.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.cookie-banner h4 { color: #fff; font-size: 1.05rem; margin-bottom: .5rem; }
.cookie-banner p { color: var(--text-light); margin-bottom: 1rem; }
.cookie-banner a { color: #fff; text-decoration: underline; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .6rem; }
.cookie-banner__actions .btn { flex: 1 1 auto; justify-content: center; padding: .7rem 1rem; font-size: .85rem; }
.cookie-btn-ghost {
  flex: 1 1 auto;
  background: transparent;
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: .7rem 1rem;
  font-weight: 600;
  font-size: .85rem;
  transition: background .2s ease;
}
.cookie-btn-ghost:hover { background: rgba(255,255,255,.12); }
.cookie-prefs { margin: 0 0 1rem; display: none; }
.cookie-prefs.is-open { display: block; }
.cookie-prefs label { display: flex; align-items: flex-start; gap: .6rem; margin-bottom: .6rem; color: var(--text-light); cursor: pointer; }
.cookie-prefs label.is-locked { opacity: .65; cursor: not-allowed; }
.cookie-prefs input { margin-top: .3rem; flex-shrink: 0; }
.cookie-prefs strong { color: #fff; }
.cookie-reopen {
  position: fixed;
  z-index: 1500;
  left: 1.25rem;
  bottom: 1.25rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg-dark);
  color: #fff;
  box-shadow: var(--shadow-md);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  line-height: 1;
}
.cookie-reopen.is-visible { display: flex; }
.cookie-reopen:hover { transform: scale(1.06); }
@media (max-width: 760px) {
  .cookie-banner { left: 1rem; right: 1rem; bottom: 1rem; max-width: none; }
  .cookie-reopen { left: 1rem; bottom: 1rem; }
}

/* ============== BLOG ============== */
.blog-hero {
  background: linear-gradient(160deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
  color: #fff;
  padding: 9rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute;
  top: -30%; left: 50%;
  transform: translateX(-50%);
  width: 70%;
  aspect-ratio: 2/1;
  background: radial-gradient(ellipse, var(--primary), transparent 65%);
  opacity: .25;
  filter: blur(60px);
  pointer-events: none;
}
.blog-hero h1 { color: #fff; max-width: 760px; margin: .5rem auto 1rem; position: relative; }
.blog-hero p { color: var(--text-light); max-width: 600px; margin: 0 auto; position: relative; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card__link { display: flex; flex-direction: column; gap: .6rem; padding: 1.75rem; height: 100%; }
.blog-card__cat {
  align-self: flex-start;
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  color: var(--primary); background: var(--primary-soft);
  padding: .3rem .7rem; border-radius: 999px;
}
.blog-card__title { font-size: 1.2rem; line-height: 1.35; color: var(--text); }
.blog-card__desc { font-size: .92rem; color: var(--text-muted); flex: 1; }
.blog-card__meta { font-size: .8rem; color: var(--text-muted); }
.blog-card__more { font-weight: 600; color: var(--primary); font-size: .9rem; }

/* Post */
.post-wrap { padding: 7rem 0 4rem; background: var(--bg); }
.post { max-width: 760px; }
.breadcrumb { font-size: .82rem; color: var(--text-muted); margin-bottom: 1.5rem; display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span[aria-current] { color: var(--text); font-weight: 600; }
.post__header { margin-bottom: 2.5rem; }
.post__title { font-size: clamp(1.9rem, 5vw, 2.7rem); line-height: 1.2; margin: .75rem 0; }
.post__meta { font-size: .88rem; color: var(--text-muted); }
.post__body { font-size: 1.05rem; line-height: 1.8; color: #2a2a4a; }
.post__body h2 { font-size: 1.6rem; margin: 2.5rem 0 1rem; color: var(--text); }
.post__body h3 { font-size: 1.25rem; margin: 1.75rem 0 .75rem; color: var(--text); }
.post__body h4 { font-size: 1.05rem; margin: 1.25rem 0 .5rem; color: var(--text); }
.post__body p { margin-bottom: 1.25rem; }
.post__body ul, .post__body ol { margin: 0 0 1.25rem 1.5rem; }
.post__body li { margin-bottom: .5rem; }
.post__body ul { list-style: disc; }
.post__body ol { list-style: decimal; }
.post__body a { color: var(--primary); text-decoration: underline; }
.post__body strong { color: var(--text); }
.post__body code { background: var(--bg-soft); padding: .1rem .4rem; border-radius: 6px; font-size: .92em; }
.post__body blockquote {
  margin: 1.75rem 0; padding: 1.1rem 1.5rem;
  background: var(--bg-soft); border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm); color: var(--text); font-style: italic;
}
.post__body hr { border: none; border-top: 1px solid var(--border); margin: 2.5rem 0; }

/* FAQ */
.post-faq { margin-top: 3rem; }
.post-faq h2 { font-size: 1.6rem; margin-bottom: 1.25rem; }
.post-faq__item {
  border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 1rem 1.25rem; margin-bottom: .75rem; background: var(--bg-card);
}
.post-faq__item summary { font-weight: 600; cursor: pointer; color: var(--text); list-style: none; position: relative; padding-right: 1.5rem; }
.post-faq__item summary::-webkit-details-marker { display: none; }
.post-faq__item summary::after { content: '+'; position: absolute; right: 0; top: -.1rem; font-size: 1.3rem; color: var(--primary); transition: transform .2s; }
.post-faq__item[open] summary::after { transform: rotate(45deg); }
.post-faq__item p { margin-top: .75rem; color: var(--text-muted); font-size: .95rem; line-height: 1.7; }

/* CTA do post */
.post__cta {
  margin-top: 3.5rem; padding: 2.5rem; text-align: center;
  background: linear-gradient(160deg, var(--bg-dark), var(--bg-dark-2));
  border-radius: var(--radius-lg); color: #fff;
}
.post__cta h3 { color: #fff; font-size: 1.5rem; margin-bottom: .5rem; }
.post__cta p { color: var(--text-light); margin-bottom: 1.5rem; max-width: 480px; margin-left: auto; margin-right: auto; }

@media (max-width: 760px) {
  .post-wrap { padding: 6rem 0 3rem; }
  .post__cta { padding: 2rem 1.5rem; }
}

/* Aviso de consentimento (sem checkbox) */
.form__consent-note {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: -.25rem 0 .25rem;
}
.form__consent-note a { color: var(--primary); text-decoration: underline; }
