/* ==========================================================================
   Adriano Assistencia Tecnica. Sistema visual baseado na landing "Minha pagina" do Mercado
   Livre (estrutura, metricas e ritmo), com a paleta azul suave no lugar do
   amarelo da marca ML.
   Metricas de referencia: container 1184px, H1 40/45, H2 32/36, H3 28/31.5,
   corpo 16/20, lead 18/22.5, botao 48px raio 6, card raio 18.
   ========================================================================== */

:root {
  /* azul suave (blocos de marca header, hero, prefooter) */
  --brand-soft: #d9ecfb;
  --brand-soft-2: #eaf5fd;
  --brand-accent: #4ea8f0;

  /* azul de acao */
  --blue-500: #0067d1;
  --blue-600: #0057b8;
  --blue-900: #062653;
  --blue-050: #edf8ff;

  --ink: rgba(0, 0, 0, 0.9);
  --muted: rgba(0, 0, 0, 0.55);
  --line: rgba(0, 0, 0, 0.12);
  --gray-bg: #f5f5f5;

  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.06), 0 6px 16px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 2px 4px rgba(0, 0, 0, 0.06), 0 12px 28px rgba(0, 0, 0, 0.1);
  --shadow-float: 0 8px 24px rgba(6, 38, 83, 0.14);

  --wrap: 1184px;
  --gutter: 20px;
  --section-y: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.25;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, p { margin-top: 0; }

.ml-wrap,
.section-inner,
.nav-inner {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.topbar { display: none; }

/* ---------- header ------------------------------------------------------ */

.ml-header,
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--brand-soft);
}
.ml-header__bar,
.nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 56px;
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 8px var(--gutter);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-900);
  font-size: 1.05rem;
  font-weight: 700;
  white-space: nowrap;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue-500);
  font-size: 0.9rem;
  font-weight: 800;
}
.ml-nav,
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  color: var(--ink);
  font-size: 0.875rem;
}
.ml-nav a:hover,
.nav-links a:hover { color: var(--blue-500); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ml-header .btn,
.site-header .btn {
  min-height: 40px;
  padding: 0 20px;
  font-size: 0.9rem;
}

/* ---------- botoes ------------------------------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background 150ms ease, box-shadow 150ms ease, color 150ms ease;
}
.btn-primary {
  color: #fff;
  background: var(--blue-500);
}
.btn-primary:hover { background: var(--blue-600); }
.btn-light {
  color: var(--blue-500);
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0, 103, 209, 0.25);
}
.btn-light:hover { background: var(--blue-050); }
.btn-secondary {
  color: var(--blue-500);
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(0, 103, 209, 0.35);
}
.btn-secondary:hover { background: rgba(0, 103, 209, 0.06); }
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 6px;
  background: #fff;
  color: var(--blue-500);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

/* ---------- ondas (divisores curvos, como no ML) ------------------------ */

.wave {
  position: absolute;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 62px;
  line-height: 0;
  pointer-events: none;
}
.wave svg { display: block; width: 100%; height: 100%; }
.wave--bottom { bottom: -1px; }
.wave--top { top: -1px; }

/* ---------- hero -------------------------------------------------------- */

.ml-hero {
  position: relative;
  padding: 56px 0 120px;
  background: var(--brand-soft);
}
/* hero com imagem de fundo e conteudo centralizado */
.ml-hero--media {
  padding: 132px 0 156px;
  text-align: center;
  background-color: var(--brand-soft);
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center 38%;
  background-repeat: no-repeat;
}
.ml-hero--media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(217, 236, 251, 0.82) 0%, rgba(217, 236, 251, 0.9) 55%, rgba(233, 245, 253, 0.94) 100%);
}
.ml-hero__center {
  position: relative;
  z-index: 2;
}
.ml-hero__center h1 {
  max-width: 860px;
  margin: 0 auto 16px;
}
.ml-hero__center p {
  max-width: 640px;
  margin: 0 auto 32px;
  color: var(--ink);
  font-size: 18px;
  line-height: 22.5px;
}
.ml-hero__center .pill { margin-bottom: 20px; }

