/* ============================================================
   BLUD WORLDWIDE STORE – Frontend CSS
   Paleta: Preto #0A0A0A | Preto Secundário #1A1A1A
           Vermelho de Impacto #C81E1E | Branco #FFFFFF | Cinza Claro #F2F2F2
   Tipografia: 'Inter' (body) + 'Anton' (títulos, impacto streetwear)

   Este arquivo é a versão recolorida do app.css original (Zurique Clean).
   Estrutura, classes, grid, responsivo: 100% preservados.
   Única mudança real: os valores das variáveis no :root abaixo,
   e a troca de fonte de títulos de 'Poppins' para 'Anton'.
   ============================================================ */

:root {
  --navy:      #0A0A0A;   /* era azul marinho, agora preto principal */
  --blue:      #1A1A1A;   /* era azul elétrico, agora preto secundário */
  --blue-mid:  #C81E1E;   /* era azul médio (usado em categoria/cat-label), agora vermelho */
  --blue-lite: #F2F2F2;   /* era azul claro de fundo de ícone, agora cinza claro */
  --gold:      #C81E1E;   /* era dourado (cor de destaque/CTA), agora vermelho */
  --gold-dark: #A11616;   /* hover do destaque, vermelho mais escuro */
  --white:     #FFFFFF;
  --gray-bg:   #F5F5F5;
  --gray-lite: #ECECEC;
  --gray-mid:  #9AA3B2;
  --gray-dark: #2A2A2A;
  --text:      #0A0A0A;
  --text-muted:#6B6B6B;
  --shadow:    0 4px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.22);
  --radius:    10px;
  --radius-sm: 6px;
  --transition:.25s ease;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy); }

/* ── Tipografia ───────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--navy);
  line-height: 1.15;
}
h1 { font-size: clamp(2rem,4vw,3.2rem); }
h2 { font-size: clamp(1.6rem,3vw,2.4rem); }
h3 { font-size: clamp(1.2rem,2.5vw,1.6rem); }

.eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Container ───────────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-lg { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 32px; }

/* ── Botões ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: .92rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,30,30,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-blue {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-blue:hover {
  background: #000;
  border-color: #000;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }
.btn-sm { padding: 8px 18px; font-size: .85rem; }

/* ── Badge ─────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.badge-gold { background: var(--gold); color: var(--white); }
.badge-blue { background: var(--navy); color: var(--white); }
.badge-new  { background: #22C55E; color: var(--white); }

/* ════════════════════════════════════════════════════════════
   HEADER / NAVBAR
   ════════════════════════════════════════════════════════════ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background var(--transition), box-shadow var(--transition);
}
#header.scrolled {
  background: var(--navy);
  box-shadow: var(--shadow-lg);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo-link { display: flex; align-items: center; }
.logo-link img { height: 48px; width: auto; }

/* Nav principal */
.nav-main { display: flex; align-items: center; gap: 4px; }
.nav-main a {
  color: rgba(255,255,255,.85);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-main a:hover, .nav-main a.active {
  color: var(--gold);
  background: rgba(200,30,30,.10);
}

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-actions .btn-login {
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.25);
  transition: all var(--transition);
}
.nav-actions .btn-login:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Hamburguer */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: all var(--transition); border-radius: 2px; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ════════════════════════════════════════════════════════════
   HERO SECTION (fallback sem banner cadastrado)
   ════════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #141414 60%, #1A1A1A 100%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-particles::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,30,30,.18) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
  animation: pulseGlow 6s ease-in-out infinite alternate;
}
.hero-particles::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  border-radius: 50%;
  animation: pulseGlow 8s ease-in-out infinite alternate-reverse;
}
@keyframes pulseGlow {
  from { transform: scale(1); opacity: .6; }
  to   { transform: scale(1.2); opacity: 1; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  padding: 100px 0 60px;
}
.hero-content { color: var(--white); }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,30,30,.15);
  border: 1px solid rgba(200,30,30,.3);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.2rem,4.5vw,3.8rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero-title span { color: var(--gold); }
