/* ═══════════════════════════════════════════════════
   Kit Signature Masculino — Réplica Lovable + Copy CRO
   Design System (dark mode, gold primary)
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #E2A829;
  --primary-fg: #1a1a1a;
  --primary-dark: #B58215;
  --bg: #0f0f0f;
  --bg-card: #1a1a1a;
  --fg: #f5f5f5;
  --fg-muted: #a3a3a3;
  --border: #2a2a2a;
  --radius: 1rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.font-serif { font-family: 'Playfair Display', Georgia, serif; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; }

/* ── Utility ── */
.shine-text {
  background: linear-gradient(135deg, var(--primary), #FFD15C, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hover-lift { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.hover-lift:hover { transform: translateY(-6px); }

/* ── Shipping banner (Marquee) ── */
.ship-banner {
  background: var(--primary);
  color: var(--primary-fg);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 0;
  display: flex;
  justify-content: center;
}
.ship-banner-center {
  width: 100%;
  max-width: 48rem;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}
.ship-banner-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}
.ship-banner-track:hover {
  animation-play-state: paused;
}
.ship-banner-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-right: 1.5rem;
}
.ship-banner-dot { opacity: 0.5; font-size: 1.2em; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════ HERO ══════════ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 1.25rem 4rem;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: radial-gradient(ellipse at top, rgba(226,168,41,0.25), transparent 60%);
}
.hero-inner {
  position: relative;
  max-width: 72rem;
  margin: 0 auto;
}
.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2.5rem;
}
.hero-logo { height: 7rem; width: auto; margin-bottom: 1.25rem; }
.hero-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: rgba(226,168,41,0.9);
}
.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 48rem;
  margin: 0 auto;
}
.hero-text { text-align: center; }

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 400;
}

.hero-desc {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: var(--fg-muted);
}
.hero-desc strong { color: var(--fg); }

.hero-checks {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.hero-checks li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
}
.check-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(226,168,41,0.5);
  background: rgba(226,168,41,0.1);
  color: var(--primary);
  margin-top: 0.125rem;
}
.check-icon svg { width: 0.75rem; height: 0.75rem; }

.hero-cta-wrap {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 24rem;
  padding: 1rem 2rem;
  background: linear-gradient(to bottom, var(--primary), var(--primary-dark));
  color: var(--primary-fg);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border-radius: 0.375rem;
  border: none;
  box-shadow: 0 10px 25px -5px rgba(226,168,41,0.3);
  ring: 1px solid rgba(226,168,41,0.4);
  transition: all 0.3s;
}
.btn-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 20px 40px -10px rgba(226,168,41,0.4);
}
.btn-primary .arrow { transition: transform 0.3s; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.hero-social {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.hero-img-wrap { position: relative; }
.hero-img-glow {
  position: absolute;
  inset: -1rem;
  border-radius: 1.5rem;
  background: rgba(226,168,41,0.1);
  filter: blur(48px);
}
.hero-img {
  position: relative;
  width: 100%;
  border-radius: 1rem;
  border: 1px solid rgba(226,168,41,0.2);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}

/* ══════════ STATS BAR ══════════ */
.stats-bar {
  border-top: 1px solid rgba(226,168,41,0.2);
  border-bottom: 1px solid rgba(226,168,41,0.2);
  background: rgba(26,26,26,0.6);
  backdrop-filter: blur(8px);
  padding: 1.5rem 1.25rem;
}
.stats-grid {
  max-width: 64rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--primary);
}
@media (min-width: 768px) { .stat-val { font-size: 1.875rem; } }
.stat-lbl {
  margin-top: 0.25rem;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fg-muted);
}
@media (min-width: 768px) { .stat-lbl { font-size: 0.75rem; } }

/* ══════════ SECTION: O QUE CHEGA ══════════ */
.section { padding: 4rem 1.25rem; }
@media (min-width: 768px) { .section { padding: 6rem 1.25rem; } }
.section-inner { max-width: 72rem; margin: 0 auto; }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--primary);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 400;
  margin-top: 0.75rem;
  line-height: 1.15;
}
.section-title .accent { color: var(--primary); }

.what-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  margin-top: 0;
}
@media (min-width: 768px) { .what-grid { grid-template-columns: 1fr 1fr; } }

.what-img-wrap { position: relative; }
.what-img-glow {
  position: absolute;
  inset: -1.5rem;
  border-radius: 1.5rem;
  background: rgba(226,168,41,0.1);
  filter: blur(48px);
}
.what-img {
  position: relative;
  width: 100%;
  border-radius: 1rem;
  border: 1px solid rgba(226,168,41,0.2);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}

.what-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.what-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
}

/* ══════════ FRAGRANCE CARDS ══════════ */
.frag-section { border-top: 1px solid rgba(42,42,42,0.5); background: rgba(26,26,26,0.3); }
.frag-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 768px) { .frag-grid { grid-template-columns: repeat(3, 1fr); } }

