/* OrçaZap — folha de estilo única (paleta oficial do produto)
   Reaproveita a identidade visual dos orçamentos gerados pelo bot:
   azul marca #1f4fd1, escuro #12307e, âmbar #e0a800. Mobile-first. */

:root {
  --marca: #1f4fd1;
  --marca-hover: #1840b0;
  --escuro: #12307e;
  --texto: #1a2233;
  --texto-suave: #5a6478;
  --borda: #dde3ee;
  --fundo: #f4f6fb;
  --bloco: #eef1f7;
  --branco: #ffffff;
  --ambar: #e0a800;
  --ambar-fundo: #fff4d6;
  --ambar-texto: #6b5200;
  --whatsapp: #0f7a42; /* verde escuro p/ contraste AA com texto branco (5.41:1) */
  --whatsapp-hover: #0d6b38;
  --whatsapp-claro: #25d366; /* só p/ detalhes não-texto (ícone), nunca fundo de botão c/ texto */
  --verde-ok: #0d6b38;
  --max: 1100px;
  --raio: 12px;
  --sombra: 0 4px 16px rgba(18, 48, 126, 0.1);
  --sombra-forte: 0 10px 30px rgba(18, 48, 126, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Segoe UI", "DejaVu Sans", Roboto, Arial, sans-serif;
  color: var(--texto);
  background: var(--fundo);
  line-height: 1.6;
  font-size: 17px;
}

h1,
h2,
h3 {
  color: var(--escuro);
  line-height: 1.25;
  margin: 0 0 0.5em;
  font-weight: 700;
}
h1 {
  font-size: clamp(1.7rem, 5vw, 2.6rem);
}
h2 {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
}
h3 {
  font-size: 1.2rem;
}
p {
  margin: 0 0 1em;
}
a {
  color: var(--marca);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  display: block;
}

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

/* ---------- Header fixo ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--borda);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}
.logo {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--escuro);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo:hover {
  text-decoration: none;
}
.logo .zap-ic {
  color: var(--whatsapp);
}
.nav-links {
  display: none;
  gap: 22px;
}
.nav-links a {
  color: var(--texto-suave);
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-links a:hover {
  color: var(--marca);
  text-decoration: none;
}
.btn-topo {
  background: var(--whatsapp);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 9px 16px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
}
.btn-topo:hover {
  background: var(--whatsapp-hover);
}

/* botão menu mobile */
.menu-toggle {
  background: none;
  border: 1px solid var(--borda);
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--escuro);
  display: block;
  border-radius: 2px;
}

/* ---------- HERO ---------- */
.hero {
  background: linear-gradient(160deg, #f4f6fb 0%, #eaf0fb 100%);
  padding: 48px 0 44px;
  border-bottom: 1px solid var(--borda);
}
.hero h1 {
  margin-bottom: 16px;
}
.hero h1 .destaque {
  color: var(--marca);
}
.hero .sub {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: var(--texto-suave);
  max-width: 640px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
  transition: transform 0.12s;
}
.btn-zap {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: var(--sombra);
}
.btn-zap:hover {
  background: var(--whatsapp-hover);
  color: #fff;
}
.btn-sec {
  background: var(--branco);
  color: var(--marca);
  border: 2px solid var(--marca);
}
.btn-sec:hover {
  background: var(--marca);
  color: #fff;
}
.btn-grande {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.prova-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ambar-fundo);
  color: var(--ambar-texto);
  border: 1px solid var(--ambar);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 18px;
}

/* ---------- seções ---------- */
section {
  padding: 48px 0;
}
section.alt {
  background: var(--branco);
  border-top: 1px solid var(--borda);
  border-bottom: 1px solid var(--borda);
}
.section-titulo {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
}
.section-titulo p {
  color: var(--texto-suave);
}

/* passos (como funciona) */
.passos {
  display: grid;
  gap: 18px;
}
.passo {
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  padding: 24px;
  box-shadow: var(--sombra);
  position: relative;
}
.passo .num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--marca);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 1.1rem;
}
.passo h3 {
  margin-bottom: 6px;
}