.hero-desc {
  font-family: 'Inter', sans-serif;
  text-transform: none;
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat-num {
  font-family: 'Anton', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-family: 'Inter', sans-serif;
  text-transform: none;
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  margin-top: 4px;
}

/* Imagem/visual hero */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-card-float {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 32px;
  color: var(--white);
  width: 100%;
  max-width: 380px;
  box-shadow: var(--shadow-lg);
}
.hero-card-icon {
  width: 64px; height: 64px;
  background: var(--gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
}
.hero-feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.hero-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  text-transform: none;
  font-size: .9rem;
  color: rgba(255,255,255,.85);
}
.hero-feature-list li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════
   SEÇÕES GENÉRICAS
   ════════════════════════════════════════════════════════════ */
section { padding: 80px 0; }
.section-alt { background: var(--gray-bg); }
.section-navy { background: var(--navy); }

.section-header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.section-header .eyebrow { margin-bottom: 12px; display: block; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-family: 'Inter', sans-serif; text-transform: none; color: var(--text-muted); font-size: 1rem; }

/* Divisor de destaque (era dourado, agora vermelho) */
.gold-line {
  width: 60px; height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ════════════════════════════════════════════════════════════
   CARDS DE PRODUTO
   ════════════════════════════════════════════════════════════ */
.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.produto-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.produto-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.produto-card-img {
  position: relative;
  aspect-ratio: 1;
  background: var(--gray-lite);
  overflow: hidden;
}
.produto-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.produto-card:hover .produto-card-img img { transform: scale(1.06); }
.produto-card-badges { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; flex-wrap: wrap; }
.produto-card-body { padding: 20px; }
.produto-card-cat {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
  margin-bottom: 6px;
}
.produto-card-nome {
  font-family: 'Inter', sans-serif;
  text-transform: none;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}
.produto-card-embalagem {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.produto-card-preco {
  font-family: 'Anton', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 16px;
}
.produto-card-preco .por-login {
  font-size: .82rem;
  font-weight: 500;
  text-transform: none;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
}
.produto-card-footer { display: flex; gap: 10px; }
.produto-card-footer .btn { flex: 1; justify-content: center; font-size: .85rem; padding: 10px 14px; }

/* ════════════════════════════════════════════════════════════
   DEPOIMENTOS
   ════════════════════════════════════════════════════════════ */
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.depoimento-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.depoimento-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 5rem;
  color: var(--gold);
  opacity: .2;
  font-family: 'Anton', sans-serif;
  line-height: 1;
}
.depoimento-stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; }
.depoimento-texto { font-size: .93rem; color: var(--gray-dark); margin-bottom: 20px; line-height: 1.7; }
.depoimento-autor { display: flex; align-items: center; gap: 14px; }
.depoimento-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--gray-lite);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--navy); font-weight: 700;
  overflow: hidden; flex-shrink: 0;
}
.depoimento-nome { font-weight: 700; font-size: .92rem; color: var(--navy); }
.depoimento-empresa { font-size: .8rem; color: var(--text-muted); }

/* ════════════════════════════════════════════════════════════
   CATEGORIAS
   ════════════════════════════════════════════════════════════ */
.categorias-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.categoria-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
}
.categoria-card:hover {
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.categoria-icon {
  width: 56px; height: 56px;
  background: var(--blue-lite);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
  transition: background var(--transition);
  overflow: hidden;
}
.categoria-card:hover .categoria-icon { background: var(--navy); }
.categoria-card:hover .categoria-icon i { color: var(--white) !important; }
.categoria-card h4 {
  font-family: 'Inter', sans-serif;
  text-transform: none;
  font-size: .95rem;
  color: var(--navy);
  font-weight: 700;
}
.categoria-card span { font-size: .78rem; color: var(--text-muted); }

/* Card de categoria com foto grande (estilo blog-card), usado na BLUD
   no lugar do ícone pequeno 56x56 da Zurique original. */
.categoria-card-foto {
  padding: 0;
  overflow: hidden;
  text-align: left;
}
.categoria-card-foto .categoria-card-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--gray-lite);
}
.categoria-card-foto .categoria-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.categoria-card-foto:hover .categoria-card-img img { transform: scale(1.06); }
.categoria-card-foto .categoria-card-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-mid);
  font-size: 2rem;
}
.categoria-card-foto h4 {
  padding: 16px;
  font-size: 1rem;
  text-align: center;
}
@media (max-width: 768px) {
  .categoria-card-foto .categoria-card-img { aspect-ratio: 1/1; }
}

