/* ==========================================================================
   Oli Locadora — style.css  (estilos base + componentes)
   Cores extraídas da identidade visual da marca (logo azul + branco).
   ========================================================================== */

:root {
  /* --- Paleta da marca (azul do logotipo #2C68A1) --- */
  --color-primary:        #2C68A1;
  --color-primary-dark:   #1F4E7C;
  --color-primary-darker: #16354f;
  --color-primary-light:  #4B86BD;
  --color-secondary:      #0F2A44;   /* azul-marinho profundo p/ superfícies escuras */
  --color-accent:         #F2A03D;   /* laranja de apoio p/ destaques e CTAs */

  --color-background:     #FFFFFF;
  --color-surface:        #F4F7FB;   /* superfície azulada bem clara */
  --color-surface-2:      #E9F0F7;
  --color-text:           #16232E;
  --color-text-muted:     #5C6B78;
  --color-border:         #DCE5EF;
  --color-white:          #FFFFFF;

  /* Estados */
  --color-hover:          var(--color-primary-dark);
  --color-focus:          #4B86BD;
  --color-active:         var(--color-primary-darker);
  --color-error:          #D64545;
  --color-success:        #2E9E6B;

  /* Sombras */
  --shadow-sm:  0 1px 3px rgba(15, 42, 68, 0.08);
  --shadow-md:  0 6px 20px rgba(15, 42, 68, 0.10);
  --shadow-lg:  0 18px 45px rgba(15, 42, 68, 0.16);
  --shadow-primary: 0 12px 28px rgba(44, 104, 161, 0.32);

  /* Formas */
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* Tipografia */
  --font-sans: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --container: 1200px;

  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 76px;
}

/* --- Reset leve --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-background);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: clip;
}
body.no-scroll { overflow: hidden; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.18; margin: 0 0 0.5em; font-weight: 700; color: var(--color-text); letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

/* Ícones de marca (SVG inline via data-oli-icon) */
.oli-ico { display: inline-flex; align-items: center; justify-content: center; line-height: 0; }
.oli-ico svg { display: block; width: 1.2em; height: 1.2em; }
.btn .oli-ico svg { width: 18px; height: 18px; }
.btn--lg .oli-ico svg { width: 20px; height: 20px; }
.topbar__social .oli-ico svg, .footer-social .oli-ico svg { width: 18px; height: 18px; }
.whatsapp-fab .oli-ico svg { width: 30px; height: 30px; }
.contact-info__card .oli-ico svg { width: 26px; height: 26px; }
.share-btn .oli-ico svg { width: 18px; height: 18px; }

/* Foco acessível global */
:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 2px;
  border-radius: 4px;
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }
.section--surface { background: var(--color-surface); }
.section--dark { background: var(--color-secondary); color: #E8EFF6; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.section--dark .eyebrow { color: var(--color-accent); }
.section-title { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 14px; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--color-text-muted); font-size: 1.05rem; }
.section--dark .section-head p { color: #B9CCDF; }

/* Skip link */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--color-primary); color: #fff; padding: 10px 18px;
  border-radius: var(--radius-sm); transition: top var(--transition);
}
.skip-link:focus { top: 12px; }

/* ==========================================================================
   Botões
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 0.98rem; line-height: 1;
  padding: 14px 26px; border-radius: var(--radius-pill);
  border: 2px solid transparent; transition: var(--transition);
  white-space: nowrap; text-align: center;
}
.btn i, .btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--color-primary); color: #fff; box-shadow: var(--shadow-primary); }
.btn--primary:hover { background: var(--color-hover); transform: translateY(-2px); }
.btn--primary:active { background: var(--color-active); transform: translateY(0); }
.btn--outline { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn--outline:hover { background: var(--color-primary); color: #fff; transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--color-primary); }
.btn--light:hover { background: var(--color-surface-2); transform: translateY(-2px); }
.btn--ghost { background: var(--color-surface); color: var(--color-text); }
.btn--ghost:hover { background: var(--color-surface-2); }
.btn--accent { background: var(--color-accent); color: #3a2400; }
.btn--accent:hover { filter: brightness(1.05); transform: translateY(-2px); }
.btn--sm { padding: 10px 18px; font-size: 0.88rem; }
.btn--lg { padding: 16px 32px; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ==========================================================================
   Header
   ========================================================================== */
