/* =============================================
   RESSET AUTOMOTIVE DETAILING — STYLE SHEET
   Cores: Azul marinho (#0D1B4B) + Prata (#C0C0C0)
   ============================================= */

/* ===== VARIÁVEIS DE COR ===== */
:root {
  --navy:        #0D1B4B;   /* azul marinho escuro (cor principal) */
  --navy-mid:    #1A2B6B;   /* azul marinho médio */
  --navy-light:  #243580;   /* azul mais claro para hover */
  --silver:      #C0C0C0;   /* prata */
  --silver-light:#E8E8E8;   /* prata claro */
  --silver-dark: #8A8A8A;   /* prata escuro */
  --white:       #FFFFFF;
  --off-white:   #F5F6FA;
  --text:        #1A1A2E;
  --text-light:  #555577;
  --success:     #25D366;   /* verde WhatsApp */
  --danger:      #E53E3E;
  --gti-red:      #C8102E;   /* vermelho GTI (cor de destaque/hover) */
  --gti-red-dark: #9E0C24;   /* vermelho GTI escuro */

  --font-title:  'Montserrat', sans-serif;
  --font-body:   'Montserrat', sans-serif;   /* site todo em Montserrat */

  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 4px 20px rgba(13, 27, 75, 0.12);
  --shadow-lg:   0 8px 40px rgba(13, 27, 75, 0.2);
  --transition:  0.25s ease;
}

/* ===== RESET BÁSICO ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: 5rem 0; }
.text-center { text-align: center; }

/* ===== TEXTO PRATA (efeito metálico) ===== */
.silver-text {
  background: linear-gradient(135deg, #C0C0C0, #E8E8E8, #A0A0A0, #D0D0D0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BOTÕES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.btn--primary {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  color: var(--white);
  border-color: var(--navy-mid);
}
.btn--primary:hover {
  /* ao passar o mouse, vira vermelho GTI */
  background: linear-gradient(135deg, var(--gti-red), var(--gti-red-dark));
  border-color: var(--gti-red);
  box-shadow: 0 4px 15px rgba(200, 16, 46, 0.4);
  transform: translateY(-2px);
}

.btn--outline {
  /* mesmo padrão dos botões do banner: vermelho preenchido + fonte branca */
  background: linear-gradient(135deg, var(--gti-red), var(--gti-red-dark));
  color: var(--white);
  border-color: var(--gti-red);
}
.btn--outline:hover {
  background: linear-gradient(135deg, var(--gti-red-dark), #7d0a1d);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(200, 16, 46, 0.5);
  transform: translateY(-2px);
}

.btn--full { width: 100%; }
.btn--lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ===== TOPBAR ===== */
.topbar {
  background: #000000;
  color: var(--white);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-family: var(--font-title);
  letter-spacing: 0.3px;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(13,27,75,0.1);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.header__logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}
/* Fallback se a logo não carregar */
.header__logo {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--navy);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.header__search {
  flex: 1;
  display: flex;
  border: 2px solid var(--silver-light);
  border-radius: 50px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.header__search:focus-within { border-color: var(--navy-mid); }
.header__search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.6rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
}
.header__search button {
  background: var(--gti-red);   /* lupa em vermelho GTI */
  border: none;
  color: var(--white);
  padding: 0 1.1rem;
  cursor: pointer;
  transition: background var(--transition);
}
.header__search button:hover { background: var(--gti-red-dark); }

.header__actions { display: flex; gap: 1.2rem; flex-shrink: 0; }

.header__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 600;
  font-family: var(--font-title);
  transition: color var(--transition);
  position: relative;
}
.header__action:hover { color: var(--navy-light); }

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--danger);
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== NAVEGAÇÃO ===== */
.nav {
  background: var(--navy);
}

.nav__inner { padding: 0; }

.nav__list {
  display: flex;
  align-items: stretch;
  justify-content: center;   /* centraliza o menu na tela */
}

