/* =============================================================================
   JG Bebedouros — Design system "blueprint" (desenho técnico industrial)
   Paleta cinza-claro + azul-aço, tipografia Barlow / Barlow Condensed,
   cantos vivos (zero border-radius) e marcas de registro nos blocos de
   destaque. Extraído do mockup do cliente — ver
   jg-design-brief.md para a especificação completa de tokens/componentes.
   ========================================================================== */

:root {
  /* ---- Tokens exatos do mockup do cliente ------------------------------ */
  --color-bg: #f2f2f3;        /* cinza claro, fundo geral */
  --color-surface: #e9e9ea;   /* fundo de seções alternadas / cards */
  --color-text: #1d1f20;      /* texto principal, quase preto */
  --color-accent: #5980a6;    /* azul-aço — cor de marca */
  --color-accent-2: #728fab;  /* azul-aço secundário, mais claro */
  --color-divider: rgba(29, 31, 32, .16);   /* hairline */
  --corner-color: rgba(29, 31, 32, .55);    /* traço das marcas de registro */

  /* ---- Rampa neutra (OKLCH-equivalente, valores exatos do mockup) ------ */
  --n-100: #f5f5f8;
  --n-200: #e7e7ea;
  --n-300: #d4d4d7;
  --n-400: #b7b7ba;
  --n-500: #98989b;
  --n-600: #7a7a7d;
  --n-700: #5d5d60;
  --n-800: #424244;
  --n-900: #2b2b2d;

  /* ---- Rampa accent (azul-aço) ------------------------------------------ */
  --a-100: #eef6ff;
  --a-200: #d6ebff;
  --a-300: #b5d9fd;
  --a-400: #94bce3;
  --a-500: #749dc4;
  --a-600: #597ea3;
  --a-700: #416180;
  --a-800: #2c455d;
  --a-900: #1d2d3d;   /* âncora escura do sistema -- faixas de alto contraste */

  /* ---- Rampa accent-2 (azul-aço secundário) ----------------------------- */
  --a2-100: #eef6ff;
  --a2-200: #d6ebff;
  --a2-300: #bdd8f2;
  --a2-400: #9ebbd8;
  --a2-500: #7e9cb8;
  --a2-600: #627d98;
  --a2-700: #486077;
  --a2-800: #314457;
  --a2-900: #1f2d3a;

  --wa: #25D366;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --maxw: 1180px;
  --corner-size: 14px;
  --corner-offset: -6px;

  /* ---- Aliases retrocompatíveis para assets/css/admin.css e para os
     estilos inline remanescentes em build/build.py. Mapeiam os nomes de
     variável antigos (paleta ciano escura) para os tokens novos, para que
     nenhum valor hexadecimal do tema antigo sobreviva na cascata. --------- */
  --bg: var(--color-bg);
  --bg-soft: var(--color-surface);
  --bg-card: var(--n-100);
  --text: var(--color-text);
  --text-muted: var(--n-700);
  --primary: var(--color-accent);
  --primary-dark: var(--a-700);
  --secondary: var(--color-accent-2);
  --border: var(--color-divider);
  --border-solid: var(--n-300);
  --radius: 0px;
  --shadow: 0 10px 26px rgba(29, 31, 32, .12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 110%; }
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: .015em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.25rem, 4.5vw, 3.625rem); line-height: 1.05; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.2rem; letter-spacing: .01em; }
p { font-size: 1rem; }
.text-accent { color: var(--color-accent); }

.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--a-700);
  font-size: .82rem;
  font-weight: 600;
}

/* Tag outline -- pequena pílula de destaque usada no hero/Ozean ---------- */
.tag-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--color-divider);
  padding: 5px 14px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .74rem;
  font-weight: 600;
  color: var(--a-700);
  background: var(--color-bg);
}
.tag-outline.on-dark { color: var(--a-200); border-color: rgba(255, 255, 255, .3); background: transparent; }

/* Tag simples (característica de produto: material, capacidade) ---------- */
.tag {
  display: inline-block;
  border-radius: 0;
  padding: 4px 11px;
  font-size: .78rem;
  font-weight: 600;
  background: var(--n-200);
  color: var(--a-800);
  border: 1px solid var(--color-divider);
}

/* =============================================================================
   Barra de aviso (topo, fixo) -- fundo accent-900, fatos reais
   ========================================================================== */
.announcement-bar {
  background: var(--a-900);
  color: var(--a-100);
  overflow: hidden;
}
.ticker { display: flex; overflow: hidden; }
.ticker-track {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  padding: 8px 20px;
  white-space: nowrap;
  animation: ticker-scroll 38s linear infinite;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.announcement-bar span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--a-200);
  white-space: nowrap;
}
.announcement-bar span svg { flex-shrink: 0; color: var(--color-accent); }
.announcement-bar .sep { color: var(--a2-600); font-weight: 400; }
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* Prova social -- logos de clientes acima do rodapé, ticker contínuo ----- */
.clientes-logos { padding: 96px 0 76px; background: var(--color-bg); text-align: center; }
.clientes-logos .section-head { margin-bottom: 56px; }
.clientes-logos .ticker { overflow: hidden; }
.clientes-logos .logos-track { gap: 64px; padding: 0 32px; animation-duration: 30s; }
.clientes-logos .logos-track img {
  height: 79px;
  width: auto;
  max-width: 252px;
  object-fit: contain;
  opacity: .8;
  transition: opacity .2s;
}
.clientes-logos .logos-track img:hover { opacity: 1; }
@media (max-width: 640px) {
  .clientes-logos { padding: 64px 0 48px; }
  .clientes-logos .logos-track img { height: 58px; }
  .clientes-logos .logos-track { gap: 40px; }
}

