  
.btn-sacola {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;

  background: #c9a227;
  color: #000;

  min-width: 18px;
  height: 18px;
  border-radius: 50%;

  display: none;
  align-items: center;
  justify-content: center;

  font-size: 11px;
  font-weight: bold;
  padding: 2px;
}


.selected-sizes {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.qty-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.size-label {
  color: #c9a227;
  font-weight: bold;
}

.qty-selector {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-selector button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #c9a227;
  background: transparent;
  color: #c9a227;
  cursor: pointer;
}

.qty-selector span {
  width: 30px;
  text-align: center;
  color: #c9a227;
}
  


  
  
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --gold: #c9a227;
    --gold-light: #f0c130;
    --green: #009c3b;
    --bg-dark: #0a0a06;
    --bg-card: #111108;
    --bg-card2: #161610;
    --white: #ffffff;
    --gray: #888;
    --gray2: #555;
  }

  body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-dark);
    color: var(--white);
    overflow-x: hidden;
  }

  /* ── ANNOUNCEMENT BAR ── */
  .announcement-bar {
    background: var(--green);
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #fff;
  }
  .announcement-bar span { margin: 0 6px; opacity: 0.7; }

  /* ── NAVBAR ── */
  nav {
    background: #0d0d08;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 40px;
    border-bottom: 1px solid #1e1e12;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .logo-icon {
    width: 38px; height: 38px;
    background: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
  }
  .logo-text {
    line-height: 1.1;
  }
  .logo-text .brand { font-size: 15px; font-weight: 900; letter-spacing: 0.05em; color: #fff; }
  .logo-text .sub { font-size: 9px; letter-spacing: 0.18em; color: var(--gold); text-transform: uppercase; }

  .btn-sacola {
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    padding: 7px 18px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex; align-items: center; gap: 6px;
    transition: background 0.2s;
  }
  .btn-sacola:hover { background: rgba(201,162,39,0.12); }

  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0a0a06;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: url('../img/hero-brasil-D2PrOnEW.jpg') center/cover no-repeat;
    filter: brightness(0.28) saturate(1.2);
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(10,10,6,0.92) 40%, rgba(10,10,6,0.2) 80%);
  }
  .hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 60px;
    max-width: 620px;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.12em;
    padding: 5px 12px;
    border-radius: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 78px;
    line-height: 0.92;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
  }
  .hero-title .gold { color: var(--gold-light); }
  .hero-desc {
    font-size: 13px;
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 22px;
    max-width: 380px;
  }
  .hero-desc strong { color: #fff; }
  .hero-price {
    display: flex; align-items: baseline; gap: 10px;
    margin-bottom: 28px;
  }
  .hero-price .current {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    color: var(--gold-light);
    letter-spacing: 0.02em;
  }
  .hero-price .old {
    font-size: 13px;
    color: var(--gray2);
    text-decoration: line-through;
  }
  .hero-price .badge-off {
    background: var(--green);
    color: #fff;
    font-size: 10px; font-weight: 700;
    padding: 3px 7px;
    border-radius: 3px;
  }
  .btn-hero {
    background: var(--gold);
    color: #000;
    border: none;
    padding: 14px 28px;
    font-size: 13px; font-weight: 800;
    letter-spacing: 0.06em;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-hero:hover { background: var(--gold-light); transform: translateY(-1px); }

  /* ── BENEFITS BAR ── */
  .benefits-bar {
    background: #0d0d08;
    border-top: 1px solid #1e1e12;
    border-bottom: 1px solid #1e1e12;
    padding: 22px 60px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 24px;
    flex-wrap: wrap;
  }
  .benefit-item {
    display: flex; align-items: center; gap: 12px;
  }
  .benefit-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #1a1a10;
    border: 1.5px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .benefit-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .benefit-text strong { display: block; font-size: 13px; font-weight: 700; color: #fff; }
  .benefit-text span { font-size: 11px; color: var(--gray); }
  .benefit-divider { width: 1px; height: 32px; background: #252515; }

  /* ── PRODUCTS SECTION ── */
  .products-section {
    padding: 70px 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .section-eyebrow {
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 14px;
    font-weight: 600;
  }
  .section-title {
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    letter-spacing: 0.02em;
    margin-bottom: 6px;
  }
  .section-title .gold { color: var(--gold); }
  .section-subtitle {
    text-align: center;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 28px;
  }

  /* ── FILTER TABS ── */
  .filter-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 36px;
  }
  .tab {
    padding: 8px 22px;
    border-radius: 20px;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.06em;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    text-transform: uppercase;
  }
  .tab.active { background: var(--gold); color: #000; }
  .tab:not(.active) { background: transparent; color: #888; border: 1.5px solid #2a2a18; }
  .tab:not(.active):hover { border-color: var(--gold); color: var(--gold); }

  /* ── PRODUCT GRID ── */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
.product-card {
  background: var(--bg-card2);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #1e1e12;
  transition: transform 0.2s, border-color 0.2s;
}
.product-card:hover { transform: translateY(-3px); border-color: #2e2e1a; }

.product-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: #dce8f5;
  overflow: hidden;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* preenche toda a área */
  display: block;
  transition: transform 0.3s;
}
.product-card:hover .product-img-wrap img { transform: scale(1.04); }

/* badges ficam sobre a imagem */
.badge-tag {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.05em;
  padding: 5px 10px;
  border-radius: 20px; /* pill arredondado como na imagem */
  text-transform: uppercase;
  background: #222;
}
.badge-tag.oficial { background: #222; color: #fff; }

.badge-off-tag {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
  background: var(--gold);
  color: #000;
  font-size: 11px; font-weight: 800;
  padding: 5px 10px;
  border-radius: 20px;
}

/* info fica ABAIXO da imagem, fundo escuro separado */
.product-info {
  background: var(--bg-card2);
  padding: 14px 16px 16px;
}

.stars { color: var(--gold); font-size: 13px; margin-bottom: 4px; }
.stars span { color: var(--gray); font-size: 11px; margin-left: 4px; }

.product-name { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.product-color { font-size: 12px; color: #4a9eff; margin-bottom: 12px; } /* azul como na imagem */

.sizes-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; color: #555; text-transform: uppercase; margin-bottom: 7px; }
.sizes { display: flex; gap: 6px; margin-bottom: 14px; flex-wrap: wrap; }
.size-btn {
  padding: 6px 12px;
  border: 1.5px solid #2a2a18;
  background: #1a1a10;
  color: #ccc;
  font-size: 11px; font-weight: 700;
  border-radius: 20px; /* pill arredondado */
  cursor: pointer;
  transition: all 0.15s;
}
.size-btn:hover { border-color: var(--gold); color: var(--gold); }

.size-btn.active {
  background: #c9a227;
  color: #000;
}

.price-row { display: flex; flex-direction: column; margin-bottom: 12px; }
.price-old { font-size: 12px; color: #444; text-decoration: line-through; margin-bottom: 2px; }
.price-current { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--gold-light); letter-spacing: 0.02em; }

.btn-buy {
  width: 100%;
  background: var(--gold);
  color: #000;
  border: none;
  padding: 13px;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.1em;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  transition: background 0.2s;
}
.btn-buy:hover { background: var(--gold-light); }

  /* ── CTA SECTION ── */
  .cta-section {
    background: #0d0d08;
    border-top: 1px solid #1e1e12;
    text-align: center;
    padding: 80px 40px;
  }
  .cta-trophy { font-size: 48px; margin-bottom: 16px; display: block; }
  .cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
  }
  .cta-title .gold { color: var(--gold); }
  .cta-subtitle { font-size: 13px; color: var(--gray); margin-bottom: 30px; }
  .cta-subtitle span { margin: 0 6px; opacity: 0.5; }
  .btn-cta {
    background: var(--gold);
    color: #000;
    border: none;
    padding: 16px 36px;
    font-size: 13px; font-weight: 800;
    letter-spacing: 0.08em;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 8px;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

  /* ── FOOTER ── */
  footer {
    background: #080806;
    border-top: 1px solid #1a1a10;
    text-align: center;
    padding: 28px 40px;
  }
  .footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 18px; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 6px; }
  .footer-copy { font-size: 11px; color: #333; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 52px; }
    .benefits-bar { padding: 16px 20px; }
    .benefit-divider { display: none; }
  }
  @media (max-width: 560px) {
    .hero-content { padding: 40px 20px; }
    .hero-title { font-size: 42px; }
    .products-section { padding: 40px 16px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  }