.nav__list > li {
  position: relative;
}

.nav__list > li > a {
  display: block;
  padding: 0.85rem 1.2rem;
  color: var(--silver-light);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.nav__list > li > a:hover,
.nav__list > li.has-dropdown:hover > a {
  background: var(--navy-light);
  color: var(--white);
  box-shadow: inset 0 -3px 0 var(--gti-red);   /* sublinhado vermelho GTI */
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 999;
  border-top: 3px solid var(--gti-red);   /* detalhe vermelho GTI */
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 0.65rem 1.2rem;
  font-size: 0.875rem;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
}
.dropdown li a:hover {
  background: var(--off-white);
  color: var(--navy);
  padding-left: 1.5rem;
}

/* ===== HERO SLIDER (CARROSSEL DE BANNERS) ===== */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--navy);
  height: 650px;
  max-height: 34vw;   /* proporcional em telas grandes */
  min-height: 220px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}
.slide--active {
  opacity: 1;
  pointer-events: auto;
}

.slide a,
.slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ----- BANNERS ORIGINAIS (texto + botão, sem imagem externa) ----- */
.slide--banner {
  display: flex;
  align-items: center;
}
/* Fundo de cada banner: foto de carro + degradê azul escuro por cima
   (o degradê garante que o texto branco fique sempre legível).
   A cor de fundo é a "reserva", caso a foto não carregue. */
/* Banner 1 — Golf GTI MK7 BRANCO */
.slide--banner1 {
  background-color: var(--navy);
  background-image:
    linear-gradient(90deg, rgba(7,14,43,0.94) 0%, rgba(13,27,75,0.78) 45%, rgba(13,27,75,0.40) 100%),
    url("https://images.unsplash.com/photo-1657528410226-e8bcb0a07823?auto=format&fit=crop&w=1600&q=70");
  background-size: cover, cover;
  background-position: center, center right;
  background-repeat: no-repeat, no-repeat;
}
/* Banner 2 — Golf GTI PRETO */
.slide--banner2 {
  background-color: var(--navy);
  background-image:
    linear-gradient(90deg, rgba(7,14,43,0.94) 0%, rgba(13,27,75,0.78) 45%, rgba(13,27,75,0.40) 100%),
    url("https://images.unsplash.com/photo-1656589604744-e2a311616733?auto=format&fit=crop&w=1600&q=70");
  background-size: cover, cover;
  background-position: center, center right;
  background-repeat: no-repeat, no-repeat;
}

.slide__content {
  max-width: 1200px;   /* largura do conteúdo do site: texto alinhado à esquerda */
  width: 100%;
}
/* o botão do banner deve ter a largura do próprio texto (não esticar) */
.slide__content .btn {
  display: inline-flex;
  width: auto;
  height: auto;
}
.slide__tag {
  display: inline-block;
  color: var(--silver);
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.slide__title {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
  max-width: 640px;   /* mantém o título compacto à esquerda */
}
.slide__text {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  line-height: 1.6;
  margin-bottom: 1.8rem;
  max-width: 480px;
}

/* Botões de ação principais em vermelho GTI (já nascem vermelhos):
   banners, "Montar meu kit", "Conheça nossa história" e "Quero receber!" */
.slide__content .btn--primary,
.mid-banner .btn--primary,
.why-resset .btn--primary,
.newsletter__form .btn--primary {
  background: linear-gradient(135deg, var(--gti-red), var(--gti-red-dark));
  border-color: var(--gti-red);
}
.slide__content .btn--primary:hover,
.mid-banner .btn--primary:hover,
.why-resset .btn--primary:hover,
.newsletter__form .btn--primary:hover {
  background: linear-gradient(135deg, var(--gti-red-dark), #7d0a1d);
  box-shadow: 0 6px 18px rgba(200, 16, 46, 0.5);
  transform: translateY(-2px);
}

/* Setas de navegação */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(13, 27, 75, 0.55);
  border: 2px solid rgba(192,192,192,0.4);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  backdrop-filter: blur(4px);
}
.slider-btn:hover {
  background: rgba(13, 27, 75, 0.85);
  border-color: var(--gti-red);
  transform: translateY(-50%) scale(1.1);
}
.slider-btn--prev { left: 1.2rem; }
.slider-btn--next { right: 1.2rem; }

/* Bolinhas indicadoras */
.slider-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.7);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}
.slider-dot--active {
  background: var(--gti-red);
  border-color: var(--gti-red);
  transform: scale(1.3);
}