.ml-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 32px;
}
.pill,
.eyebrow,
.section-kicker {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--blue-600);
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.8125rem;
  font-weight: 600;
}
h1 {
  max-width: 547px;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 40px;
  line-height: 45px;
  font-weight: 700;
  letter-spacing: -0.4px;
}
.ml-hero__copy p,
.lead {
  max-width: 547px;
  margin-bottom: 32px;
  color: var(--ink);
  font-size: 18px;
  line-height: 22.5px;
}

/* ---------- secoes ------------------------------------------------------ */

section { padding: var(--section-y) 0; }

/* traco da marca acima do titulo centralizado (padrao ML) */
.dash {
  display: block;
  width: 44px;
  height: 8px;
  margin: 0 auto 24px;
  border-radius: 4px;
  background: var(--brand-accent);
}

.title-only { text-align: center; }
.title-only--wide { padding-bottom: 24px; }

.title-only h2,
.media-cards h2,
.blue-feature h2,
.faq-section h2,
.prefooter h2 {
  max-width: 780px;
  margin: 0 auto 16px;
  color: var(--ink);
  font-size: 32px;
  line-height: 36px;
  font-weight: 700;
  letter-spacing: -0.2px;
}
.title-only p,
.section-subtitle {
  max-width: 660px;
  margin: 0 auto;
  color: var(--ink);
  font-size: 16px;
  line-height: 20px;
}

/* ---------- cards com midia (padrao cards-media do ML) ------------------ */

.media-cards { text-align: center; }
.media-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
  text-align: left;
}
.media-card-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.media-card-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.media-card,
.review-card,
.card {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-card);
}
.media-card { transition: box-shadow 150ms ease, transform 150ms ease; }
.media-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}
.media-card__visual {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  color: var(--blue-500);
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.55), transparent 42%),
    linear-gradient(140deg, var(--brand-soft-2), var(--brand-soft));
}
.media-card__visual svg { width: 84px; height: 84px; }
.media-card__body { padding: 32px; }
.media-card strong,
.review-card strong {
  display: block;
  color: var(--ink);
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
}
.media-card p,
.review-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 20px;
}
.media-card .text-link { margin-top: 16px; }

/* faixa de beneficios, 4 cards */
.benefit-strip { padding-top: 56px; }
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.benefit-grid article {
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-card);
}
.benefit-grid strong,
.benefit-grid span { display: block; }
.benefit-grid strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
}
.benefit-grid span {
  color: var(--muted);
  font-size: 16px;
  line-height: 20px;
}

/* ---------- imagem + texto (padrao image-text do ML) -------------------- */

.image-text__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 80px;
}
.image-text h2,
.image-text h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 28px;
  line-height: 31.5px;
  font-weight: 700;
  letter-spacing: -0.2px;
}
.image-text p {
  max-width: 470px;
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 20px;
}
.text-link,
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--blue-500);
  font-size: 16px;
  font-weight: 600;
}
.text-link::after,
.link-arrow::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}
.text-link:hover { color: var(--blue-600); }

/* espaco de imagem sobre o blob cinza (trocar o arquivo em /assets/img/) */
.media-slot {
  display: grid;
  place-items: center;
  width: 100%;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-card);
}
.media-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-slot--vazio {
  border: 2px dashed rgba(0, 0, 0, 0.16);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: none;
  color: var(--muted);
  text-align: center;
  font-size: 15px;
  line-height: 20px;
}
.media-slot--vazio strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}
.media-slot--vazio small {
  display: block;
  margin-top: 4px;
  font-size: 13px;
}
.image-text .check-list {
  max-width: 470px;
  margin-top: 20px;
}

