/* ==========================================================================
   GULFIER — Materiais de Construção
   style.css — Design system, tokens e componentes globais
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS — cores, tipografia, espaçamento
   -------------------------------------------------------------------------- */
:root {
  /* Marca */
  --blue: #0378FE;
  --blue-dark: #0460CB;
  --blue-darker: #024C9E;
  --navy: #0A1F3D;
  --navy-soft: #16233A;
  --yellow: #FFF700;
  --yellow-dark: #E6DE00;
  --white: #FFFFFF;

  /* Neutros derivados */
  --gray-25: #FAFBFD;
  --gray-50: #F4F8FC;
  --gray-100: #E9F0F9;
  --gray-200: #D7E2EE;
  --gray-400: #93A1B5;
  --gray-600: #5B6675;
  --gray-800: #24303F;
  --gray-900: #121A24;

  /* Tipografia */
  --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  /* Escala tipográfica */
  --fs-2xl: clamp(2.4rem, 4.2vw, 4.2rem);
  --fs-xl: clamp(2rem, 3vw, 2.8rem);
  --fs-lg: clamp(1.5rem, 2vw, 1.9rem);
  --fs-md: 1.125rem;
  --fs-base: 1rem;
  --fs-sm: 0.875rem;
  --fs-xs: 0.75rem;

  /* Espaçamento */
  --gap-xs: 0.5rem;
  --gap-sm: 1rem;
  --gap-md: 1.5rem;
  --gap-lg: 2.5rem;
  --gap-xl: 4rem;
  --gap-2xl: 6.5rem;

  /* Layout */
  --container: 1240px;
  --radius: 10px;
  --radius-lg: 18px;

  /* Sombra e transição */
  --shadow-sm: 0 2px 10px rgba(10, 31, 61, 0.06);
  --shadow-md: 0 12px 32px rgba(10, 31, 61, 0.10);
  --shadow-lg: 0 24px 60px rgba(10, 31, 61, 0.16);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);

  /* Corte diagonal — elemento assinatura do projeto (referência à borda
     cortada de uma placa/bloco de concreto) */
  --cut: 28px;
}

/* --------------------------------------------------------------------------
   2. RESET
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; }
svg { display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

/* Foco visível — acessibilidade */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Pular para o conteúdo */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------------------
   3. UTILITÁRIOS
   -------------------------------------------------------------------------- */
.section { padding-block: var(--gap-2xl); }
.section--tight { padding-block: var(--gap-xl); }
.section--alt { background: var(--gray-50); }
.section--navy { background: var(--navy); color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--blue) 0 4px, transparent 4px 7px);
}

.section-head { max-width: 640px; margin-bottom: var(--gap-lg); }
.section-head--center { max-width: 640px; margin-inline: auto; text-align: center; }
.section-head p { color: var(--gray-600); font-size: var(--fs-md); margin-top: 0.85rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: var(--fs-sm);
  white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s var(--ease);
}
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }
.btn--primary { background: var(--yellow); color: var(--navy); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn--outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); transform: translateY(-2px); }
.btn--ghost { background: var(--gray-100); color: var(--navy); }
.btn--ghost:hover { background: var(--gray-200); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--sm { padding: 0.7rem 1.2rem; font-size: var(--fs-xs); }

.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  background: var(--gray-100);
  color: var(--blue-dark);
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
}

.cut-tl { clip-path: polygon(var(--cut) 0, 100% 0, 100% 100%, 0 100%, 0 var(--cut)); }
.cut-br { clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%); }

.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;
}

/* Placeholder visual para imagens ausentes (substituir por fotos reais em /images) */
.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-50));
  color: var(--gray-400);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  text-align: center;
  border: 1.5px dashed var(--gray-200);
  min-height: 100%;
  width: 100%;
}
.img-placeholder svg { width: 34px; height: 34px; opacity: 0.55; }