/* Responsividade do slider */
@media (max-width: 768px) {
  .hero-slider {
    height: 220px;
    max-height: unset;
  }
  .slider-btn {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }
}

/* ===== FAIXA DE DIFERENCIAIS ===== */
.benefits-bar {
  background: var(--navy);
  padding: 1.5rem 0;
}

.benefits-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--white);
  padding: 0.5rem;
}
.benefit-item svg { color: var(--silver); flex-shrink: 0; }
.benefit-item strong {
  display: block;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
}
.benefit-item span { font-size: 0.78rem; color: var(--silver); }

/* ===== CABEÇALHOS DE SEÇÃO ===== */
.section-header { text-align: center; margin-bottom: 3rem; }

.section-tag {
  display: inline-block;
  color: var(--navy-mid);
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1rem;
}

/* ===== CATEGORIAS ===== */
.categories { background: var(--off-white); }

.categories__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  border: 2px solid transparent;
  transition: all var(--transition);
  box-shadow: 0 2px 10px rgba(13,27,75,0.06);
  display: block;
}
.category-card:hover {
  border-color: var(--gti-red);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.category-card--highlight {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white);
}
/* Texto branco nos cards destacados.
   Usamos .category-card.category-card--highlight (duas classes) para
   ter mais "força" que a regra geral .category-card h3 e sempre vencer. */
.category-card.category-card--highlight h3 { color: var(--white); }
.category-card.category-card--highlight p  { color: rgba(255,255,255,0.85); }
.category-card.category-card--highlight .category-card__link { color: var(--silver-light); }
.category-card--highlight:hover {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  border-color: transparent;
}

.category-card__icon {
  margin-bottom: 0.9rem;
  color: var(--navy);
  display: flex;
  justify-content: center;
}
.category-card__icon svg { width: 42px; height: 42px; }
/* nos cards destacados (fundo azul), o ícone fica prata para contrastar */
.category-card--highlight .category-card__icon { color: var(--silver-light); }
.category-card h3 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.category-card p {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 0.8rem;
}
.category-card__link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy-mid);
  font-family: var(--font-title);
}

/* ===== BANNER INTERMEDIÁRIO ===== */
.mid-banner {
  position: relative;
  /* Foto de carro coberto de espuma + camada azul escura por cima
     (a camada azul garante que o texto branco continue legível) */
  background-color: var(--navy);
  background-image:
    linear-gradient(rgba(7,14,43,0.86), rgba(13,27,75,0.80)),
    url("https://images.pexels.com/photos/6872582/pexels-photo-6872582.jpeg?auto=compress&cs=tinysrgb&w=1600");
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  padding: 5rem 0;
  text-align: center;
  overflow: hidden;
}
.mid-banner__overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' stroke='%23C0C0C0' stroke-width='0.5' fill='none' stroke-opacity='0.05'/%3E%3C/svg%3E") center / 200px;
}
.mid-banner__content {
  position: relative;
  z-index: 2;
}
.mid-banner__content h2 {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 1rem;
}
.mid-banner__content p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* ===== PRODUTOS ===== */
.featured { background: var(--white); }

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 15px rgba(13,27,75,0.08);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--silver-light);
  display: flex;            /* cards em coluna, para alinhar o botão na base */
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gti-red);
}