/* painel ilustrativo sobre "blob" cinza claro, como as imagens do ML */
.image-text__visual {
  position: relative;
  display: grid;
  place-items: center;
  padding: 40px;
}
.image-text__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50% 50% 46% 54% / 55% 45% 55% 45%;
  background: var(--gray-bg);
}
.image-text__visual > * {
  position: relative;
  z-index: 1;
  width: 100%;
}
.proof-card {
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-card);
}
.proof-card strong {
  display: block;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}
.proof-card ul,
.check-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.proof-card li,
.check-list li {
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--blue-050);
  font-size: 15px;
  line-height: 19px;
}
.proof-card { padding: 28px; }

/* ---------- marcas ------------------------------------------------------ */

.brand-section { padding-top: 24px; }
.brand-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.brand-grid a {
  display: block;
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  box-shadow: var(--shadow-card);
  transition: box-shadow 150ms ease, transform 150ms ease;
}
.brand-grid a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}
.brand-grid span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
}

/* ---------- chips (marcas atendidas, cidades) --------------------------- */

.brand-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.brand-list span {
  padding: 14px 22px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  box-shadow: var(--shadow-card);
}

.prefooter__action { margin: 0; }
.prefooter .section-subtitle { margin-bottom: 32px; }

/* ---------- bloco cinza com ondas (padrao "solucoes" do ML) ------------- */

.blue-feature {
  position: relative;
  padding: 104px 0 128px;
  background: var(--gray-bg);
  text-align: center;
}
.blue-feature h2 { color: var(--ink); }
.blue-feature .ml-wrap {
  position: relative;
  z-index: 2;
}
.blue-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
  text-align: left;
}
.blue-card-grid article {
  padding: 28px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-card);
}
.blue-card-grid span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue-500);
  font-size: 1rem;
  font-weight: 700;
}
.blue-card-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
}
.blue-card-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 20px;
}

/* ---------- avaliacoes --------------------------------------------------- */

.reviews { text-align: center; }
.review-card {
  padding: 28px;
  text-align: left;
}
.review-card span {
  display: block;
  margin-bottom: 16px;
  color: #f2b705;
  font-size: 1rem;
  letter-spacing: 0.08em;
}
.review-card strong {
  margin-top: 16px;
  font-size: 16px;
  line-height: 20px;
}

/* ---------- FAQ (acordeao ML) ------------------------------------------- */

.faq-section { text-align: center; }
.faq-list {
  max-width: 984px;
  margin: 32px auto 0;
  border-top: 1px solid var(--line);
  text-align: left;
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 24px 0;
  border: 0;
  background: none;
  color: var(--ink);
  text-align: left;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  cursor: pointer;
}
.faq-question::after {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-right: 6px;
  border-right: 2px solid var(--blue-500);
  border-bottom: 2px solid var(--blue-500);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 300ms ease;
}
.faq-item.is-open .faq-question::after {
  transform: rotate(225deg) translate(-2px, -2px);
}
.faq-answer {
  display: none;
  padding: 0 40px 24px 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 20px;
}
.faq-item.is-open .faq-answer { display: block; }

/* ---------- prefooter (bloco de marca com bump, padrao ML) -------------- */

.prefooter {
  position: relative;
  margin-top: 40px;
  padding: 104px 0 96px;
  background: var(--brand-soft);
  text-align: center;
}
.prefooter__bump {
  position: absolute;
  top: -39px;
  left: 0;
  width: 100%;
  height: 40px;
  line-height: 0;
  pointer-events: none;
}
.prefooter__bump svg {
  display: block;
  width: 100%;
  height: 100%;
}
.back-to-top {
  position: absolute;
  top: -38px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--blue-500);
  transform: translateX(-50%);
  cursor: pointer;
}
.back-to-top::before {
  content: "";
  width: 10px;
  height: 10px;
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg) translate(2px, 2px);
}
.prefooter h2 { margin-bottom: 32px; }

/* ---------- rodape ------------------------------------------------------ */

.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 14px;
  line-height: 18px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 24px;
}
.footer-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 15px;
}
.footer-grid p { margin: 0; }
.footer-grid a { display: block; margin-top: 8px; }
.footer-grid a:hover { color: var(--blue-500); }