/* =============================================================================
   Header sticky
   ========================================================================== */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(242, 242, 243, .96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-divider);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 84px; gap: 20px; }
.logo-img { height: 34px; display: block; }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .03em;
  font-weight: 600;
  font-size: .86rem;
  color: var(--a2-900);
  transition: color .2s;
}
.nav-links a:hover { color: var(--color-accent); }
.nav-cta {
  background: var(--a-900);
  color: var(--a-100) !important;
  padding: 12px 22px;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .8rem;
  border: 1px solid var(--a-900);
  transition: background .2s ease, color .2s ease;
}
.nav-cta:hover { background: var(--color-accent); border-color: var(--color-accent); }
.burger {
  display: none;
  background: none;
  border: 1px solid var(--color-divider);
  color: var(--color-text);
  width: 40px;
  height: 40px;
  font-size: 1.3rem;
  cursor: pointer;
}

/* Dropdown do menu principal (ex.: "Bebedouro Industrial" > capacidades) --
   hover/focus no desktop, toque com botão de seta no mobile. */
.has-dropdown { position: relative; display: flex; align-items: center; gap: 4px; }
.dropdown-toggle {
  background: none;
  border: none;
  padding: 4px;
  color: inherit;
  font-size: .7rem;
  cursor: pointer;
  transition: transform .2s ease;
}
.has-dropdown:hover .dropdown-toggle,
.has-dropdown.open .dropdown-toggle { transform: rotate(180deg); }
.dropdown-menu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: -14px;
  min-width: 230px;
  background: var(--color-bg);
  border: 1px solid var(--color-divider);
  box-shadow: 0 16px 32px rgba(20, 22, 24, .14);
  padding: 8px;
  margin-top: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 70;
}
.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: normal;
  font-weight: 500;
  font-size: .88rem;
  white-space: nowrap;
}
.dropdown-menu a:hover { background: var(--color-bg-alt, #e9e9ea); color: var(--color-accent); }
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu,
.has-dropdown.open .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
@media (max-width: 860px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    opacity: 1; visibility: visible; transform: none;
    display: none;
    min-width: 0;
    margin: 6px 0 0;
    padding: 0 0 0 14px;
  }
  .has-dropdown.open .dropdown-menu { display: block; }
  .dropdown-menu a {
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: .02em;
    font-weight: 600;
    font-size: .8rem;
    padding: 9px 0;
  }
}

/* =============================================================================
   Blueprint -- assinatura visual: hairline + 4 marcas de registro nos cantos
   ========================================================================== */
.blueprint {
  position: relative;
  border: 1px solid var(--color-divider);
  background: var(--color-bg);
}
.blueprint.on-surface { background: var(--color-surface); }
.blueprint.on-dark { background: var(--a-900); border-color: rgba(255, 255, 255, .18); }

.blueprint .corner { position: absolute; width: var(--corner-size); height: var(--corner-size); pointer-events: none; }
.blueprint .corner::before,
.blueprint .corner::after { content: ''; position: absolute; background: var(--corner-color); }
.blueprint.on-dark .corner::before,
.blueprint.on-dark .corner::after { background: rgba(255, 255, 255, .45); }
.blueprint .corner::before { width: var(--corner-size); height: 1px; }
.blueprint .corner::after { width: 1px; height: var(--corner-size); }

.blueprint .corner-tl { top: var(--corner-offset); left: var(--corner-offset); }
.blueprint .corner-tl::before, .blueprint .corner-tl::after { top: 0; left: 0; }
.blueprint .corner-tr { top: var(--corner-offset); right: var(--corner-offset); }
.blueprint .corner-tr::before, .blueprint .corner-tr::after { top: 0; right: 0; }
.blueprint .corner-bl { bottom: var(--corner-offset); left: var(--corner-offset); }
.blueprint .corner-bl::before, .blueprint .corner-bl::after { bottom: 0; left: 0; }
.blueprint .corner-br { bottom: var(--corner-offset); right: var(--corner-offset); }
.blueprint .corner-br::before, .blueprint .corner-br::after { bottom: 0; right: 0; }

/* =============================================================================
   Duotone -- tingimento monocromático azul-aço sobre fotos de produto
   ========================================================================== */
.duotone { position: relative; overflow: hidden; background: var(--n-200); }
.duotone::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-accent);
  mix-blend-mode: color;
  opacity: .5;
  pointer-events: none;
}
.duotone img { display: block; width: 100%; height: 100%; object-fit: contain; }
.duotone.cover img { object-fit: cover; }
.duotone.no-tint::after { content: none; }

/* Bloco só-CSS para os slots onde não existe foto real (ambiente, macro) -- */
.texture-block {
  position: relative;
  min-height: 220px;
  background-color: var(--a-800);
  background-image:
    linear-gradient(135deg, var(--a-800) 0%, var(--a-600) 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .06) 0, rgba(255, 255, 255, .06) 1px, transparent 1px, transparent 28px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .06) 0, rgba(255, 255, 255, .06) 1px, transparent 1px, transparent 28px);
}
.texture-block.light {
  background-color: var(--n-200);
  background-image:
    linear-gradient(135deg, var(--n-200) 0%, var(--n-300) 100%),
    repeating-linear-gradient(0deg, rgba(29, 31, 32, .06) 0, rgba(29, 31, 32, .06) 1px, transparent 1px, transparent 28px),
    repeating-linear-gradient(90deg, rgba(29, 31, 32, .06) 0, rgba(29, 31, 32, .06) 1px, transparent 1px, transparent 28px);
}

