/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #111;
  background: #fff;
}

/* ── Variables ── */
:root {
  --gold: #C9A84C;
  --dark: #1a1209;
  --green: #25D366;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-900: #111827;
}

/* ── Typography ── */
.serif { font-family: 'Playfair Display', serif; }

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--dark);
  width: 100%;
}
.navbar-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 12px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.navbar-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,0.7);
  font-size: 10px;
  white-space: nowrap;
}
.navbar-badge svg { color: var(--gold); flex-shrink: 0; }
@media (min-width: 640px) {
  .navbar-inner { gap: 32px; }
  .navbar-badge { font-size: 12px; gap: 6px; }
}

/* ── Hero ── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(26,18,9,0.96) 0%,
    rgba(26,18,9,0.88) 45%,
    rgba(26,18,9,0.45) 75%,
    rgba(26,18,9,0.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px 20px;
}
.hero-inner { max-width: 420px; }
.hero-tagline {
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}
.hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.7;
}
.hero-list { list-style: none; margin-bottom: 32px; }
.hero-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.hero-list .icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201,168,76,0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-list .icon-wrap svg { color: var(--gold); }
.hero-list .item-title { color: #fff; font-size: 14px; font-weight: 600; }
.hero-list .item-sub { color: rgba(255,255,255,0.5); font-size: 12px; }
.hero-note {
  color: rgba(255,255,255,0.35);
  font-size: 11px;
  margin-top: 8px;
  text-align: center;
}
@media (min-width: 640px) { .hero-note { text-align: left; } }

/* ── Buttons ── */
.btn-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 24px;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  gap: 12px;
  transition: opacity 0.2s;
  width: 100%;
}
.btn-green:hover { opacity: 0.9; }
.btn-green.between { justify-content: space-between; }
.btn-green .price-tag { font-weight: 900; }

/* ── Kit Section ── */
.kit-section {
  background: #fff;
  padding: 40px 0;
}
.kit-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  gap: 32px;
}
@media (min-width: 1024px) {
  .kit-inner { grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
}
.kit-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 6px;
}
.kit-title {
  font-size: 30px;
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.kit-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
}
.kit-price-old {
  font-size: 14px;
  color: var(--gray-400);
  text-decoration: line-through;
}
.kit-price-new {
  font-size: 26px;
  font-weight: 900;
  color: #16A34A;
}

/* Color pickers */
.color-pickers { display: flex; gap: 32px; margin-bottom: 20px; }
.picker-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  margin-bottom: 4px;
}
.picker-sub { font-size: 11px; color: var(--gray-400); margin-bottom: 8px; }
.picker-colors { display: flex; gap: 8px; }
.color-swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.swatch-box {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  border: 2px solid #e5e7eb;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.swatch-box.active {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold);
}
.swatch-name { font-size: 11px; color: var(--gray-500); font-weight: 500; }

.kit-confirm {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 11px;
  color: var(--gray-400);
  margin-bottom: 20px;
}
.kit-confirm svg { color: #16A34A; flex-shrink: 0; margin-top: 1px; }

.kit-secure { text-align: center; font-size: 11px; color: var(--gray-400); margin: 8px 0 16px; }

.wa-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-500);
  text-decoration: none;
  transition: color 0.2s;
}
.wa-link:hover { color: var(--green); }
.wa-link svg { color: var(--green); }