/* ---------- paginas internas (mesmo sistema) ---------------------------- */

.page-hero {
  position: relative;
  padding: 56px 0 112px;
  background: var(--brand-soft);
}
.page-hero .section-inner {
  position: relative;
  z-index: 2;
}
.page-hero h1 { max-width: 780px; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-body { background: #fff; }
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.card { padding: 32px; }
.section-title {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
}
.card p {
  color: var(--ink);
  font-size: 16px;
  line-height: 20px;
}
.notice {
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--blue-050);
  color: var(--blue-900);
}

/* ---------- responsivo --------------------------------------------------- */

@media (max-width: 1023px) {
  :root { --section-y: 56px; }
  .ml-hero { padding-bottom: 96px; }
  .ml-hero--media { padding: 96px 0 120px; }
  .ml-hero__grid,
  .image-text__grid { grid-template-columns: 1fr; gap: 40px; }
  .image-text--reverse .image-text__grid > div:first-child { order: 2; }
  .media-card-grid--three,
  .media-card-grid--four,
  .benefit-grid,
  .blue-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  h1 { font-size: 32px; line-height: 36px; }
  .title-only h2,
  .media-cards h2,
  .blue-feature h2,
  .faq-section h2,
  .prefooter h2 { font-size: 26px; line-height: 30px; }
  .image-text h2,
  .image-text h3 { font-size: 24px; line-height: 28px; }
}

/* o menu vira hamburguer antes do tablet, senao os links quebram em duas linhas */
@media (max-width: 920px) {
  .menu-toggle { display: block; }
  .ml-nav,
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 16px;
    background: var(--brand-soft);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  }
  .ml-nav.is-open,
  .nav-links.is-open { display: flex; }
  .ml-nav a,
  .nav-links a { padding: 12px 0; }
  .ml-header > .ml-header__bar > .btn,
  .site-header .header-actions .btn { display: none; }
}

@media (max-width: 767px) {
  .media-card-grid,
  .media-card-grid--three,
  .media-card-grid--four,
  .benefit-grid,
  .blue-card-grid,
  .brand-grid,
  .grid-2,
  .footer-grid { grid-template-columns: 1fr; }
  .image-text__visual { padding: 0; }
  .image-text__visual::before { content: none; }
  .wave { height: 40px; }
  .ml-hero { padding-bottom: 72px; }
  .ml-hero--media { padding: 72px 0 92px; background-position: center; }
  .blue-feature { padding: 80px 0 96px; }
  .btn { width: 100%; }
  .ml-header .btn,
  .site-header .btn { width: auto; }
  .footer-grid { gap: 8px; }
  .footer-grid > div + div { padding-top: 16px; }
  .footer-grid a {
    margin-top: 0;
    padding: 11px 0;
  }
  .footer-grid strong { margin-bottom: 4px; }
  .footer-grid p { margin-bottom: 4px; }
  .text-link,
  .link-arrow {
    min-height: 44px;
    margin-top: 8px;
  }
  .media-card .text-link { min-height: 0; margin-top: 12px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
}

/* ---------- complementos (refs Super Lavadoras / LTECH) ------------------ */

/* botao flutuante do WhatsApp, presente em todas as paginas */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.wa-float:hover { transform: scale(1.06); box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24); }
.wa-float svg { width: 30px; height: 30px; }

.section-note {
  margin: 32px auto 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 22px;
  text-align: center;
}
.section-note a { color: var(--blue-500); font-weight: 600; }
.section-note a:hover { color: var(--blue-600); }

.media-cards--compact .section-subtitle { margin-top: 12px; }
.media-cards--compact .media-card__body { padding: 28px 24px; }
.media-cards--compact .media-card strong { font-size: 20px; line-height: 24px; }

.faq-answer a { color: var(--blue-500); text-decoration: underline; }

.footer-note { margin-top: 12px !important; }