/* grade de profissões */
.grade-profs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}
.card-prof {
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  padding: 16px;
  text-align: center;
  font-weight: 600;
  color: var(--escuro);
  transition:
    box-shadow 0.15s,
    transform 0.15s;
  box-shadow: var(--sombra);
}
.card-prof:hover {
  text-decoration: none;
  box-shadow: var(--sombra-forte);
  transform: translateY(-2px);
  color: var(--marca);
}
.card-prof .emoji {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 6px;
}

/* lista de benefícios */
.beneficios {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.beneficios li {
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  padding: 18px 20px;
  display: flex;
  gap: 12px;
  box-shadow: var(--sombra);
}
.beneficios .check {
  color: var(--verde-ok);
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.beneficios strong {
  color: var(--escuro);
}

/* preço / planos */
.planos {
  display: grid;
  gap: 18px;
  max-width: 820px;
  margin: 0 auto;
}
.plano {
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  padding: 28px;
  box-shadow: var(--sombra);
  position: relative;
}
.plano.destaque {
  border: 2px solid var(--marca);
}
.plano.destaque::after {
  content: "Mais escolhido";
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--marca);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}
.plano .preco {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--escuro);
}
.plano .preco small {
  font-size: 1rem;
  font-weight: 600;
  color: var(--texto-suave);
}
.plano ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  display: grid;
  gap: 10px;
}
.plano ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.plano ul li::before {
  content: "✓";
  color: var(--verde-ok);
  font-weight: 800;
}

/* FAQ */
.faq {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 20px;
  font-weight: 700;
  color: var(--escuro);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--marca);
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item .resposta {
  padding: 0 20px 18px;
  color: var(--texto-suave);
}

/* placeholder de prova (verdade: nada inventado) */
.prova-placeholder {
  background: var(--ambar-fundo);
  border: 1px dashed var(--ambar);
  border-radius: var(--raio);
  padding: 28px;
  text-align: center;
  color: var(--ambar-texto);
  max-width: 700px;
  margin: 0 auto;
}

/* ---------- página de profissão ---------- */
.hero-prof {
  background: linear-gradient(160deg, #eaf0fb 0%, #f4f6fb 100%);
  padding: 40px 0;
  border-bottom: 1px solid var(--borda);
}
.breadcrumb {
  font-size: 0.85rem;
  color: var(--texto-suave);
  margin-bottom: 10px;
}
.breadcrumb a {
  color: var(--texto-suave);
}
.dores {
  display: grid;
  gap: 12px;
}
.dor {
  background: var(--branco);
  border-left: 4px solid var(--marca);
  border-radius: 8px;
  padding: 16px 20px;
  box-shadow: var(--sombra);
}
.itens-lista {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}
.itens-lista li {
  background: var(--bloco);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
}
.relacionados {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.relacionados a {
  background: var(--bloco);
  color: var(--escuro);
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid var(--borda);
}
.relacionados a:hover {
  background: var(--marca);
  color: #fff;
  text-decoration: none;
}

/* ---------- CTA flutuante WhatsApp ---------- */
.cta-fixo {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 90;
  background: var(--whatsapp);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}
.cta-fixo:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.6);
  text-decoration: none;
}
.cta-fixo svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
.cta-fixo .pulsinho {
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  background: #ff5252;
  border-radius: 50%;
  border: 2px solid #fff;
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--escuro);
  color: #c8d3ec;
  padding: 40px 0 24px;
  margin-top: 0;
}
.site-footer a {
  color: #fff;
}
.site-footer .grid {
  display: grid;
  gap: 20px;
}
.site-footer h4 {
  color: #fff;
  margin: 0 0 10px;
  font-size: 1rem;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
}
.site-footer .base {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 28px;
  padding-top: 18px;
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: space-between;
}
.btn-fav {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 8px 14px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.85rem;
}
.btn-fav:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ---------- 404 ---------- */
.pag-404 {
  text-align: center;
  padding: 80px 0;
}
.pag-404 .codigo {
  font-size: 5rem;
  font-weight: 800;
  color: var(--marca);
  line-height: 1;
}