/* =============================================================================
   Hero
   ========================================================================== */
.hero, .local-hero {
  position: relative;
  padding: 64px 0 72px;
  overflow: hidden;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-divider);
}
.hero .eyebrow, .local-hero .eyebrow { display: block; margin-bottom: 16px; }
.hero h1, .local-hero h1 { margin-bottom: 20px; text-wrap: balance; }
.hero p.lead, .local-hero p.lead { font-size: 1.1rem; color: var(--n-800); max-width: 560px; margin: 0 0 26px; text-wrap: pretty; }
.hero-cta { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-bottom: 24px; }
.local-hero:not(.local-hero-product) .container { max-width: var(--maxw); text-align: left; }
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-cta .btn { justify-content: center; }
}

/* Box de destaque com fato real dentro do hero (blueprint) --------------- */
.hero-fact {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  margin-bottom: 26px;
}
.hero-fact strong { font-family: var(--font-head); text-transform: uppercase; font-size: .95rem; letter-spacing: .02em; color: var(--a-900); }
.hero-fact span { display: block; font-size: .8rem; color: var(--n-700); }

/* Fileira de selos rápidos no hero (material, litragens, cobertura) ------ */
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 26px; }
.tag-outline.on-dark + .hero-badges { margin-top: 18px; }
.hero-badges .tag-outline {
  background: var(--a-100);
  color: var(--a-900);
  border: none;
  padding: 9px 16px 9px 14px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .02em;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .3);
}
.hero-badges .tag-outline svg { flex-shrink: 0; color: var(--color-accent); }

/* Hero com foto full-width no fundo (home e páginas de serviço com foto
   dedicada) -- a imagem de fundo entra via style="background-image:..."
   inline no elemento, para cada página poder usar a sua própria foto. ---- */
.hero-photo {
  padding: 190px 0 200px;
  background-size: cover;
  background-position: 62% center;
}
.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 22, 24, .92) 0%, rgba(20, 22, 24, .82) 38%, rgba(20, 22, 24, .48) 68%, rgba(20, 22, 24, .18) 100%);
}
.hero-photo .container { position: relative; z-index: 1; }
.hero-photo-text { max-width: 620px; }
.hero-photo h1, .hero-photo p.lead { color: #fff; }
.hero-photo p.lead { max-width: 520px; }
@media (max-width: 640px) {
  .hero-photo { padding: 120px 0 100px; }
  .hero-photo::before { background: linear-gradient(180deg, rgba(20, 22, 24, .9) 0%, rgba(20, 22, 24, .82) 55%, rgba(20, 22, 24, .68) 100%); }
}

/* Hero com foto de produto ao lado do texto (usado em outras páginas) ----- */
.hero-product-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 46px; }
.hero-product-img-wrap { max-width: 420px; margin: 0 auto; aspect-ratio: 1 / 1; }
.hero-product-img-wrap .duotone,
.hero-product-img-wrap .texture-block { width: 100%; height: 100%; }
.hero-product-img-wrap img { max-height: 420px; width: auto; margin: 0 auto; }
@media (max-width: 860px) {
  .hero-product-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-product-grid .lead { margin-left: auto; margin-right: auto; }
  .hero-product-grid .hero-cta { justify-content: center; }
  .hero-product-img-wrap { max-width: 260px; order: -1; margin-bottom: 12px; }
}

