/* ═══════════════════════════════════════════════
   SAWCE COMPANY — Stylesheet v2.0
   ═══════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────── */
:root {
  --green:      #13d203;
  --green-dark: #0ea802;
  --purple:     #B100c7;
  --black:      #0a0a0a;
  --surface:    #111111;
  --surface2:   #1a1a1a;
  --border:     #2a2a2a;
  --text:       #f0f0f0;
  --muted:      #888888;
}

/* ── Reset ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--black);
  color: var(--text);
  margin: 0;
}

h1, h2, h3, .bebas { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.03em; }
a { text-decoration: none; }

::-webkit-scrollbar               { width: 6px; }
::-webkit-scrollbar-track         { background: var(--black); }
::-webkit-scrollbar-thumb         { background: var(--green); border-radius: 3px; }

/* ══════════════════════════════════════════════
   POPUP PROMOÇÃO
══════════════════════════════════════════════ */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.popup-overlay.active {
  display: flex;
}

/* Sem fundo, sem padding — só a imagem */
.popup-content {
  position: relative;
  max-width: 460px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.popup-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px 12px 0 0;
}

.popup-close-btn {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ff4757;
  color: #fff;
  border: none;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 1;
  transition: background 0.2s, transform 0.2s;
}

.popup-close-btn:hover {
  background: #e63946;
  transform: scale(1.1);
}

.popup-whatsapp-btn {
  display: block;
  width: 100%;
  padding: 0.9rem 1rem;
  background: #25D366;
  color: #000;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 0 0 12px 12px;
  transition: background 0.2s, transform 0.2s;
  font-family: 'Outfit', sans-serif;
}

.popup-whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════════ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 1rem;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 1;
}

.lightbox-close:hover { opacity: 1; transform: scale(1.1); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}

.lightbox-nav:hover { background: rgba(19, 210, 3, 0.3); }

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.lightbox-nav:disabled {
  opacity: 0.25;
  cursor: default;
}

.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

/* ── Header ─────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.header-logo { height: 52px; width: auto; }

.desktop-nav { display: flex; gap: 2rem; }

.nav-link {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.2s;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-link:hover { color: var(--green); }

/* ── Mobile Menu ────────────────────────────── */
#mobile-menu-button {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

#mobile-menu { border-top: 1px solid var(--border); background: var(--surface2); }
#mobile-menu.hidden { display: none; }

#mobile-menu a {
  display: block;
  padding: 0.85rem 1.5rem;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s;
  border-bottom: 1px solid var(--border);
}

#mobile-menu a:hover { color: var(--green); }

/* ── Ticker ─────────────────────────────────── */
.ticker-wrap { overflow: hidden; background: var(--green); padding: 0.55rem 0; }
.ticker { display: flex; width: max-content; animation: ticker 30s linear infinite; }
.ticker-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  color: #000;
  padding: 0 2.5rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

/* ── Hero ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 0.12;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(19,210,3,.15) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 20%,  rgba(177,0,199,.12) 0%, transparent 60%);
}

.hero-content { position: relative; z-index: 1; text-align: center; padding: 2rem; }

.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(19,210,3,.3);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: rgba(19,210,3,.08);
  margin-bottom: 1.5rem;
}


.hero-title { font-size: clamp(4rem,12vw,10rem); line-height: 0.9; color: #fff; text-shadow: 0 0 80px rgba(19,210,3,.2); }
.hero-title span { color: var(--green); }
.hero-sub { font-size: clamp(1rem,2vw,1.3rem); color: var(--muted); margin: 1.5rem auto; max-width: 500px; font-weight: 300; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Buttons ────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--green);
  color: #000;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2.5rem;
  border-radius: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(19,210,3,.3); }
.btn-primary--sm { padding: 0.55rem 1.4rem; font-size: 0.78rem; }

.btn-ghost {
  display: inline-block;
  border: 1px solid var(--green);
  color: var(--text);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 0.7rem 1.8rem;
  border-radius: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.25s;
  background: transparent;
  cursor: pointer;
}

.btn-ghost:hover { border-color: var(--green); color: var(--green); }

/* ── Stats ───────────────────────────────────── */
.stats-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); }
.stats-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { text-align: center; padding: 0.8rem 1rem; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; color: var(--green); }
.stat-label { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }

/* ── Section Helpers ────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
  border: 1px solid rgba(177,0,199,.3);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(177,0,199,.08);
  margin-bottom: 0.75rem;
}

.section-title { font-size: clamp(2.5rem,6vw,4.5rem); color: #fff; line-height: 0.95; }

/* ── Products Section ───────────────────────── */
#products { padding: 5rem 1.5rem; }
.products-inner { max-width: 1280px; margin: 0 auto; }
.products-header { margin-bottom: 2.5rem; }

/* ── Filters ────────────────────────────────── */
/* ── Heading row (título + busca lado a lado) ── */
.products-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

/* ── Search wrapper ── */
.search-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 320px;
  flex-shrink: 0;
}

.search-icon {
  position: absolute;
  left: 0.9rem;
  color: var(--muted);
  display: flex;
  pointer-events: none;
  transition: color 0.2s;
}

/* ── Input ── */
.search-input {
  width: 100%;
  height: 42px;
  padding: 0 2.5rem 0 2.6rem;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;

  /* Remove o X nativo do navegador (type="search") */
  -webkit-appearance: none;
  appearance: none;
}

.search-input::placeholder {
  color: var(--muted);
}

.search-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(19, 210, 3, 0.12);
}

.search-input:focus + .search-icon,
.search-wrap:focus-within .search-icon {
  color: var(--green);
}

/* Remove X padrão do Chrome/Safari */
.search-input::-webkit-search-cancel-button,
.search-input::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* ── Botão limpar (×) ── */
.search-clear {
  position: absolute;
  right: 0.6rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.search-clear:hover {
  color: var(--text);
  background: var(--border);
}

/* ── Banner "sem resultados" ── */
.search-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 1rem;
}

.search-empty-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--muted);
  margin: 1rem 0 0.5rem;
}

.search-empty-sub {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ── Highlight do termo buscado ── */
.search-highlight {
  background: rgba(19, 210, 3, 0.25);
  color: #fff;
  border-radius: 2px;
  padding: 0 1px;
}

/* ── Responsivo ── */
@media (max-width: 600px) {
  .products-heading-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .search-wrap {
    max-width: 100%;
  }
}
.filters { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.filter-pill {
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.filter-pill:hover,
.filter-pill.active { border-color: var(--green); color: var(--green); background: rgba(19,210,3,.08); }

/* ── Products Grid ──────────────────────────── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px,1fr)); gap: 1.25rem; }

/* ══════════════════════════════════════════════
   PRODUCT CARD + CAROUSEL
══════════════════════════════════════════════ */
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  border-color: rgba(19,210,3,.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4), 0 0 0 1px rgba(19,210,3,.1);
}

/* Image wrapper — relative for arrows + dots */
.product-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--surface2);
  cursor: zoom-in;
}

.product-img-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.product-card:hover .product-img-wrap img { transform: scale(1.04); }

/* Category tag */
.cat-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(4px);
  color: var(--green);
  border: 1px solid rgba(19,210,3,.3);
  z-index: 2;
  pointer-events: none;
}

/* ── Carousel Arrows ──────────────────────── */
.img-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s;
  backdrop-filter: blur(4px);
  padding: 0;
}

/* Always visible on touch devices */
@media (hover: none) {
  .img-arrow { opacity: 1; }
}

.product-img-wrap:hover .img-arrow { opacity: 1; }
.img-arrow:hover { background: rgba(19,210,3,.5); }
.img-arrow--prev { left: 8px; }
.img-arrow--next { right: 8px; }

/* ── Carousel Dots ────────────────────────── */
.img-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
}

.img-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  transition: background 0.2s, transform 0.2s;
}

.img-dot.active {
  background: var(--green);
  transform: scale(1.3);
}

/* Product body */
.product-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.product-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; color: #fff; margin-bottom: 0.35rem; line-height: 1.1; }
.product-desc { font-size: 0.82rem; color: var(--muted); flex: 1; margin-bottom: 0.75rem; line-height: 1.5; }
.product-price { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: var(--purple); line-height: 1; margin-bottom: 0.85rem; }
/* ── Preço promocional ── */
.product-price--promo {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-bottom: 0.85rem;
}

.price-old {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: var(--muted);
  text-decoration: line-through;
  line-height: 1;
}

.price-new {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--green);
  line-height: 1;
}

