/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --yellow: #FFD700;
  --yellow-dark: #e6c200;
  --black: #1a1a1a;
  --black-2: #111;
  --text: #1a1a1a;
  --text-muted: #6b6b6b;
  --text-faint: #999;
  --bg: #f8f7f2;
  --surface: #ffffff;
  --border: rgba(0,0,0,0.1);
  --radius: 12px;
  --radius-sm: 8px;
  --font: 'Inter', sans-serif;
  --max-w: 1100px;
}
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); background: var(--bg); color: var(--text); font-size: 16px; line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; height: auto; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }

/* ── BOTÕES ── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--yellow); color: var(--black);
  font-size: 15px; font-weight: 600;
  padding: 14px 28px; border-radius: 40px;
  border: none; cursor: pointer;
  transition: opacity .15s, transform .15s;
  white-space: nowrap; touch-action: manipulation;
  min-height: 48px;
}
.btn-primary:hover { opacity: .9; transform: scale(1.02); }
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; color: #fff;
  font-size: 14px; font-weight: 500;
  padding: 13px 24px; border-radius: 40px;
  border: 1.5px solid rgba(255,255,255,0.25); cursor: pointer;
  transition: background .15s; white-space: nowrap;
  touch-action: manipulation; min-height: 48px;
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); }

/* ── HEADER ── */
.site-header {
  background: var(--black);
  border-bottom: 1px solid rgba(255,215,0,.3);
  padding: 14px 0;
  position: sticky; top: 0; z-index: 100;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand-block { display: flex; flex-direction: column; }
.brand-name { font-size: 17px; font-weight: 700; color: #fff; letter-spacing: .02em; }
.brand-sub { font-size: 11px; color: var(--yellow); letter-spacing: .08em; text-transform: uppercase; }
.header-nav { display: flex; align-items: center; gap: 1.5rem; }
.header-nav a { font-size: 14px; color: #ccc; transition: color .15s; }
.header-nav a:hover { color: var(--yellow); }

/* ── HERO ── */
.hero { background: var(--black); padding: 4.5rem 0 4rem; text-align: center; }
.hero .eyebrow { font-size: 12px; color: var(--yellow); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.hero h1 { font-size: clamp(26px, 4vw, 44px); font-weight: 700; color: #fff; line-height: 1.2; margin: 0 auto 1.25rem; max-width: 720px; }
.hero h1 .accent { color: var(--yellow); display: block; font-size: clamp(20px, 3vw, 32px); font-weight: 600; margin-top: .4rem; }
.hero p { color: #aaa; font-size: 16px; line-height: 1.7; max-width: 560px; margin: 0 auto 2rem; }
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── PRODUTOS ── */
.produtos-section { padding: 4rem 0; }
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header .eyebrow { font-size: 12px; color: var(--yellow-dark); letter-spacing: .12em; text-transform: uppercase; margin-bottom: .5rem; }
.section-header h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 700; }
.produtos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.produto-card {
  background: var(--surface); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
  transition: transform .15s, box-shadow .15s;
  display: flex; flex-direction: column;
}
.produto-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.08); }
.produto-card-img { aspect-ratio: 4/3; background: var(--black); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.produto-card-img img { width: 100%; height: 100%; object-fit: cover; }
.produto-card-body { padding: 1.5rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.produto-card-badge { display: inline-block; align-self: flex-start; background: #fef9e7; color: var(--yellow-dark); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: .04em; }
.produto-card h3 { font-size: 18px; font-weight: 700; }
.produto-card p { font-size: 14px; color: var(--text-muted); flex: 1; }
.produto-card-preco { font-size: 20px; font-weight: 700; color: var(--black); margin-top: .25rem; }
.produto-card-cta { margin-top: .75rem; display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--black); }
.produto-card-cta i { transition: transform .15s; }
.produto-card:hover .produto-card-cta i { transform: translateX(3px); }

.produto-card.em-breve { background: #fafaf8; align-items: center; justify-content: center; text-align: center; padding: 2rem; }
.produto-card.em-breve i { font-size: 32px; color: var(--text-faint); margin-bottom: .75rem; }
.produto-card.em-breve span { font-size: 14px; color: var(--text-faint); font-weight: 600; }

/* ── SOBRE ── */
.sobre-section { background: var(--surface); padding: 4rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.sobre-text h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 700; margin-bottom: 1rem; }
.sobre-text p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.sobre-perks { display: flex; flex-direction: column; gap: 1rem; }
.sobre-perk { display: flex; gap: 12px; align-items: flex-start; }
.sobre-perk i { font-size: 22px; color: var(--yellow-dark); flex-shrink: 0; margin-top: 2px; }
.sobre-perk div strong { display: block; font-size: 14px; margin-bottom: 2px; }
.sobre-perk div span { font-size: 13px; color: var(--text-muted); }

/* ── CONTATO / FOOTER CTA ── */
.contato-section { background: var(--black); padding: 3.5rem 0; text-align: center; }
.contato-section h2 { color: #fff; font-size: clamp(20px, 3vw, 28px); font-weight: 700; margin-bottom: .75rem; }
.contato-section p { color: #aaa; font-size: 14px; margin-bottom: 1.75rem; }

/* ── FOOTER ── */
.site-footer { padding: 1.5rem 0; text-align: center; font-size: 13px; color: var(--text-muted); }
.site-footer .container { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }

@media (max-width: 720px) {
  .header-nav { display: none; }
  .sobre-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero { padding: 3rem 0 2.5rem; }
  .produtos-section, .sobre-section { padding: 3rem 0; }
}