.trust-icons {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.trust-item svg { color: var(--gray-400); }
.trust-label { font-size: 11px; color: var(--gray-600); font-weight: 500; line-height: 1.3; }
.trust-sub { font-size: 11px; color: var(--gray-400); line-height: 1.3; }

/* Kit image */
.kit-image-wrap {
  display: none;
  position: relative;
  justify-content: center;
}
@media (min-width: 1024px) { .kit-image-wrap { display: flex; } }
.kit-image-wrap img {
  width: 100%;
  max-width: 360px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  object-fit: cover;
}
.kit-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.kit-badge span {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

/* ── Benefits Section ── */
.benefits-section {
  background: var(--gray-50);
  padding: 48px 0;
}
.benefits-inner { max-width: 1000px; margin: 0 auto; padding: 0 20px; }
.section-title {
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 32px;
}
@media (min-width: 640px) { .section-title { font-size: 26px; } }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
}
@media (min-width: 640px) {
  .benefits-grid { grid-template-columns: repeat(5, 1fr); gap: 24px; }
}
.benefit-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.benefit-item:nth-child(4) { grid-column-start: 1; }
.benefit-item:nth-child(5) { grid-column-start: 3; }
@media (min-width: 640px) {
  .benefit-item:nth-child(4) { grid-column-start: auto; }
  .benefit-item:nth-child(5) { grid-column-start: auto; }
}
.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-icon svg { color: var(--gold); }
.benefit-label { font-size: 10px; color: var(--gray-600); line-height: 1.4; }
@media (min-width: 640px) { .benefit-label { font-size: 12px; } }

/* ── Testimonials ── */
.testimonials-section {
  background: #fff;
  padding: 48px 0;
}
.testimonials-inner { max-width: 1000px; margin: 0 auto; padding: 0 20px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.testimonial-card {
  background: var(--gray-50);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--gray-100);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.testimonial-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 14px; color: var(--gray-900); }
.stars { display: flex; gap: 2px; margin-top: 2px; }
.stars svg { color: var(--gold); }
.testimonial-text { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

.dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gray-100); }
.dot.active { background: var(--gold); }

/* ── FAQ ── */
.faq-section {
  background: var(--gray-50);
  padding: 48px 0;
}
.faq-inner { max-width: 680px; margin: 0 auto; padding: 0 20px; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--gray-100);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-900);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}
.faq-question:hover { background: var(--gray-50); }
.faq-question svg { flex-shrink: 0; color: var(--gray-400); transition: transform 0.3s; }
.faq-question.open svg { transform: rotate(180deg); }
.faq-answer {
  padding: 0 20px;
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer.open { max-height: 200px; padding: 0 20px 16px; }

/* ── Final CTA ── */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 48px 0;
}
.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(26,18,9,0.97) 0%,
    rgba(26,18,9,0.90) 55%,
    rgba(26,18,9,0.65) 100%);
}
.cta-inner {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  gap: 32px;
}
@media (min-width: 1024px) {
  .cta-inner { grid-template-columns: 1fr 1fr; align-items: center; }
}
.cta-text { order: 2; }
@media (min-width: 1024px) { .cta-text { order: 1; } }
.cta-title {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 20px;
}
@media (min-width: 640px) { .cta-title { font-size: 32px; } }
.cta-list { list-style: none; }
.cta-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  margin-bottom: 12px;
}
.cta-list svg { flex-shrink: 0; color: var(--green); }
.cta-box {
  order: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}
@media (min-width: 640px) { .cta-box { padding: 32px; } }
@media (min-width: 1024px) { .cta-box { order: 2; } }
.cta-price-label { color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 4px; }
.cta-price {
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
}
@media (min-width: 640px) { .cta-price { font-size: 52px; } }
.cta-price span { color: var(--green); }
.cta-safe { color: rgba(255,255,255,0.4); font-size: 11px; margin-top: 12px; }

/* ── Footer ── */
footer {
  background: #110e07;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 20px;
}
.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media (min-width: 640px) {
  .footer-inner { flex-direction: row; justify-content: center; gap: 32px; }
}
.footer-links { display: flex; gap: 20px; }
.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.7); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
<style>
.logo-text{
    font-size: 72px;
    line-height: 0.9;
    font-weight: bold;
    margin: 0;
    font-family: Georgia, serif;
}

.branco{
    color: #ffffff;
}

.dourado{
    color: #d4af37;
}
</style>