.product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--gti-red);
  color: var(--white);
  font-family: var(--font-title);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.18rem 0.5rem;
  border-radius: 50px;
  z-index: 1;
  letter-spacing: 0.3px;
}
.product-card__badge--new  { background: var(--navy-light); }
.product-card__badge--sale { background: var(--danger); }

.product-card__img-wrap {
  background: var(--white);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
}
.product-card__img-placeholder {
  font-size: 4rem;
  opacity: 0.6;
}
.product-card__img-wrap img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;       /* mostra o produto inteiro, sem cortar */
  transition: transform 0.4s ease;
}
.product-card:hover .product-card__img-wrap img { transform: scale(1.05); }

.product-card__info {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;                 /* ocupa o espaço restante do card */
}

.product-card__cat {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy-mid);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--font-title);
}

.product-card__info h3 {
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0.3rem 0;
  line-height: 1.4;
  /* nome sempre ocupa 2 linhas (corta com "..." se for maior),
     assim preço e botão ficam alinhados em todos os cards */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.52rem;
}
.product-card__info h3 a:hover { color: var(--navy-light); }

.product-card__stars {
  font-size: 0.82rem;
  color: #F4A61D;
  margin-bottom: 0.5rem;
}
.product-card__stars span { color: var(--text-light); }

.product-card__price {
  margin-bottom: 0.8rem;
  min-height: 2.7rem;      /* reserva a linha do preço antigo ("De R$...") */
}
/* prende o botão na base do card, alinhando todos na mesma altura */
.product-card__info .btn { margin-top: auto; }

/* linha de ações do card: botão comprar + botão WhatsApp (estilo AGF) */
.card-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
}
.product-card .card-actions .add-to-cart {
  flex: 1;
  margin-top: 0;
  padding-left: 0.6rem;
  padding-right: 0.6rem;
}
.btn-whats-card {
  flex: 1;                       /* mesmo tamanho do botão "Comprar" */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: var(--success);
  color: #fff;
  border-radius: var(--radius);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.6rem 0.5rem;
  transition: background var(--transition), transform var(--transition);
}
.btn-whats-card svg { flex-shrink: 0; }
.btn-whats-card:hover { background: #1ebe5b; transform: translateY(-2px); }
.price-from {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  text-decoration: line-through;
}
.price-current {
  display: block;
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--navy);
}

/* ===== POR QUE RESSET ===== */
.why-resset {
  /* Foto de polimento profissional + camada azul escura por cima.
     A camada forte garante que o texto branco continue legível. */
  background-color: var(--navy);
  background-image:
    linear-gradient(135deg, rgba(7,14,43,0.94) 0%, rgba(13,27,75,0.88) 100%),
    url("https://images.pexels.com/photos/5233279/pexels-photo-5233279.jpeg?auto=compress&cs=tinysrgb&w=1600");
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  color: var(--white);
}

.why-resset__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-resset .section-title { color: var(--white); }
.why-resset .section-tag { color: var(--silver); }

.why-resset__text p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.why-resset__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.why-resset__list li {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
}

.why-resset__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.visual-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(192,192,192,0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: background var(--transition);
}
.visual-card:hover { background: rgba(255,255,255,0.12); }

