/* =============================================================
   Loja Chuva v2.0 - style.css
   -------------------------------------------------------------
   Identidade real da marca: AZUL (gota) + VERDE (colina) + branco.
   Tipografia: Archivo (titulos / letreiro) + Inter (corpo).
   Visual institucional/comercial, loja fisica confiavel.
   ============================================================= */

/* ---- Tokens ---- */
:root {
  /* Azul (cor principal - da gota do logo) */
  --azul-300: #e8f3fc;
  --azul-400: #5fb2ea;
  --azul-500: #2a93dc;
  --azul-600: #1577c2;
  --azul-700: #0e5e9e;
  --azul-800: #0a4a7d;
  --azul-900: #083a61;
  /* Verde (apoio - da colina do logo) */
  --verde-300: #e4f5d8;
  --verde-400: #7bcb53;
  --verde-500: #5fb733;
  --verde-600: #4c9e26;
  --verde-700: #3c8420;
  /* Neutros frios */
  --branco: #ffffff;
  --gelo: #f4f7fb;
  --gelo-200: #e9eff6;
  --linha: #dde6ef;
  --tinta: #15242f;
  --tinta-400: #51647400;
  --cinza: #5a6b7a;
  --cinza-300: #8a99a8;
  --whatsapp: #25d366;

  /* Aliases de compatibilidade (regras antigas) */
  --cor-primaria: var(--azul-600);
  --cor-primaria-escura: var(--azul-800);
  --cor-secundaria: var(--verde-500);
  --cor-grafite: var(--tinta);
  --cor-clara: var(--gelo);
  --cor-branca: #ffffff;
  --cor-whatsapp: var(--whatsapp);
  --verde-800: var(--verde-700);

  --fonte-titulo: "Archivo", system-ui, sans-serif;
  --fonte-corpo: "Inter", system-ui, -apple-system, sans-serif;

  --raio: 16px;
  --raio-sm: 11px;
  --container: 1200px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --sombra-sm: 0 1px 2px rgba(10, 74, 125, 0.06), 0 4px 14px rgba(10, 74, 125, 0.06);
  --sombra-md: 0 10px 26px rgba(10, 74, 125, 0.1), 0 2px 6px rgba(10, 74, 125, 0.06);
  --sombra-lg: 0 26px 56px rgba(8, 58, 97, 0.2);
  --sombra: var(--sombra-md);
}

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--fonte-corpo);
  color: var(--tinta);
  background: var(--branco);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 {
  font-family: var(--fonte-titulo);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--tinta);
  font-weight: 700;
}
img { max-width: 100%; display: block; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--azul-600); color: #fff; }
:focus-visible { outline: 3px solid rgba(42, 147, 220, 0.55); outline-offset: 2px; border-radius: 6px; }

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

/* =============================================================
   BOTOES
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 12px;
  font-family: var(--fonte-corpo); font-weight: 600; font-size: 0.95rem; line-height: 1;
  cursor: pointer; border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background-color 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--sombra-md); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--azul-600); color: #fff; }
.btn--primary:hover { background: var(--azul-700); }
.btn--secondary { background: var(--verde-500); color: #07330a; }
.btn--secondary:hover { background: var(--verde-600); color: #fff; }
.btn--outline { background: transparent; border-color: var(--azul-600); color: var(--azul-700); }
.btn--outline:hover { background: var(--azul-600); color: #fff; }
.btn--outline-light { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); color: #fff; }
.btn--outline-light:hover { background: rgba(255,255,255,0.18); border-color: #fff; }
.btn--whatsapp { background: var(--whatsapp); color: #06351c; font-weight: 700; }
.btn--whatsapp:hover { background: #1fc05c; }
.btn--lg { padding: 1rem 1.9rem; font-size: 1rem; }

/* =============================================================
   HEADER + LOGOMARCA
   ============================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.82);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.site-header--scrolled { box-shadow: var(--sombra-sm); border-bottom-color: var(--linha); background: rgba(255,255,255,0.94); }
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem;
  padding: 0.7rem 1.3rem; max-width: var(--container); margin: 0 auto;
}
.site-header__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.site-header__logo-img {
  display: block;
  height: 56px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
@media (max-width: 768px) {
  .site-header__logo-img {
    height: 44px;
    width: auto;
  }
  .site-footer__logo-img { width: 150px; }
}

.main-nav ul { display: flex; gap: 1.7rem; }
.main-nav a { position: relative; font-weight: 500; font-size: 0.95rem; color: var(--tinta); padding: 0.2rem 0; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: -3px; height: 2px; width: 0; background: var(--verde-500); transition: width 0.3s var(--ease); }
.main-nav a:hover { color: var(--azul-700); }
.main-nav a:hover::after { width: 100%; }

.menu-toggle { display: none; background: none; border: none; font-size: 1.7rem; line-height: 1; cursor: pointer; color: var(--azul-700); }

/* =============================================================
   ESTRUTURA DE SECAO
   ============================================================= */
