/* =========================================================
   Lumora Pulse — Loja Oficial (clone)
   Tema escuro premium • Inter + Space Grotesk
   ========================================================= */

:root {
  --background: #242735;
  --foreground: #f1f0e8;
  --secondary: #242735;
  --secondary-foreground: #f1f0e8;
  --primary: #f0b429;
  --primary-foreground: #1d1f27;
  --accent: #ffd35c;
  --accent-foreground: #1d1f27;
  --muted: #2f3242;
  --muted-foreground: #a7adc0;
  --border: rgba(241, 240, 232, 0.14);
  --radius: 1.5rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.font-display {
  font-family: "Space Grotesk", "Inter", sans-serif;
  letter-spacing: -0.04em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.wrap { max-width: 80rem; margin: 0 auto; padding: 0 1.25rem; }

/* ===== Botões ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.8rem 1.6rem;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  background: var(--primary);
  color: var(--primary-foreground);
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.btn:hover { opacity: 0.9; }
.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}
.btn-dark { background: var(--secondary); color: var(--secondary-foreground); }
.btn-full { width: 100%; }

/* ===== Header ===== */
.nav-shell {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(36, 39, 53, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(241, 240, 232, 0.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
}
.brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  background: var(--primary);
  color: var(--primary-foreground);
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
}
.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--secondary-foreground);
  opacity: 0.85;
}
.nav-links a:hover { color: var(--primary); opacity: 1; }
.nav-cta { padding: 0.7rem 1.2rem; font-size: 0.78rem; }
.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--foreground);
  font-size: 1.2rem;
  cursor: pointer;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
}
.mobile-menu a {
  padding: 0.7rem 0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-pulse {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(240, 180, 41, 0.14);
  filter: blur(70px);
  pointer-events: none;
}
.hero-orbit {
  position: absolute;
  top: 10%;
  right: 2%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px dashed rgba(240, 180, 41, 0.28);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1rem;
  align-items: center;
  min-height: 650px;
  padding: 3.5rem 1.25rem;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(241, 240, 232, 0.2);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary);
  margin-bottom: 1.9rem;
}
.hero-badge i { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); }
.hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.5rem, 11vw, 7.7rem);
  font-weight: 600;
  line-height: 0.86;
  letter-spacing: -0.085em;
}
.hero h1 span { color: var(--primary); }
.hero-lead {
  margin-top: 2rem;
  max-width: 26rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(241, 240, 232, 0.68);
}
.hero-actions { margin-top: 2.4rem; display: flex; gap: 0.85rem; flex-wrap: wrap; }
.hero-stats {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(241, 240, 232, 0.43);
}
.hero-stats span { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-stats span::before { content: "•"; color: var(--primary); }
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual .frame {
  position: relative;
  border-radius: 1.6rem;
  overflow: hidden;
  max-width: 440px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.hero-visual .caption {
  position: absolute;
  bottom: 1.6rem;
  right: 1.9rem;
  font-family: monospace;
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(43, 44, 50, 0.55);
}
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; padding-top: 3rem; }
  .hero-visual { margin-top: 2.5rem; }
  .prod-head { grid-template-columns: 1fr !important; }
  #duvidas > div { grid-template-columns: 1fr !important; }
}
@media (max-width: 1024px) {
  .sec-head + div { grid-template-columns: 1fr !important; }
}
@media (max-width: 900px) {
  #ofertas > .wrap > div:first-child { grid-template-columns: 1fr !important; }
  .sec-sub { justify-self: start !important; }
}

/* ===== Faixa dourada (01/02/03) ===== */
.band-gold {
  background: var(--primary);
  border-bottom: 1px solid var(--border);
}
.band-gold .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
.band-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--primary-foreground);
}
.band-item:not(:first-child) {
  border-left: 1px solid rgba(29, 31, 39, 0.15);
  padding-left: 1.75rem;
}
.band-item b { font-size: 0.62rem; font-weight: 700; opacity: 0.55; }
.band-item span { font-size: 1rem; font-weight: 700; }
@media (max-width: 700px) {
  .band-gold .wrap { grid-template-columns: 1fr; }
  .band-item:not(:first-child) { border-left: 0; border-top: 1px solid rgba(29, 31, 39, 0.15); padding-left: 0; padding-top: 1rem; }
}

