:root {
  --color-primary: #0056B3;
  --color-secondary: #1A2B49;
  --color-bg-main: #F8F9FA;
  --color-bg-alt: #E9ECEF;
  --color-text: #495057;
  --header-height: 64px;
  --logo-img: url("references/logo_revisa.webp");
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  font-family: 'Albert Sans', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-bg-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--color-secondary);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 { font-weight: 700; font-size: clamp(2rem, 6vw, 3.4rem); }
h2 { font-weight: 700; font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-weight: 600; font-size: 1.15rem; }

p { margin: 0 0 1rem; }

a { color: var(--color-primary); text-decoration: none; }

img, svg { max-width: 100%; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

section { padding: 3.5rem 0; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.section-head p { font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  min-width: 44px;
  padding: 0.75rem 1.5rem;
  font-family: 'Albert Sans', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 86, 179, .28);
}
.btn-primary:hover { background: #00478f; }

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .6);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .12); }

.btn-light {
  background: #fff;
  color: var(--color-primary);
}
.btn-light:hover { background: #eef4fb; }

/* ---------- Header ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
/* Estado "rolado": ganha fundo sólido para legibilidade sobre seções claras */
header.scrolled {
  background: rgba(248, 249, 250, .95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-bg-alt);
}
/* Sobre o vídeo (header transparente): tudo em branco */
.logo-img { transition: filter .3s ease; }
header:not(.scrolled) .logo-img { filter: brightness(0) invert(1); }
header:not(.scrolled) .nav-links a { color: #fff; }
header:not(.scrolled) .nav-links a:hover,
header:not(.scrolled) .nav-links a.active { color: #fff; border-bottom-color: #fff; }
header:not(.scrolled) .hamburger span { background: #fff; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}
.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.logo-img {
  display: block;
  height: 34px;
  aspect-ratio: 409 / 204;
  background-image: var(--logo-img);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}

.nav-links {
  list-style: none;
  display: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-links a {
  color: var(--color-secondary);
  font-weight: 500;
  font-size: .95rem;
  padding: .25rem 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active { border-bottom-color: var(--color-primary); color: var(--color-primary); }

.nav-cta { display: none; }

.hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0 auto;
  background: var(--color-secondary);
  transition: transform .25s ease, opacity .2s ease;
}
/* Sombra sutil só no estado transparente: barras brancas legíveis sobre banner claro */
header:not(.scrolled) .hamburger span { box-shadow: 0 0 3px rgba(0, 0, 0, .45); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: .25rem;
  padding: .5rem 1.25rem 1.25rem;
  background: var(--color-bg-main);
  border-bottom: 1px solid var(--color-bg-alt);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--color-secondary);
  font-weight: 500;
  padding: .75rem .25rem;
  min-height: 44px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color-bg-alt);
}
.mobile-menu .btn { margin-top: .75rem; }

/* ---------- Hero / Carrossel ---------- */
#hero {
  position: relative;
  color: #fff;
  /* Fallback enquanto as imagens carregam */
  background: linear-gradient(135deg, var(--color-secondary) 0%, #0056B3 100%);
  overflow: hidden;
  min-height: 100svh;
}
.hero-slides { position: absolute; inset: 0; }
/* Cada slide ocupa o banner inteiro; troca por fade */
.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 2rem) 0 5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .9s ease;
}
.slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
/* Imagem de fundo do slide (cobre sem distorcer) + leve zoom Ken Burns */
.slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.07);
  transition: transform 8.5s ease-out;
}
.slide.is-active .slide-bg { transform: scale(1); }

/* === Imagens de fundo responsivas por slide ===
   Mobile-first: base = Celular (<768px).
   Notebook (>=768px) e Desktop (>=1440px) sobrescrevem via media query.
   O overlay é o mesmo em todas as resoluções (legibilidade preservada). */
.slide-bg--principal   { background-image: url('references/banner-principal-celular.webp'); }
.slide-bg--vida        { background-image: url('references/banner-vida-celular.webp'); }
.slide-bg--empresarial { background-image: url('references/banner-empresarial-celular.webp'); }
.slide-bg--saude       { background-image: url('references/banner-saude-celular.webp'); }