.frag-card {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.frag-card:hover {
  border-color: rgba(226,168,41,0.6);
  box-shadow: 0 25px 50px -12px rgba(226,168,41,0.1);
}
.frag-card-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #000;
}
.frag-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.frag-card:hover .frag-card-img img { transform: scale(1.05); }
.frag-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
}
.frag-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(226,168,41,0.4);
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--primary);
}
.frag-body { padding: 1.5rem; }
.frag-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
}
@media (min-width: 768px) { .frag-body h3 { font-size: 1.875rem; } }
.frag-body .frag-desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--fg-muted);
  font-style: italic;
}
.frag-divider {
  margin: 1rem 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(226,168,41,0.3), transparent);
}
.frag-notes-label {
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(226,168,41,0.8);
}
.frag-notes {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  color: rgba(245,245,245,0.9);
}

/* ══════════ WHY DECANTS ══════════ */
.why-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 3rem;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }

.why-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--bg-card);
  padding: 1.5rem;
  transition: transform 0.3s, border-color 0.3s;
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(226,168,41,0.3);
}
.why-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(226,168,41,0.4);
  background: rgba(226,168,41,0.1);
  color: var(--primary);
  margin-bottom: 1rem;
}
.why-card-icon svg { width: 1.25rem; height: 1.25rem; }
.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--fg);
}
.why-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--fg-muted);
}

/* ══════════ AUTENTICIDADE ══════════ */
.auth-section {
  position: relative;
  overflow: hidden;
}
.auth-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: radial-gradient(circle at 50% 0%, rgba(226,168,41,0.25), transparent 60%);
}
.auth-inner {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.auth-icon {
  width: 5rem;
  height: 5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(226,168,41,0.6);
  background: rgba(226,168,41,0.1);
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.auth-icon svg { width: 2.5rem; height: 2.5rem; }

.auth-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}
.auth-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary);
}
.auth-badge--primary {
  border: 1px solid rgba(226,168,41,0.6);
  background: rgba(226,168,41,0.1);
}
.auth-badge--secondary {
  border: 1px solid rgba(226,168,41,0.4);
  background: rgba(26,26,26,0.6);
}
.auth-badge svg { width: 1rem; height: 1rem; }

.auth-pills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
  max-width: 40rem;
}
@media (min-width: 640px) { .auth-pills { grid-template-columns: repeat(4, 1fr); } }
.auth-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(226,168,41,0.3);
  background: rgba(26,26,26,0.6);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary);
  text-align: center;
}

/* ══════════ TESTIMONIALS ══════════ */
.test-section { border-top: 1px solid rgba(42,42,42,0.5); border-bottom: 1px solid rgba(42,42,42,0.5); background: rgba(26,26,26,0.4); }
.test-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 768px) { .test-grid { grid-template-columns: repeat(3, 1fr); } }

.test-card {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: transform 0.3s;
}
.test-card:hover { transform: translateY(-6px); }
.test-video {
  position: relative;
  aspect-ratio: 9/16;
  background: linear-gradient(135deg, #171717, #0a0a0a, #000);
}
.test-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.test-play-btn {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-fg);
  border: none;
  box-shadow: 0 20px 40px -10px rgba(226,168,41,0.3);
  transition: transform 0.3s;
}
.test-play-btn:hover { transform: scale(1.1); }
.test-play-btn svg { width: 1.75rem; height: 1.75rem; margin-left: 3px; }

.test-user {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}
.test-avatar {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(226,168,41,0.5);
  background: rgba(226,168,41,0.2);
  font-family: 'Playfair Display', serif;
  color: var(--primary);
}
.test-name { font-weight: 600; font-size: 0.875rem; }
.test-city { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(226,168,41,0.8); }

.test-body { padding: 1.25rem; }
.test-stars { font-size: 0.875rem; color: rgba(226,168,41,0.8); }
.test-quote { margin-top: 0.5rem; font-size: 0.875rem; font-style: italic; color: var(--fg-muted); }

/* ══════════ WHATSAPP PRINTS ══════════ */
.prints-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 768px) { .prints-grid { grid-template-columns: repeat(3, 1fr); } }