/* =============================================================================
   Botões -- cantos vivos em todo o sistema
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .88rem;
  padding: 15px 28px;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-wa {
  background: var(--wa);
  color: #fff;
  border-color: var(--wa);
}
.btn-wa:hover { background: #1DA851; border-color: #1DA851; }
.btn-outline { border: 1px solid var(--a-900); color: var(--a-900); background: transparent; }
.btn-outline:hover { background: var(--a-900); color: var(--a-100); }
.btn-invert { background: var(--color-bg); color: var(--a-900); border-color: var(--color-bg); }
.btn-invert:hover { background: transparent; color: var(--color-bg); border-color: var(--color-bg); }
.btn-solid { background: var(--a-900); color: #fff; border-color: var(--a-900); }
.btn-solid:hover { background: var(--color-accent); border-color: var(--color-accent); }

/* Ícone do WhatsApp circulado (badge) ------------------------------------- */
.wa-badge { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: #fff; }
.wa-badge svg { width: 15px; height: 15px; fill: var(--wa); display: block; }
.btn-outline .wa-badge, .btn-invert .wa-badge { background: var(--a-900); }
.btn-outline .wa-badge svg, .btn-invert .wa-badge svg { fill: #fff; }

/* =============================================================================
   Sections / grid genéricos
   ========================================================================== */
section { padding: 64px 0; }
.section-surface { background: var(--color-surface); }
.section-head { text-align: center; margin-bottom: 42px; }
.section-head p { color: var(--n-700); max-width: 620px; margin: 12px auto 0; }
.section-head.align-left { text-align: left; margin-bottom: 30px; }
.section-head.align-left p { margin-left: 0; }

.grid { display: grid; gap: 22px; }
.grid-top { align-items: start; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

/* Card genérico (categorias/produtos/diferenciais) -- blueprint ---------- */
.card {
  background: var(--color-bg);
  border: 1px solid var(--color-divider);
  border-radius: 0;
  padding: 26px;
  transition: border-color .2s ease, transform .2s ease;
}
.card:hover { border-color: var(--color-accent); transform: translateY(-3px); }
.card.no-pad { padding: 0; display: flex; flex-direction: column; }
.card-media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; }
.card-body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; }
.card h3 { margin-bottom: 8px; color: var(--a-900); }
.card h3 a { color: inherit; }
.card p { color: var(--n-700); font-size: .94rem; }
.card .link-more { display: inline-block; margin-top: 12px; font-family: var(--font-head); text-transform: uppercase; font-size: .8rem; font-weight: 600; letter-spacing: .04em; color: var(--color-accent); }
.trust-card { text-align: center; }
/* Variante horizontal do card de confiança -- ícone à esquerda, texto à direita */
.trust-rows { gap: 16px; }
.trust-card-row { display: flex; gap: 18px; align-items: flex-start; text-align: left; }
.trust-card-row .card-icon { flex-shrink: 0; margin-bottom: 0; justify-content: flex-start; }
.trust-card-row .tc-body { flex: 1; min-width: 0; }
.trust-card-row .tc-body h3 { margin-bottom: 6px; }
.trust-card-row .tc-body p { color: var(--n-700); font-size: .94rem; }
.trust-card-row .tc-body p small { font-size: .82rem; color: var(--n-600); }
/* Card em destaque (oferta / faixa de preço) -- fundo navy, preço em verde */
.trust-card-row.is-featured { background: var(--a-900); border-color: var(--a-900); }
.trust-card-row.is-featured:hover { border-color: var(--a-700); }
.trust-card-row.is-featured .corner::before,
.trust-card-row.is-featured .corner::after { background: rgba(255, 255, 255, .45); }
.trust-card-row.is-featured .card-icon { color: var(--wa); }
.trust-card-row.is-featured .tc-body h3 { color: #fff; }
.trust-card-row.is-featured .tc-body p { color: rgba(255, 255, 255, .78); }
.trust-card-row.is-featured .tc-body p strong { display: inline-block; margin-bottom: 2px; color: var(--wa); font-size: 1.15rem; }
.trust-card-row.is-featured .tc-body p small { color: rgba(255, 255, 255, .55); }

/* Card de produto em destaque (foto quadrada + badge de canto) ----------- */
.product-card { padding: 0; display: flex; flex-direction: column; }
.product-card .product-photo { position: relative; overflow: hidden; aspect-ratio: 1 / 1; }
.card-media > .duotone, .card-media > .texture-block,
.product-photo > .duotone, .product-photo > .texture-block,
.tech-media > .duotone, .tech-media > .texture-block { position: absolute; inset: 0; }
.product-card .badge-corner {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--a-900);
  color: var(--a-100);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .68rem;
  font-weight: 600;
  padding: 5px 10px;
  z-index: 2;
}
.product-card .product-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.product-card .badge-corner.badge-corner-model { left: auto; right: 10px; background: var(--color-accent); }
.product-card h3 { margin-bottom: 6px; }
.product-card .product-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0 16px; }
.product-card .product-perks { display: flex; flex-direction: column; gap: 6px; margin: 0 0 16px; }
.mini-badge { display: inline-flex; align-items: center; gap: 6px; font-size: .76rem; color: var(--n-700); }
.mini-badge svg { color: var(--color-accent); flex-shrink: 0; }
.product-card .product-ctas { display: flex; gap: 10px; margin-top: auto; flex-wrap: wrap; }
.product-card .product-ctas .btn { padding: 10px 16px; font-size: .76rem; }

.blog-card { display: block; }
.blog-card .eyebrow { display: block; margin-bottom: 8px; }

/* =============================================================================
   Faixa de autoridade / estatísticas -- accent-900 full-bleed
   ========================================================================== */
.stats-band { background: var(--a-900); color: var(--a-100); }
.stats-band .section-head h2, .stats-band .section-head p { color: var(--a-100); }
.stats-band .section-head p { color: var(--a2-300); }
.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.stat-item {
  flex: 1 1 220px;
  text-align: center;
  padding: 18px 24px;
  border-left: 1px solid rgba(255, 255, 255, .18);
}
.stat-item:first-child { border-left: 0; }
.stat-item .stat-value {
  display: block;
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: .01em;
  margin-bottom: 4px;
}
.stat-item .stat-label { display: block; font-size: .82rem; color: var(--a2-300); margin-top: 4px; }
.stat-icon { display: flex; justify-content: center; margin-bottom: 12px; color: var(--color-accent); }
@media (max-width: 760px) {
  .stats-row { display: grid; grid-template-columns: 1fr 1fr; }
  .stat-item { border-left: 0; flex: none; }
  .stat-item:nth-child(2n) { border-left: 1px solid rgba(255, 255, 255, .18); }
  .stat-item:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, .18); }
}

/* =============================================================================
   Seção técnica -- split imagem + checklist hairline
   ========================================================================== */