.page-section { padding: 4.5rem 0; }
.page-section--tint { background: linear-gradient(180deg, var(--gelo) 0%, var(--gelo-200) 100%); }
.page-section--dark {
  background:
    radial-gradient(900px 420px at 88% -10%, rgba(95,183,51,0.22), transparent 60%),
    linear-gradient(155deg, var(--azul-700) 0%, var(--azul-900) 100%);
  color: rgba(255,255,255,0.92);
}
.section-head { max-width: 680px; margin-bottom: 2.6rem; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--fonte-titulo); font-weight: 700; font-size: 0.76rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--verde-600); margin-bottom: 0.8rem;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; border-radius: 3px; background: var(--verde-500); }
.eyebrow--light { color: #bdf0a3; }
.section-head__sub { color: var(--cinza); margin-top: 0.6rem; font-size: 1.05rem; }
.section-foot { margin-top: 2.8rem; text-align: center; }
.page-title { font-size: clamp(1.8rem, 3.8vw, 2.6rem); color: var(--azul-800); font-weight: 800; }
.page-title--light { color: #fff; }
.empty-state { padding: 3rem 1rem; text-align: center; color: var(--cinza); }
.empty-state a { color: var(--azul-700); font-weight: 600; text-decoration: underline; }

/* =============================================================
   PLACEHOLDER DE IMAGEM (.media-ph)
   ============================================================= */
.media-ph { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--azul-300) 0%, #d7e8f7 100%); }
.media-ph::before {
  content: ""; position: absolute; left: 50%; top: 50%; width: 46px; height: 46px;
  transform: translate(-50%, -78%); z-index: 0; opacity: 0.5;
  background-repeat: no-repeat; background-position: center; background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231577c2' stroke-width='1.4'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.6'/%3E%3Cpath d='M21 15l-5-5L5 21'/%3E%3C/svg%3E");
}
.media-ph::after {
  content: "Loja Chuva"; position: absolute; left: 0; right: 0; top: 50%; transform: translateY(14px);
  text-align: center; z-index: 0; font-family: var(--fonte-titulo); font-weight: 700;
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(21,119,194,0.5);
}
.media-ph img { position: relative; z-index: 1; }
.media-ph--dark { background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.03) 100%); }
.media-ph--dark::before { opacity: 0.6; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.4'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.6'/%3E%3Cpath d='M21 15l-5-5L5 21'/%3E%3C/svg%3E"); }
.media-ph--dark::after { color: rgba(255,255,255,0.7); }
img.is-broken { display: none; }

/* =============================================================
   HERO
   ============================================================= */
.hero { position: relative; overflow: hidden; padding: 3.2rem 0 4rem; background: linear-gradient(180deg, #ffffff 0%, var(--gelo) 100%); }
.hero::before {
  content: ""; position: absolute; top: -160px; right: -120px; width: 520px; height: 520px; z-index: 0;
  background: radial-gradient(circle at center, rgba(42,147,220,0.16), transparent 70%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; display: grid; gap: 2.4rem; grid-template-columns: 1fr; align-items: center; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--fonte-titulo);
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--azul-700); background: var(--azul-300); padding: 0.4rem 0.9rem; border-radius: 999px; margin-bottom: 1.1rem;
}
.hero__title { font-size: clamp(2.2rem, 6vw, 3.7rem); font-weight: 800; line-height: 1.02; color: var(--azul-900); }
.hero__title span { color: var(--verde-600); }
.hero__text { margin: 1.3rem 0 1.8rem; max-width: 50ch; font-size: 1.1rem; color: var(--cinza); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 2rem; }
.hero__badges li {
  font-size: 0.82rem; font-weight: 600; color: var(--azul-800);
  padding: 0.45rem 0.95rem; border-radius: 999px; background: #fff; border: 1px solid var(--linha); box-shadow: var(--sombra-sm);
}
.hero__badges li::before { content: "✓ "; color: var(--verde-600); font-weight: 800; }

.hero__media { position: relative; }
.hero__photo {
  position: relative; border-radius: 22px; overflow: hidden; min-height: 300px; aspect-ratio: 4 / 3;
  box-shadow: var(--sombra-lg); border: 5px solid #fff;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
/* chip flutuante sobreposto */
.hero__chip {
  position: absolute; left: -14px; bottom: 22px; z-index: 3;
  display: flex; align-items: center; gap: 0.7rem;
  background: #fff; border-radius: 14px; padding: 0.7rem 1rem; box-shadow: var(--sombra-lg); border: 1px solid var(--linha);
}
.hero__chip svg { width: 30px; height: 30px; flex: none; }
.hero__chip strong { display: block; font-family: var(--fonte-titulo); color: var(--azul-800); font-size: 0.95rem; line-height: 1.1; }
.hero__chip span { font-size: 0.8rem; color: var(--cinza); }

/* =============================================================
   FAIXA DE MARCAS
   ============================================================= */
.brands { background: var(--branco); border-top: 1px solid var(--linha); border-bottom: 1px solid var(--linha); }
.brands__inner { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem 2.4rem; padding: 1.4rem 1.3rem; justify-content: center; }
.brands__label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--cinza-300); font-weight: 600; }
.brands__list { display: flex; flex-wrap: wrap; gap: 1.2rem 2rem; align-items: center; }
.brands__item {
  font-family: var(--fonte-titulo); font-weight: 800; letter-spacing: 0.02em; font-size: 1.15rem;
  color: var(--azul-800); opacity: 0.75; transition: opacity 0.3s var(--ease), color 0.3s var(--ease);
}
.brands__item:hover { opacity: 1; color: var(--azul-600); }

/* =============================================================
   CATEGORIAS (bento)
   ============================================================= */
.bento { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
.bento-card {
  position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 180px; padding: 1.5rem; border-radius: var(--raio); color: #fff;
  background: linear-gradient(150deg, var(--azul-600), var(--azul-800));
  box-shadow: var(--sombra-sm); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.bento-card:nth-child(2) { background: linear-gradient(150deg, var(--verde-500), var(--verde-700)); }
.bento-card:nth-child(3) { background: linear-gradient(150deg, var(--azul-500), var(--azul-700)); }
.bento-card:nth-child(4) { background: linear-gradient(150deg, var(--azul-800), var(--azul-900)); }
.bento-card:hover { transform: translateY(-5px); box-shadow: var(--sombra-lg); }
.bento-card svg { width: 30px; height: 30px; color: rgba(255,255,255,0.92); margin-bottom: auto; }
.bento-card h3 { color: #fff; font-size: 1.3rem; margin-top: 1rem; }
.bento-card p { font-size: 0.9rem; color: rgba(255,255,255,0.85); margin-top: 0.25rem; }
.bento-card__go { margin-top: 0.9rem; font-weight: 600; font-size: 0.88rem; color: #fff; }
.bento-card__go::after { content: " →"; }
.bento-card::after { content: ""; position: absolute; right: -40px; top: -40px; width: 150px; height: 150px; border-radius: 50%; background: rgba(255,255,255,0.08); }

/* =============================================================
   GRADE / CARDS DE PRODUTO
   ============================================================= */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(258px, 1fr)); gap: 1.5rem; }
.product-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--linha); border-radius: var(--raio);
  box-shadow: var(--sombra-sm); overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--sombra-lg); border-color: var(--azul-400); }
