/* ═══════════════════════════════════════
   RESET & VARIABLES
═══════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --red:       #C8152A;
  --red-dark:  #991020;
  --red-light: #E8293F;
  --navy:      #080808;
  --navy-mid:  #121212;
  --blue:      #1A1A1A;
  --blue-mid:  #262626;
  --steel:     #3A4A5C;
  --silver:    #8FA0B0;
  --light:     #F0F4F8;
  --white:     #FFFFFF;
  --text:      #1A2030;
  --muted:     #64748B;
  --border:    #D1D9E6;
  --wa:        #25D366;
  --wa-dark:   #128C7E;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
ul { list-style: none; }

/* ═══════════════════════════════════════
   SCROLLBAR
═══════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ═══════════════════════════════════════
   TOP BAR
═══════════════════════════════════════ */
.topbar {
  background: var(--navy);
  color: var(--silver);
  font-size: 0.78rem;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.5px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-left { display: flex; gap: 20px; align-items: center; }
.topbar-left span { display: flex; align-items: center; gap: 5px; }
.topbar-left svg { width: 13px; height: 13px; fill: var(--red-light); }
.topbar-right { display: flex; gap: 14px; align-items: center; }
.topbar-right a {
  display: flex; align-items: center; gap: 5px;
  color: var(--silver); transition: color .2s;
}
.topbar-right a:hover { color: var(--white); }
.topbar-right svg { width: 14px; height: 14px; }

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
header {
  background: var(--navy-mid);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  border-bottom: 3px solid var(--red);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}
.logo-wrap { flex-shrink: 0; display: flex; align-items: center; gap: 12px; }
.logo-wrap img { height: 58px; width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); }
.logo-text { display: flex; flex-direction: column; }
.logo-text-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}
.logo-text-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  color: var(--red-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

nav { flex: 1; display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: 4px;
  transition: all .2s;
  white-space: nowrap;
  cursor: pointer;
}
.nav-link:hover { background: rgba(200,21,42,0.15); color: var(--white); }
.nav-link.active { color: var(--red-light); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.btn-wa-header {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--wa);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 6px;
  transition: all .2s;
  white-space: nowrap;
}
.btn-wa-header:hover { background: var(--wa-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37,211,102,0.3); }
.btn-wa-header svg { width: 16px; height: 16px; fill: white; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: all .3s; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  /* background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 40%, var(--blue) 100%); */
  background-color: var(--navy-mid);
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/imagem-teste.jpeg'); /* Sombra escura + Imagem */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 520px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
/* Comentado para remover o efeito de + e deixar a imagem visível
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(200,21,42,0.15) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
*/
.hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,21,42,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,21,42,0.2);
  border: 1px solid rgba(200,21,42,0.4);
  color: var(--red-light);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  animation: fadeUp .6s ease both;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--red-light); border-radius: 50%; }

.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.9), 0 2px 4px rgba(0,0,0,0.8);
  animation: fadeUp .6s .1s ease both;
}
.hero h1 span { color: var(--red-light); }

.hero-desc {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 480px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.9), 0 1px 3px rgba(0,0,0,0.8);
  animation: fadeUp .6s .2s ease both;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp .6s .3s ease both; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all .25s;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,21,42,0.4); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all .25s;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeUp .6s .4s ease both;
}

.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--red-light);
  line-height: 1;
}
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 3px; text-transform: uppercase; letter-spacing: 0.5px; }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn .8s .2s ease both;
}
.hero-logo-display {
  width: 380px;
  max-width: 100%;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.6)) drop-shadow(0 0 40px rgba(200,21,42,0.2));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ═══════════════════════════════════════
   STRIP / ANNOUNCEMENT BAR
═══════════════════════════════════════ */
.strip {
  background: var(--red);
  overflow: hidden;
  padding: 10px 0;
}
.strip-track {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.strip-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: white;
  text-transform: uppercase;
  padding: 0 40px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 12px;
}
.strip-item::before { content: '★'; font-size: 0.7rem; opacity: 0.7; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════
   CATEGORIES SECTION
═══════════════════════════════════════ */
.section { padding: 72px 0; }
.section-light { background: var(--light); }
.section-dark { background: var(--navy); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.section-header { text-align: center; margin-bottom: 48px; }
.section-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.1;
}
.section-title.light { color: var(--white); }
.section-desc { color: var(--muted); font-size: 1rem; margin-top: 10px; }
.section-desc.light { color: rgba(255,255,255,0.6); }

.title-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 12px;
}
.title-line::before, .title-line::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 2px;
  background: var(--red);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.cat-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .25s;
}
.cat-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.cat-card:hover::before { transform: scaleX(1); }
.cat-card.active { border-color: var(--red); background: #FFF5F5; }
.cat-card.active::before { transform: scaleX(1); }

.cat-icon { font-size: 2.2rem; margin-bottom: 10px; display: flex; align-items: center; justify-content: center; color: var(--red); }
.cat-icon svg { width: 32px; height: 32px; stroke: currentColor; stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.cat-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--navy);
}