/* Notebook (tablets e laptops comuns, ~1366px) */
@media (min-width: 768px) {
  .slide-bg--principal   { background-image: url('references/banner-principal-notebook.webp'); }
  .slide-bg--vida        { background-image: url('references/banner-vida-notebook.webp'); }
  .slide-bg--empresarial { background-image: url('references/banner-empresarial-notebook.webp'); }
  .slide-bg--saude       { background-image: url('references/banner-saude-notebook.webp'); }
}

/* Desktop (telas grandes, >=1440px) — mantém as imagens originais */
@media (min-width: 1440px) {
  .slide-bg--principal   { background-image: url('references/banner-principal.webp'); }
  .slide-bg--vida        { background-image: url('references/banner-vida.webp'); }
  .slide-bg--empresarial { background-image: url('references/banner-empresarial.webp'); }
  .slide-bg--saude       { background-image: url('references/banner-saude.webp'); }
}

/* Overlay escuro/azulado IDÊNTICO em todos os slides */
.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(13, 22, 42, .9) 0%, rgba(13, 22, 42, .62) 50%, rgba(13, 22, 42, .42) 100%),
    linear-gradient(0deg, rgba(13, 22, 42, .55) 0%, rgba(13, 22, 42, .1) 60%);
}
/* Padding lateral extra para o texto não colidir com as setas */
#hero .container { width: 100%; position: relative; z-index: 2; padding-left: 4.25rem; padding-right: 4.25rem; }
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  text-align: left;
}
/* Título: mesmo estilo no <h1> (slide 1) e nos <p> (slides 2-4) */
.hero-title {
  margin: 0;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  color: #fff;
  font-size: clamp(1.85rem, 5vw, 3.5rem);
  line-height: 1.1;
}
.hero-sub {
  color: rgba(255, 255, 255, .82);
  font-family: 'Albert Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  margin: 1.25rem 0 0;
  max-width: 46ch;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 2rem;
  margin-top: 2rem;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  min-height: 44px;
  padding: .85rem 1.75rem;
  color: #fff;
  font-weight: 500;
  font-size: .8rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 2px;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.btn-hero span { transition: transform .25s ease; }
.btn-hero:hover { background: #fff; color: var(--color-secondary); border-color: #fff; }
.btn-hero:hover span { transform: translateX(4px); }
.link-hero {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(255, 255, 255, .82);
  font-weight: 500;
  font-size: .8rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.link-hero:hover { color: #fff; border-bottom-color: rgba(255, 255, 255, .6); }

/* No mobile: mantém o texto centralizado, mas com fonte/paddings menores
   para caber sem cortar a 1ª linha sob o header */
@media (max-width: 600px) {
  .slide {
    padding: calc(var(--header-height) + 1rem) 0 4rem;
  }
  .hero-title { font-size: 1.8rem; line-height: 1.14; }
  .hero-sub { font-size: .96rem; margin-top: .9rem; line-height: 1.5; }
  .hero-actions { margin-top: 1.5rem; }
}

/* ---------- Carrossel: setas + dots ---------- */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.carousel-arrow:hover { background: rgba(255, 255, 255, .22); border-color: #fff; }
.carousel-arrow.prev { left: 1rem; }
.carousel-arrow.next { right: 1rem; }
.carousel-arrow svg { width: 22px; height: 22px; }

.carousel-dots {
  position: absolute;
  bottom: .75rem;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: .25rem;
}
/* Botão = alvo de toque 44px; ponto visível discreto via ::before */
.carousel-dots button {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.carousel-dots button::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .8);
  background: transparent;
  transition: background .2s ease, transform .2s ease;
}
.carousel-dots button.is-active::before { background: #fff; transform: scale(1.25); }

@media (prefers-reduced-motion: reduce) {
  .slide { transition: none; }
  .slide-bg { transition: none; transform: none; }
}

/* ---------- Services ---------- */
#servicos { background: var(--color-bg-alt); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  border: 1px solid #dfe3e8;
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(26, 43, 73, .12);
  border-color: var(--color-primary);
}
.service-card .icon {
  color: var(--color-primary);
  width: 40px;
  height: 40px;
  margin-bottom: .85rem;
}
.service-card h3 { margin-bottom: .35rem; }
.service-card p { font-size: .92rem; margin: 0; }

/* ---------- Esteira de seguradoras ---------- */
.insurers {
  margin-top: 2.5rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.insurers-track {
  display: flex;
  width: max-content;
  animation: insurers-scroll 26s linear infinite;
}
.insurers:hover .insurers-track { animation-play-state: paused; }
.insurer {
  flex: 0 0 auto;
  width: 200px;
  height: 104px;
  margin-right: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
  background: #fff;
  border: 1px solid #dfe3e8;
  border-radius: 12px;
  color: var(--color-secondary);
  font-weight: 500;
  font-size: .95rem;
}
.insurer img {
  max-height: 56px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}
/* Balanceamento óptico por logo */
.insurer img[src*="omint"] { max-height: 80px; }
.insurer img[src*="pottencial"] { max-height: 80px; }
.insurer img[src*="fator"] { transform: translateY(-4px); }
@keyframes insurers-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .insurers { -webkit-mask-image: none; mask-image: none; }
  .insurers-track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
  .insurer[aria-hidden="true"] { display: none; }
}

/* ---------- Diferenciais ---------- */
#diferenciais { background: var(--color-bg-main); }

/* Layout: visual (foto+painel) + conteúdo (título+lista). Mobile = empilhado. */
.diff-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

/* Coluna visual */
.diff-visual { margin: 0; }
.diff-panel {
  position: relative;
  max-width: 360px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  border-radius: 0px;
  overflow: visible;                /* deixa o badge estourar a borda */
  background: var(--color-bg-alt); /* cinza bem claro */
  box-shadow: 0 20px 45px -20px rgba(26, 43, 73, .28);
}
.diff-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;             /* foto inteira dentro do quadrado, sem cortar */
  object-position: bottom center;  /* apoiada na base */
  filter: drop-shadow(0 12px 18px rgba(10, 31, 61, .25));
}
.diff-badge {
  position: absolute;
  left: -.75rem;
  bottom: 1.25rem;
  z-index: 2;
  background: #fff;
  border-radius: 3px;
  padding: .65rem 1.1rem;
  box-shadow: 0 12px 28px rgba(26, 43, 73, .18);
  border-left: 4px solid var(--color-primary);
}
.diff-badge strong {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  color: var(--color-secondary);
  font-size: 1.05rem;
  line-height: 1.1;
}
.diff-badge span {
  font-size: .8rem;
  color: var(--color-primary);
  font-weight: 500;
}

/* Coluna de conteúdo */
.diff-content h2 { margin-bottom: 1.75rem; }
.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.diff-block {
  display: flex;
  gap: 1rem;
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--color-bg-alt);
}
.diff-block .icon {
  flex: 0 0 auto;
  color: var(--color-primary);
  width: 44px;
  height: 44px;
}
.diff-block h3 { margin-bottom: .35rem; }
.diff-block p { margin: 0; font-size: .95rem; }

/* ---------- Prova social ---------- */
#prova-social { background: var(--color-bg-alt); }
#prova-social .container { position: relative; }
/* Link "Mais avaliações" — base mobile: centralizado abaixo do título */
.reviews-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  min-height: 44px;
  margin: -.5rem 0 1.25rem;
  color: var(--color-primary);
  font-weight: 500;
  font-size: .92rem;
}
.reviews-link span { transition: transform .2s ease; }
.reviews-link:hover { text-decoration: underline; }
.reviews-link:hover span { transform: translateX(3px); }
/* Desktop: canto superior direito */
@media (min-width: 768px) {
  .reviews-link {
    position: absolute;
    top: 0;
    right: 1.25rem;
    margin: 0;
  }
}
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.testimonial {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem;
  border: 1px solid #dfe3e8;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.stars { display: flex; gap: 2px; color: #f5a623; }
.stars svg { width: 20px; height: 20px; }
.testimonial blockquote {
  margin: 0;
  font-size: 1.02rem;
  color: var(--color-text);
  font-style: italic;
}
.testimonial figcaption { margin-top: auto; }
.testimonial .name {
  font-weight: 500;
  color: var(--color-secondary);
  font-family: 'Albert Sans', sans-serif;
}
.testimonial .role { font-size: .88rem; color: var(--color-primary); }

/* ---------- Contato ---------- */
#contato { background: var(--color-primary); color: #fff; }
#contato h2 { color: #fff; }
#contato .section-head p { color: rgba(255, 255, 255, .92); }
.form-wrap {
  max-width: 540px;
  margin: 0 auto;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 14px;
  padding: 1.75rem;
}
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-weight: 500;
  font-size: .92rem;
  margin-bottom: .4rem;
  color: #fff;
}
.field input,
.field select {
  width: 100%;
  min-height: 48px;
  padding: .7rem .9rem;
  font-family: 'Albert Sans', sans-serif;
  font-size: 1rem;
  color: var(--color-secondary);
  background: #fff;
  border: 2px solid transparent;
  border-radius: 8px;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .35);
}
.field input:invalid:not(:placeholder-shown) { border-color: #ffb3b3; }

/* ---------- Seletor de país (DDI) ---------- */
.tel-row { display: flex; gap: .5rem; align-items: stretch; }
.tel-row > input { flex: 1 1 auto; min-width: 0; }
.ccode { position: relative; flex: 0 0 auto; }
.ccode-btn {
  display: flex;
  align-items: center;
  gap: .4rem;
  height: 100%;
  min-height: 48px;
  padding: 0 .7rem;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 8px;
  font-family: 'Albert Sans', sans-serif;
  font-size: 1rem;
  color: var(--color-secondary);
  cursor: pointer;
  white-space: nowrap;
}
.ccode-btn:focus-visible {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .35);
}
.ccode-flag, .ccode-list img {
  width: 24px;
  height: 18px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  flex: 0 0 auto;
}
.ccode-ddi { font-weight: 500; }
.ccode-caret { width: 10px; height: 6px; color: #6b7280; flex: 0 0 auto; transition: transform .2s ease; }
.ccode-btn[aria-expanded="true"] .ccode-caret { transform: rotate(180deg); }

.ccode-list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 30;
  min-width: 240px;
  max-height: 280px;
  overflow-y: auto;
  margin: 0;
  padding: .35rem;
  list-style: none;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}