.product-card__media { position: relative; display: block; aspect-ratio: 4 / 3; background: var(--gelo); }
.product-card__media img { width: 100%; height: 100%; object-fit: contain; padding: 0.7rem; transition: transform 0.6s var(--ease); }
.product-card:hover .product-card__media img { transform: scale(1.05); }
.product-card__badge {
  position: absolute; top: 0.8rem; left: 0.8rem; z-index: 2;
  font-family: var(--fonte-titulo); font-weight: 800; font-size: 0.66rem; letter-spacing: 0.08em;
  color: #fff; background: var(--azul-700); padding: 0.28rem 0.6rem; border-radius: 7px; box-shadow: var(--sombra-sm);
}
.product-card__body { padding: 1.1rem 1.2rem 1.2rem; display: flex; flex-direction: column; gap: 0.35rem; flex: 1; }
.product-card__cat { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--verde-600); font-weight: 700; }
.product-card__title { font-size: 1.1rem; color: var(--azul-900); line-height: 1.2; }
.product-card__foot { margin-top: auto; padding-top: 0.9rem; display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; }
.product-card__link { font-weight: 700; font-size: 0.9rem; color: var(--azul-700); }
.product-card:hover .product-card__link { color: var(--azul-600); }
.product-card__wa {
  display: inline-flex; align-items: center; justify-content: center; flex: none;
  width: 42px; height: 42px; border-radius: 11px; background: var(--whatsapp); color: #fff;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease);
}
.product-card__wa svg { width: 22px; height: 22px; }
.product-card__wa:hover { transform: translateY(-2px); background: #1fc05c; }

/* =============================================================
   PAGINA DE PRODUTO
   ============================================================= */
.breadcrumb { font-size: 0.85rem; color: var(--cinza); margin-bottom: 1.8rem; }
.breadcrumb a { color: var(--cinza); }
.breadcrumb a:hover { color: var(--azul-700); }
.product-detail { display: grid; gap: 2.4rem; }
.product-detail__media {
  border-radius: var(--raio); box-shadow: var(--sombra-sm); border: 1px solid var(--linha);
  min-height: 340px; display: flex; align-items: center; justify-content: center; background: #fff;
}
.product-detail__media img { max-height: 420px; width: auto; object-fit: contain; padding: 1.5rem; }
.product-detail__brand { display: inline-block; font-family: var(--fonte-titulo); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 800; color: #fff; background: var(--azul-700); padding: 0.28rem 0.6rem; border-radius: 7px; }
.product-detail__title { margin: 0.7rem 0 0.3rem; font-size: clamp(1.7rem, 3.6vw, 2.3rem); color: var(--azul-900); }
.product-detail__category { color: var(--verde-600); font-weight: 600; margin-bottom: 1.2rem; }
.product-detail__short { font-size: 1.12rem; font-weight: 500; color: var(--tinta); }
.product-detail__long { margin-top: 0.6rem; color: var(--cinza); }
.product-detail__info h2 { margin: 1.9rem 0 0.7rem; font-size: 1.15rem; color: var(--azul-800); }
.product-detail__apps { display: grid; gap: 0.4rem; }
.product-detail__apps li { padding-left: 1.4rem; position: relative; color: var(--cinza); }
.product-detail__apps li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 7px; height: 7px; border-radius: 50%; background: var(--verde-500); }
.product-detail__specs { width: 100%; border-collapse: collapse; border: 1px solid var(--linha); border-radius: var(--raio-sm); overflow: hidden; }
.product-detail__specs th, .product-detail__specs td { text-align: left; padding: 0.7rem 0.95rem; border-bottom: 1px solid var(--linha); font-size: 0.92rem; }
.product-detail__specs tr:last-child th, .product-detail__specs tr:last-child td { border-bottom: none; }
.product-detail__specs th { text-transform: capitalize; width: 42%; background: var(--gelo); color: var(--azul-800); font-weight: 600; }
.product-detail__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.8rem; }

/* =============================================================
   SOBRE (institucional, bloco azul)
   ============================================================= */