.promo-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #ff4757;
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  z-index: 2;
}
/* ── Color Thumbs ───────────────────────────── */
.color-thumbs { display: flex; gap: 6px; margin-bottom: 0.85rem; flex-wrap: wrap; }

.color-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  cursor: pointer;
  background-size: cover;
  background-position: center;
  transition: border-color 0.2s, transform 0.2s;
}

.color-thumb:hover,
.color-thumb.selected { border-color: var(--green); transform: scale(1.15); }

/* ── Buy Button ─────────────────────────────── */
.btn-buy {
  width: 100%;
  padding: 0.7rem;
  background: var(--green);
  color: #000;
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.25s;
  font-family: 'Outfit', sans-serif;
}

.btn-buy:hover { background: var(--green-dark); box-shadow: 0 4px 20px rgba(19,210,3,.35); }

/* ── Pagination ─────────────────────────────── */
.pagination-wrap { display: flex; flex-direction: column; align-items: center; gap: 0.85rem; margin-top: 3rem; }
.pagination { display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; justify-content: center; }

.page-btn {
  min-width: 38px;
  height: 38px;
  padding: 0 0.7rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Outfit', sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page-btn:hover:not(:disabled):not(.ellipsis) { border-color: var(--green); color: var(--green); background: rgba(19,210,3,.08); }
.page-btn.active { border-color: var(--green); background: var(--green); color: #000; font-weight: 700; cursor: default; }
.page-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.page-btn.ellipsis { border: none; cursor: default; pointer-events: none; }
.page-info { font-size: 0.8rem; color: var(--muted); }

/* ── About ───────────────────────────────────── */
#quem-somos { padding: 5rem 1.5rem; background: var(--surface); border-top: 1px solid var(--border); }

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-quote { margin-top: 2rem; padding: 1.25rem; background: var(--surface2); border: 1px solid var(--border); border-radius: 8px; border-left: 3px solid var(--green); }
.about-quote p { font-style: italic; color: var(--muted); font-size: 0.88rem; line-height: 1.7; margin: 0; }
.members-list { display: flex; flex-direction: column; gap: 1rem; }

.member-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: border-color 0.3s;
}

.member-card:hover { border-color: rgba(177,0,199,.4); }
.member-avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--border); }
.member-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: #fff; }
.member-role { font-size: 0.78rem; color: var(--purple); font-weight: 600; letter-spacing: 0.05em; }
.member-lkd { font-size: 0.82rem; color: var(--green); margin-top: 0.25rem; font-weight: 500; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: var(--green); }
.footer-tagline { color: var(--muted); font-size: 0.82rem; margin-top: 0.25rem; }

/* Payment methods */

.footer-payment-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.payment-methods {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.payment-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.6rem 0.8rem;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  min-width: 60px;
  transition: border-color 0.2s, color 0.2s;
}

.payment-badge:hover { border-color: var(--green); color: var(--text); }
.payment-icon { font-size: 1.3rem; }
.footer-installment { font-size: 0.78rem; color: var(--muted); margin: 0.75rem 0 0; }
.footer-installment strong { color: var(--green); }

/* Social buttons */
.footer-socials { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: flex-start; padding-top: 1.75rem; }

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.2rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.social-btn:hover { border-color: var(--purple); color: var(--purple); background: rgba(177,0,199,.08); }
.social-btn--green { border-color: rgba(19,210,3,.3); color: var(--green); }
.social-btn--green:hover { border-color: var(--green); color: var(--green); background: rgba(19,210,3,.08); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-copy { color: var(--muted); font-size: 0.75rem; margin: 0; }

/* ── Animations ─────────────────────────────── */
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.fade-up         { animation: fadeUp 0.7s ease both; }
.fade-up.delay-1 { animation-delay: 0.1s; }
.fade-up.delay-2 { animation-delay: 0.25s; }
.fade-up.delay-3 { animation-delay: 0.4s; }

/* ── Responsive ─────────────────────────────── */
@media (max-width: 768px) {
  #desktop-nav        { display: none !important; }
  #header-cta         { display: none !important; }
  #mobile-menu-button { display: block !important; }
  .stats-grid  { grid-template-columns: repeat(2,1fr); }
  .about-inner { grid-template-columns: 1fr; }
  .img-arrow   { opacity: 1; width: 30px; height: 30px; font-size: 1.2rem; }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

  .product-img-wrap img {
    height: auto;
    aspect-ratio: 1/1;
  }

  .product-body {
    padding: 0.75rem;
  }

  .product-name {
    font-size: 1rem;
  }

  .product-desc {
    font-size: 0.72rem;
    /* Limita a 2 linhas e corta com "..." */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-price {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }

  .price-old {
    font-size: 0.85rem;
  }

  .price-new {
    font-size: 1.3rem;
  }

  .color-thumbs {
    gap: 4px;
    margin-bottom: 0.5rem;
  }

  .color-thumb {
    width: 22px;
    height: 22px;
  }

  .btn-buy {
    padding: 0.55rem;
    font-size: 0.75rem;
  }

  .img-arrow {
    width: 26px;
    height: 26px;
    font-size: 1rem;
  }

  .promo-badge {
    font-size: 0.8rem;
    padding: 0.15rem 0.45rem;
  }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .footer-inner  { flex-direction: column; }
  .lightbox-nav  { width: 42px; height: 42px; font-size: 2rem; }
  .lightbox-prev { left: 0.25rem; }
  .lightbox-next { right: 0.25rem; }
}

/* ══════════════════════════════════════════════
   FAQ PAGE
══════════════════════════════════════════════ */

.faq-hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--surface2) 100%);
  padding: 6rem 2rem;
  text-align: center;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-hero-content {
  max-width: 800px;
}

