:root {
  --bg: #fdfcf8;
  --fg: #1a1f3a;
  --muted: #6b7280;
  --gold: #c9a14a;
  --gold-soft: #e5cf8a;
  --deep-blue: #1f2a55;
  --cream: #f7f1e3;
  --card: #ffffff;
  --border: #ece6d6;
  --shadow-soft: 0 10px 30px -12px rgba(31, 42, 85, 0.15);
  --shadow-gold: 0 8px 24px -10px rgba(201, 161, 74, 0.35);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.serif { font-family: "Cormorant Garamond", Georgia, serif; letter-spacing: -0.01em; }
.center { text-align: center; }
.muted-small { color: var(--muted); font-size: 0.85rem; }
.overline { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #5a6072; margin: 0; }
.overline.gold { color: var(--gold); }
.strike { text-decoration: line-through; color: #8a8a8a; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.container.narrow { max-width: 760px; }
.section { padding: 64px 0; }
.section-cream { background: rgba(247, 241, 227, 0.6); }
.section-head { max-width: 640px; margin: 0 auto 40px; text-align: center; }
.section-head h2, .section h2 { font-size: clamp(1.75rem, 4vw, 2.25rem); color: var(--deep-blue); font-weight: 600; margin: 0 0 12px; }
.section-head p { color: var(--muted); font-size: 1.05rem; margin: 0; }

/* HERO */
.hero { background: linear-gradient(180deg, #fbf5e6 0%, #ffffff 100%); padding: 40px 0 56px; }
.hero-grid { display: grid; gap: 32px; }
.hero-text { text-align: center; }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; background: var(--cream); border: 1px solid rgba(201, 161, 74, 0.4); color: var(--deep-blue); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }
.hero-text h1 { font-size: clamp(2.25rem, 7vw, 3.75rem); color: var(--deep-blue); font-weight: 600; line-height: 1.05; margin: 18px 0 16px; }
.lead { color: var(--muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.bullets { list-style: none; padding: 0; margin: 24px auto; max-width: 420px; text-align: left; display: grid; gap: 10px; }
.bullets li { position: relative; padding-left: 28px; font-size: 0.97rem; }
.bullets li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 20px; height: 20px; background: var(--cream); color: var(--gold); border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 800; }
.bullets.center-list { margin: 24px 0 0; max-width: none; text-align: left; }

.mockup-mobile { margin: 28px auto; max-width: 360px; filter: drop-shadow(0 18px 28px rgba(31,42,85,0.18)); }
.mockup-desktop { display: none; }

.price-block { margin-top: 28px; }
.price { font-size: clamp(3rem, 9vw, 3.5rem); font-weight: 700; color: var(--deep-blue); margin: 4px 0 0; line-height: 1; }
.price.big { font-size: clamp(3.25rem, 10vw, 3.75rem); }

.cta-wrap { margin-top: 22px; display: flex; justify-content: center; }
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; max-width: 380px;
  background: var(--deep-blue); color: #fdfcf8;
  font-weight: 600; font-size: 1rem;
  padding: 16px 28px; border-radius: 999px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.15s ease, opacity 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.btn-primary:hover { opacity: 0.95; box-shadow: var(--shadow-gold); }
.btn-primary:active { transform: scale(0.99); }
.spark { color: var(--gold); font-size: 1.05rem; }
.fineprint { margin-top: 12px; font-size: 0.78rem; color: var(--muted); text-align: center; }

/* KIT */
.kit-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
.kit-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 24px; text-align: center; box-shadow: var(--shadow-soft); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.kit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.kit-img { height: 170px; display: flex; align-items: center; justify-content: center; }
.kit-img img { max-height: 170px; width: auto; filter: drop-shadow(0 12px 18px rgba(31,42,85,0.18)); }
.kit-card h3 { color: var(--deep-blue); font-size: 1.25rem; font-weight: 600; margin: 18px 0 8px; }
.kit-card p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* STEPS */
.steps { list-style: none; padding: 0; margin: 36px 0 0; display: grid; gap: 16px; }
.steps li { display: flex; align-items: flex-start; gap: 16px; background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 18px; box-shadow: var(--shadow-soft); }
.step-num { flex: 0 0 44px; width: 44px; height: 44px; border-radius: 999px; background: var(--deep-blue); color: #fdfcf8; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.steps p { margin: 0; }

/* OFFER */
.offer-card { position: relative; max-width: 440px; margin: 40px auto 0; background: var(--card); border: 2px solid rgba(201,161,74,0.6); border-radius: 24px; padding: 44px 28px 32px; box-shadow: var(--shadow-soft); text-align: center; }
.offer-tag { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #d9b766, #b8923a); color: var(--deep-blue); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 7px 16px; border-radius: 999px; box-shadow: var(--shadow-gold); }

/* GUARANTEE */
.guarantee .shield { width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 999px; background: var(--card); border: 1px solid rgba(201,161,74,0.5); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; box-shadow: var(--shadow-soft); }
.guarantee p { color: var(--muted); max-width: 520px; margin: 10px auto 0; }

/* FAQ */
.faq { margin-top: 36px; display: grid; gap: 12px; }
.faq details { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 18px 20px; box-shadow: var(--shadow-soft); transition: box-shadow 0.2s ease; }
.faq details[open] { box-shadow: var(--shadow-gold); }
.faq summary { display: flex; justify-content: space-between; align-items: center; gap: 16px; cursor: pointer; list-style: none; font-weight: 600; color: var(--deep-blue); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { font-family: "Cormorant Garamond", serif; color: var(--gold); font-size: 1.5rem; transition: transform 0.2s ease; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq p { margin: 12px 0 0; color: var(--muted); font-size: 0.92rem; }

footer { border-top: 1px solid var(--border); padding: 32px 20px; text-align: center; }
footer p:first-child { color: var(--deep-blue); font-size: 1.15rem; margin: 0; }
footer p:last-child { margin: 4px 0 0; }

/* Desktop */
@media (min-width: 720px) {
  .kit-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .btn-primary { width: auto; font-size: 1.1rem; }
}
@media (min-width: 1024px) {
  .hero { padding: 64px 0 80px; }
  .hero-grid { grid-template-columns: 1fr 1fr; align-items: center; gap: 48px; }
  .hero-text { text-align: left; }
  .hero-text .lead, .hero-text .bullets { margin-left: 0; }
  .mockup-mobile { display: none; }
  .mockup-desktop { display: block; max-width: 520px; margin: 0 auto; filter: drop-shadow(0 24px 36px rgba(31,42,85,0.2)); }
  .cta-wrap { justify-content: flex-start; }
  .fineprint { text-align: left; }
  .kit-grid { grid-template-columns: repeat(3, 1fr); }
  .section { padding: 96px 0; }
}


/* Aviso de moeda local */
.local-currency-note {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(190, 151, 79, 0.32);
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.9);
  color: #374151;
  box-shadow: 0 12px 30px rgba(39, 57, 84, 0.06);
}

.local-currency-note strong {
  display: block;
  color: #24476b;
  font-weight: 700;
  margin-bottom: 4px;
}

.local-currency-note span {
  display: block;
  font-size: 0.94rem;
  line-height: 1.5;
}

.currency-mini {
  max-width: 430px;
  margin: 10px auto 0;
  color: #5f6673;
  font-size: 0.94rem;
  line-height: 1.45;
}

/* Testimonios */
.testimonials {
  background: #fff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.testimonial-card {
  padding: 22px;
  border: 1px solid rgba(190, 151, 79, 0.24);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf2 100%);
  box-shadow: 0 16px 40px rgba(39, 57, 84, 0.07);
}

.testimonial-card .stars {
  color: #b98a2f;
  letter-spacing: 2px;
  font-size: 0.92rem;
  margin-bottom: 12px;
}

.testimonial-card p {
  color: #4f5663;
  line-height: 1.65;
  margin: 0 0 16px;
}

.testimonial-card strong {
  color: #24476b;
  font-weight: 700;
}

@media (max-width: 860px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}