.about { display: grid; gap: 2.6rem; grid-template-columns: 1fr; align-items: center; }
.about p { color: rgba(255,255,255,0.88); margin-bottom: 1rem; max-width: 58ch; }
.about__stats { display: flex; flex-wrap: wrap; gap: 1.6rem 2.4rem; margin-top: 1.6rem; }
.about__stat { position: relative; padding-left: 1rem; }
.about__stat::before { content: ""; position: absolute; left: 0; top: 0.15em; bottom: 0.15em; width: 3px; border-radius: 3px; background: var(--verde-500); }
.about__stat strong { display: block; font-family: var(--fonte-titulo); font-size: 1.05rem; color: #fff; }
.about__stat span { font-size: 0.85rem; color: rgba(255,255,255,0.75); }
.about__photo { position: relative; border-radius: var(--raio); overflow: hidden; min-height: 280px; box-shadow: var(--sombra-lg); border: 4px solid rgba(255,255,255,0.12); }
.about__photo img { width: 100%; height: 100%; object-fit: cover; }

/* =============================================================
   SERVICOS (painel + lista, sem cards repetidos)
   ============================================================= */
.services { display: grid; gap: 2rem; grid-template-columns: 1fr; align-items: center; }
.services__panel { background: #fff; border: 1px solid var(--linha); border-radius: var(--raio); padding: 1.8rem; box-shadow: var(--sombra-sm); }
.services__list { display: grid; gap: 0.4rem; }
.services__list li { display: flex; gap: 0.9rem; align-items: flex-start; padding: 0.9rem 0; border-bottom: 1px dashed var(--linha); }
.services__list li:last-child { border-bottom: none; }
.services__list svg { width: 26px; height: 26px; flex: none; color: var(--azul-600); margin-top: 0.1rem; }
.services__list strong { display: block; color: var(--azul-800); font-family: var(--fonte-titulo); font-size: 1.02rem; }
.services__list span { font-size: 0.9rem; color: var(--cinza); }
.services__photo { position: relative; border-radius: var(--raio); overflow: hidden; min-height: 280px; box-shadow: var(--sombra-md); }
.services__photo img { width: 100%; height: 100%; object-fit: cover; }

/* =============================================================
   CONTATO + MAPA (integrados)
   ============================================================= */
.contact { display: grid; gap: 1.6rem; grid-template-columns: 1fr; }
.contact__card { background: #fff; border: 1px solid var(--linha); border-radius: var(--raio); padding: 1.8rem; box-shadow: var(--sombra-sm); }
.contact__list { display: grid; gap: 1.2rem; margin: 1.3rem 0 1.6rem; }
.contact__list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact__ico { width: 40px; height: 40px; flex: none; border-radius: 11px; background: var(--azul-300); color: var(--azul-700); display: flex; align-items: center; justify-content: center; }
.contact__ico svg { width: 20px; height: 20px; }
.contact__label { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--verde-600); font-weight: 700; margin-bottom: 0.15rem; }
.contact__val { color: var(--tinta); font-weight: 500; }
.contact__social { display: flex; gap: 0.6rem; margin-top: 0.4rem; }
.contact__social a { width: 42px; height: 42px; border-radius: 11px; display: inline-flex; align-items: center; justify-content: center; background: var(--gelo); border: 1px solid var(--linha); color: var(--azul-700); transition: background-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease); }
.contact__social a:hover { background: var(--azul-600); color: #fff; transform: translateY(-3px); }
.contact__social svg { width: 19px; height: 19px; }
.contact__map { position: relative; border-radius: var(--raio); overflow: hidden; box-shadow: var(--sombra-md); border: 1px solid var(--linha); min-height: 320px; }
.contact__map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
.map-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; text-align: center;
  height: 100%; min-height: 320px; background: linear-gradient(135deg, var(--azul-300), #d7e8f7); color: var(--azul-800); padding: 1.5rem;
}
.map-placeholder svg { width: 36px; height: 36px; color: var(--azul-700); }
.map-placeholder span { font-weight: 700; font-family: var(--fonte-titulo); }
.map-placeholder small { color: var(--cinza); }

/* Banda de cabecalho (catalogo) */
.catalog-hero { position: relative; overflow: hidden; color: #fff; padding: 3rem 0;
  background: radial-gradient(700px 320px at 88% -20%, rgba(95,183,51,0.2), transparent 60%), linear-gradient(155deg, var(--azul-700) 0%, var(--azul-900) 100%); }
.catalog-hero__crumb { font-size: 0.82rem; color: rgba(255,255,255,0.72); margin-bottom: 0.9rem; }
.catalog-hero__crumb a { color: rgba(255,255,255,0.72); }
.catalog-hero__crumb a:hover { color: var(--verde-400); }
.catalog-hero__title { font-size: clamp(1.9rem, 4.5vw, 2.8rem); color: #fff; }
.catalog-hero__sub { margin-top: 0.7rem; max-width: 60ch; color: rgba(255,255,255,0.85); }

/* =============================================================
   CATALOGO - BUSCA E FILTROS
   ============================================================= */
.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;
}
.catalog-toolbar {
  display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; margin-bottom: 1.2rem;
}
.catalog-search { position: relative; flex: 1 1 260px; }
.catalog-search svg {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; color: var(--cinza-300); pointer-events: none;
}
.catalog-search input {
  width: 100%; padding: 0.9rem 1rem 0.9rem 2.7rem; font: inherit; color: var(--tinta);
  background: #fff; border: 1px solid var(--linha); border-radius: 12px; box-shadow: var(--sombra-sm);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.catalog-search input::placeholder { color: var(--cinza-300); }
.catalog-search input:focus { outline: none; border-color: var(--azul-500); box-shadow: 0 0 0 3px rgba(42,147,220,0.18); }

.catalog-select select {
  font: inherit; color: var(--tinta); cursor: pointer;
  padding: 0.9rem 2.4rem 0.9rem 1rem; background-color: #fff;
  border: 1px solid var(--linha); border-radius: 12px; box-shadow: var(--sombra-sm);
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a6b7a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.8rem center; background-size: 18px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.catalog-select select:focus { outline: none; border-color: var(--azul-500); box-shadow: 0 0 0 3px rgba(42,147,220,0.18); }

.catalog-clear {
  font: inherit; font-weight: 600; color: var(--azul-700); background: none; border: none; cursor: pointer;
  padding: 0.6rem 0.4rem; text-decoration: underline; text-underline-offset: 3px;
}
.catalog-clear:hover { color: var(--azul-600); }

.catalog-chips { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-bottom: 1.2rem; }
.catalog-chip {
  font: inherit; font-weight: 600; font-size: 0.88rem; color: var(--azul-800); cursor: pointer;
  padding: 0.5rem 1rem; border-radius: 999px; background: #fff; border: 1px solid var(--linha);
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.2s var(--ease);
}
.catalog-chip:hover { border-color: var(--azul-400); transform: translateY(-1px); }
.catalog-chip.is-active { background: var(--azul-600); color: #fff; border-color: var(--azul-600); }

.catalog-count { color: var(--cinza); font-size: 0.92rem; font-weight: 500; margin-bottom: 1.3rem; }

.link-button {
  font: inherit; font-weight: 600; color: var(--azul-700); background: none; border: none;
  cursor: pointer; text-decoration: underline; text-underline-offset: 3px;
}

@media (max-width: 600px) {
  .catalog-search { flex-basis: 100%; }
  .catalog-select { flex: 1 1 auto; }
  .catalog-select select { width: 100%; }
}

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer { background: linear-gradient(155deg, var(--azul-800) 0%, var(--azul-900) 100%); color: rgba(255,255,255,0.78); padding: 3.4rem 0 1.4rem; }
.site-footer__grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.site-footer__brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.9rem;
}
.site-footer__logo-img {
  display: block;
  width: 180px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.site-footer h4 { margin-bottom: 0.8rem; color: #fff; font-size: 1.05rem; }
.site-footer a { color: rgba(255,255,255,0.78); transition: color 0.25s var(--ease); }
.site-footer a:hover { color: var(--verde-400); }
.site-footer ul { display: grid; gap: 0.45rem; }
.site-footer__social { display: flex; gap: 0.7rem; margin-top: 1rem; }
.site-footer__social a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); transition: background-color 0.3s var(--ease), transform 0.3s var(--ease); }
.site-footer__social a:hover { background: var(--verde-500); transform: translateY(-3px); }
.site-footer__social svg { width: 19px; height: 19px; color: #fff; }
.site-footer__bottom { margin-top: 2.2rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,0.14); font-size: 0.84rem; text-align: center; color: rgba(255,255,255,0.6); }

/* =============================================================
   BOTAO FLUTUANTE WHATSAPP
   ============================================================= */
.whatsapp-float { position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 200; width: 58px; height: 58px; border-radius: 50%; background: var(--whatsapp); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 24px rgba(37,211,102,0.45); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 14px 30px rgba(37,211,102,0.55); }

/* =============================================================
   RESPONSIVO
   ============================================================= */
@media (min-width: 760px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .site-header__cta { display: inline-flex; }
}
@media (min-width: 980px) {
  .hero { padding: 4.5rem 0 5rem; }
  .hero__inner { grid-template-columns: 1.04fr 0.96fr; gap: 3.5rem; }
  .hero__photo { aspect-ratio: 5 / 4; }
  .about { grid-template-columns: 0.92fr 1.08fr; }
  .services { grid-template-columns: 1.1fr 0.9fr; }
  .contact { grid-template-columns: 0.95fr 1.05fr; align-items: stretch; }
  .product-detail { grid-template-columns: 1fr 1fr; align-items: start; }
  /* bento com 1 destaque maior */
  .bento { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; }
  .bento-card:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .bento-card:nth-child(4) { grid-column: span 2; }
}

.site-header__cta { display: none; }

@media (max-width: 759px) {
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: 100%; left: 0; right: 0; background: rgba(255,255,255,0.98); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); box-shadow: var(--sombra-md); border-top: 1px solid var(--linha); display: none; }
  .main-nav.is-open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0.2rem; padding: 0.8rem 1.3rem 1.2rem; }
  .main-nav li { border-bottom: 1px solid var(--linha); }
  .main-nav li:last-child { border-bottom: none; }
  .main-nav a { display: block; padding: 0.85rem 0; }
}

/* =============================================================
   POLISH v2 - acabamento premium (overrides finais)
   ============================================================= */

/* Ritmo: mais respiro entre secoes */
.page-section { padding: 5.25rem 0; }
.section-head { position: relative; }

/* Tipografia do hero mais forte */
.hero__title { font-size: clamp(2.4rem, 6.4vw, 4rem); letter-spacing: -0.03em; }
.hero { padding-bottom: 4.6rem; }

/* Hero: foto com overlay duotone azul + canto de acento verde (profundidade) */
.hero__photo-overlay {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; border-radius: inherit;
  background: linear-gradient(202deg, rgba(21,119,194,0) 42%, rgba(10,74,125,0.45) 100%);
}
.hero__photo-corner {
  position: absolute; z-index: 3; left: 14px; top: 14px; width: 56px; height: 56px; pointer-events: none;
  border-top: 4px solid var(--verde-500); border-left: 4px solid var(--verde-500); border-top-left-radius: 16px;
}

/* Marca d'agua (gota) discreta nos blocos azul-escuros */
.page-section--dark { position: relative; overflow: hidden; }
.page-section--dark::after {
  content: ""; position: absolute; right: -70px; bottom: -90px; width: 340px; height: 340px; z-index: 0;
  opacity: 0.06; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='%23ffffff'%3E%3Cpath d='M24 3C24 3 8 21 8 31a16 16 0 0 0 32 0C40 21 24 3 24 3Z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.page-section--dark > .container { position: relative; z-index: 1; }

/* Linha tecnica discreta no card */
.product-card__meta {
  font-size: 0.82rem; color: var(--cinza); margin-top: 0.1rem;
  padding-top: 0.5rem; border-top: 1px solid var(--gelo-200);
}

/* Selo de marca do card: leve degrade para dar peso */
.product-card__badge { background: linear-gradient(150deg, var(--azul-600), var(--azul-800)); }

/* Faixa de marcas: separadores discretos entre nomes */
.brands__list { gap: 0.9rem 1.6rem; }
.brands__item { position: relative; padding-right: 1.6rem; }
.brands__item:not(:last-child)::after {
  content: ""; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 16px; background: var(--linha);
}

/* Bento: titulo um pouco maior e sombra de texto para leitura sobre cor */
.bento-card h3 { text-shadow: 0 1px 8px rgba(8,58,97,0.25); }

/* Cartao de contato e mapa com a mesma altura no desktop */
@media (min-width: 980px) {
  .contact__card, .contact__map { height: 100%; }
}

/* =============================================================
   GALERIA / SHOWROOM
   ============================================================= */
.gallery { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
.gallery__item {
  position: relative; overflow: hidden; border-radius: var(--raio); min-height: 240px;
  box-shadow: var(--sombra-md); border: 1px solid var(--linha);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 0.85rem 1.1rem;
  color: #fff; font-weight: 600; font-family: var(--fonte-titulo); font-size: 0.98rem;
  background: linear-gradient(0deg, rgba(8,58,97,0.88), transparent);
}
@media (min-width: 760px) {
  .gallery { grid-template-columns: 1.45fr 1fr; grid-auto-rows: 320px; }
}

/* =============================================================
   FAIXA "DO CAMPO AO JARDIM" (cover band)
   ============================================================= */
.cover-band {
  position: relative; overflow: hidden; min-height: 360px; display: flex; align-items: center;
  background: linear-gradient(155deg, var(--azul-700) 0%, var(--azul-900) 100%); color: #fff;
}
.cover-band__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cover-band__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(8,58,97,0.88) 0%, rgba(8,58,97,0.6) 45%, rgba(8,58,97,0.12) 100%);
}
.cover-band__content { position: relative; z-index: 2; padding: 3.6rem 1.3rem; max-width: 640px; }
.cover-band__title { color: #fff; font-size: clamp(1.7rem, 3.8vw, 2.6rem); margin: 0.3rem 0 0.7rem; }
.cover-band__text { color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; max-width: 46ch; }

/* =============================================================
   SERVICOS - banner + lista
   ============================================================= */
.service-banner {
  position: relative; overflow: hidden; border-radius: var(--raio);
  box-shadow: var(--sombra-md); border: 1px solid var(--linha); aspect-ratio: 21 / 9;
}
.service-banner img { width: 100%; height: 100%; object-fit: cover; }
.services__list--grid { display: grid; gap: 0.2rem 2.2rem; max-width: 940px; margin: 1.8rem auto 0; }
@media (min-width: 760px) {
  .services__list--grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .service-banner { aspect-ratio: 16 / 11; }
}

/* =============================================================
   GALERIA - 3 fotos (grande + duas)
   ============================================================= */
@media (min-width: 760px) {
  .gallery { grid-template-columns: 2fr 1fr; grid-auto-rows: 224px; }
  .gallery__item--lg { grid-row: span 2; }
}

/* =============================================================
   CATALOGO COMPLETO - hero brands, filtros, chips, skeleton
   ============================================================= */
.catalog-hero__brands { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.4rem; }
.catalog-hero__brand {
  font-family: var(--fonte-titulo); font-weight: 800; font-size: 0.95rem; color: #fff;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  padding: 0.4rem 0.95rem; border-radius: 999px;
  transition: background-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.catalog-hero__brand:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }

.catalog-filter-toggle {
  display: none; align-items: center; justify-content: center; gap: 0.5rem; width: 100%;
  font: inherit; font-weight: 600; color: var(--azul-700); background: #fff;
  border: 1px solid var(--linha); border-radius: 12px; padding: 0.85rem 1rem; cursor: pointer;
  margin-bottom: 1rem; box-shadow: var(--sombra-sm);
}
.catalog-filter-toggle svg { width: 18px; height: 18px; }

.catalog-panel {
  display: flex; flex-direction: column; gap: 1.1rem; background: #fff;
  border: 1px solid var(--linha); border-radius: var(--raio); padding: 1.2rem;
  box-shadow: var(--sombra-sm); margin-bottom: 1.2rem;
}
.catalog-filter__label {
  display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--cinza-300); font-weight: 700; margin-bottom: 0.5rem;
}
.catalog-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.catalog-pill {
  font: inherit; font-weight: 600; font-size: 0.88rem; color: var(--azul-800); cursor: pointer;
  padding: 0.45rem 1.05rem; border-radius: 999px; background: #fff; border: 1px solid var(--linha);
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.2s var(--ease);
}
.catalog-pill:hover { border-color: var(--azul-400); transform: translateY(-1px); }
.catalog-pill.is-active { background: var(--azul-600); color: #fff; border-color: var(--azul-600); }

.catalog-filter--row { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.catalog-field { display: flex; flex-direction: column; }
.catalog-field select {
  font: inherit; color: var(--tinta); cursor: pointer; width: 100%;
  padding: 0.8rem 2.4rem 0.8rem 1rem; background-color: #fff;
  border: 1px solid var(--linha); border-radius: 12px;
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a6b7a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.8rem center; background-size: 18px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.catalog-field select:focus { outline: none; border-color: var(--azul-500); box-shadow: 0 0 0 3px rgba(42,147,220,0.18); }
@media (min-width: 680px) { .catalog-filter--row { grid-template-columns: repeat(3, 1fr); } }

.catalog-active { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; margin-bottom: 1rem; }
.catalog-activechip {
  display: inline-flex; align-items: center; gap: 0.35rem; background: var(--azul-300); color: var(--azul-800);
  font-size: 0.85rem; font-weight: 600; padding: 0.32rem 0.4rem 0.32rem 0.8rem; border-radius: 999px;
}
.catalog-activechip button {
  border: none; background: rgba(10,74,125,0.14); color: var(--azul-800); width: 20px; height: 20px;
  border-radius: 50%; cursor: pointer; font-size: 1.05rem; line-height: 1; display: flex; align-items: center; justify-content: center;
}
.catalog-activechip button:hover { background: var(--azul-600); color: #fff; }

.catalog-more { text-align: center; margin-top: 2.2rem; }

/* Grade: 3 colunas desktop, 2 tablet, 1 mobile */
@media (min-width: 980px) { .catalog .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 680px) and (max-width: 979px) { .catalog .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 679px) { .catalog .product-grid { grid-template-columns: 1fr; } }

/* Card: nome menor + descricao curta */
.product-card__name { font-size: 0.82rem; color: var(--cinza); }
.product-card__desc {
  font-size: 0.88rem; color: var(--cinza); margin-top: 0.1rem;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
/* Badges por marca */
.product-card__badge[data-brand="STIHL"] { background: #ea5b0c; }
.product-card__badge[data-brand="Toyama"] { background: #d81e05; }

/* Skeleton loading */
.skeleton-card { border: 1px solid var(--linha); border-radius: var(--raio); overflow: hidden; background: #fff; }
.skeleton-card__media { aspect-ratio: 4 / 3; background: var(--gelo-200); }
.skeleton-card__body { padding: 1.1rem; display: flex; flex-direction: column; gap: 0.6rem; }
.sk {
  height: 12px; border-radius: 6px;
  background: linear-gradient(90deg, #eef2f7 25%, #e2e9f1 37%, #eef2f7 63%);
  background-size: 400% 100%; animation: sk-shimmer 1.3s ease infinite;
}
.sk--sm { width: 40%; } .sk--md { width: 70%; } .sk--lg { width: 90%; height: 18px; }
@keyframes sk-shimmer { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }

/* Filtros colapsaveis no mobile */
@media (max-width: 759px) {
  .catalog-filter-toggle { display: flex; }
  .catalog-panel { display: none; }
  .catalog-panel.is-open { display: flex; }
}
@media (prefers-reduced-motion: reduce) { .sk { animation: none; } }

/* =============================================================
   HERO — imagem de fundo (sacada da loja) + overlay
   ============================================================= */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 5rem;
  overflow: hidden;
  background: var(--azul-900);
}
.hero::before { display: none; } /* remove textura antiga do hero anterior */
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 28, 48, 0.86) 0%, rgba(7, 28, 48, 0.62) 42%, rgba(7, 28, 48, 0.30) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.45) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: block;
  grid-template-columns: none;
}
.hero__content { max-width: 680px; }
.hero__title { color: #fff; }
.hero__title span { color: #8fe06a; }
.hero__text { color: rgba(255, 255, 255, 0.92); }
@media (max-width: 600px) {
  .hero { min-height: 60vh; padding: 5.5rem 0 3.6rem; }
}

/* =============================================================
   REDESIGN v3 — melhorias de design 2026-06
   ============================================================= */

/* --- HEADER: posição fixa para continuidade visual com o hero --- */
.site-header {
  position: fixed;
  left: 0;
  right: 0;
}

/* Quando sobre hero ou catalog-hero: fundo escuro semi-transparente */
.site-header--over-hero:not(.site-header--scrolled) {
  background: rgba(7, 22, 42, 0.65);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border-bottom-color: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}
.site-header--over-hero:not(.site-header--scrolled) .main-nav a {
  color: rgba(255, 255, 255, 0.92);
}
.site-header--over-hero:not(.site-header--scrolled) .main-nav a:hover {
  color: #fff;
}
.site-header--over-hero:not(.site-header--scrolled) .main-nav a::after {
  background: rgba(255, 255, 255, 0.75);
}
.site-header--over-hero:not(.site-header--scrolled) .menu-toggle {
  color: rgba(255, 255, 255, 0.92);
}

/* Ao rolar: fundo branco nítido com blur */
.site-header--scrolled {
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
/* Garante texto escuro ao rolar (override do estado hero) */
.site-header--scrolled .main-nav a { color: var(--tinta); }
.site-header--scrolled .menu-toggle { color: var(--azul-700); }

/* Catálogo: aumenta padding-top pois o header fixo cobre os 3rem originais */
.catalog-hero { padding-top: 5.5rem; }

/* --- HERO: reposiciona a imagem da sacada para mostrar loja sem corte --- */
.hero__bg { object-position: right center; }

/* --- BENTO: cards com foto real como fundo imersivo -------------------- */
.bento-card {
  min-height: 220px;
  background: var(--azul-900);
}
.bento-card:nth-child(2),
.bento-card:nth-child(3),
.bento-card:nth-child(4) {
  background: var(--azul-900);
}

/* Remove o círculo decorativo antigo */
.bento-card::after { display: none; }

/* Overlay gradiente escuro sobre a foto (legibilidade do texto) */
.bento-card::before {
  content: "";
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(
    0deg,
    rgba(6, 18, 34, 0.93) 0%,
    rgba(6, 18, 34, 0.58) 50%,
    rgba(6, 18, 34, 0.16) 100%
  );
}

/* Foto de fundo */
.bento-card__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
  transition: transform 0.65s var(--ease);
}
.bento-card:hover .bento-card__img { transform: scale(1.06); }

/* Todo o conteúdo textual fica acima do overlay */
.bento-card > *:not(.bento-card__img) { position: relative; z-index: 2; }
.bento-card svg { color: rgba(255, 255, 255, 0.9); }

/* Layout bento desktop: 3 colunas, 2 linhas — assimétrico e impactante */
@media (min-width: 980px) {
  .bento {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 285px 285px;
    grid-auto-rows: unset;
  }
  .bento-card:nth-child(1) { grid-column: 1;     grid-row: 1 / 3; } /* alto à esquerda  */
  .bento-card:nth-child(2) { grid-column: 2;     grid-row: 1;     }
  .bento-card:nth-child(3) { grid-column: 3;     grid-row: 1;     }
  .bento-card:nth-child(4) { grid-column: 2 / 4; grid-row: 2;     } /* largo à direita  */
}

/* Tablet: 2 colunas uniformes sem spans especiais */
@media (min-width: 760px) and (max-width: 979px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-card:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .bento-card:nth-child(4) { grid-column: span 1; }
  .bento-card { min-height: 240px; }
}

/* --- CATÁLOGO: reduz vão entre o hero e o painel de filtros ----------- */
.page-section--compact-top { padding-top: 2.5rem; }

/* Corrige flex-basis 260px virando HEIGHT no column-flex do catalog-panel */
.catalog-panel > .catalog-search { flex: none; }

/* --- HERO: overlay sólido esquerda — título não sobrepõe a sacada ------ */
.hero__overlay {
  background:
    linear-gradient(
      90deg,
      rgba(7, 28, 48, 1.00)  0%,
      rgba(7, 28, 48, 1.00) 44%,
      rgba(7, 28, 48, 0.70) 55%,
      rgba(7, 28, 48, 0.16) 70%,
      rgba(7, 28, 48, 0.02) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.50) 100%);
}
.hero__content { max-width: 510px; }

/* --- BENTO jardinagem: centraliza no personagem (não cortar corpo) ------- */
.bento-card:nth-child(1) .bento-card__img {
  object-position: 80% 30%;
}

/* --- LOGO: maior e sem excesso de espaço branco à direita --------------- */
.site-header__logo-img {
  height: 66px;
  width: 200px;
  object-fit: contain;
  object-position: left center;
}
@media (max-width: 768px) {
  .site-header__logo-img {
    height: 50px;
    width: 148px;
    object-fit: contain;
    object-position: left center;
  }
}

/* --- COVER-BAND: redesign split-screen — texto esquerda | foto direita -- */
.cover-band {
  background: linear-gradient(155deg, var(--azul-700) 0%, var(--azul-900) 100%);
  display: block;
  min-height: auto;
  padding: 0;
}
/* Oculta elementos antigos do full-bleed (mantidos no HTML por segurança) */
.cover-band > .cover-band__img,
.cover-band > .cover-band__overlay,
.cover-band > .cover-band__content { display: none; }

/* Grid 2 colunas: conteúdo + painel de foto */
.cover-band__split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 460px;
  align-items: center;
  width: 100%;
}
.cover-band__split-left {
  padding: 4.5rem 3rem 4.5rem 1.3rem;
  max-width: 640px;
}
/* Painel da foto (direita) */
.cover-band__split-right {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  align-self: stretch;
}
.cover-band__split-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
/* Gradiente de fusão na borda esquerda da foto */
.cover-band__split-right::before {
  content: "";
  position: absolute; top: 0; left: 0; bottom: 0; width: 38%;
  background: linear-gradient(90deg, #062545, transparent);
  z-index: 1; pointer-events: none;
}
/* Tênue escurecimento geral da foto */
.cover-band__split-right::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(6, 37, 69, 0.22);
  z-index: 1; pointer-events: none;
}

/* Mobile: empilha foto em baixo do texto */
@media (max-width: 979px) {
  .cover-band__split {
    grid-template-columns: 1fr;
  }
  .cover-band__split-left {
    padding: 3.5rem 1.3rem;
    max-width: 100%;
  }
  .cover-band__split-right {
    min-height: 240px;
  }
}

/* --- SERVIÇOS "Não é só vender": banner em proporção natural ----------- */
.service-banner {
  aspect-ratio: auto;
}
.service-banner img {
  width: 100%;
  height: auto;
  object-fit: initial;
  display: block;
}
@media (max-width: 600px) {
  .service-banner { aspect-ratio: auto; }
}

/* Cabeçalho da seção de serviços: mais espaço e destaque */
#servicos .section-head { max-width: 800px; }
#servicos .page-title {
  font-size: clamp(1.9rem, 4.2vw, 2.9rem);
  line-height: 1.05;
}
#servicos .page-title em {
  font-style: normal;
  color: var(--verde-600);
}
.services__list--grid { margin-top: 2.2rem; }

/* ================================================================
   CATÁLOGO: banner hero com imagem full-width
   ================================================================ */

/* Sobrescreve o padding genérico do catalog-hero para o banner */
.catalog-hero--banner {
  background: var(--azul-900);   /* fundo escuro visível sob o header transparente */
  padding: 0;
}

/* Compensação pelo header fixo (mesmo valor usado em .catalog-hero) */
.catalog-hero--banner .catalog-hero__banner-wrap {
  padding-top: 74px;             /* header desktop ≈ 74 px */
  line-height: 0;
  overflow: hidden;
}

/* Imagem: edge-to-edge, proporção natural — sem nenhum corte */
.catalog-hero__banner-img {
  display: block;
  width: 100%;
  height: auto;          /* altura natural da imagem (2.5:1) */
  object-fit: unset;     /* sem crop */
  max-width: 100%;
}

/* Wrapper full-width branco para o footer — evita o fundo escuro da section nas laterais */
.catalog-hero__foot-bar {
  background: #fff;
  border-bottom: 1px solid var(--azul-100);
  width: 100%;
}

/* Barra interior: breadcrumb à esquerda + chips de marca à direita */
.catalog-hero__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  padding-top: 0.9rem;
  padding-bottom: 1rem;
}

/* Breadcrumb com cor escura (fundo branco) */
.catalog-hero--banner .catalog-hero__crumb,
.catalog-hero--banner .catalog-hero__crumb a {
  color: var(--azul-700);
}
.catalog-hero--banner .catalog-hero__crumb a:hover {
  color: var(--azul-900);
}

/* Oculta o título e subtítulo do hero quando o banner está ativo
   (a informação já está na imagem) */
.catalog-hero--banner .catalog-hero__title,
.catalog-hero--banner .catalog-hero__sub { display: none; }

/* ---- Mobile -------------------------------------------------- */
@media (max-width: 768px) {
  .catalog-hero--banner .catalog-hero__banner-wrap {
    padding-top: 60px;           /* header mobile ≈ 60 px */
  }
  .catalog-hero__foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding-bottom: 0.9rem;
  }
}

/* ================================================================
   MOBILE — otimização completa (max-width: 768px / 480px)
   ================================================================ */

@media (max-width: 768px) {
  /* Seções: respiro vertical menor em telas compactas */
  .page-section { padding: 3.6rem 0; }

  /* Hero: botões em coluna, largura igual (evita botões com tamanhos diferentes) */
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Hero: badges em grade 2 colunas (evita lista longa vertical) */
  .hero__badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  /* Cover-band: título com fonte menor para caber na tela sem overflow */
  .cover-band__title {
    font-size: clamp(1.4rem, 5vw, 1.85rem);
    overflow-wrap: break-word;
    word-break: break-word;
  }

  /* Cover-band: garante que o conteúdo da esquerda não vaze */
  .cover-band__split-left {
    overflow-wrap: break-word;
    overflow: hidden;
  }

  /* Cover-band: botão de CTA full-width */
  .cover-band__split-left .btn {
    width: 100%;
    justify-content: center;
  }

  /* Sobre: foto menor para dar mais espaço ao texto */
  .about__photo { min-height: 220px; }

  /* Contato: mapa com altura menor e adequada */
  .contact__map { min-height: 260px; }
  .contact__map iframe { min-height: 260px; }
  .contact__map-frame { min-height: 260px !important; }

  /* Catálogo: grade de 2 colunas no tablet médio */
  .catalog .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  /* Seções: padding bem compacto */
  .page-section { padding: 3rem 0; }

  /* Hero: título menor em telas muito pequenas */
  .hero__title { font-size: clamp(1.9rem, 7.5vw, 2.5rem); }

  /* Hero: texto descritivo menor */
  .hero__text { font-size: 1rem; }

  /* Bento: cards com altura mínima boa para imagem aparecer */
  .bento-card { min-height: 200px; }

  /* Catálogo: grade de 1 coluna em telas pequenas */
  .catalog .product-grid { grid-template-columns: 1fr; }

  /* Produto: grid coluna única */
  .product-grid { grid-template-columns: 1fr; }

  /* Cover-band: imagem menor */
  .cover-band__split-right { min-height: 200px; }

  /* Galeria: força coluna única e altura ajustada */
  .gallery { grid-template-columns: 1fr !important; }
  .gallery__item { min-height: 200px; }
  .gallery__item--lg { min-height: 240px; }

  /* Serviços: banner sem proporção fixa */
  .service-banner { aspect-ratio: auto; min-height: 180px; }

  /* Footer: menos padding */
  .site-footer { padding: 2.8rem 0 1.2rem; }
}
