/* ================================================================
   HOME.CSS — Página Principal
   ================================================================ */

/* ── HERO BANNER ── */
.hero {
  background: linear-gradient(115deg, #2A1322 0%, #6B1D4A 45%, var(--red) 100%);
  overflow: hidden;
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  width: 100%;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.15);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
}
.hero h1 em { color: #FFE4F1; font-style: normal; }
.hero p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-bottom: 28px; max-width: 380px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-badge {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: floatBadge 3s ease-in-out infinite;
}
.hero-badge-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.hero-badge-sub { font-size: 0.7rem; font-weight: 700; color: var(--text-2); letter-spacing: 0.5px; }
.hero-badge-emoji { font-size: 2.2rem; margin-bottom: 4px; }

@keyframes floatBadge {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* ── HERO DOTS (pagination) ── */
.hero-dots {
  display: flex; gap: 6px;
  justify-content: center;
  padding: 16px 0 0;
}
.hero-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.hero-dot.active { width: 22px; border-radius: 4px; background: #fff; }

/* ── PROMO STRIP ── */
.promo-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
}
.promo-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 0;
}
.promo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-right: 1px solid var(--border);
  flex: 1;
  min-width: 180px;
}
.promo-item:last-child { border-right: none; }
.promo-item-icon { font-size: 1.5rem; flex-shrink: 0; }
.promo-item strong { font-size: 0.82rem; display: block; }
.promo-item span { font-size: 0.72rem; color: var(--text-3); }

/* ── CATEGORY GRID ── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 12px;
}
.cat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  text-align: center;
}
.cat-card:hover {
  border-color: var(--red);
  background: var(--red-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.cat-card:hover .cat-emoji { transform: scale(1.2) rotate(-5deg); }
.cat-emoji {
  font-size: 2rem;
  display: block;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.cat-name { font-size: 0.75rem; font-weight: 700; color: var(--text); line-height: 1.2; }
.cat-count { font-size: 0.65rem; color: var(--text-3); }

/* ── PROMO BANNERS ── */
.promo-banners {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}
.promo-banner {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition);
}
.promo-banner:hover { transform: scale(1.01); }
.promo-banner-main {
  min-height: 200px;
  background: linear-gradient(120deg, #5E1D44 0%, var(--red) 100%);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.promo-banner-sm {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.promo-sm-card {
  flex: 1;
  border-radius: var(--radius);
  padding: 20px;
  cursor: pointer;
  transition: transform var(--transition);
  position: relative;
  overflow: hidden;
}
.promo-sm-card:hover { transform: scale(1.02); }
.promo-sm-1 { background: linear-gradient(135deg, #FFEAF4, #FFC3DD); }
.promo-sm-2 { background: linear-gradient(135deg, #FFF2F8, #FFD8E9); }

.banner-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.promo-banner-main .banner-tag { color: rgba(255,255,255,0.65); }
.promo-banner-main h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; color: #fff; line-height: 1.2; }
.promo-banner-main p { color: rgba(255,255,255,0.75); font-size: 0.82rem; margin: 6px 0 16px; }
.promo-banner-emoji {
  position: absolute;
  right: 20px; top: 50%;
  transform: translateY(-50%);
  font-size: 5rem;
  opacity: 0.25;
}
.promo-sm-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 800; color: var(--text); }
.promo-sm-card p { font-size: 0.75rem; color: var(--text-2); margin: 4px 0 12px; }
.promo-sm-emoji { font-size: 2.2rem; margin-bottom: 8px; display: block; }

/* ── PRODUCT GRID (home) ── */
.products-grid-home {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

/* ── BRAND STRIP ── */
.brand-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  overflow-x: auto;
  padding: 8px 0 12px;
  scrollbar-width: none;
}
.brand-strip::-webkit-scrollbar { display: none; }
.brand-chip {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
}
.brand-chip:hover { border-color: var(--red); color: var(--red); background: var(--red-light); }

/* RESPONSIVE HOME */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .hero-visual { display: none; }
  .promo-banners { grid-template-columns: 1fr; }
  .promo-banner-sm { flex-direction: row; }
  .promo-item { min-width: 140px; padding: 12px 16px; }
  .products-grid-home { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 400px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .promo-banner-sm { flex-direction: column; }
}