/* ABOUT / DIFFERENTIALS GRID */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 24px;
}
@media(min-width: 992px) {
  .about-grid { grid-template-columns: 1.5fr 1fr; }
}

.diff-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.diff-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-align: left;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.diff-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.diff-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--red);
  transform: scaleY(0);
  transition: transform .25s;
  transform-origin: top;
}
.diff-card:hover::before { transform: scaleY(1); }

.diff-icon {
  width: 40px; height: 40px;
  background: #FFF5F5;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  margin-bottom: 16px;
}
.diff-icon svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.diff-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.2;
}
.diff-desc {
  font-size: 0.9rem;
  color: var(--text);
}

.commitment-card {
  background: var(--navy);
  border-radius: 16px;
  padding: 48px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.commitment-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.commitment-card h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  background: var(--red);
  margin-top: 12px;
}
.commitment-card p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ddd;
  position: relative;
  z-index: 2;
}
.commitment-card p strong {
  color: white;
}
.commitment-watermark {
  position: absolute;
  right: -30px;
  bottom: -40px;
  width: 250px;
  height: 250px;
  opacity: 0.05;
  color: white;
  z-index: 1;
}
.commitment-watermark svg { width: 100%; height: 100%; stroke: currentColor; stroke-width: 1; fill: none; }
/* ═══════════════════════════════════════
   PRODUCTS
═══════════════════════════════════════ */
.products-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.products-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
}
.products-count {
  font-size: 0.88rem;
  color: var(--muted);
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.prod-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all .25s;
  display: flex;
  flex-direction: column;
}
.prod-card:hover { border-color: rgba(200,21,42,0.3); box-shadow: 0 12px 36px rgba(0,0,0,0.1); transform: translateY(-3px); }

.prod-img-wrap {
  background: var(--light);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
  color: var(--navy);
}
.prod-img-wrap svg {
  width: 80px;
  height: 80px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.prod-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--red);
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}
.prod-badge.new { background: var(--blue); }

.prod-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.prod-cat {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.prod-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 8px;
  flex: 1;
}
.prod-brand {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 12px;
}
.prod-price {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.prod-price span {
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--muted);
}
.prod-installment {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--wa);
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 11px 16px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  transition: all .2s;
  width: 100%;
  text-decoration: none;
}
.btn-whatsapp:hover { background: var(--wa-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(37,211,102,0.35); }
.btn-whatsapp svg { width: 18px; height: 18px; fill: white; flex-shrink: 0; }

/* ═══════════════════════════════════════
   FILTER TABS
═══════════════════════════════════════ */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 20px;
  border-radius: 24px;
  border: 1.5px solid var(--border);
  background: white;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s;
}
.filter-btn:hover { border-color: var(--red); color: var(--red); }
.filter-btn.active { background: var(--navy); border-color: var(--navy); color: white; }

/* ═══════════════════════════════════════
   FEATURES STRIP
═══════════════════════════════════════ */
.features-strip { background: var(--navy-mid); padding: 40px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}
.feature-item { display: flex; align-items: center; gap: 16px; }
.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(200,21,42,0.15);
  border: 1px solid rgba(200,21,42,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  color: var(--red-light);
}
.feature-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  letter-spacing: 0.3px;
}
.feature-sub { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* ═══════════════════════════════════════
   BRANDS
═══════════════════════════════════════ */
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.brand-tag {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 14px 28px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--steel);
  transition: all .2s;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.brand-tag:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }

/* ═══════════════════════════════════════
   CTA WHATSAPP BANNER
═══════════════════════════════════════ */
.cta-banner {
  background: var(--navy);
  padding: 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(200,21,42,0.15) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-banner-content { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  margin-bottom: 12px;
}
.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.btn-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--wa-dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 8px;
  transition: all .25s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-cta-wa:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.25); }