.tech-split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: center; }
.tech-split .tech-media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; }
.tech-split .tech-media-portrait { aspect-ratio: 3 / 4; }
.tech-split.reverse.tech-split-media-lg { grid-template-columns: 1.15fr 1.2fr; }
.tech-split.reverse { grid-template-columns: 1.15fr .85fr; }
.tech-split.reverse .tech-media { order: 2; }
.tech-split.wide-media { grid-template-columns: 1.15fr .85fr; }
.tech-split.wide-media.reverse { grid-template-columns: .85fr 1.15fr; }
.tech-split > div:not(.tech-media) > .tag-outline { margin-bottom: 18px; }
.tech-split > div:not(.tech-media) > h2 { margin-bottom: 18px; }
.tech-split > div:not(.tech-media) > p { margin-bottom: 26px; color: var(--n-700); }
.tech-split > div:not(.tech-media) > .grid { margin-bottom: 30px; }
.tech-split > div:not(.tech-media) > ul.checklist { margin-bottom: 30px; }
@media (max-width: 860px) { .tech-split, .tech-split.reverse, .tech-split.wide-media, .tech-split.wide-media.reverse, .tech-split.reverse.tech-split-media-lg { grid-template-columns: 1fr; } .tech-split .tech-media, .tech-split.reverse .tech-media { order: 2; } .tech-split .tech-media-portrait { aspect-ratio: 4 / 3; } }

.checklist { list-style: none; }
.checklist li {
  border-bottom: 1px solid var(--color-divider);
  padding: 14px 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--n-800);
}
.checklist li:first-child { border-top: 1px solid var(--color-divider); }
.checklist li::before { content: '—'; color: var(--color-accent); font-weight: 700; flex-shrink: 0; }

/* ==========================================================================
   Comparativo linha industrial x Ozean -- ícones + produto central
   ========================================================================== */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 64px; align-items: start; }
.compare-features { display: flex; flex-direction: column; gap: 34px; }
.compare-features.align-right { text-align: right; }
.compare-features.align-right .feature-row { flex-direction: row-reverse; }
.feature-row { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.feature-row h3 { font-size: 1.05rem; margin-bottom: 6px; color: var(--a-900); }
.feature-row p { color: var(--n-700); font-size: .9rem; line-height: 1.55; margin: 0; }
.compare-cta { text-align: center; margin-top: 48px; }
@media (max-width: 960px) {
  .compare-grid { grid-template-columns: 1fr; }
  .compare-features, .compare-features.align-right { text-align: left; }
  .compare-features.align-right .feature-row { flex-direction: row; }
}

.compare-photo-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 160px 0;
}
.compare-photo-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(16, 26, 36, .82);
}
.compare-photo-bg .container { position: relative; z-index: 1; }
.compare-photo-bg .section-head h2,
.compare-photo-bg .feature-row h3 { color: #fff; }
.compare-photo-bg .section-head p,
.compare-photo-bg .feature-row p { color: rgba(255, 255, 255, .72); }

.section-photo-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 88px 0;
}
.section-photo-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(16, 26, 36, .78);
}
.section-photo-bg .container { position: relative; z-index: 1; }
.section-photo-bg .section-head h2 { color: #fff; }
.section-photo-bg .section-head p { color: rgba(255, 255, 255, .72); }

/* =============================================================================
   Grid de segmentos atendidos -- tiles pequenos blueprint
   ========================================================================== */
.segments-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.segment-tile {
  padding: 22px 14px;
  text-align: center;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: .92rem;
  font-weight: 600;
  color: var(--a-900);
}
@media (max-width: 760px) { .segments-grid { grid-template-columns: repeat(2, 1fr); } }

/* =============================================================================
   Faixa CTA (intermediária, dentro do fluxo de conteúdo)
   ========================================================================== */
.cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--a-800);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--a2-200); margin: 12px auto 24px; max-width: 560px; }