/* --------------------------------------------------------------------------
   4. HEADER
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--navy);
  color: var(--gray-200);
  font-size: var(--fs-xs);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 0.5rem;
  gap: 1rem;
}
.topbar__info { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.topbar__info span { display: inline-flex; align-items: center; gap: 0.4rem; }
.topbar__info svg { width: 14px; height: 14px; color: var(--yellow); }
.topbar__social { display: flex; gap: 0.8rem; }
.topbar__social a { color: var(--gray-200); transition: color 0.2s; }
.topbar__social a:hover { color: var(--yellow); }
.topbar__social svg { width: 16px; height: 16px; }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 0 var(--gray-100);
  transition: box-shadow 0.3s var(--ease);
}
.header.is-scrolled { box-shadow: var(--shadow-md); }
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.9rem;
  gap: var(--gap-md);
}

.logo { display: flex; align-items: center; gap: 0.65rem; flex-shrink: 0; }
.logo__mark {
  width: 42px; height: 42px;
  background: var(--blue);
  clip-path: polygon(18% 0, 100% 0, 100% 82%, 82% 100%, 0 100%, 0 18%);
  display: flex; align-items: center; justify-content: center;
}
.logo__mark svg { width: 22px; height: 22px; color: var(--white); }
.logo__text { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--navy); line-height: 1; }
.logo__text span { color: var(--blue); }
.logo__sub { display: block; font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.12em; color: var(--gray-400); margin-top: 2px; }

.nav__list { display: flex; align-items: center; gap: var(--gap-lg); }
.nav__list a {
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--gray-800);
  position: relative;
  padding-block: 0.3rem;
}
.nav__list a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width 0.25s var(--ease);
}
.nav__list a:hover::after, .nav__list a[aria-current="page"]::after { width: 100%; }
.nav__list a[aria-current="page"] { color: var(--blue); }

.header__actions { display: flex; align-items: center; gap: 0.9rem; }
.header__phone {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: right;
}
.header__phone small { font-size: 0.65rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.08em; }
.header__phone strong { font-family: var(--font-display); font-size: 1rem; color: var(--navy); }

.btn--whatsapp {
  background: #21C35A;
  color: var(--white);
  box-shadow: 0 6px 16px rgba(33, 195, 90, 0.3);
}
.btn--whatsapp:hover { background: #1BA84D; transform: translateY(-2px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   5. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 640px;
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--gap-sm);
  padding-block: var(--gap-2xl);
  color: var(--white);
  position: relative;
  z-index: 2;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 600;
}
.hero__title {
  color: var(--white);
  font-size: var(--fs-2xl);
  max-width: 620px;
}
.hero__title em {
  font-style: normal;
  color: var(--yellow);
}
.hero__subtitle {
  color: rgba(255,255,255,0.78);
  font-size: var(--fs-md);
  max-width: 500px;
  margin-top: 0.4rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: var(--gap-sm); }

.hero__stats { display: flex; gap: var(--gap-lg); margin-top: var(--gap-md); flex-wrap: wrap; }
.hero__stats div strong { display: block; font-family: var(--font-display); font-size: 1.6rem; color: var(--yellow); }
.hero__stats div span { font-size: var(--fs-xs); color: rgba(255,255,255,0.65); }

.hero__media {
  position: relative;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}
.hero__media .img-placeholder { min-height: 100%; background: linear-gradient(160deg, #0E2A52, #0A1F3D); color: rgba(255,255,255,0.35); border-color: rgba(255,255,255,0.12); }
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,31,61,0.55), transparent 45%);
}
.hero__ribbon {
  position: absolute;
  top: 34px;
  right: -46px;
  width: 220px;
  background: var(--yellow);
  color: var(--navy);
  text-align: center;
  padding: 0.5rem 0;
  transform: rotate(35deg);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  z-index: 3;
  box-shadow: var(--shadow-md);
}

.hero__tape {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 10px;
  background: repeating-linear-gradient(90deg, var(--yellow) 0 3px, transparent 3px 14px);
  opacity: 0.9;
  z-index: 2;
}

/* --------------------------------------------------------------------------
   6. CATEGORIAS
   -------------------------------------------------------------------------- */
.cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-md);
}
.cat-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: var(--gap-md) var(--gap-sm);
  text-align: left;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--blue);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s var(--ease);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.cat-card:hover::before { transform: scaleY(1); }
.cat-card__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--gray-50);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--gap-sm);
  color: var(--blue);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.cat-card__icon svg { width: 26px; height: 26px; }
.cat-card:hover .cat-card__icon { background: var(--blue); color: var(--white); }
.cat-card h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.cat-card p { font-size: var(--fs-xs); color: var(--gray-600); }
.cat-card a.cat-card__link {
  position: absolute; inset: 0;
}

/* --------------------------------------------------------------------------
   7. DIFERENCIAIS
   -------------------------------------------------------------------------- */