.ccode-list[hidden] { display: none; }
.ccode-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem .6rem;
  border-radius: 6px;
  color: var(--color-secondary);
  cursor: pointer;
}
.ccode-list li .opt-name { flex: 1 1 auto; font-size: .95rem; }
.ccode-list li .opt-ddi { color: #6b7280; font-size: .9rem; }
.ccode-list li:hover,
.ccode-list li.is-active { background: #eef4fb; }
.ccode-list li[aria-selected="true"] { font-weight: 600; }

/* Campo auxiliar oculto */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error {
  color: #ffd5d5;
  font-size: .82rem;
  margin: .3rem 0 0;
  min-height: 1em;
}
.form-wrap .btn { width: 100%; margin-top: .5rem; }
.form-note {
  text-align: center;
  font-size: .9rem;
  color: rgba(255, 255, 255, .9);
  margin: 1rem 0 0;
}
.form-note a { color: #fff; font-weight: 500; text-decoration: underline; }

/* ---------- Footer ---------- */
footer {
  background: var(--color-secondary);
  color: #fff;
  padding: 2.5rem 0 1.75rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}
.footer-logo { height: 40px; }
footer .tagline { color: rgba(255, 255, 255, .7); font-size: .92rem; margin-top: .75rem; }
.footer-info p { margin: 0 0 .5rem; color: rgba(255, 255, 255, .85); font-size: .95rem; }
.footer-info a { color: #9cc7f5; }
.footer-info strong { color: #fff; font-weight: 500; }
.copyright {
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding-top: 1.25rem;
  font-size: .85rem;
  color: rgba(255, 255, 255, .65);
  text-align: center;
}

/* ---------- Desktop ---------- */
@media (min-width: 768px) {
  section { padding: 4.5rem 0; }
  .testimonials { grid-template-columns: repeat(3, 1fr); }
  .hero-content { max-width: 55%; }
  .footer-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}

/* Diferenciais: 2 colunas (foto + conteúdo) a partir de 900px */
@media (min-width: 900px) {
  .diff-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3.5rem;
  }
  .diff-panel { margin-top: 0; max-width: 400px; }
}

@media (min-width: 1280px) {
  /* Em telas largas há gutter natural; reduz o padding extra do hero */
  #hero .container { padding-left: 1.25rem; padding-right: 1.25rem; }
}

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .hamburger { display: none; }
  .mobile-menu { display: none !important; }
}