#faq-section {
  padding: 4rem 2rem;
  background: var(--black);
}

.faq-inner {
  max-width: 900px;
  margin: 0 auto;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* FAQ Item */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--green);
  box-shadow: 0 0 20px rgba(19, 210, 3, 0.15);
}

/* FAQ Question Button */
.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  font-family: 'Outfit', sans-serif;
}

.faq-question:hover {
  color: var(--green);
  background: var(--surface2);
}

.faq-question[aria-expanded="true"] {
  color: var(--green);
  background: var(--surface2);
}

.faq-title {
  text-align: left;
  flex: 1;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  margin-left: 1rem;
  color: var(--green);
  transition: transform 0.3s ease;
  min-width: 30px;
  text-align: right;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(90deg);
}

/* FAQ Answer */
.faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  background: var(--black);
  border-top: 1px solid var(--border);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-answer p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.95rem;
  margin: 0;
}

.faq-answer strong {
  color: var(--text);
}

/* CTA Section */
.faq-cta {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--surface2) 0%, var(--black) 100%);
  text-align: center;
}

.cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

/* Mobile */
@media (max-width: 768px) {
  .faq-hero {
    padding: 4rem 1.5rem;
    min-height: auto;
  }

  .faq-question {
    font-size: 1rem;
    padding: 1.2rem;
  }

  .faq-answer {
    padding: 0 1.2rem 1.2rem 1.2rem;
    font-size: 0.9rem;
  }

  #faq-section {
    padding: 3rem 1.5rem;
  }

  .faq-cta {
    padding: 3rem 1.5rem;
  }
}

/* ══════════════════════════════════════════════
   PREÇOS - PIX vs CARTÃO
══════════════════════════════════════════════ */

.product-price--dual {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.8rem;
  margin-bottom: 1rem;
  padding: 1rem 1.8rem;
  background: var(--surface2);
  border-radius: 8px;
  border-left: 3px solid var(--green);
  align-items: center;
  justify-items: center;
}

.price-pix,
.price-card {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  align-items: center;
  text-align: center;
}

.price-label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.price-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
}

.price-pix .price-value {
  color: var(--green);
  font-size: 1.5rem;
  font-weight: 800;
}

.price-card .price-value {
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
}

.price-installment {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

.price-divider {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .product-price--dual {
    grid-template-columns: 1fr auto 1fr;
    gap: 0.5rem;
    padding: 0.8rem;
  }

  .price-value {
    font-size: 1rem;
  }

  .price-divider {
    font-size: 0.65rem;
  }
}

/* ══════════════════════════════════════════════
   SHOPPING CART
══════════════════════════════════════════════ */

.cart-icon-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
  transition: color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-icon-btn:hover {
  color: var(--green);
  transform: scale(1.1);
}

.cart-icon-btn {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--green);
  color: var(--black);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
}

/* ══════════════════════════════════════════════
   PERSONALIZAÇÃO MODAL
══════════════════════════════════════════════ */
.personalization-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  overflow: auto;
}

.personalization-modal.active {
  display: flex;
}