.diff {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--gap-sm);
}
.diff-item {
  text-align: center;
  padding: var(--gap-md) 1rem;
}
.diff-item__icon {
  width: 60px; height: 60px;
  margin-inline: auto;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--gap-sm);
}
.diff-item__icon svg { width: 28px; height: 28px; }
.diff-item h3 { font-size: 0.95rem; margin-bottom: 0.3rem; }
.diff-item p { font-size: var(--fs-xs); color: var(--gray-600); }
.diff--three { grid-template-columns: repeat(3, 1fr); }

/* --------------------------------------------------------------------------
   8. MARCAS
   -------------------------------------------------------------------------- */
.brands {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--gap-sm);
  align-items: center;
}
.brand-slot {
  aspect-ratio: 3 / 2;
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  transition: border-color 0.25s, transform 0.25s;
}
.brand-slot:hover { border-color: var(--blue); transform: translateY(-3px); color: var(--blue); }

/* --------------------------------------------------------------------------
   9. PRODUTOS EM DESTAQUE
   -------------------------------------------------------------------------- */
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-md);
}
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.product-card__img { aspect-ratio: 4/3; position: relative; }
.product-card__badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--yellow); color: var(--navy);
  font-family: var(--font-mono); font-size: 0.65rem; font-weight: 700;
  padding: 0.25rem 0.55rem; border-radius: 5px; z-index: 2;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.product-card__body { padding: var(--gap-sm); display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.product-card__cat { font-family: var(--font-mono); font-size: 0.65rem; color: var(--blue); text-transform: uppercase; letter-spacing: 0.06em; }
.product-card h3 { font-size: 1rem; }
.product-card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 0.6rem; }
.product-card__price { font-family: var(--font-display); font-weight: 700; color: var(--navy); }
.product-card__price small { font-family: var(--font-body); font-weight: 400; font-size: 0.7rem; color: var(--gray-400); display: block; }
.product-card__cta {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gray-50); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.product-card__cta:hover { background: var(--blue); color: var(--white); }
.product-card__cta svg { width: 18px; height: 18px; }

/* --------------------------------------------------------------------------
   10. AVALIAÇÕES
   -------------------------------------------------------------------------- */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--gap-md);
  box-shadow: var(--shadow-sm);
}
.review-card__stars { display: flex; gap: 3px; color: var(--yellow); margin-bottom: 0.8rem; }
.review-card__stars svg { width: 16px; height: 16px; }
.review-card p { color: var(--gray-800); font-size: var(--fs-sm); margin-bottom: 1rem; }
.review-card__author { display: flex; align-items: center; gap: 0.7rem; }
.review-card__avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gray-100); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.85rem;
}
.review-card__author strong { display: block; font-size: 0.85rem; }
.review-card__author span { font-size: 0.7rem; color: var(--gray-400); }
.reviews-summary {
  display: flex; align-items: center; gap: var(--gap-md);
  margin-bottom: var(--gap-lg);
  flex-wrap: wrap;
}
.reviews-summary__score { font-family: var(--font-display); font-size: 3rem; color: var(--navy); line-height: 1; }
.reviews-summary__stars { color: var(--yellow); display: flex; gap: 2px; margin: 0.4rem 0; }
.reviews-summary__stars svg { width: 18px; height: 18px; }

/* --------------------------------------------------------------------------
   11. GALERIA
   -------------------------------------------------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 170px;
  gap: var(--gap-xs);
}
.gallery__item { border-radius: var(--radius); overflow: hidden; position: relative; }
.gallery__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery__item:nth-child(4) { grid-row: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item .img-placeholder { position: absolute; inset: 0; }

/* --------------------------------------------------------------------------
   12. SOBRE (mini bloco usado na home)
   -------------------------------------------------------------------------- */