.visual-card__number {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.visual-card__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

/* ===== DEPOIMENTOS ===== */
.testimonials { background: var(--off-white); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: 0 2px 15px rgba(13,27,75,0.07);
  border-left: 4px solid var(--gti-red);   /* detalhe vermelho GTI */
  transition: transform var(--transition);
}
.testimonial-card:hover { transform: translateY(-3px); }

.testimonial-card__stars {
  color: #F4A61D;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}
.testimonial-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.2rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--silver-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.testimonial-card__author strong {
  display: block;
  font-size: 0.88rem;
  color: var(--navy);
}
.testimonial-card__author span {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ===== NEWSLETTER ===== */
.newsletter {
  background: var(--navy);
  padding: 3.5rem 0;
}

.newsletter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.newsletter__text h2 {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.newsletter__text p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

.newsletter__form {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.newsletter__form input {
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius);
  border: 2px solid rgba(192,192,192,0.3);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  min-width: 280px;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter__form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter__form input:focus { border-color: var(--silver); }

/* ===== FOOTER ===== */
.footer {
  background: #070E2B;
  color: rgba(255,255,255,0.75);
  padding-top: 4rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(192,192,192,0.1);
}

.footer__logo {
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer__brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  color: rgba(255,255,255,0.6);
}

.footer__social {
  display: flex;
  gap: 0.8rem;
}
.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  transition: background var(--transition), color var(--transition);
}
.footer__social a:hover {
  background: var(--navy-mid);
  color: var(--white);
}

.footer__col h4 {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer__col ul li a:hover { color: var(--silver); padding-left: 4px; }

.footer__contact li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.payment-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.payment-badges span {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(192,192,192,0.2);
  color: var(--silver-light);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-family: var(--font-title);
}

.footer__bottom {
  padding: 1.2rem 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ===== WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 9999;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse-whatsapp 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.7);
}
@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.8); }
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
  .categories__grid  { grid-template-columns: repeat(3, 1fr); }
  .products__grid    { grid-template-columns: repeat(2, 1fr); }
  .why-resset__inner { grid-template-columns: 1fr; }
  .footer__grid      { grid-template-columns: 1fr 1fr; }
  .benefits-bar__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header__search  { display: none; }
  .header__actions { display: none; }

  .hamburger { display: flex; margin-left: auto; }

  .nav { display: none; }
  .nav.nav--open { display: block; }

  .nav__list {
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .nav__list > li > a { padding: 0.9rem 1.2rem; }

  .dropdown {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    border-top: none;
    background: rgba(255,255,255,0.05);
    display: none;
  }
  .dropdown.dropdown--open { display: block; }
  .dropdown li a { color: var(--silver-light); padding-left: 2rem; }

  .hero { min-height: 480px; }
  .hero__btns { flex-direction: column; }

  .categories__grid  { grid-template-columns: repeat(2, 1fr); }
  .products__grid    { grid-template-columns: 1fr 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .why-resset__visual { grid-template-columns: 1fr 1fr; }

  .newsletter__inner { flex-direction: column; text-align: center; }
  .newsletter__form  { flex-direction: column; width: 100%; }
  .newsletter__form input { min-width: unset; width: 100%; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .categories__grid { grid-template-columns: 1fr 1fr; }
  .products__grid   { grid-template-columns: 1fr 1fr; }  /* 2 produtos por linha no celular */
  .benefits-bar__grid { grid-template-columns: 1fr 1fr; }
  .card-actions { flex-direction: column; }              /* no celular, botões empilhados */
  .btn-whats-card { width: 100%; padding: 0.5rem 0; }
}


/* =====================================================================
   ===== NOVOS COMPONENTES (carrinho, páginas internas, FAQ) ===========
   ===================================================================== */

/* O ícone do carrinho vira "clicável" (abre a gaveta) */
.header__cart { cursor: pointer; }

/* ----- Botões extras ----- */
.btn--whats {
  background: var(--success);
  color: #fff;
  border-color: var(--success);
}
.btn--whats:hover {
  background: #1ebe5b;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
  transform: translateY(-2px);
}
.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--silver-dark);
}
.btn--outline-navy:hover { background: var(--off-white); }

/* Feedback ao adicionar produto ao carrinho */
.btn--added {
  background: var(--success) !important;
  border-color: var(--success) !important;
}

/* ----- GAVETA LATERAL DO CARRINHO ----- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 14, 43, 0.5);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  z-index: 10000;
}
.cart-overlay--show { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 380px;
  max-width: 90vw;
  background: var(--white);
  box-shadow: -8px 0 40px rgba(13,27,75,0.25);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 10001;
  display: flex;
  flex-direction: column;
}
.cart-drawer--open { transform: translateX(0); }

.cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  background: var(--navy);
  color: var(--white);
}
.cart-drawer__head h3 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
}
.cart-drawer__close {
  background: none;
  border: none;
  color: var(--silver-light);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: color var(--transition);
}
.cart-drawer__close:hover { color: var(--white); }

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.cart-drawer__foot {
  border-top: 1px solid var(--silver-light);
  padding: 1.2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

/* Itens dentro da gaveta */
.cart-item {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--off-white);
}
.cart-item__img {
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__info strong {
  display: block;
  font-family: var(--font-title);
  font-size: 0.82rem;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.2rem;
}
.cart-item__price {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}
.cart-item__qty {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--silver-light);
  border-radius: 50px;
  padding: 0.1rem 0.5rem;
}
.cart-item__qty button {
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--navy);
  cursor: pointer;
  width: 22px;
  line-height: 1;
}
.cart-item__qty span { font-size: 0.85rem; font-weight: 700; min-width: 16px; text-align: center; }
.cart-item__remove {
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity var(--transition);
}
.cart-item__remove:hover { opacity: 1; }

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-title);
  margin-bottom: 0.3rem;
}
.cart-total span { color: var(--text-light); }
.cart-total strong { font-size: 1.3rem; color: var(--navy); }