/* ════════════════════════════════════════════════════════════
   POR QUE NÓS / FEATURES
   ════════════════════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}
.feature-card {
  padding: 32px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-lite);
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow);
}
.feature-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy) 0%, #000 100%);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: 'Inter', sans-serif;
  text-transform: none;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }

/* Card de diferencial com foto grande (estilo blog-card), usado na BLUD
   no lugar do ícone pequeno 56x56 da Zurique original. */
.feature-card-foto {
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--gray-lite);
  background: var(--white);
  border-radius: var(--radius);
}
.feature-card-foto .feature-card-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--gray-lite);
  margin-bottom: 0;
}
.feature-card-foto .feature-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.feature-card-foto:hover .feature-card-img img { transform: scale(1.06); }
.feature-card-foto .feature-card-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-mid);
  font-size: 2rem;
}
.feature-card-foto h3 { padding: 20px 20px 8px; }
.feature-card-foto p { padding: 0 20px 20px; }
@media (max-width: 768px) {
  .feature-card-foto .feature-card-img { aspect-ratio: 1/1; }
}

/* ════════════════════════════════════════════════════════════
   BLOG
   ════════════════════════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--gray-lite); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-card-meta { font-size: .78rem; color: var(--text-muted); margin-bottom: 10px; display: flex; gap: 16px; }
.blog-card-title {
  font-family: 'Inter', sans-serif;
  text-transform: none;
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card-resumo { font-size: .88rem; color: var(--text-muted); margin-bottom: 16px; }
.blog-card-link { font-size: .88rem; font-weight: 600; color: var(--navy); }
.blog-card-link:hover { color: var(--gold); }

/* ════════════════════════════════════════════════════════════
   NEWSLETTER / CTA BANNER
   ════════════════════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), #000);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p {
  font-family: 'Inter', sans-serif;
  text-transform: none;
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
  font-size: 1.05rem;
}
.cta-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; max-width: 520px; margin: 0 auto; }
.cta-form input {
  flex: 1; min-width: 220px;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-size: .95rem;
  outline: none;
  transition: border-color var(--transition);
}
.cta-form input::placeholder { color: rgba(255,255,255,.5); }
.cta-form input:focus { border-color: var(--gold); }

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
#footer {
  background: #000000;
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand img { height: 44px; margin-bottom: 20px; }
.footer-brand p { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.6); max-width: 260px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--white); }
.footer-col h5 {
  font-family: 'Anton', sans-serif;
  font-size: .88rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; margin-bottom: 12px; }
.footer-contact-item i { color: var(--gold); margin-top: 2px; }
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: var(--gold); }

/* ════════════════════════════════════════════════════════════
   WHATSAPP FLUTUANTE
   ════════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.whatsapp-btn {
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.6);
  color: var(--white);
}
.whatsapp-pulse {
  position: absolute;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(37,211,102,.35);
  animation: waPulse 2s ease-out infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.8); opacity: 0; }
}
.whatsapp-bubble {
  background: var(--white);
  color: var(--navy);
  padding: 10px 16px;
  border-radius: 12px 12px 0 12px;
  font-size: .85rem;
  font-weight: 500;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px) scale(.9);
  transition: all .3s ease;
  pointer-events: none;
  white-space: nowrap;
}
.whatsapp-float:hover .whatsapp-bubble {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ════════════════════════════════════════════════════════════
   BANNERS / SLIDER
   ════════════════════════════════════════════════════════════ */