.about-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--gap-xl);
  align-items: center;
}
.about-split__media { position: relative; }
.about-split__media .img-placeholder { aspect-ratio: 4/5; border-radius: var(--radius-lg); }
.about-split__badge {
  position: absolute; bottom: -22px; left: -22px;
  background: var(--navy); color: var(--white);
  padding: 1.1rem 1.3rem; border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-split__badge strong { display: block; font-family: var(--font-display); font-size: 1.7rem; color: var(--yellow); }
.about-split__badge span { font-size: 0.7rem; color: rgba(255,255,255,0.7); }
.about-split__values { display: grid; gap: var(--gap-sm); margin-top: var(--gap-md); }
.value-row { display: flex; gap: 1rem; align-items: flex-start; }
.value-row__icon {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px;
  background: var(--gray-50); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.value-row__icon svg { width: 20px; height: 20px; }
.value-row h4 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.value-row p { font-size: var(--fs-sm); color: var(--gray-600); }

/* --------------------------------------------------------------------------
   13. MAPA / LOCALIZAÇÃO
   -------------------------------------------------------------------------- */
.map-block {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-block__info {
  background: var(--navy);
  color: var(--white);
  padding: var(--gap-lg);
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}
.map-block__info ul { display: grid; gap: 0.9rem; margin-top: 0.5rem; }
.map-block__info li { display: flex; gap: 0.8rem; align-items: flex-start; font-size: var(--fs-sm); color: rgba(255,255,255,0.85); }
.map-block__info li svg { width: 19px; height: 19px; color: var(--yellow); flex-shrink: 0; margin-top: 2px; }
.map-block__frame { position: relative; min-height: 360px; background: var(--gray-100); }
.map-block__frame iframe { width: 100%; height: 100%; border: 0; min-height: 360px; }

/* --------------------------------------------------------------------------
   14. CTA FAIXA
   -------------------------------------------------------------------------- */
.cta-strip {
  background: var(--blue);
  color: var(--white);
  padding-block: var(--gap-lg);
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(255,255,255,0.06) 0 2px, transparent 2px 26px);
}
.cta-strip .container { display: flex; align-items: center; justify-content: space-between; gap: var(--gap-md); flex-wrap: wrap; position: relative; z-index: 1; }
.cta-strip h2 { color: var(--white); font-size: var(--fs-lg); }
.cta-strip p { color: rgba(255,255,255,0.85); margin-top: 0.3rem; }
.cta-strip__actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   15. FOOTER
   -------------------------------------------------------------------------- */
.footer { background: var(--navy); color: rgba(255,255,255,0.72); }
.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: var(--gap-lg);
  padding-block: var(--gap-xl);
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.footer__brand p { margin-top: 1rem; font-size: var(--fs-sm); max-width: 300px; }
.footer__social { display: flex; gap: 0.7rem; margin-top: var(--gap-sm); }
.footer__social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.footer__social a:hover { background: var(--blue); }
.footer__social svg { width: 17px; height: 17px; }
.footer h4 { color: var(--white); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 0.04em; text-transform: uppercase; }
.footer__col ul { display: grid; gap: 0.65rem; }
.footer__col a { font-size: var(--fs-sm); transition: color 0.2s; }
.footer__col a:hover { color: var(--yellow); }
.footer__col li { display: flex; gap: 0.6rem; font-size: var(--fs-sm); align-items: flex-start; }
.footer__col li svg { width: 16px; height: 16px; color: var(--yellow); flex-shrink: 0; margin-top: 3px; }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: var(--gap-sm);
  font-size: var(--fs-xs);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__bottom a { text-decoration: underline; text-underline-offset: 3px; }

/* --------------------------------------------------------------------------
   16. WHATSAPP FLUTUANTE
   -------------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #21C35A;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(33,195,90,0.45);
  z-index: 200;
  transition: transform 0.25s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; }

/* --------------------------------------------------------------------------
   17. PÁGINAS INTERNAS — hero simples
   -------------------------------------------------------------------------- */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding-block: calc(var(--gap-xl) * 0.9);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; height: 8px;
  background: repeating-linear-gradient(90deg, var(--yellow) 0 3px, transparent 3px 14px);
}
.breadcrumb { display: flex; gap: 0.5rem; align-items: center; font-size: var(--fs-xs); color: rgba(255,255,255,0.6); margin-bottom: 0.8rem; font-family: var(--font-mono); }
.breadcrumb a:hover { color: var(--yellow); }
.page-hero h1 { color: var(--white); font-size: var(--fs-xl); max-width: 700px; }
.page-hero p { color: rgba(255,255,255,0.75); margin-top: 0.7rem; max-width: 560px; }

/* Formulários */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-sm); }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: var(--fs-sm); font-weight: 600; color: var(--navy); }
.form-field input, .form-field select, .form-field textarea {
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  background: var(--white);
  transition: border-color 0.2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--blue); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: var(--fs-xs); color: var(--gray-400); margin-top: 0.5rem; }