.cart-pix-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0.2rem 0 0.2rem;
}
.cart-pix-note strong { color: var(--success); }

/* Campo de CEP (frete) no carrinho */
.cart-frete {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.6rem;
}
.cart-frete label {
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
}
.cart-frete input {
  border: 2px solid var(--silver-light);
  border-radius: var(--radius);
  padding: 0.6rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
}
.cart-frete input:focus { border-color: var(--gti-red); }
.cart-frete small { font-size: 0.72rem; color: var(--text-light); }

.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-light);
}
.cart-empty__icon { font-size: 3rem; margin-bottom: 1rem; }
.cart-empty p { margin-bottom: 1.2rem; }

/* ----- CABEÇALHO DAS PÁGINAS INTERNAS ----- */
.page-hero {
  background: linear-gradient(135deg, #070E2B, var(--navy), var(--navy-mid));
  color: var(--white);
  padding: 3.5rem 0;
  text-align: center;
}
.page-hero__title {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--white);
  margin-bottom: 0.4rem;
}
.page-hero__subtitle { color: rgba(255,255,255,0.7); font-size: 1.05rem; }

/* ----- FILTROS DO CATÁLOGO ----- */
.filtros {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.filtro-btn {
  background: var(--white);
  border: 2px solid var(--silver-light);
  color: var(--navy);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}
.filtro-btn:hover { border-color: var(--gti-red); }
.filtro-btn--ativo {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.catalogo-vazio {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-light);
  padding: 3rem 0;
  font-size: 1.1rem;
}

/* ----- PÁGINA SOBRE ----- */
.sobre-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}
.sobre-texto p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.sobre-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 1.8rem;
  border-radius: var(--radius-lg);
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.valor-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.2rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(13,27,75,0.07);
  transition: transform var(--transition);
}
.valor-card:hover { transform: translateY(-4px); }
.valor-card__icon { font-size: 2.5rem; margin-bottom: 0.8rem; }
.valor-card h3 {
  font-family: var(--font-title);
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.valor-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* ----- PÁGINA CONTATO ----- */
.contato-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
}
.contato-form-box form { display: flex; flex-direction: column; gap: 1rem; }
.contato-form-box label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
.contato-form-box input,
.contato-form-box textarea {
  border: 2px solid var(--silver-light);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}
.contato-form-box input:focus,
.contato-form-box textarea:focus { border-color: var(--navy-mid); }

.contato-info__list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1rem;
}
.contato-info__list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.contato-info__list span { font-size: 1.4rem; }
.contato-info__list strong {
  display: block;
  font-family: var(--font-title);
  color: var(--navy);
  font-size: 0.9rem;
}
.contato-info__list p { color: var(--text-light); font-size: 0.9rem; }