.slider-hero { position: relative; overflow: hidden; }
.slider-track { display: flex; transition: transform .5s cubic-bezier(.25,.46,.45,.94); }
.slider-slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
}
.slider-slide img { width: 100%; height: 560px; object-fit: cover; }
.slider-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,.75) 0%, rgba(10,10,10,.2) 100%);
  display: flex; align-items: center;
}
.slider-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  color: var(--white);
}
.slider-content-inner {
  max-width: 600px;
}
.slider-content h2 {
  color: var(--white);
  font-size: clamp(1.6rem,4vw,3rem);
  margin-bottom: 16px;
  line-height: 1.1;
}
.slider-content p {
  font-family: 'Inter', sans-serif;
  text-transform: none;
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 28px;
  line-height: 1.6;
  max-width: 520px;
}
.slider-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.slider-nav {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none; cursor: pointer;
  transition: all var(--transition);
}
.slider-dot.active { background: var(--gold); transform: scale(1.3); }
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--transition);
}
.slider-arrow:hover { background: var(--gold); color: var(--white); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

/* ════════════════════════════════════════════════════════════
   FILTRO DE PRODUTOS
   ════════════════════════════════════════════════════════════ */
.filtros-bar {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.filtro-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 2px solid var(--gray-lite);
  background: transparent;
  color: var(--text-muted);
  font-size: .88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.filtro-btn:hover, .filtro-btn.active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

/* ════════════════════════════════════════════════════════════
   LOGIN / CADASTRO
   ════════════════════════════════════════════════════════════ */
.auth-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #000 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 80px 20px;
}
.auth-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
  width: 100%; max-width: 480px;
  box-shadow: var(--shadow-lg);
}
.auth-logo { text-align: center; margin-bottom: 32px; }
.auth-logo img { height: 52px; }
.auth-title { font-size: 1.5rem; text-align: center; margin-bottom: 8px; }
.auth-sub { font-family: 'Inter', sans-serif; text-transform: none; text-align: center; color: var(--text-muted); font-size: .9rem; margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .88rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-lite);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  color: var(--text);
  transition: border-color var(--transition);
  outline: none;
  font-family: 'Inter', sans-serif;
}
.form-control:focus { border-color: var(--navy); }
.form-control.is-invalid { border-color: #E53E3E; }
.form-error { font-size: .8rem; color: #E53E3E; margin-top: 4px; }
.form-hint { font-size: .8rem; color: var(--text-muted); margin-top: 4px; }

/* ════════════════════════════════════════════════════════════
   ALERT / FLASH
   ════════════════════════════════════════════════════════════ */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: .92rem;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.alert-success { background: #F0FFF4; border: 1px solid #9AE6B4; color: #276749; }
.alert-error   { background: #FFF5F5; border: 1px solid #FEB2B2; color: #9B2C2C; }
.alert-info    { background: #EBF8FF; border: 1px solid #90CDF4; color: #2C5282; }
.alert-warning { background: #FFFBEB; border: 1px solid #FBBF24; color: #92400E; }

/* ════════════════════════════════════════════════════════════
   PAGINAÇÃO
   ════════════════════════════════════════════════════════════ */
.pagination { display: flex; gap: 8px; align-items: center; justify-content: center; margin-top: 40px; }
.page-item {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--gray-lite);
  display: flex; align-items: center; justify-content: center;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.page-item:hover, .page-item.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.page-item.disabled { opacity: .4; cursor: not-allowed; }

/* ════════════════════════════════════════════════════════════
   LOADING SKELETON
   ════════════════════════════════════════════════════════════ */
.skeleton {
  background: linear-gradient(90deg, var(--gray-lite) 25%, var(--gray-bg) 50%, var(--gray-lite) 75%);
  background-size: 200% 100%;
  animation: skeleton 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes skeleton { from { background-position: 200% 0; } to { background-position: -200% 0; } }

/* ════════════════════════════════════════════════════════════
   RESPONSIVO
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner  { grid-template-columns: 1fr; gap: 40px; padding: 120px 0 60px; }
  .hero-visual { display: none; }
}

@media (max-width: 768px) {
  .nav-main { 
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .nav-main.open { display: flex; }
  .nav-main a { padding: 12px 16px; }
  .nav-toggle { display: flex; }

  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }

  .produtos-grid    { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .categorias-grid  { grid-template-columns: repeat(3, 1fr); gap: 12px; }

  .slider-slide img { height: 300px; }
  .slider-content { padding: 0 24px; }
  .slider-content h2 { font-size: 1.4rem; }
  .slider-content p { font-size: .9rem; }
}

@media (max-width: 480px) {
  .categorias-grid { grid-template-columns: repeat(2, 1fr); }
  .auth-card { padding: 32px 20px; }
}

/* ── Utilitários ─────────────────────────────────────────── */
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-navy   { color: var(--navy); }
.text-muted  { color: var(--text-muted); }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 16px; }
.w-100 { width: 100%; }
.hidden { display: none !important; }