/* codigos de erro */
.codes { padding-top: 24px; }
.codes h2 {
  margin: 0 0 32px;
  color: var(--ink);
  font-size: 28px;
  line-height: 32px;
  font-weight: 700;
  text-align: center;
}
.code-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.code-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-card);
}
.code-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 26px;
  font-weight: 700;
}
.code-card h3 span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.code-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 20px;
}
.code-card .code-card__meaning { color: var(--ink); font-weight: 600; }
.code-card__tag {
  align-self: flex-start;
  margin-top: auto;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 16px;
  font-weight: 600;
  color: var(--blue-900);
  background: var(--blue-050);
}
.code-card p:last-of-type { margin-bottom: 16px; }
.code-card--sozinho .code-card__tag { color: #0b5d2a; background: #e3f6e9; }
.code-card--confira .code-card__tag { color: #7a4b00; background: #fff1d6; }
.code-card--tecnico .code-card__tag { color: var(--blue-900); background: var(--brand-soft); }

@media (max-width: 1023px) {
  .code-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
  .code-grid { grid-template-columns: 1fr; }
  .wa-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}

/* ---------- fotos nas paginas internas e nos cards ---------------------- */

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
  gap: 48px;
}
.page-hero__foto .media-slot { box-shadow: var(--shadow-float); }
.page-hero__foto .media-slot--vazio { background: rgba(255, 255, 255, 0.55); border-color: rgba(0, 103, 209, 0.25); }
.page-hero--media h1 { max-width: none; }

.media-card__visual { position: relative; }
.media-card__visual--foto { background: var(--gray-bg); }
.media-card__visual--foto img { width: 100%; height: 100%; object-fit: cover; }
.media-card__file {
  position: absolute;
  right: 12px;
  bottom: 10px;
  left: 12px;
  color: rgba(6, 38, 83, 0.55);
  font-size: 12px;
  line-height: 14px;
  text-align: center;
}
article.media-card:hover { transform: none; box-shadow: var(--shadow-card); }

@media (max-width: 1023px) {
  .page-hero__grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 28px; }
}

/* ---------- sintomas clicaveis (mesmo card branco do site) ------------- */

.sintomas__dica {
  margin: 20px 0 12px !important;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}