/* ----- PÁGINA FAQ ----- */
.faq-container { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--silver-light);
  border-radius: var(--radius);
  margin-bottom: 0.8rem;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item--open { box-shadow: var(--shadow); }
.faq-item__question {
  width: 100%;
  text-align: left;
  background: var(--white);
  border: none;
  padding: 1.1rem 1.3rem;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item__arrow {
  font-size: 1.4rem;
  color: var(--navy-mid);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item--open .faq-item__arrow { transform: rotate(45deg); }
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.3rem;
}
.faq-item--open .faq-item__answer { max-height: 300px; padding: 0 1.3rem 1.2rem; }
.faq-item__answer p { color: var(--text-light); line-height: 1.7; font-size: 0.9rem; }

.faq-cta {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--silver-light);
}
.faq-cta p { color: var(--text-light); margin-bottom: 1rem; }

/* ----- RESPONSIVIDADE DOS NOVOS BLOCOS ----- */
@media (max-width: 1024px) {
  .valores-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .sobre-grid,
  .contato-grid { grid-template-columns: 1fr; gap: 2rem; }
  .valores-grid { grid-template-columns: 1fr 1fr; }
  /* No celular, o ícone do carrinho continua visível */
  .header__actions { display: flex; }
  .header__action:not(.header__cart) { display: none; }
}


/* =====================================================================
   ===== RECURSOS NOVOS: compra rápida, filtros, busca ao vivo =========
   ===================================================================== */

/* Foto e nome do produto são clicáveis (abrem a janela do produto) */
.product-card__img-wrap, .product-card__info h3 { cursor: pointer; }

/* ----- Filtros extras (marca / preço) ----- */
.filtros-extra {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  justify-content: center; margin: -1.2rem 0 2.5rem;
}
.filtros-grupo { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; justify-content: center; }
.filtros-label { font-family: var(--font-title); font-weight: 700; font-size: 0.78rem; color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px; }
.filtros-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }

/* ----- Busca com sugestões ao vivo ----- */
.header__search { overflow: visible; position: relative; }
.header__search input { border-radius: 50px 0 0 50px; }
.header__search button { border-radius: 0 50px 50px 0; }
.busca-sugestoes {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: #fff; border: 1px solid var(--silver-light); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); z-index: 1500; display: none;
  max-height: 70vh; overflow-y: auto;
}
.busca-sugestoes--show { display: block; }
.busca-item { display: flex; align-items: center; gap: 0.7rem; padding: 0.55rem 0.8rem; border-bottom: 1px solid var(--off-white); }
.busca-item:hover { background: var(--off-white); }
.busca-item img { width: 40px; height: 40px; object-fit: contain; flex-shrink: 0; }
.busca-item__nome { flex: 1; font-size: 0.82rem; color: var(--navy); line-height: 1.3; }
.busca-item__preco { font-family: var(--font-title); font-weight: 700; color: var(--navy); font-size: 0.85rem; white-space: nowrap; }
.busca-ver-todos { display: block; text-align: center; padding: 0.65rem; font-family: var(--font-title); font-weight: 700; color: var(--gti-red); font-size: 0.8rem; }
.busca-ver-todos:hover { background: var(--off-white); }
.busca-vazio { padding: 1rem; text-align: center; color: var(--text-light); font-size: 0.85rem; }