/* Acordeão FAQ */
.accordion { display: grid; gap: 0.8rem; }
.accordion-item { border: 1px solid var(--gray-100); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.accordion-item__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.3rem; text-align: left; font-weight: 600; color: var(--navy); gap: 1rem;
}
.accordion-item__q svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; transition: transform 0.3s var(--ease); }
.accordion-item.is-open .accordion-item__q svg { transform: rotate(45deg); }
.accordion-item__a {
  max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease);
  padding-inline: 1.3rem;
  color: var(--gray-600);
  font-size: var(--fs-sm);
}
.accordion-item.is-open .accordion-item__a { padding-bottom: 1.1rem; }

/* Filtros de produtos */
.filters { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: var(--gap-lg); }
.filters button {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid var(--gray-200);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--gray-600);
  transition: all 0.2s;
}
.filters button:hover { border-color: var(--blue); color: var(--blue); }
.filters button.is-active { background: var(--blue); border-color: var(--blue); color: var(--white); }

/* Equipe (Sobre) */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap-md); }
.team-card { text-align: center; }
.team-card .img-placeholder { aspect-ratio: 1; border-radius: 50%; margin-bottom: 1rem; }
.team-card strong { display: block; color: var(--navy); }
.team-card span { font-size: var(--fs-xs); color: var(--gray-400); }

/* Timeline (Sobre) */
.timeline { display: grid; gap: var(--gap-md); position: relative; padding-left: 2.2rem; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: var(--gray-200); }
.timeline-item { position: relative; }
.timeline-item::before {
  content: ''; position: absolute; left: -2.2rem; top: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--blue);
}
.timeline-item strong { font-family: var(--font-mono); color: var(--blue); font-size: var(--fs-sm); }
.timeline-item h4 { margin: 0.2rem 0 0.3rem; }
.timeline-item p { color: var(--gray-600); font-size: var(--fs-sm); }

/* Página de contato — canais */
.channels { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-sm); margin-bottom: var(--gap-xl); }
.channel-card {
  background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg);
  padding: var(--gap-md); text-align: center; transition: box-shadow 0.25s, transform 0.25s;
}
.channel-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.channel-card__icon {
  width: 54px; height: 54px; border-radius: 14px; margin-inline: auto;
  background: var(--gray-50); color: var(--blue);
  display: flex; align-items: center; justify-content: center; margin-bottom: 0.9rem;
}
.channel-card__icon svg { width: 26px; height: 26px; }
.channel-card h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.channel-card p { font-size: var(--fs-sm); color: var(--gray-600); margin-bottom: 0.9rem; }

/* Página produtos — grid principal */
.contact-layout { display: grid; grid-template-columns: 1fr 0.85fr; gap: var(--gap-xl); align-items: start; }
.contact-info-card { background: var(--gray-50); border-radius: var(--radius-lg); padding: var(--gap-lg); }
.contact-info-card ul { display: grid; gap: 1.1rem; margin-top: 1rem; }
.contact-info-card li { display: flex; gap: 0.8rem; align-items: flex-start; font-size: var(--fs-sm); color: var(--gray-600); }
.contact-info-card li svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }

/* =========================================================
   AJUSTE DE RESPONSIVIDADE DA LOGOMARCA (PC E MOBILE)
========================================================= */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo__img {
  height: 48px; /* Altura proporcional para computador */
  width: auto;
  display: block;
  object-fit: contain;
}