.personalization-content {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  max-width: 650px;
  width: 90vw;
  max-height: 90vh;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .personalization-content {
    padding: 1.5rem;
    max-width: 95vw;
  }

  .personalization-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .shirt-preview {
    width: 100%;
  }

  .personalization-container form {
    width: 100%;
  }
}

.personalization-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text);
  cursor: pointer;
  transition: color 0.2s;
}

.personalization-close-btn:hover {
  color: var(--green);
}

.personalization-content h2 {
  margin: 0 0 0.5rem 0;
  font-size: 1.3rem;
  color: var(--green);
}

.personalization-title {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 1rem 0;
}

.personalization-fee {
  background: var(--surface);
  border-left: 3px solid var(--green);
  padding: 0.8rem;
  margin: 0 0 1.5rem 0;
  border-radius: 4px;
  font-size: 0.9rem;
  color: var(--text);
}

.personalization-container {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

/* Visualização da Camiseta */
.shirt-preview {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 220px;
}

.shirt-back {
  width: 180px;
  height: 240px;
  background: linear-gradient(135deg, #1a4d2e 0%, #2d8659 100%);
  border-radius: 20px 20px 40px 40px;
  position: relative;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4), inset 0 -3px 6px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  padding: 2rem 1rem;
  overflow: hidden;
}

/* Decote da camiseta */
.shirt-back::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0 0 20px 20px;
}

.shirt-name {
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.15em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  font-family: 'Bebas Neue', sans-serif;
  z-index: 2;
}

.shirt-number {
  font-size: 4.5rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6), -1px -1px 2px rgba(255, 255, 255, 0.1);
  font-family: 'Bebas Neue', sans-serif;
  line-height: 0.9;
  letter-spacing: -0.05em;
  z-index: 2;
}

/* Formulário */
.personalization-container form {
  flex: 1;
  min-width: 220px;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}

.form-group input {
  width: 100%;
  padding: 0.8rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
  transition: border-color 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--green);
}

.form-group input::placeholder {
  color: var(--muted);
}

#personalization-form button {
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.product-buttons {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.btn-add-cart {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.5rem 0.7rem;
  border-radius: 6px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.btn-add-cart:hover {
  background: var(--green);
  border-color: var(--green);
  color: #000;
}

.btn-personalize {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-personalize:hover {
  background: var(--green);
  border-color: var(--green);
  color: #000;
}

.cart-item-personalization {
  font-size: 0.8rem;
  color: var(--green);
  margin: 0.3rem 0;
  font-weight: 500;
}

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -380px;
  width: 380px;
  height: 100vh;
  background: var(--surface2);
  border-left: 1px solid var(--border);
  z-index: 9000;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.4);
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.cart-header h2 {
  margin: 0;
  font-size: 1.2rem;
  font-family: 'Bebas Neue', sans-serif;
}

.cart-close-btn {
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s;
}

.cart-close-btn:hover {
  color: var(--green);
}

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

.cart-empty {
  text-align: center;
  color: var(--muted);
  padding: 2rem 1rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.8rem;
  padding: 1rem;
  background: var(--surface);
  border-radius: 8px;
  margin-bottom: 0.8rem;
  align-items: center;
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.cart-item-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.3;
}

.cart-item-price {
  font-size: 0.85rem;
  color: var(--green);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--black);
}

.cart-qty-btn {
  background: none;
  border: none;
  color: var(--text);
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-qty-btn:hover {
  color: var(--green);
}

.cart-qty-input {
  width: 40px;
  border: none;
  background: transparent;
  color: var(--text);
  text-align: center;
  font-size: 0.9rem;
}

.cart-qty-input::-webkit-outer-spin-button,
.cart-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-remove {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 1rem;
  transition: color 0.2s;
}

.cart-remove:hover {
  color: #ff4757;
}

.cart-footer {
  padding: 1rem;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Cart Notification */
.cart-notification {
  position: fixed;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #000;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  z-index: 9500;
  transition: bottom 0.3s ease;
}

.cart-notification.show {
  bottom: 2rem;
}

/* Mobile */
@media (max-width: 768px) {
  .cart-drawer {
    width: 100%;
    right: -100%;
  }

  .product-buttons {
    gap: 0.5rem;
  }

  .btn-add-cart {
    padding: 0.4rem 0.6rem;
    font-size: 1rem;
  }
}