/* ---------- responsive ---------- */
@media (min-width: 600px) {
  .passos {
    grid-template-columns: repeat(3, 1fr);
  }
  .planos {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
@media (min-width: 760px) {
  .nav-links {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
  .site-footer .grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}
@media (min-width: 760px) {
  .nav-mobile-open {
    display: none !important;
  }
}
/* menu mobile aberto */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 12px 20px 20px;
  background: #fff;
  border-bottom: 1px solid var(--borda);
}
.nav-mobile a {
  color: var(--texto-suave);
  font-weight: 600;
  padding: 8px 0;
}
@media (max-width: 759px) {
  .nav-mobile.open {
    display: flex;
  }
}

/* titulo de coluna do footer (era h4, virou p para hierarquia semantica correta) */
.site-footer .footer-titulo {
  color: #fff;
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 700;
}

/* ---------- ACESSIBILIDADE ---------- */
/* Navegação por teclado: foco sempre visível (WCAG 2.4.7 / 2.4.11) */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
.btn:focus-visible,
input:focus-visible,
.cta-fixo:focus-visible,
.card-prof:focus-visible {
  outline: 3px solid var(--marca);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Skip link: quem usa teclado pula direto pro conteúdo (WCAG 2.4.1) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--marca);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus {
  left: 0;
}

/* Respeita quem desliga animações (redução de movimento) (WCAG 2.3.3) */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Leitores de tela: esconde o que é só visual */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- SELETOR DE IDIOMA ---------- */
.seletor-idioma {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  border-left: 1px solid var(--borda);
  padding-left: 14px;
  margin-left: 4px;
}
.seletor-idioma a,
.seletor-idioma strong {
  color: var(--texto-suave);
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  padding: 2px 4px;
  border-radius: 4px;
}
.seletor-idioma a:hover {
  color: var(--marca);
  background: var(--bloco);
}
.seletor-idioma strong {
  color: var(--marca);
}
@media (max-width: 759px) {
  .seletor-idioma {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
  }
}

/* ---------- BOTÃO STRIPE ---------- */
.btn-stripe {
  background: #635bff; /* roxo Stripe */
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: var(--sombra);
}
.btn-stripe:hover {
  background: #4f46e5;
  color: #fff;
}
.btn-stripe:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* ---------- BANNER DE CONSENTIMENTO (LGPD) ---------- */
#cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 84px; /* acima do botão flutuante do WhatsApp */
  z-index: 150;
  max-width: 520px;
  margin: 0 auto;
  background: var(--escuro);
  color: #fff;
  border-radius: var(--raio);
  box-shadow: 0 10px 40px rgba(18, 48, 126, 0.35);
  padding: 18px 20px;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}
#cookie-banner.cb-visivel {
  opacity: 1;
  transform: translateY(0);
}
#cookie-banner .cb-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
#cookie-banner .cb-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  flex: 1 1 280px;
}
#cookie-banner .cb-text a {
  color: #9ec0ff;
  text-decoration: underline;
}
#cookie-banner .cb-botoes {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
#cookie-banner .cb-btn {
  border: none;
  border-radius: 50px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
}
#cookie-banner .cb-aceitar {
  background: var(--whatsapp);
  color: #fff;
}
#cookie-banner .cb-aceitar:hover {
  background: var(--whatsapp-hover);
}
#cookie-banner .cb-recusar {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
#cookie-banner .cb-recusar:hover {
  background: rgba(255, 255, 255, 0.12);
}
#cookie-banner:focus-within {
  outline: 3px solid var(--marca);
  outline-offset: 2px;
}
@media (min-width: 760px) {
  #cookie-banner {
    left: auto;
    right: 20px;
    bottom: 90px;
  }
}

/* ============================================================
   PWA / MOBILE AVANÇADO — notch, dynamic island, home indicator
   Requer <meta viewport ... viewport-fit=cover>. Fonte: WebKit
   https://webkit.org/blog/7929/designing-websites-for-iphone-x/
   e MDN env() https://developer.mozilla.org/en-US/docs/Web/CSS/env
   ============================================================ */
/* CTA flutuante e banner de cookie respeitam o indicador de home do iPhone. */
.cta-fixo {
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  right: calc(18px + env(safe-area-inset-right, 0px));
}
#cookie-banner {
  bottom: calc(84px + env(safe-area-inset-bottom, 0px));
}
/* Header fixo desce abaixo do notch/dynamic island em modo standalone. */
.site-header {
  padding-top: env(safe-area-inset-top, 0px);
}
/* Rodapé não deixa conteúdo sob a barra de gestos. */
.site-footer {
  padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
}