/* --- Barra superior de utilidades (contatos + social) --- */
.topbar { background: #EEF2F7; border-bottom: 1px solid var(--color-border); font-size: 0.82rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 42px; }
.topbar__group { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar__group a, .topbar__ti { display: inline-flex; align-items: center; gap: 7px; color: var(--color-text-muted); }
.topbar__group a:hover { color: var(--color-primary); }
.topbar i { width: 15px; height: 15px; }
.topbar__social { display: flex; gap: 8px; }
.topbar__social a { width: 30px; height: 30px; border-radius: 50%; background: #fff; display: grid; place-items: center; color: var(--color-primary); box-shadow: var(--shadow-sm); }
.topbar__social a:hover { background: var(--color-primary); color: #fff; }
.topbar__social i { width: 16px; height: 16px; }

/* --- Cabeçalho principal (fica fixo no topo ao rolar) --- */
.site-header { position: sticky; top: 0; z-index: 100; background: #fff; transition: box-shadow var(--transition); }
.site-header.is-scrolled { box-shadow: var(--shadow-md); }
.header-main { display: flex; align-items: center; gap: 20px; height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand__logo { height: 48px; width: 48px; object-fit: contain; background: var(--color-primary); border-radius: var(--radius-sm); padding: 5px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-weight: 700; font-size: 1.06rem; letter-spacing: 0.02em; color: var(--color-primary); }
.brand__tag { font-size: 0.6rem; color: var(--color-text-muted); letter-spacing: 0.03em; text-transform: uppercase; white-space: nowrap; }

.primary-nav { display: flex; align-items: center; gap: 4px; margin: 0 auto; }
.primary-nav a {
  padding: 10px 14px; border-radius: var(--radius-pill);
  font-weight: 500; font-size: 0.96rem; color: var(--color-text);
  transition: var(--transition); white-space: nowrap;
}
.primary-nav a:hover { color: var(--color-primary); background: var(--color-surface); }
.primary-nav a.is-active { color: var(--color-primary); background: var(--color-surface-2); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%; border: none;
  background: var(--color-surface); color: var(--color-text); transition: var(--transition);
}
.icon-btn:hover { background: var(--color-surface-2); color: var(--color-primary); }
.icon-btn i, .icon-btn svg { width: 20px; height: 20px; }

/* --- Barra de categorias (full-width, azul) --- */
.category-bar { background: var(--color-primary); position: relative; z-index: 90; }
.category-bar__inner { display: flex; align-items: stretch; height: 52px; }
.cat-all-wrap { position: relative; }
.cat-all {
  display: inline-flex; align-items: center; gap: 10px; height: 100%;
  background: var(--color-primary-dark); color: #fff; border: none;
  font-weight: 600; font-size: 0.84rem; text-transform: uppercase; letter-spacing: 0.05em;
  padding: 0 24px; cursor: pointer; font-family: inherit;
}
.cat-all i { width: 18px; height: 18px; }
.cat-all .chev { transition: transform var(--transition); }
.cat-all-wrap:hover .cat-all .chev, .cat-all-wrap:focus-within .cat-all .chev { transform: rotate(180deg); }
.cat-all-menu {
  position: absolute; top: 100%; left: 0; min-width: 280px;
  background: #fff; box-shadow: var(--shadow-lg); border-radius: 0 0 var(--radius) var(--radius);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: var(--transition); z-index: 95;
}
.cat-all-wrap:hover .cat-all-menu, .cat-all-wrap:focus-within .cat-all-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.cat-all-menu a { display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: var(--radius-sm); color: var(--color-text); font-size: 0.92rem; font-weight: 500; }
.cat-all-menu a:hover { background: var(--color-surface); color: var(--color-primary); }
.cat-all-menu i { width: 18px; height: 18px; color: var(--color-primary); }

.category-bar__links { display: flex; align-items: stretch; flex: 1; margin-left: 6px; overflow-x: auto; scrollbar-width: none; }
.category-bar__links::-webkit-scrollbar { display: none; }
.category-bar__links a {
  display: inline-flex; align-items: center; height: 100%; white-space: nowrap;
  color: #fff; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 0 16px; opacity: 0.9; transition: var(--transition);
}
.category-bar__links a:hover { opacity: 1; background: rgba(255,255,255,0.14); }

/* Busca do header (mantida para páginas internas) */
.header-search {
  position: absolute; top: var(--header-h); right: 24px;
  background: #fff; box-shadow: var(--shadow-lg); border-radius: var(--radius-pill);
  padding: 6px; display: flex; align-items: center; gap: 6px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: var(--transition); width: min(420px, calc(100vw - 48px));
}
.header-search.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.header-search input {
  border: none; outline: none; padding: 10px 16px; font-size: 0.95rem;
  flex: 1; background: transparent; color: var(--color-text);
}
.header-search button { border: none; background: var(--color-primary); color: #fff; width: 42px; height: 42px; border-radius: 50%; }

.menu-toggle { display: none; }

/* Bloco de categorias exibido apenas dentro do menu mobile */
.mobile-cats-block { display: none; }

/* Menu mobile */
.nav-backdrop {
  position: fixed; inset: 0; background: rgba(15, 42, 68, 0.5);
  opacity: 0; visibility: hidden; transition: var(--transition); z-index: 99;
}
.nav-backdrop.is-open { opacity: 1; visibility: visible; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; min-height: 580px; display: grid; place-items: center; text-align: center;
  color: #fff; padding: 96px 0; overflow: hidden;
  background-color: var(--color-secondary);
  background-size: cover; background-position: center;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(15,42,68,0.62) 0%, rgba(15,42,68,0.80) 100%),
    linear-gradient(90deg, rgba(31,78,124,0.55), rgba(15,42,68,0.35));
}
.hero__inner { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; padding: 0 24px; }
.hero__eyebrow { text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.78rem; font-weight: 600; color: #9BC4E6; margin-bottom: 20px; }
.hero h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); color: #fff; margin-bottom: 18px; line-height: 1.1; }
.hero h1 span { color: #9BC4E6; }
.hero__lead { font-size: 1.14rem; color: #E1EBF5; max-width: 640px; margin: 0 auto 36px; }

/* Barra de busca central do hero */
.hero__search {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border-radius: var(--radius-pill); box-shadow: var(--shadow-lg);
  padding: 8px 8px 8px 22px; max-width: 720px; margin: 0 auto 26px;
}
.hero__search i { width: 22px; height: 22px; color: var(--color-text-muted); flex-shrink: 0; }
.hero__search input { flex: 1; border: none; outline: none; font-size: 1.02rem; padding: 14px 4px; background: transparent; color: var(--color-text); }
.hero__search input::placeholder { color: #9AA7B4; }
.hero__search button { flex-shrink: 0; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ==========================================================================
   Faixa de diferenciais rápidos
   ========================================================================== */
.feature-strip { background: var(--color-surface); }
.feature-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-item__icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--color-primary); color: #fff; display: grid; place-items: center;
}
.feature-item__icon i { width: 24px; height: 24px; }
.feature-item h3 { font-size: 1rem; margin-bottom: 2px; }
.feature-item p { font-size: 0.9rem; color: var(--color-text-muted); margin: 0; }

/* ==========================================================================
   Categorias
   ========================================================================== */
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.category-card {
  position: relative; display: flex; flex-direction: column; gap: 12px;
  padding: 26px 22px; background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius); transition: var(--transition); overflow: hidden;
}
.category-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.category-card:hover::before { transform: scaleX(1); }
.category-card__icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: var(--color-surface); color: var(--color-primary); display: grid; place-items: center;
  transition: var(--transition);
}
.category-card:hover .category-card__icon { background: var(--color-primary); color: #fff; }
.category-card__icon i { width: 26px; height: 26px; }
.category-card h3 { font-size: 1.12rem; margin: 0; }
.category-card p { font-size: 0.9rem; color: var(--color-text-muted); margin: 0; flex: 1; }
.category-card__link { display: inline-flex; align-items: center; gap: 6px; color: var(--color-primary); font-weight: 600; font-size: 0.9rem; }
.category-card__link i { width: 16px; height: 16px; transition: var(--transition); }
.category-card:hover .category-card__link i { transform: translateX(4px); }

/* ==========================================================================
   Marcas disponíveis (marquee)
   ========================================================================== */
.brands .section-head { margin-bottom: 36px; }
.brands__marquee {
  position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.brands__track {
  display: flex; width: max-content; gap: 16px; padding: 4px 8px;
  animation: brands-scroll 90s linear infinite;
}
.brands__marquee:hover .brands__track { animation-play-state: paused; }
.brand-chip {
  flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
  width: 150px; height: 76px; padding: 0 20px;
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.brand-chip:hover { border-color: var(--color-primary); box-shadow: var(--shadow-md); }
.brand-chip img {
  max-height: 40px; max-width: 110px; width: auto; height: auto; object-fit: contain;
}
@keyframes brands-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .brands__track { animation: none; flex-wrap: wrap; justify-content: center; } }

/* ==========================================================================
   Avaliações
   ========================================================================== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 16px;
}
.review-card__stars { display: inline-flex; gap: 3px; color: var(--color-accent); }
.review-card__stars i { width: 18px; height: 18px; fill: currentColor; }
.review-card__text { color: var(--color-text); margin: 0; }
.review-card__author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-card__author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.review-card__name { font-weight: 600; display: block; }
.review-card__role { font-size: 0.85rem; color: var(--color-text-muted); }
.reviews-empty { text-align: center; color: var(--color-text-muted); grid-column: 1 / -1; padding: 12px 0; }

/* ==========================================================================
   Cards de produto
   ========================================================================== */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
/* Destaques da home: grid compacto 4 x 3 */
#home-featured { grid-template-columns: repeat(4, 1fr); gap: 18px; }
#home-featured .product-card__body { padding: 14px; gap: 4px; }
#home-featured .product-card__title { font-size: 0.98rem; }
#home-featured .product-card__desc { display: none; }
#home-featured .product-card__actions { margin-top: auto; padding-top: 10px; }
.product-card {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; transition: var(--transition);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.product-card__media {
  position: relative; display: block; aspect-ratio: 4 / 3; background: var(--color-surface);
  overflow: hidden;
}
.product-card__media img, .product-card__media video {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease;
}
.product-card:hover .product-card__media img { transform: scale(1.06); }
.product-card__placeholder {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-weight: 700; font-size: 1.6rem; letter-spacing: 0.1em; line-height: 1.05;
  color: var(--color-primary); text-align: center;
  background: repeating-linear-gradient(45deg, var(--color-surface), var(--color-surface) 12px, var(--color-surface-2) 12px, var(--color-surface-2) 24px);
}
.product-card__cat {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(255,255,255,0.94); color: var(--color-primary);
  font-size: 0.72rem; font-weight: 600; padding: 5px 12px; border-radius: var(--radius-pill);
}
.product-card__body { padding: 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-card__brand { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-text-muted); margin: 0; }
.product-card__title { font-size: 1.05rem; margin: 0; }
.product-card__title a:hover { color: var(--color-primary); }
.product-card__desc { font-size: 0.88rem; color: var(--color-text-muted); margin: 0; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card__tag { font-size: 0.78rem; color: var(--color-text-muted); margin: 4px 0 0; }
.product-card__price { font-size: 0.92rem; color: var(--color-text); margin: 2px 0 0; }
.product-card__price strong { color: var(--color-primary); font-weight: 700; }
.product-card__actions { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.product-card__actions .btn { width: 100%; }

/* ==========================================================================
   Sobre / split
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split__media img, .split__media video { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.split__media { position: relative; }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin: 22px 0 30px; }
.about-list li { display: flex; gap: 12px; align-items: flex-start; }
.about-list i { color: var(--color-primary); width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.about-list strong { display: block; }
.about-list span { font-size: 0.92rem; color: var(--color-text-muted); }

/* Cartão estatístico sobreposto */
.stat-badge {
  position: absolute; right: -16px; bottom: -16px; background: var(--color-primary); color: #fff;
  border-radius: var(--radius); padding: 18px 22px; box-shadow: var(--shadow-lg); text-align: center;
}
.stat-badge strong { display: block; font-size: 1.8rem; line-height: 1; }
.stat-badge span { font-size: 0.8rem; color: #D3E1F0; }

/* ==========================================================================
   Diferenciais (cards)
   ========================================================================== */
.differentials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.diff-card {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius);
  padding: 28px 24px; transition: var(--transition);
}
.diff-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.diff-card__icon { width: 54px; height: 54px; border-radius: 50%; background: var(--color-surface); color: var(--color-primary); display: grid; place-items: center; margin-bottom: 16px; }
.diff-card__icon i { width: 26px; height: 26px; }
.diff-card h3 { font-size: 1.14rem; }
.diff-card p { color: var(--color-text-muted); font-size: 0.94rem; margin: 0; }

/* ==========================================================================
   Processo de atendimento
   ========================================================================== */
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; counter-reset: step; }
.process-step { position: relative; text-align: center; padding: 0 8px; }
.process-step__num {
  counter-increment: step; width: 58px; height: 58px; border-radius: 50%;
  background: var(--color-primary); color: #fff; font-weight: 700; font-size: 1.3rem;
  display: grid; place-items: center; margin: 0 auto 16px; position: relative; z-index: 2;
}
.process-step__num::before { content: counter(step); }
.process-grid .process-step:not(:last-child)::after {
  content: ""; position: absolute; top: 29px; left: 60%; width: 80%; height: 2px;
  background: var(--color-border); z-index: 1;
}
.process-step h3 { font-size: 1rem; margin-bottom: 6px; }
.process-step p { font-size: 0.86rem; color: var(--color-text-muted); margin: 0; }

/* ==========================================================================
   Faixa CTA
   ========================================================================== */
.cta-band {
  background:
    radial-gradient(700px 300px at 15% 120%, rgba(75,134,189,0.35), transparent 60%),
    linear-gradient(120deg, var(--color-primary-dark), var(--color-primary));
  color: #fff;
}
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 56px 0; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 8px; }
.cta-band p { color: #DCEAF7; margin: 0; max-width: 560px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--color-border); border-radius: var(--radius); background: #fff; overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px; background: none; border: none; text-align: left;
  font-size: 1.02rem; font-weight: 600; color: var(--color-text);
}
.faq-question i { width: 22px; height: 22px; color: var(--color-primary); transition: transform var(--transition); flex-shrink: 0; }
.faq-question[aria-expanded="true"] i { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p { padding: 0 22px 20px; margin: 0; color: var(--color-text-muted); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--color-secondary); color: #C6D5E4; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; }
.footer-brand__logo { background: #fff; border-radius: var(--radius-sm); padding: 8px; height: 60px; width: 60px; object-fit: contain; margin-bottom: 16px; }
.footer-brand p { font-size: 0.92rem; color: #A9BED3; max-width: 320px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.08); display: grid; place-items: center; transition: var(--transition); color: #fff; }
.footer-social a:hover { background: var(--color-primary); transform: translateY(-3px); }
.footer-social i { width: 20px; height: 20px; }
.site-footer h4 { color: #fff; font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.92rem; color: #A9BED3; transition: var(--transition); }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.92rem; color: #A9BED3; }
.footer-contact i { width: 20px; height: 20px; color: var(--color-primary-light); flex-shrink: 0; margin-top: 2px; }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 0.85rem; color: #8FA6BD;
}
.footer-bottom a { color: #8FA6BD; }
.footer-bottom a:hover { color: #fff; }
.footer-bottom nav { display: flex; gap: 18px; flex-wrap: wrap; }

/* ==========================================================================
   WhatsApp flutuante
   ========================================================================== */
.whatsapp-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
}
.whatsapp-fab:hover { transform: scale(1.08) translateY(-2px); }
.whatsapp-fab i, .whatsapp-fab svg { width: 30px; height: 30px; }
.whatsapp-fab::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25D366; animation: fabPulse 2.4s ease-out infinite;
}

/* ==========================================================================
   Página de produtos (catálogo)
   ========================================================================== */
.page-hero {
  padding: 54px 0 50px;
  background:
    radial-gradient(700px 320px at 85% -10%, rgba(75,134,189,0.25), transparent 60%),
    linear-gradient(150deg, #0F2A44, #1F4E7C);
  color: #fff;
}
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.7rem); }
.page-hero p { color: #CFE0F0; max-width: 620px; margin: 0; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--color-text-muted); padding-top: 22px; padding-bottom: 4px; flex-wrap: wrap; }
.page-hero .breadcrumb { color: #BBD0E6; padding-top: 0; margin-bottom: 16px; }
.page-hero .breadcrumb a:hover { color: #fff; }
.breadcrumb a { color: inherit; }
.breadcrumb a:hover { color: var(--color-primary); }
.breadcrumb i { width: 14px; height: 14px; opacity: 0.6; }
.breadcrumb [aria-current] { color: inherit; font-weight: 600; }

.catalog-layout { display: grid; grid-template-columns: 268px 1fr; gap: 34px; align-items: start; padding: 44px 0 80px; }

/* Barra de filtros (sidebar) */
.filters-panel { position: sticky; top: calc(var(--header-h) + 16px); background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 22px; }
.filters-panel h2 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-text-muted); margin-bottom: 14px; }
.filters-panel__group { margin-bottom: 26px; }
.category-filters { display: flex; flex-direction: column; gap: 8px; }
.filter-chip {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  width: 100%; padding: 10px 14px; border: 1px solid var(--color-border);
  background: #fff; border-radius: var(--radius-sm); font-size: 0.92rem; font-weight: 500;
  color: var(--color-text); transition: var(--transition);
}
.filter-chip:hover { border-color: var(--color-primary); color: var(--color-primary); }
.filter-chip.is-active { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
.filter-chip__count { font-size: 0.78rem; background: var(--color-surface); color: var(--color-text-muted); padding: 2px 9px; border-radius: var(--radius-pill); }
.filter-chip.is-active .filter-chip__count { background: rgba(255,255,255,0.22); color: #fff; }

.search-field { position: relative; }
.search-field i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--color-text-muted); pointer-events: none; }
.search-field input {
  width: 100%; padding: 12px 14px 12px 42px; border: 1px solid var(--color-border);
  border-radius: var(--radius-sm); font-size: 0.95rem; font-family: inherit; transition: var(--transition);
}
.search-field input:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(44,104,161,0.15); }

.catalog-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.results-count { font-weight: 600; color: var(--color-text); }
.catalog-toolbar__right { display: flex; align-items: center; gap: 12px; }
.select-wrap { position: relative; }
.select-wrap select {
  appearance: none; padding: 11px 40px 11px 16px; border: 1px solid var(--color-border);
  border-radius: var(--radius-pill); background: #fff; font-family: inherit; font-size: 0.9rem; font-weight: 500; cursor: pointer;
}
.select-wrap::after { content: ""; position: absolute; right: 16px; top: 50%; width: 8px; height: 8px; border-right: 2px solid var(--color-text-muted); border-bottom: 2px solid var(--color-text-muted); transform: translateY(-70%) rotate(45deg); pointer-events: none; }
.filters-toggle { display: none; }

.no-results { text-align: center; padding: 70px 20px; background: var(--color-surface); border-radius: var(--radius); border: 1px dashed var(--color-border); }
.no-results i { width: 46px; height: 46px; color: var(--color-primary); margin-bottom: 14px; }
.no-results h3 { margin-bottom: 6px; }
.no-results p { color: var(--color-text-muted); margin: 0; }

.filters-backdrop { position: fixed; inset: 0; background: rgba(15,42,68,0.5); opacity: 0; visibility: hidden; transition: var(--transition); z-index: 105; }
.filters-backdrop.is-open { opacity: 1; visibility: visible; }
.filters-close { display: none; }

/* ==========================================================================
   Página interna do produto
   ========================================================================== */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; padding: 30px 0 20px; align-items: start; }
.product-gallery__main {
  aspect-ratio: 4/3; background: var(--color-surface); border-radius: var(--radius-lg);
  overflow: hidden; display: grid; place-items: center; border: 1px solid var(--color-border);
}
.product-gallery__main img, .product-gallery__main video { width: 100%; height: 100%; object-fit: cover; }
.product-gallery__placeholder { font-weight: 700; font-size: 2.4rem; letter-spacing: 0.14em; color: var(--color-primary); }
.product-gallery__thumbs { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.gallery-thumb {
  width: 78px; height: 62px; border-radius: var(--radius-sm); overflow: hidden; padding: 0;
  border: 2px solid transparent; background: var(--color-surface); transition: var(--transition);
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.is-active { border-color: var(--color-primary); }
.thumb-video { display: grid; place-items: center; width: 100%; height: 100%; color: var(--color-primary); }

.product-info__cat { color: var(--color-primary); font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.product-info__title { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 8px; }
.product-info__brand { color: var(--color-text-muted); font-size: 0.9rem; margin-bottom: 18px; }
.product-price {
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius); padding: 16px 20px; margin-bottom: 22px;
}
.product-price__label {
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--color-text-muted); font-weight: 600;
}
.product-price__value { font-size: 1.9rem; font-weight: 700; color: var(--color-primary); line-height: 1; }
.product-info__short { font-size: 1.08rem; font-weight: 500; margin-bottom: 14px; }
.product-info__desc { color: var(--color-text-muted); margin-bottom: 26px; }
.product-info__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.product-info__share { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--color-text-muted); }
.share-btn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--color-border); background: #fff; display: inline-grid; place-items: center; color: var(--color-text); transition: var(--transition); position: relative; }
.share-btn:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.share-btn i { width: 18px; height: 18px; }
.share-btn.is-copied::after { content: "Copiado!"; position: absolute; bottom: 120%; left: 50%; transform: translateX(-50%); background: var(--color-secondary); color: #fff; font-size: 0.72rem; padding: 4px 10px; border-radius: var(--radius-sm); white-space: nowrap; }

.product-blocks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px 46px; padding: 30px 0 20px; }
.product-block { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 26px; }
.product-block h2 { font-size: 1.2rem; margin-bottom: 16px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.feature-list li { display: flex; gap: 10px; align-items: flex-start; }
.feature-list i { width: 18px; height: 18px; color: var(--color-success); flex-shrink: 0; margin-top: 4px; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td { text-align: left; padding: 11px 4px; border-bottom: 1px solid var(--color-border); font-size: 0.92rem; vertical-align: top; }
.spec-table th { color: var(--color-text-muted); font-weight: 500; width: 45%; }
.spec-table td { font-weight: 600; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { background: var(--color-surface); color: var(--color-primary); font-size: 0.85rem; font-weight: 500; padding: 7px 14px; border-radius: var(--radius-pill); }

.related-section { background: var(--color-surface); }
.product-notfound { text-align: center; padding: 120px 20px; }
.product-notfound h1 { margin-bottom: 10px; }
.product-notfound p { color: var(--color-text-muted); margin-bottom: 24px; }

/* ==========================================================================
   Formulário
   ========================================================================== */
.contact-layout { display: grid; grid-template-columns: 1fr 0.9fr; gap: 46px; align-items: start; }
.form-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: 0.88rem; font-weight: 600; }
.form-field label .req { color: var(--color-error); }
.form-field input, .form-field select, .form-field textarea {
  padding: 12px 14px; border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.95rem; transition: var(--transition); background: #fff; width: 100%;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(44,104,161,0.15);
}
.form-field.has-error input, .form-field.has-error select, .form-field.has-error textarea { border-color: var(--color-error); }
.field-error { color: var(--color-error); font-size: 0.8rem; }
.form-consent { display: flex; gap: 10px; align-items: flex-start; grid-column: 1/-1; font-size: 0.88rem; color: var(--color-text-muted); }
.form-consent input { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--color-primary); }
.form-consent a { color: var(--color-primary); text-decoration: underline; }
.form-status { grid-column: 1/-1; font-size: 0.9rem; font-weight: 600; min-height: 1em; }
.form-status.is-error { color: var(--color-error); }
.form-status.is-success { color: var(--color-success); }

.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info__card { background: var(--color-surface); border-radius: var(--radius); padding: 22px; display: flex; gap: 14px; align-items: flex-start; }
.contact-info__card i { width: 26px; height: 26px; color: var(--color-primary); flex-shrink: 0; }
.contact-info__card h3 { font-size: 1rem; margin-bottom: 2px; }
.contact-info__card p, .contact-info__card a { font-size: 0.92rem; color: var(--color-text-muted); margin: 0; }
.contact-info__card a:hover { color: var(--color-primary); }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--color-border); }
.map-embed iframe { width: 100%; height: 260px; border: 0; display: block; }

/* Página de conteúdo simples (política, termos, obrigado) */
.content-page { padding: 54px 0 80px; }
.content-page .container { max-width: 820px; }
.content-page h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 10px; }
.content-page h2 { font-size: 1.3rem; margin: 32px 0 10px; }
.content-page p, .content-page li { color: var(--color-text-muted); }
.content-page ul { padding-left: 20px; margin-bottom: 1em; }
.content-page .muted { font-size: 0.9rem; }

.thanks { text-align: center; padding: 120px 0; }
.thanks__icon { width: 84px; height: 84px; border-radius: 50%; background: var(--color-success); color: #fff; display: grid; place-items: center; margin: 0 auto 24px; }
.thanks__icon i { width: 44px; height: 44px; }
.thanks h1 { margin-bottom: 12px; }
.thanks p { color: var(--color-text-muted); max-width: 520px; margin: 0 auto 28px; }
.thanks__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Utilidades */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.section-cta { display: flex; justify-content: center; margin-top: 40px; }