.btn-cta-wa svg { width: 22px; height: 22px; fill: var(--wa-dark); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 0;
  border-top: 3px solid var(--red);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo { height: 70px; width: auto; margin-bottom: 16px; }
.footer-about { font-size: 0.88rem; line-height: 1.6; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  font-size: 1.1rem;
  color: white;
}
.social-btn svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.social-btn:hover { background: var(--red); }

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a::before { content: '›'; color: var(--red); font-size: 1rem; }
.footer-col ul li a:hover { color: white; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
}
.footer-contact-item span:first-child { 
  font-size: 1.1rem; 
  flex-shrink: 0; 
  display: flex;
  align-items: center;
}
.footer-contact-item span:first-child svg {
  width: 20px; height: 20px; stroke: var(--silver); stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom-text { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-bottom-text a { color: rgba(255,255,255,0.5); transition: color .2s; }
.footer-bottom-text a:hover { color: var(--red-light); }

/* ═══════════════════════════════════════
   FLOATING WA BUTTON
═══════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: all .25s;
  animation: pulse-wa 2.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.65); }
.wa-float svg { width: 30px; height: 30px; fill: white; }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 0 0 14px rgba(37,211,102,0); }
}

/* ═══════════════════════════════════════
   BENTO GRID (CONTATO)
═══════════════════════════════════════ */
.contact-bento {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.bento-card {
  background: var(--navy-mid);
  border-radius: 24px;
  padding: 48px;
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
  transition: all .3s;
}
.bento-card:hover {
  border-color: rgba(200,21,42,0.2);
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.bento-quem-somos {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bento-quem-somos::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at top right, rgba(200,21,42,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.bento-methods {
  display: grid;
  grid-template-rows: repeat(3, auto);
  gap: 20px;
  align-content: space-between;
}
.bento-method-card {
  background: var(--navy-mid);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all .3s;
  text-decoration: none;
  cursor: pointer;
}
.bento-method-card:hover {
  background: var(--blue-mid);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}
.bento-icon-wrap {
  width: 54px;
  height: 54px;
  background: rgba(255,255,255,0.05);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--silver);
  transition: all .3s;
}
.bento-method-card:hover .bento-icon-wrap {
  background: rgba(200,21,42,0.1);
  color: var(--red-light);
}
.bento-method-card.highlight:hover .bento-icon-wrap {
  background: rgba(37,211,102,0.15);
  color: var(--wa);
}
.bento-icon-wrap svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-bento { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .topbar-left { display: none; }
  .logo-text { display: none; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .prod-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}

/* ═══════════════════════════════════════
   HIDDEN PRODUCTS (filter)
═══════════════════════════════════════ */
.prod-card.hidden { display: none; }
/* ═══════════════════════════════════════
   SEARCH BOX
   ═══════════════════════════════════════ */
.search-box {
  display: flex;
  align-items: center;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  max-width: 400px;
  width: 100%;
  transition: all .2s;
}
.search-box:focus-within {
  border-color: var(--red);
  box-shadow: 0 4px 12px rgba(200,21,42,0.1);
}
.search-box input {
  border: none;
  padding: 12px 16px;
  flex: 1;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
}
.search-box button {
  background: none;
  border: none;
  padding: 0 16px;
  color: var(--muted);
  cursor: pointer;
  transition: color .2s;
}
.search-box button:hover {
  color: var(--red);
}

/* ═══════════════════════════════════════
   PAGINATION
   ═══════════════════════════════════════ */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.pagination button {
  background: white;
  border: 1.5px solid var(--border);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.pagination button:hover {
  border-color: var(--red);
  color: var(--red);
}
.pagination button.active {
  background: var(--red);
  border-color: var(--red);
  color: white;
}
.pagination button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}


/* ═══════════════════════════════════════
   CATEGORY DROPDOWN
   ═══════════════════════════════════════ */
.filter-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.category-dropdown {
  position: relative;
  z-index: 50;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: all .2s;
  min-width: 240px;
}
.dropdown-toggle:hover {
  border-color: var(--red);
}
.dropdown-toggle svg { flex-shrink: 0; }
.dropdown-toggle .chevron {
  margin-left: auto;
  transition: transform .2s;
}
.category-dropdown.open .dropdown-toggle {
  border-color: var(--red);
  box-shadow: 0 4px 12px rgba(200,21,42,0.1);
}
.category-dropdown.open .chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 280px;
  max-width: 340px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .2s ease;
}
.category-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-search {
  padding: 10px 12px 6px;
  border-bottom: 1px solid var(--border);
}
.dropdown-search input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 8px 12px;
  font-family: inherit;
  font-size: 0.85rem;
  outline: none;
  transition: border-color .2s;
}
.dropdown-search input:focus {
  border-color: var(--red);
}

.dropdown-list {
  max-height: 320px;
  overflow-y: auto;
  padding: 6px;
}
.dropdown-list::-webkit-scrollbar { width: 4px; }
.dropdown-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.dropdown-list::-webkit-scrollbar-thumb:hover { background: var(--red); }

.dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 9px 12px;
  border: none;
  background: none;
  font-family: 'Barlow', sans-serif;
  font-size: 0.88rem;
  color: var(--text);
  cursor: pointer;
  border-radius: 6px;
  transition: all .15s;
  text-align: left;
}
.dropdown-item:hover {
  background: var(--light);
  color: var(--red);
}
.dropdown-item.active {
  background: rgba(200,21,42,0.08);
  color: var(--red);
  font-weight: 600;
}
.cat-count {
  background: var(--light);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
  min-width: 28px;
  text-align: center;
}
.dropdown-item.active .cat-count {
  background: rgba(200,21,42,0.15);
  color: var(--red);
}

.filter-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--muted);
}
.filter-info strong {
  color: var(--red);
}
.clear-filter {
  background: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 0.78rem;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s;
}
.clear-filter:hover {
  border-color: var(--red);
  color: var(--red);
}

@media (max-width: 768px) {
  .products-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .search-box {
    max-width: 100%;
  }
  .dropdown-toggle {
    min-width: 100%;
  }
  .dropdown-menu {
    min-width: 100%;
    max-width: 100%;
  }
  .filter-controls {
    width: 100%;
  }
}