/* ============================================================
   DARK MODE (prefers-color-scheme)
   Sobrescreve só as variáveis de cor em :root — o resto herda.
   Verdade: dark mode NÃO é fator direto de SEO (Google 2026), mas
   melhora sinais de UX (tempo na página, rejeição) que ajudam indiretamente.
   Fonte: MDN https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme
   Cores escolhidas p/ manter contraste AA (>= 4.5:1) no texto.
   ============================================================ */
@media (prefers-color-scheme: dark) {
  :root {
    --texto: #e6ebf5;
    --texto-suave: #9aa6c0;
    --borda: #2a3550;
    --fundo: #0c1326;
    --bloco: #15203b;
    --escuro: #c8d3ec;
    --marca: #5b8cff;
    --marca-hover: #7aa0ff;
    --sombra: 0 4px 16px rgba(0, 0, 0, 0.35);
    --sombra-forte: 0 10px 30px rgba(0, 0, 0, 0.5);
  }
  body {
    background: var(--fundo);
    color: var(--texto);
  }
  /* Hero/sections com gradiente claro precisam de override no escuro. */
  .hero {
    background: linear-gradient(160deg, #0c1326 0%, #131e3a 100%);
  }
  .hero-prof {
    background: linear-gradient(160deg, #131e3a 0%, #0c1326 100%);
  }
  /* Header: vidro fosco no escuro. */
  .site-header {
    background: rgba(12, 19, 38, 0.92);
  }
  /* CTA final já é escuro; reforça contraste do texto secundário. */
  .cta-fixo {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.55);
  }
}

/* ============================================================
   TV / 10-FOOT UI — navegação por controle remoto (D-pad)
   Em TVs (Tizen, webOS, Android TV) não há mouse; só D-pad setas.
   O :focus-visible já existe no CSS, mas na TV o foco precisa ser
   MAIS visível (usuário está a 3m da tela). Fonte: Android TV
   https://developer.android.com/design/ui/tv/guides/foundations/navigation-on-tv
   ============================================================ */
@media (min-width: 1600px) and (pointer: coarse) {
  /* Alvo de toque/foco maior e com indicação forte (TV, quiosque). */
  a:focus-visible,
  button:focus-visible,
  summary:focus-visible,
  .btn:focus-visible,
  .cta-fixo:focus-visible,
  .card-prof:focus-visible {
    outline: 4px solid var(--marca);
    outline-offset: 4px;
  }
}

/* ============================================================
   ALTA ACCESSIBILIDADE — Windows High Contrast / forced-colors
   Windows High Contrast Mode substitui TODAS as cores pela paleta do SO.
   forced-color-adjust: keep preserve nosso fundo de botões (senão somem).
   Fonte: Microsoft Edge https://blogs.windows.com/msedgedev/2020/09/17/styling-for-windows-high-contrast-with-new-standards-for-forced-colors/
   e MDN https://developer.mozilla.org/en-US/docs/Web/CSS/@media/forced-colors
   ============================================================ */
@media (forced-colors: active) {
  .btn,
  .btn-zap,
  .btn-sec,
  .btn-stripe,
  .card-prof,
  .plano,
  .faq-item {
    forced-color-adjust: keep;
    /* Garante borda visível na paleta forçada do usuário. */
    border: 1px solid CanvasText;
  }
}

/* Preferência por mais contraste (macOS "Aumentar contraste", Android).
   Fonte: W3C CSS Color Adjust L1 https://www.w3.org/TR/css-color-adjust-1/
   Reforça o outline de foco para usuários que pedem mais contraste. */
@media (prefers-contrast: more) {
  a:focus-visible,
  button:focus-visible,
  .btn:focus-visible {
    outline-width: 4px;
    outline-offset: 3px;
  }
}

/* ============================================================
   FOLDABLES (Galaxy Z Fold) — nada exótico necessário.
   O site já é responsivo (grid auto-fill + clamp). A única melhoria
   real é garantir que o conteúdo não fique esticado demais em tela larga.
   Limitamos a largura útil do conteúdo em telas muito largas.
   Fonte: Samsung https://developer.samsung.com/one-ui/largescreen-and-foldable/designing_for_foldable.html
   ============================================================ */
@media (min-width: 1100px) {
  .container {
    max-width: 1080px;
  }
}