/* Faixa CTA final -- box blueprint sobre accent-900, botão invertido ----- */
.cta-final { background: var(--a-900); }
.cta-final-box { text-align: center; padding: 54px 40px; max-width: 760px; margin: 0 auto; }
.cta-final-box h2 { color: #fff; }
.cta-final-box p { color: var(--a2-200); margin: 14px auto 26px; max-width: 520px; }

/* Nuvem de cidades/links --------------------------------------------------- */
.locais-cloud { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.locais-cloud a { background: var(--color-bg); border: 1px solid var(--color-divider); padding: 8px 16px; font-size: .86rem; color: var(--n-800); transition: all .2s; }
.locais-cloud a:hover { border-color: var(--color-accent); color: var(--color-accent); }

/* Tag cloud de benefícios (seção Ozean) ----------------------------------- */
.benefit-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 28px; }
.benefit-cloud span { display: inline-flex; align-items: center; gap: 7px; border: 1px solid var(--color-divider); padding: 7px 15px; font-size: .84rem; color: var(--a-900); background: var(--color-bg); }
.benefit-cloud span svg { color: var(--color-accent); flex-shrink: 0; }

/* Ícone no topo de um card (specs, características) ------------------------ */
.card-icon { display: flex; justify-content: center; margin-bottom: 14px; color: var(--color-accent); }

/* Vídeo incorporado (YouTube), 16:9 responsivo ----------------------------- */
.video-embed { position: relative; width: 100%; max-width: 820px; margin: 28px auto 0; aspect-ratio: 16 / 9; overflow: hidden; background: var(--n-200); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Banner full-bleed (peça pronta com texto embutido na própria imagem) ---- */
.image-banner-full { display: block; width: 100%; height: auto; aspect-ratio: 1672 / 941; object-fit: cover; }

/* Colagem de fotos empilhadas (closes de produto) -------------------------- */
.image-collage { display: flex; flex-direction: column; gap: 6px; }
.image-collage img { width: 100%; height: 640px; display: block; object-fit: cover; }
.image-collage img:last-child { height: auto; object-fit: contain; }
@media (max-width: 760px) { .image-collage img { height: 380px; } .image-collage img:last-child { height: auto; } }
.image-collage.uncropped img { height: auto; object-fit: contain; background: var(--n-100, #f2f2f2); }

/* Carrossel de avaliações -- scroll horizontal nativo via CSS (sem lib),
   3 cards por vez no desktop, 1 no mobile. ------------------------------- */
.reviews-carousel-wrap { display: flex; align-items: center; gap: 12px; }
.reviews-carousel {
  display: flex; gap: 20px; flex: 1; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none;
}
.reviews-carousel::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 calc((100% - 40px) / 3); scroll-snap-align: start;
  background: var(--color-bg); border: 1px solid var(--color-divider);
  display: flex; flex-direction: column;
}
.review-photo { aspect-ratio: 3 / 4; overflow: hidden; background: var(--n-200); }
.review-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.review-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.review-stars { color: #e2a63b; letter-spacing: 3px; font-size: 1.3rem; }
.review-text { color: var(--n-800); font-size: .92rem; line-height: 1.6; flex: 1; margin: 0; }
.review-author {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: .82rem; color: var(--n-700); margin-bottom: -6px;
}
.review-author strong { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .02em; color: var(--a-900); font-size: .84rem; }
.carousel-arrow {
  flex-shrink: 0; width: 40px; height: 40px; border: 1px solid var(--color-divider); background: var(--color-bg);
  font-size: 1.5rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--a-900); transition: all .2s;
}
.carousel-arrow:hover { border-color: var(--color-accent); color: var(--color-accent); }
@media (max-width: 760px) {
  .reviews-carousel-wrap { gap: 6px; }
  .review-card { flex: 0 0 100%; }
  .carousel-arrow { width: 32px; height: 32px; font-size: 1.2rem; }
}

/* Formulário de orçamento -- mesmo hairline + cantos do resto do sistema --- */
.form-blueprint { max-width: 720px; margin: 0 auto; padding: 40px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 26px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .04em; font-size: .78rem; color: var(--n-700); }
.form-field input, .form-field textarea, .form-field select {
  border: 1px solid var(--color-divider); background: var(--color-bg); padding: 12px 14px;
  font-family: var(--font-body); font-size: .95rem; color: var(--a-900); border-radius: 0;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--color-accent); }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--n-700) 50%), linear-gradient(135deg, var(--n-700) 50%, transparent 50%); background-position: calc(100% - 20px) center, calc(100% - 15px) center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.form-field input[type="file"] { border: 1px dashed var(--color-divider); padding: 10px 14px; font-size: .88rem; }
.form-choice-group { display: flex; flex-wrap: wrap; gap: 10px 20px; padding-top: 4px; }
.form-choice-group label { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: .92rem; color: var(--a-900); cursor: pointer; text-transform: none; letter-spacing: normal; }
.form-choice-group input[type="radio"], .form-choice-group input[type="checkbox"] { accent-color: var(--color-accent); width: 16px; height: 16px; margin: 0; }
@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-blueprint { padding: 28px 22px; }
}

/* Pop-up de contato -- <dialog> nativo, aberto pelo link "Contato" do menu ----- */
dialog.modal-form {
  width: min(560px, 92vw);
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  margin: auto;
  overflow: visible;
}
dialog.modal-form::backdrop {
  background: rgba(20, 22, 24, .55);
  backdrop-filter: blur(3px);
}
dialog.modal-form .form-blueprint {
  margin: 0;
  max-width: none;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--n-700);
  cursor: pointer;
  z-index: 2;
}
.modal-close:hover { color: var(--a-900); }
dialog.modal-form[open] { animation: modal-in .18s ease-out; }
@keyframes modal-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  dialog.modal-form[open] { animation: none; }
}

/* =============================================================================
   FAQ -- accordion nativo <details>/<summary>, sem JS
   ========================================================================== */