.sintomas {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 560px;
  margin-bottom: 28px;
}
.sintoma {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 76px;
  padding: 14px 14px 14px 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-card);
  color: var(--ink);
  transition: box-shadow 150ms ease, transform 150ms ease;
}
.sintoma:hover,
.sintoma:focus-visible {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
  outline: none;
}
.sintoma:focus-visible { box-shadow: 0 0 0 3px rgba(0, 103, 209, 0.35), var(--shadow-card-hover); }
.sintoma__texto { display: grid; gap: 4px; min-width: 0; }
.sintoma__texto strong { font-size: 16px; line-height: 20px; font-weight: 700; }
.sintoma__texto small { color: var(--blue-500); font-size: 13px; line-height: 16px; font-weight: 600; }
.sintoma__seta {
  display: grid;
  flex: none;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--blue-500);
  background: var(--blue-050);
  transition: background 150ms ease, color 150ms ease;
}
.sintoma__seta svg { width: 16px; height: 16px; }
.sintoma:hover .sintoma__seta { color: #fff; background: var(--blue-500); }
.sintoma--outro {
  grid-column: 1 / -1;
  min-height: 64px;
  background: var(--blue-050);
  box-shadow: none;
}
.sintoma--outro .sintoma__texto small { color: var(--muted); font-weight: 400; }
.sintoma--outro .sintoma__seta { background: #fff; }
/* numero impar de sintomas: o "outro problema" ocupa a vaga ao lado do ultimo */
.sintoma--outro:nth-child(even) { grid-column: auto; min-height: 76px; }

/* ---------- o que resolve: tags com check ------------------------------- */

.brand-list--resolve { max-width: 920px; margin: 0 auto; gap: 10px; }
.brand-list--resolve span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px 10px 12px;
  border: 1px solid rgba(0, 103, 209, 0.14);
  background: #fff;
  box-shadow: none;
  font-size: 15px;
  font-weight: 600;
}
.brand-list--resolve span::before {
  content: "";
  flex: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue-500) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.2 6.7 11 12 5.5' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* ---------- lista para marcar (paginas de sintoma) ---------------------- */

.conferir { display: grid; gap: 8px; max-width: 520px; margin: 20px 0 0; padding: 0; list-style: none; }
.conferir label {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(0, 103, 209, 0.14);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease;
}
.conferir label:hover { border-color: var(--blue-500); }
.conferir input { position: absolute; opacity: 0; pointer-events: none; }
.conferir__caixa {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(0, 103, 209, 0.35);
  border-radius: 7px;
  background: #fff;
  transition: background 150ms ease, border-color 150ms ease;
}
.conferir__texto { font-size: 15px; line-height: 20px; color: var(--ink); }
.conferir__texto a { color: var(--blue-500); text-decoration: underline; }
.conferir input:focus-visible + .conferir__caixa { outline: 3px solid rgba(0, 103, 209, 0.3); outline-offset: 2px; }
.conferir input:checked + .conferir__caixa {
  border-color: #1faa55;
  background: #1faa55 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.2 6.7 11 12 5.5' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.conferir li:has(input:checked) label { background: #f3fbf6; border-color: rgba(31, 170, 85, 0.35); }
.conferir li:has(input:checked) .conferir__texto { color: var(--muted); text-decoration: line-through; }
.conferir__status {
  margin: 14px 0 0 !important;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}
.conferir__status.is-done { color: #0b7a3b; }
.conferir__status a { color: var(--blue-500); text-decoration: underline; }

@media (max-width: 767px) {
  .sintomas { grid-template-columns: 1fr; gap: 10px; }
  .sintoma { min-height: 68px; }
}

@media (max-width: 480px) {
  .ml-hero__center .pill { font-size: 13px; padding-left: 12px; padding-right: 12px; }
}

/* ---------- combinado desde o comeco (home) ----------------------------- */

.combinado { text-align: center; }
.combinado h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 32px;
  line-height: 38px;
  font-weight: 700;
}
.combinado .section-subtitle { max-width: 640px; }
.combinado__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
  text-align: left;
}
.combinado__item {
  padding: 28px 26px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-card);
}
.combinado__icone {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 14px;
  color: var(--blue-500);
  background: var(--blue-050);
}
.combinado__icone svg { width: 26px; height: 26px; }
.combinado__item h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 19px;
  line-height: 24px;
  font-weight: 700;
}
.combinado__item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 22px;
}

@media (max-width: 1023px) {
  .combinado__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
  .combinado h2 { font-size: 26px; line-height: 31px; }
  .combinado__grid { grid-template-columns: 1fr; gap: 12px; margin-top: 28px; }
  .combinado__item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 14px;
    padding: 18px;
  }
  .combinado__icone { grid-row: span 2; width: 44px; height: 44px; margin: 0; border-radius: 12px; }
  .combinado__icone svg { width: 22px; height: 22px; }
  .combinado__item h3 { margin-bottom: 4px; font-size: 17px; line-height: 22px; }
}

/* ---------- topo da home com a foto nova -------------------------------- */

.ml-hero--foto {
  text-align: left;
  background-position: right center;
}
.ml-hero--foto::before {
  background: linear-gradient(90deg, rgba(234, 245, 253, 0.97) 0%, rgba(234, 245, 253, 0.9) 34%, rgba(234, 245, 253, 0.35) 56%, rgba(234, 245, 253, 0) 70%);
}
.ml-hero--foto .ml-hero__center { max-width: 1184px; }
.ml-hero--foto .ml-hero__center h1 { max-width: 600px; margin-left: 0; }
.ml-hero--foto .ml-hero__center p { max-width: 540px; margin-left: 0; }