/* Ajuste automático para telas de Celular (Mobile) */
@media (max-width: 768px) {
  .logo__img {
    height: 38px; /* Altura ideal para telas menores */
  }
}
/* =========================================================
   HERO COM IMAGEM DE FUNDO COMPLETA
========================================================= */
.hero {
  /* Aponta para a imagem de fundo e adiciona uma camada escura suave */
  background: linear-gradient(rgba(14, 26, 44, 0.75), rgba(69, 80, 96, 0.75)), 
              url('../images/banners/fundobanner.png') center/cover no-repeat;
  padding: 80px 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

/* Ajusta o grid para o texto ocupar o lado esquerdo de forma elegante */
.hero__grid {
  display: block;
}

.hero__content {
  max-width: 650px; /* Impede que o texto se espalhe pela tela toda */
}

/* =========================================================
   AUMENTAR ESTATÍSTICAS DO HERO
========================================================= */
.hero__stats {
  margin-top: 2rem;
}

/* Aumenta os números (30 anos, 3200+, 97%) */
.hero__stats strong,
.hero__stats .count-up {
  font-size: 2rem !important; /* Tamanho do número */
  font-weight: 700;
  color: #ffffff;
  display: block;
}

/* Aumenta a legenda abaixo dos números */
.hero__stats div {
  font-size: 1.1rem; /* Tamanho da legenda */
  color: rgba(255, 255, 255, 0.9);
}

/* =========================================================
   SEÇÃO DE MARCAS / PARCEIROS (TEXTO CENTRALIZADO + LOGOS MAIORES)
========================================================= */
.partners {
  text-align: center; /* Centraliza os títulos da seção */
  padding: 60px 0;
}

.partners .section-subtitle,
.partners .section-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.partners__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

/* Card ajustado para acomodar logos maiores */
.partner-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.2rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(20% - 1.5rem);
  min-width: 170px;
  height: 110px; /* Aumentado de 90px para 110px */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.partner-card:hover {
  border-color: #3b82f6;
  transform: translateY(-3px);
}

/* Logos maiores */
.partner-card__img {
  max-width: 90%;
  max-height: 70px; /* Aumentado de 50px para 70px */
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Celular */
@media (max-width: 768px) {
  .partner-card {
    width: calc(50% - 1rem);
    height: 95px;
  }

  .partner-card__img {
    max-height: 55px;
  }
}
/* =========================================================
   ESTILO DA GALERIA MOSAICO DA LOJA
========================================================= */
.store-gallery {
  padding: 60px 0;
  clear: both; /* Impede que elementos de cima/baixo se sobreponham */
}

.store-gallery__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, 220px);
  gap: 15px;
  margin-top: 20px;
}

.store-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background-color: #f1f5f9;
}

/* Encaixe exato no layout do modelo */
.store-gallery__item--1 { grid-column: 1 / 2; grid-row: 1 / 3; }
.store-gallery__item--2 { grid-column: 2 / 3; grid-row: 1 / 2; }
.store-gallery__item--3 { grid-column: 3 / 4; grid-row: 1 / 2; }
.store-gallery__item--4 { grid-column: 2 / 3; grid-row: 2 / 3; }
.store-gallery__item--5 { grid-column: 3 / 4; grid-row: 2 / 3; }

.store-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.store-gallery__item:hover .store-gallery__img {
  transform: scale(1.03);
}

/* Responsivo para celulares */
@media (max-width: 768px) {
  .store-gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .store-gallery__item {
    height: 200px;
  }

  .store-gallery__item--1,
  .store-gallery__item--2,
  .store-gallery__item--3,
  .store-gallery__item--4,
  .store-gallery__item--5 {
    grid-column: auto;
    grid-row: auto;
  }
}
.map-block {
  display: flex;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 380px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.map-block__info {
  flex: 0 0 420px; /* Largura fixa do cartão azul */
  background-color: #0c2340;
  padding: 35px;
  color: #ffffff;
  z-index: 2;
}

.map-block__frame {
  flex: 1; /* Ocupa todo o resto do espaço na direita */
  height: 100%;
  min-height: 380px;
}

.map-block__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Ajuste automático para celulares */
@media (max-width: 768px) {
  .map-block {
    flex-direction: column;
  }
  .map-block__info {
    flex: 100%;
    width: 100%;
  }
  .map-block__frame {
    width: 100%;
    height: 300px;
  }
}
.about-history__container {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 60px 0;
}

.about-history__image-wrapper {
  position: relative;
  flex: 0 0 400px;
  height: 520px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #f1f5f9;
}

.about-history__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Badge do ano 1998 no canto inferior esquerdo */
.badge-year {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #0c2340;
  color: #ffed00;
  font-size: 28px;
  font-weight: 800;
  padding: 15px 30px;
  border-top-right-radius: 16px;
  z-index: 2;
}

.about-history__content {
  flex: 1;
}

/* Responsivo para celular */
@media (max-width: 768px) {
  .about-history__container {
    flex-direction: column;
  }
  .about-history__image-wrapper {
    width: 100%;
    flex: none;
    height: 400px;
  }
}
.btn--whatsapp-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 16px;
  background-color: #25d366;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn--whatsapp-card:hover {
  background-color: #1ebc57;
  transform: translateY(-2px);
}
.product-card__price-box {
  display: flex;
  flex-direction: column;
}

.product-card__condition {
  font-size: 0.75rem;
  color: #27ae60; /* Verde bonito para destacar a condição */
  font-weight: 600;
  margin-top: 2px;
}