/* ===== Seções ===== */
.section { padding: 6rem 0; border-bottom: 1px solid var(--border); }
.eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
}
h2.h-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.06em;
  margin-top: 1rem;
}
.sec-head { max-width: 40rem; }
.sec-sub { margin-top: 1.4rem; max-width: 26rem; color: var(--muted-foreground); font-size: 0.9rem; line-height: 1.7; }

/* ===== Produto (#produto) ===== */
.prod-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 3rem; align-items: center; }
.prod-visual {
  position: relative;
  min-height: 410px;
  border-radius: 2rem;
  background: #d7d8c6;
  padding: 1.75rem 2.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.prod-visual .top { display: flex; align-items: flex-start; justify-content: space-between; position: relative; z-index: 2; }
.prod-visual .tag { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: #242735; opacity: 0.6; }
.prod-visual .wmark {
  position: absolute;
  bottom: -30px;
  right: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}
.prod-visual .photo {
  position: relative;
  z-index: 2;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(20, 22, 32, 0.35);
  max-width: 320px;
  margin: 0 auto;
}
.prod-copy .tagline { margin-top: 1.5rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; color: rgba(241, 240, 232, 0.55); }
@media (max-width: 900px) {
  .prod-grid { grid-template-columns: 1fr; }
}

/* ===== Benefícios (#beneficios) ===== */
.benefits {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #e6e5d8;
  padding: 6rem 0;
  color: #242735;
}
.benefits .eyebrow { color: var(--accent); }
.ben-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 4rem; border-bottom: 1px solid rgba(36, 39, 53, 0.16); }
.ben-card {
  padding: 1.9rem 1.6rem;
}
.ben-card .num { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: #7a6a20; }
.ben-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.97;
  margin-top: 1rem;
  max-width: 230px;
  color: #242735;
}
.ben-card p { margin-top: 1.2rem; font-size: 0.87rem; color: #5a5f6f; line-height: 1.7; max-width: 290px; }
@media (max-width: 900px) {
  .benefits { padding: 4rem 0; }
  .ben-grid { grid-template-columns: 1fr; }
  .ben-card { border-top: 1px solid rgba(36, 39, 53, 0.16); }
}

/* ===== Card escuro do produto ===== */
.prod-card-dark {
  position: relative;
  min-height: 410px;
  border-radius: 2rem;
  background: var(--secondary);
  color: var(--secondary-foreground);
  padding: 1.75rem 2.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.prod-card-dark .tag2 {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(240, 180, 41, 0.7);
}
.prod-card-dark::before {
  content: "";
  position: absolute;
  bottom: -3rem;
  right: -3rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: rgba(240, 180, 41, 0.1);
}
@media (max-width: 900px) { .prod-card-dark { min-height: 380px; } }

/* ===== Ofertas (#ofertas) ===== */
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3.5rem; }
.offer-card {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(241, 240, 232, 0.055);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.offer-card.featured {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary-foreground);
}
.offer-flag {
  position: absolute;
  top: -0.75rem;
  left: 1.5rem;
  background: var(--accent);
  color: var(--accent-foreground);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.56rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.offer-top { display: flex; align-items: flex-start; justify-content: space-between; }
.offer-qty { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; }
.offer-card:not(.featured) .offer-qty { color: rgba(241, 240, 232, 0.48); }
.offer-saving {
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  font-size: 0.56rem;
  font-weight: 700;
}
.offer-card.featured .offer-saving { background: rgba(29, 31, 39, 0.12); color: var(--primary-foreground); }
.offer-card:not(.featured) .offer-saving { background: rgba(240, 180, 41, 0.15); color: var(--primary); }
.offer-price { margin-top: 3rem; font-family: "Space Grotesk", sans-serif; font-size: 3rem; font-weight: 600; letter-spacing: -0.06em; }
.offer-unit { margin-top: 0.5rem; font-size: 0.87rem; font-weight: 700; }
.offer-card:not(.featured) .offer-unit { color: rgba(241, 240, 232, 0.57); }
.offer-card.featured .offer-unit { color: rgba(29, 31, 39, 0.7); }
.offer-div { height: 1px; margin: 1.5rem 0; }
.offer-card.featured .offer-div { background: rgba(29, 31, 39, 0.15); }
.offer-card:not(.featured) .offer-div { background: rgba(241, 240, 232, 0.14); }
.offer-note { font-size: 0.87rem; min-height: 2.5rem; }
.offer-card:not(.featured) .offer-note { color: rgba(241, 240, 232, 0.58); }
.offer-card.featured .offer-note { color: rgba(29, 31, 39, 0.72); }
.offer-btn {
  margin-top: 1.75rem;
  border-radius: 999px;
  border: none;
  padding: 0.85rem 1rem;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: opacity 0.15s ease;
}
.offer-card.featured .offer-btn { background: var(--secondary); color: var(--secondary-foreground); }
.offer-card:not(.featured) .offer-btn {
  background: transparent;
  color: var(--primary);
  border: 1px solid rgba(240, 180, 41, 0.55);
}
.offer-card:not(.featured) .offer-btn:hover { background: var(--primary); color: var(--primary-foreground); }
.offer-btn.selected { background: var(--primary); color: var(--primary-foreground) !important; border-color: var(--primary) !important; }
.offer-card.selected:not(.featured) {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}

.offer-trust {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(241, 240, 232, 0.12);
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: rgba(241, 240, 232, 0.45);
}
.offer-trust span { display: inline-flex; align-items: center; gap: 0.5rem; }
.offer-trust svg { color: var(--primary); }
@media (max-width: 900px) { .offer-grid { grid-template-columns: 1fr; } }

/* ===== CARRINHO (correção do checkout) ===== */
.cart-panel {
  margin-top: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(241, 240, 232, 0.045);
  padding: 1.8rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
}
.cart-panel .cart-title { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: var(--primary); }
.cart-qty { display: inline-flex; align-items: center; border: 1px solid var(--border); border-radius: 999px; overflow: hidden; margin-top: 0.6rem; }
.cart-qty button { width: 2.6rem; height: 2.7rem; border: none; background: transparent; color: var(--foreground); font-size: 1.2rem; cursor: pointer; font-weight: 700; }
.cart-qty button:hover { color: var(--primary); }
.cart-qty output { width: 2.6rem; text-align: center; font-weight: 700; font-size: 1rem; }
.cart-total { text-align: right; }
.cart-total .label { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted-foreground); }
.cart-total .unit { font-size: 0.82rem; color: var(--muted-foreground); margin-top: 0.2rem; }
.cart-total .total { font-family: "Space Grotesk", sans-serif; font-size: 2.1rem; font-weight: 600; letter-spacing: -0.05em; margin-top: 0.15rem; }
.cart-actions { display: flex; flex-direction: column; gap: 0.7rem; min-width: 220px; }
.cart-note { margin-top: 0.7rem; font-size: 0.72rem; color: var(--muted-foreground); }
@media (max-width: 820px) {
  .cart-panel { grid-template-columns: 1fr; text-align: center; }
  .cart-total { text-align: center; }
}

/* ===== FAQ (#duvidas) ===== */
.faq { max-width: 46rem; margin-top: 3rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  color: var(--foreground);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 1.3rem 0;
  cursor: pointer;
  text-align: left;
}
.faq-q .plus { color: var(--primary); font-size: 1.4rem; transition: transform 0.2s ease; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-a p { padding: 0 0 1.3rem; color: var(--muted-foreground); font-size: 0.9rem; line-height: 1.7; }

/* ===== CTA ===== */
.cta-wrap { padding: 2.5rem 0 2.5rem; }
.cta-card {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  border-radius: 2rem;
  background: var(--accent);
  color: var(--accent-foreground);
  padding: 4rem 3rem;
  overflow: hidden;
}
.cta-card h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 600;
  line-height: 0.89;
  letter-spacing: -0.07em;
  max-width: 34rem;
}
.cta-card .cta-sub { margin-top: 1.5rem; max-width: 26rem; font-size: 0.87rem; line-height: 1.7; opacity: 0.68; }
.cta-card .btn { margin-top: 2rem; }
.cta-ring { position: absolute; border-radius: 50%; pointer-events: none; }
.cta-ring.r1 { top: -5rem; right: -3.5rem; width: 20rem; height: 20rem; border: 40px solid rgba(29, 31, 39, 0.1); }
.cta-ring.r2 { bottom: -12rem; right: 5rem; width: 24rem; height: 24rem; border: 1px solid rgba(29, 31, 39, 0.12); }

/* ===== Footer ===== */
.footer { max-width: 80rem; margin: 0 auto; padding: 1rem 1.25rem 2rem; display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; justify-content: space-between; }
.footer p { font-size: 0.78rem; color: var(--muted-foreground); }
.footer .pay { display: flex; gap: 0.7rem; font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-foreground); }
.footer .pay span { border: 1px solid var(--border); border-radius: 6px; padding: 0.3rem 0.55rem; }

/* ===== Reveal ===== */
.reveal-up { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-up.in { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