@media (max-width: 767px) {
  .ml-hero--foto {
    padding: 40px 0 330px;
    text-align: center;
    background-image: var(--hero-img-m);
    background-position: center bottom;
  }
  .ml-hero--foto::before {
    background: linear-gradient(180deg, rgba(234, 245, 253, 0.97) 0%, rgba(234, 245, 253, 0.92) 50%, rgba(234, 245, 253, 0) 72%);
  }
  .ml-hero--foto .ml-hero__center h1,
  .ml-hero--foto .ml-hero__center p { margin-left: auto; margin-right: auto; }
}

/* ---------- logo --------------------------------------------------------- */

.brand-logo { display: block; width: auto; height: 44px; }
.footer-logo { display: block; width: auto; height: 40px; margin-bottom: 14px; }
@media (max-width: 767px) {
  .brand-logo { height: 36px; }
}

/* ---------- logos das marcas -------------------------------------------- */

.marca-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}
.marca-logos img { display: block; width: 100%; height: auto; }
.marca-logos--home {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}
.marca-logos--home img { border-radius: 14px; box-shadow: var(--shadow-card); }
@media (max-width: 767px) {
  .marca-logos--home { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .marca-logos--home img:last-child { grid-column: 1 / -1; width: 50%; justify-self: center; }
}

/* ---------- cabecalho moderno ------------------------------------------- */

.ml-header {
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(6, 38, 83, 0.07);
  transition: box-shadow 200ms ease, background 200ms ease;
}
.ml-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 24px rgba(6, 38, 83, 0.08);
}
.ml-header__bar { min-height: 76px; padding-top: 10px; padding-bottom: 10px; }
.ml-header .brand-logo { height: 34px; }

.ml-header .ml-nav { gap: 4px; font-size: 15px; font-weight: 500; }
.ml-header .ml-nav a {
  padding: 9px 14px;
  border-radius: 999px;
  color: rgba(6, 38, 83, 0.78);
  transition: background 150ms ease, color 150ms ease;
}
.ml-header .ml-nav a:hover { color: var(--blue-500); background: var(--blue-050); }
.ml-header .ml-nav a[aria-current="page"] { color: var(--blue-500); background: var(--brand-soft); font-weight: 600; }

.ml-header .btn-header {
  gap: 8px;
  min-height: 46px;
  margin-left: 8px;
  padding: 0 22px 0 18px;
  border-radius: 999px;
  font-size: 15px;
  box-shadow: 0 6px 16px rgba(0, 103, 209, 0.24);
}
.ml-header .btn-header:hover { box-shadow: 0 8px 20px rgba(0, 103, 209, 0.32); }
.ml-header .btn-header svg { width: 18px; height: 18px; flex: none; }

.ml-header .menu-toggle { background: var(--blue-050); border-radius: 12px; }

@media (max-width: 920px) {
  .ml-header__bar { min-height: 68px; }
  .ml-header .ml-nav {
    gap: 2px;
    padding: 10px 16px 18px;
    background: #fff;
    border-bottom: 1px solid rgba(6, 38, 83, 0.07);
    box-shadow: 0 16px 32px rgba(6, 38, 83, 0.1);
  }
  .ml-header .ml-nav a { padding: 13px 16px; border-radius: 12px; font-size: 16px; }
}
@media (max-width: 767px) {
  .ml-header .brand-logo { height: 30px; }
}

/* ---------- aviso de cookies -------------------------------------------- */