/* ----- Janela de Compra Rápida (detalhes do produto) ----- */
.pm-overlay {
  position: fixed; inset: 0; background: rgba(7,14,43,0.55); backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none; transition: opacity var(--transition); z-index: 10002;
}
.pm-overlay--show { opacity: 1; pointer-events: auto; }
.produto-modal {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%, -46%) scale(0.98);
  width: 760px; max-width: 94vw; max-height: 90vh; overflow-y: auto;
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  z-index: 10003; opacity: 0; pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}
.produto-modal--open { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.produto-modal__close {
  position: absolute; top: 8px; right: 14px; background: none; border: none;
  font-size: 2rem; line-height: 1; color: var(--text-light); cursor: pointer; z-index: 2;
}
.produto-modal__close:hover { color: var(--gti-red); }
.pm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; padding: 1.6rem; }
.pm-foto { background: var(--white); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; padding: 1rem; }
.pm-foto img { max-width: 100%; max-height: 320px; object-fit: contain; }
.pm-info { display: flex; flex-direction: column; }
.pm-info h2 { font-family: var(--font-title); font-weight: 900; font-size: 1.4rem; color: var(--navy); margin: 0.3rem 0; line-height: 1.25; }
.pm-desc { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; margin: 0.6rem 0 1.2rem; }
.pm-actions { margin-top: auto; }
@media (max-width: 600px) {
  .pm-grid { grid-template-columns: 1fr; gap: 1rem; padding: 1.2rem; }
  .pm-foto img { max-height: 200px; }
  .filtros-extra { gap: 0.8rem; }
}

/* ----- Catálogo: barra lateral de filtros + ordenador ----- */
.catalogo-layout { display: grid; grid-template-columns: 250px 1fr; gap: 2rem; align-items: start; }
.catalogo-sidebar { position: sticky; top: 90px; }
.filtros-toggle { display: none; }

.filtro-bloco { padding-bottom: 1.1rem; margin-bottom: 1.1rem; border-bottom: 1px solid var(--silver-light); }
.filtro-bloco:last-child { border-bottom: none; margin-bottom: 0; }
.filtro-bloco h3 {
  font-family: var(--font-title); font-size: 0.95rem; font-weight: 700;
  color: var(--navy); margin-bottom: 0.8rem;
}
.filtro-lista { display: flex; flex-direction: column; gap: 0.55rem; max-height: 260px; overflow-y: auto; }
.filtro-check { display: flex; align-items: center; gap: 0.55rem; cursor: pointer; font-size: 0.85rem; color: var(--text); }
.filtro-check input { width: 16px; height: 16px; accent-color: var(--gti-red); cursor: pointer; flex-shrink: 0; }
.filtro-check em { font-style: normal; color: var(--text-light); }
.filtro-check:hover { color: var(--gti-red); }

.catalogo-topo { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.catalogo-contagem { color: var(--text-light); font-size: 0.9rem; }
.catalogo-ordenar { display: flex; align-items: center; gap: 0.6rem; }
.catalogo-ordenar label { font-size: 0.85rem; color: var(--text-light); white-space: nowrap; }
.catalogo-ordenar select {
  font-family: var(--font-body); font-size: 0.9rem; color: var(--navy); font-weight: 600;
  padding: 0.55rem 2.2rem 0.55rem 0.9rem; border: 2px solid var(--silver-light);
  border-radius: var(--radius); background-color: #fff; cursor: pointer;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%230D1B4B' stroke-width='2.5' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.8rem center;
}
.catalogo-ordenar select:focus { outline: none; border-color: var(--gti-red); }

/* Botões "Comprar" e "WhatsApp" com largura igual */
.card-actions .add-to-cart, .card-actions .btn-whats-card { min-width: 0; }

/* Na página de produtos (com barra lateral), grade em 3 colunas no desktop */
.catalogo-main .products__grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1000px) { .catalogo-main .products__grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 1500px) {
  .catalogo-layout { grid-template-columns: 1fr; }
  .catalogo-sidebar { position: static; }
  .filtros-toggle {
    display: block; width: 100%; background: var(--navy); color: #fff;
    font-family: var(--font-title); font-weight: 700; font-size: 0.9rem;
    padding: 0.7rem; border: none; border-radius: var(--radius); cursor: pointer; margin-bottom: 1rem;
  }
  .catalogo-sidebar__inner { display: none; background: var(--off-white); padding: 1rem 1.2rem; border-radius: var(--radius); margin-bottom: 1.5rem; }
  .catalogo-sidebar__inner.sidebar--open { display: block; }
}