.wpp-card {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: #0b1410;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
}
.wpp-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: #1f2c33;
}
.wpp-avatar {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-fg);
  font-weight: 700;
  font-size: 0.875rem;
}
.wpp-name { font-size: 0.875rem; font-weight: 600; color: #fff; }
.wpp-online { font-size: 0.6875rem; color: #6ee7b7; }

.wpp-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background-color: #0b1410;
  background-image: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.02), transparent);
}
.wpp-msg {
  max-width: 80%;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.wpp-msg--in { background: #1f2c33; align-self: flex-start; }
.wpp-msg--out { background: #005c4b; align-self: flex-end; }
.wpp-time {
  margin-top: 0.25rem;
  text-align: right;
  font-size: 0.625rem;
  color: rgba(255,255,255,0.4);
}

/* ══════════ COMPARISON TABLE ══════════ */
.cmp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
@media (min-width: 768px) { .cmp-table { font-size: 1rem; } }
.cmp-table th,
.cmp-table td { padding: 1rem; text-align: left; }
.cmp-table thead tr { background: var(--bg-card); }
.cmp-table thead th:last-child { background: rgba(226,168,41,0.1); color: var(--primary); }
.cmp-table thead th { color: var(--fg-muted); font-weight: 400; }
.cmp-table tbody tr { border-top: 1px solid var(--border); }
.cmp-table tbody td:first-child { font-weight: 500; }
.cmp-table tbody td:nth-child(2) { color: var(--fg-muted); }
.cmp-table tbody td:last-child { background: rgba(226,168,41,0.05); color: var(--primary); font-weight: 600; }

.cmp-wrap {
  max-width: 64rem;
  margin: 3rem auto 0;
  overflow-x: auto;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  overflow: hidden;
}

/* ══════════ MID CTA ══════════ */
.mid-cta {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(226,168,41,0.4);
  background: rgba(26,26,26,0.6);
  text-align: center;
  box-shadow: 0 20px 40px -10px rgba(226,168,41,0.1);
}
.mid-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
}
@media (min-width: 768px) { .mid-cta h3 { font-size: 1.875rem; } }
.mid-cta .accent { color: var(--primary); }
.mid-cta p { font-size: 0.875rem; color: var(--fg-muted); max-width: 36rem; }

/* ══════════ FAQ ══════════ */
.faq-list {
  max-width: 48rem;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
}
.faq-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
  background: none;
  border: none;
  color: var(--fg);
}
.faq-icon { color: var(--primary); font-size: 1.25rem; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 1rem 1rem;
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ══════════ FINAL CTA ══════════ */
.final-section {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
}
.final-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: radial-gradient(circle at 50% 0%, rgba(226,168,41,0.4), transparent 60%);
}
.final-inner {
  position: relative;
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.scarcity-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(226,168,41,0.7);
  background: linear-gradient(to right, rgba(226,168,41,0.2), rgba(226,168,41,0.1), rgba(226,168,41,0.2));
  font-size: 0.875rem;
}
.scarcity-fire { font-size: 1rem; animation: pulse-fire 2s ease-in-out infinite; }
@keyframes pulse-fire { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }
.scarcity-dot {
  position: relative;
  width: 0.625rem;
  height: 0.625rem;
}
.scarcity-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--primary);
  animation: ping 1s cubic-bezier(0,0,0.2,1) infinite;
  opacity: 0.75;
}
.scarcity-dot::after {
  content: '';
  position: relative;
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: var(--primary);
}
@keyframes ping { 75%,100% { transform: scale(2); opacity: 0; } }
.scarcity-text {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary);
}

.final-checks {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  max-width: 28rem;
  margin: 1.5rem auto 0;
  text-align: left;
  font-size: 0.875rem;
}

.offer-box {
  max-width: 28rem;
  margin: 2rem auto 0;
  padding: 1.75rem;
  border-radius: 1rem;
  border: 1px solid rgba(226,168,41,0.6);
  background: var(--bg);
  box-shadow: 0 25px 50px -12px rgba(226,168,41,0.2);
}
.offer-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fg-muted);
}
.offer-was {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--fg-muted);
  text-decoration: line-through;
}
.offer-price {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
}
@media (min-width: 768px) { .offer-price { font-size: 3.75rem; } }
.offer-installments {
  font-size: 0.875rem;
  color: var(--fg-muted);
}
.offer-btn {
  margin-top: 1.5rem;
  width: 100%;
}
.offer-trust {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
}

/* ══════════ FOOTER ══════════ */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: 3rem 1.25rem;
  padding-bottom: 7rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--fg-muted);
}
@media (min-width: 768px) { .footer { padding-bottom: 3rem; } }
.footer-logo { height: 4rem; width: auto; margin: 0 auto 1.25rem; opacity: 0.8; }
.footer-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.footer-social {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(226,168,41,0.4);
  background: rgba(26,26,26,0.6);
  color: var(--primary);
  transition: all 0.3s;
}
.footer-social:hover { border-color: var(--primary); background: rgba(226,168,41,0.1); }
.footer-social svg { width: 1rem; height: 1rem; }



/* ══════════ SCROLL TO TOP ══════════ */
.scroll-top-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.25rem;
  z-index: 40;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(226,168,41,0.4);
  background: rgba(26,26,26,0.8);
  color: var(--primary);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s, border-color 0.3s, background 0.3s;
  backdrop-filter: blur(8px);
}
@media (min-width: 768px) {
  .scroll-top-btn { bottom: 2rem; right: 2rem; }
}
.scroll-top-btn.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top-btn:hover {
  border-color: var(--primary);
  background: rgba(226,168,41,0.1);
}
.scroll-top-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* ── text center helper ── */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