.cookie {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 60;
  display: flex;
  justify-content: flex-start;
  pointer-events: none;
}
.cookie[hidden] { display: none; }
.cookie__caixa {
  width: min(520px, 100%);
  padding: 22px 22px 18px;
  border: 1px solid rgba(6, 38, 83, 0.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(6, 38, 83, 0.18);
  pointer-events: auto;
}
.cookie__titulo { margin: 0 0 6px; color: var(--ink); font-size: 17px; line-height: 22px; font-weight: 700; }
.cookie__texto { margin: 0; color: var(--muted); font-size: 14px; line-height: 20px; }
.cookie__texto a { color: var(--blue-500); text-decoration: underline; }
.cookie__opcoes { display: grid; gap: 8px; margin-top: 14px; }
.cookie__opcoes[hidden] { display: none; }
.cookie__opcao {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px;
  border-radius: 12px;
  background: var(--blue-050);
  cursor: pointer;
}
.cookie__opcao input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--blue-500); }
.cookie__opcao strong { display: block; color: var(--ink); font-size: 14px; line-height: 18px; }
.cookie__opcao small { display: block; margin-top: 2px; color: var(--muted); font-size: 13px; line-height: 18px; }
.cookie__botoes { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.cookie__botao {
  flex: 1 1 auto;
  min-height: 42px;
  padding: 0 16px;
  border: 1.5px solid rgba(6, 38, 83, 0.2);
  border-radius: 999px;
  background: #fff;
  color: var(--blue-900);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease;
}
.cookie__botao:hover { border-color: var(--blue-500); }
.cookie__botao[hidden] { display: none; }
.cookie__botao--principal { border-color: var(--blue-500); background: var(--blue-500); color: #fff; }
.cookie__botao--principal:hover { background: var(--blue-600); }
body.cookie-aberto .wa-float { display: none; }

@media (max-width: 767px) {
  .cookie { right: 12px; bottom: 12px; left: 12px; }
  .cookie__caixa { padding: 18px 16px 14px; }
  .cookie__botao { flex: 1 1 40%; }
  .cookie__botao--principal { flex-basis: 100%; order: -1; }
}

/* ---------- rodape: linha legal ----------------------------------------- */

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
.footer-legal a:hover,
.footer-legal__botao:hover { color: var(--blue-500); }
.footer-legal__botao {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
}

/* ---------- paginas de politica ----------------------------------------- */

.legal { padding-top: 24px; }
.legal__grid {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
.legal__indice {
  position: sticky;
  top: 100px;
  padding: 20px;
  border-radius: 18px;
  background: var(--blue-050);
  font-size: 14px;
  line-height: 20px;
}
.legal__indice strong { display: block; margin-bottom: 10px; color: var(--ink); }
.legal__indice ol { margin: 0; padding-left: 18px; }
.legal__indice li { margin-bottom: 6px; }
.legal__indice a { color: var(--blue-500); }
.legal__texto { max-width: 760px; }
.legal__data { margin: 0 0 24px; color: var(--muted); font-size: 14px; }
.legal__secao { margin-bottom: 36px; scroll-margin-top: 100px; }
.legal__secao h2 { margin: 0 0 12px; color: var(--ink); font-size: 22px; line-height: 28px; font-weight: 700; }
.legal__secao p,
.legal__secao li { color: var(--ink); font-size: 16px; line-height: 25px; }
.legal__secao p { margin: 0 0 12px; }
.legal__secao ul { margin: 0 0 12px; padding-left: 20px; }
.legal__secao li { margin-bottom: 8px; }
.legal__secao a { color: var(--blue-500); text-decoration: underline; }
.legal__tabela { overflow-x: auto; margin: 4px 0 14px; border-radius: 14px; box-shadow: var(--shadow-card); }
.legal__tabela table { width: 100%; min-width: 560px; border-collapse: collapse; background: #fff; font-size: 14px; }
.legal__tabela th,
.legal__tabela td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; line-height: 20px; }
.legal__tabela th { color: var(--ink); background: var(--blue-050); font-weight: 700; }
.legal__tabela code { font-size: 13px; }
.legal__cat { color: var(--blue-900); background: #f7fafd; font-weight: 700; }
.legal__botao {
  padding: 0;
  border: 0;
  background: none;
  color: var(--blue-500);
  font: inherit;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

@media (max-width: 900px) {
  .legal__grid { grid-template-columns: 1fr; gap: 24px; }
  .legal__indice { position: static; }
}

.legal__secao { padding: 0; }

/* contraste AA: azul um pouco mais escuro sobre o azul-claro */
.ml-header .ml-nav a[aria-current="page"],
.prefooter .text-link { color: var(--blue-600); }