.faq-item { border-bottom: 1px solid var(--color-divider); }
.faq-item:first-child { border-top: 1px solid var(--color-divider); }
.faq-q {
  width: 100%;
  list-style: none;
  color: var(--color-text);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .01em;
  font-size: 1rem;
  font-weight: 600;
  padding: 18px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { content: ''; }
.faq-q .faq-icon { flex-shrink: 0; font-family: var(--font-body); font-weight: 400; font-size: 1.3rem; color: var(--color-accent); }
.faq-item[open] .faq-q { color: var(--color-accent); }
.faq-item[open] .faq-q .faq-icon::before { content: '−'; }
.faq-q .faq-icon::before { content: '+'; }
.faq-a { color: var(--n-700); padding: 0 0 20px; max-width: 720px; }

/* =============================================================================
   Toggle de conteúdo longo -- accordion nativo <details>/<summary>, sem JS.
   Usado nas páginas de bebedouro industrial por cidade para recolher o texto
   de SEO (não afeta indexação: conteúdo em <details> é rastreado e indexado
   pelo Google normalmente, esteja aberto ou fechado).
   ========================================================================== */
.content-toggle { border: 1px solid var(--color-divider); border-radius: 12px; margin-top: 28px; margin-bottom: 28px; overflow: hidden; }
.content-toggle summary {
  list-style: none;
  color: var(--color-text);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .01em;
  font-size: .95rem;
  font-weight: 600;
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.content-toggle summary::-webkit-details-marker { display: none; }
.content-toggle summary::marker { content: ''; }
.content-toggle summary .faq-icon { flex-shrink: 0; font-family: var(--font-body); font-weight: 400; font-size: 1.3rem; color: var(--color-accent); }
.content-toggle[open] summary { border-bottom: 1px solid var(--color-divider); color: var(--color-accent); }
.content-toggle[open] summary .faq-icon::before { content: '−'; }
.content-toggle summary .faq-icon::before { content: '+'; }
.content-toggle-body { padding: 4px 20px 20px; }

/* =============================================================================
   Footer -- accent-900
   ========================================================================== */
footer.site { position: relative; overflow: hidden; background: var(--a-900); color: var(--a2-200); padding: 56px 0 0; }
footer.site .container { position: relative; z-index: 1; padding-bottom: 26px; }
.footer-watermark { position: absolute; right: -90px; bottom: -45px; height: 540px; width: auto; opacity: .05; pointer-events: none; user-select: none; }
@media (max-width: 900px) { .footer-watermark { height: 900px; right: -175px; bottom: -80px; } }
@media (max-width: 560px) { .footer-watermark { height: 650px; right: -130px; bottom: -60px; } }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer-grid h4 { text-transform: uppercase; font-size: .85rem; margin-bottom: 16px; color: var(--a2-300); font-family: var(--font-head); letter-spacing: .06em; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 9px; }
.footer-grid a { color: var(--a2-200); font-size: .9rem; }
.footer-grid a:hover { color: #fff; }
.footer-nap { color: var(--a2-200); font-size: .9rem; }
.footer-contact { display: flex; flex-direction: column; gap: 18px; margin: 26px 0 18px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 14px; color: var(--a2-200); font-size: .9rem; line-height: 1.5; }
.footer-contact-item svg { color: var(--color-accent); flex-shrink: 0; margin-top: 2px; }
.footer-cnpj { display: block; color: var(--a2-300); font-size: .8rem; margin-top: 4px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .14); padding: 20px 0; text-align: center; color: var(--a2-300); font-size: .8rem; }

/* =============================================================================
   Botão WhatsApp flutuante -- círculo fixo bottom-right, fundo accent-900
   ========================================================================== */
.wa-float-wrap { position: fixed; bottom: 22px; right: 22px; z-index: 90; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.wa-float-label {
  position: relative;
  white-space: nowrap;
  background: var(--a-900);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  padding: 8px 16px;
  box-shadow: var(--shadow);
}
.wa-float-label::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: var(--a-900) transparent transparent transparent;
}
.wa-float {
  position: relative;
  isolation: isolate;
  background: var(--wa);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(37, 211, 102, .45), 0 4px 10px rgba(29, 31, 32, .18);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float:hover,
.wa-float:focus-visible {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(37, 211, 102, .55), 0 4px 12px rgba(29, 31, 32, .22);
}
.wa-float .wa-badge { width: auto; height: auto; background: transparent; }
.wa-float .wa-badge svg { width: 30px; height: 30px; fill: #fff; }

/* Ondas expandindo atrás do botão (pulse ring) */
.wa-float::before,
.wa-float::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 50%;
  background: var(--wa);
  animation: wa-pulse 2.4s cubic-bezier(.35, 0, .25, 1) infinite;
}
.wa-float::after { animation-delay: 1.2s; }

@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: .55; }
  70%  { transform: scale(2.3); opacity: 0; }
  100% { transform: scale(2.3); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .wa-float::before,
  .wa-float::after { animation: none; opacity: 0; }
}
@media (max-width: 480px) {
  .wa-float-label { font-size: .7rem; padding: 7px 12px; }
}

/* Breadcrumbs --------------------------------------------------------------- */
.breadcrumb { padding: 14px 0 6px; font-size: .84rem; color: var(--n-700); }
.breadcrumb a:hover { color: var(--color-accent); }

/* Autoria / E-E-A-T -- assinado pela empresa, sem foto de pessoa ----------- */
.author-box { display: flex; gap: 18px; align-items: flex-start; background: var(--color-surface); border: 1px solid var(--color-divider); padding: 22px; margin: 28px 0; }
.author-box-logo { width: 60px; height: 60px; object-fit: contain; flex-shrink: 0; background: var(--a-900); padding: 10px; }
.author-box strong { font-family: var(--font-head); font-size: 1.05rem; display: block; text-transform: uppercase; letter-spacing: .01em; color: var(--a-900); }
.author-box span { color: var(--a-700); font-size: .82rem; display: block; margin: 3px 0 8px; }
.author-box p { color: var(--n-700); font-size: .93rem; margin-bottom: 8px; }
.author-box a { color: var(--color-accent); font-weight: 600; font-size: .88rem; }
.author-box-big { max-width: 780px; margin: 0 auto; padding: 30px; }
.author-box-big .author-box-logo { width: 92px; height: 92px; }
.author-box-photo { object-fit: cover; background: none; padding: 0; }
.author-box-big .author-box-photo { width: 140px; height: 140px; }
@media (max-width: 640px) {
  .author-box-big .author-box-photo { width: 100px; height: 100px; }
}
.cert-list { list-style: none; color: var(--n-700); font-size: .88rem; }

/* Chips de sub-locais -------------------------------------------------------- */
.sub-locais-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 18px; }
.sub-locais-chips span { background: var(--color-bg); border: 1px solid var(--color-divider); color: var(--n-700); font-size: .84rem; padding: 6px 14px; }

/* Conteúdo de página de local/produto --------------------------------------- */
.local-content { padding: 24px 0 56px; }
.local-content p { margin-bottom: 18px; color: var(--n-800); }
.local-content h2 { margin: 34px 0 16px; }
.local-content h3 { margin: 24px 0 10px; color: var(--a-900); }
.zap-inline { color: var(--color-accent); font-weight: 600; }

/* Artigo (Quem somos, blog, institucional) ----------------------------------- */
.article { padding: 52px 0 88px; }
.article-lead { font-size: 1.15rem; color: var(--color-text); margin-bottom: 22px; }
.article p { margin-bottom: 20px; color: var(--n-800); line-height: 1.6; }
.article h2 { margin: 38px 0 16px; }
.article h3 { margin: 28px 0 12px; color: var(--a-900); }
.article a { color: var(--color-accent); text-decoration: underline; text-underline-offset: 2px; }
.article ul { margin: 0 0 20px; padding-left: 22px; color: var(--n-800); }
.article ul li { margin-bottom: 8px; line-height: 1.55; }
.article blockquote {
  margin: 0 0 24px;
  padding: 14px 20px;
  border-left: 3px solid var(--color-accent);
  background: var(--color-surface);
  color: var(--n-800);
  font-style: italic;
}
.article .table-scroll { overflow-x: auto; margin: 0 0 24px; }
.article table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.article th, .article td { padding: 10px 14px; border: 1px solid var(--color-divider); text-align: left; }
.article th { background: var(--a-900); color: #fff; font-family: var(--font-head); text-transform: uppercase; font-size: .82rem; letter-spacing: .02em; }
.article tbody tr:nth-child(even) { background: var(--color-surface); }

/* Tabela comparativa dentro do texto de local-content (páginas de cidade) --
   mesmo tratamento visual da tabela de artigo do blog. */
.table-wrap { overflow-x: auto; margin: 4px 0 8px; clear: both; }
.content-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.content-table th, .content-table td { padding: 10px 14px; border: 1px solid var(--color-divider); text-align: left; white-space: nowrap; }
.content-table th { background: var(--a-900); color: #fff; font-family: var(--font-head); text-transform: uppercase; font-size: .82rem; letter-spacing: .02em; }
.content-table tbody tr:nth-child(even) { background: var(--color-surface); }
.table-note { font-size: .88rem; }

/* Botão de orçamento intercalado no meio do texto de local-content -------- */
.inline-cta { text-align: center; margin: 28px 0; }

/* Fotos de conteúdo integradas ao texto, estilo jornal -- flutuam ao lado
   do parágrafo com legenda, o texto (e o próprio parágrafo) contorna. */
.content-inline-img { max-width: 270px; margin: 6px 0 20px; }
.content-inline-img.float-left { float: left; margin-right: 24px; }
.content-inline-img.float-right { float: right; margin-left: 24px; }
.content-inline-img img { width: 100%; display: block; }
.content-inline-img figcaption {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .03em;
  color: var(--n-700);
  padding-top: 8px;
  margin-top: 8px;
  border-top: 2px solid var(--color-text);
}
.local-content h2 { clear: both; }
@media (max-width: 640px) {
  .content-inline-img { float: none !important; max-width: 100%; margin: 0 0 20px; }
}

/* Cards de ficha técnica (specs por modelo, com ícones) ------------------- */
.spec-card { padding-top: 0; }
.spec-card-line {
  display: block;
  margin: 0 -26px 20px;
  padding: 11px 26px;
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: var(--a-900);
  color: var(--a-100);
  border: 0;
}
.spec-card-line.spec-card-line-slim { background: var(--color-accent); color: var(--a-100); }
.spec-card h3 { font-size: 1.5rem; margin-bottom: 14px; }
.spec-card .product-perks { gap: 11px; padding-top: 16px; border-top: 1px solid var(--color-divider); }
.spec-card .mini-badge { font-size: .86rem; gap: 10px; color: var(--n-800); }
.specs-footnote {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 900px;
  margin: 30px auto 0;
  padding: 16px 22px;
  border: 1px solid var(--color-divider);
  background: var(--color-bg);
  color: var(--n-700);
  font-size: .88rem;
  line-height: 1.5;
}
.specs-footnote svg { flex-shrink: 0; color: var(--color-accent); }

.contact-info p { margin-bottom: 18px; color: var(--n-800); line-height: 1.5; }
.contact-info strong { color: var(--color-text); }

/* Imagem full-width com título sobreposto (seção "O que está incluso") --- */
.inclui-media { position: relative; padding: 0; }
.inclui-media img { display: block; width: 100%; height: auto; }
.inclui-title {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 36px 0 90px;
  background: linear-gradient(180deg, rgba(20, 22, 24, .85) 0%, rgba(20, 22, 24, .5) 60%, transparent 100%);
  text-align: center;
}
.inclui-title h2 { color: #fff; margin: 0; }
@media (max-width: 640px) {
  .inclui-title { padding: 22px 0 50px; }
}

/* =============================================================================
   Mobile
   ========================================================================== */
@media (max-width: 860px) {
  .grid-4, .grid-3, .grid-2, .grid-5, .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .burger { display: block; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: var(--color-bg);
    padding: 20px;
    border-bottom: 1px solid var(--color-divider);
    gap: 16px;
    z-index: 60;
  }
  .segments-grid { grid-template-columns: repeat(2, 1fr); }
}
