:root {
  color-scheme: dark;
  --bg: #0b0b0b;
  --bg-soft: #121212;
  --light: #f2f2f2;
  --muted: #b0b0b0;
  --gold: #d1a64b;
  --gold-strong: #f0c86d;
  --green: #2edb6f;
  --red: #ff3b3b;
  --card: #1c1c1c;
  --card-light: #f7f4ef;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
}

body {
  background: var(--bg);
  color: var(--light);
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

.top-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 20px 0;
}

.cron {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;

}

.cron p{
  margin-top: 15px;
}


.countdown-container {
    display: flex;
    gap: 15px; /* Espaçamento entre os blocos */
    margin: 10px 0;
}

.timer-box {
    background-color: #c49a4a; /* Cor mostarda/dourado do bloco */
    border-radius: 12px; /* Cantos arredondados */
    padding: 15px 10px;
    width: 90px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.timer-digit {
    color: white;
    font-size: 48px; /* Números grandes */
    font-weight: 800;
    display: block;
    line-height: 1.1;
}

.timer-label {
    color: #5d4a1f; /* Cor do texto de etiqueta */
    font-size: 12px;
    text-transform: uppercase;
    margin-top: 5px;
    font-weight: bold;
}

.header-text {
    text-align: center;
    color: #ff3f3f; /* Cor vermelha para o texto superior */
    font-weight: bold;
    font-size: 30px;
}

.footer-text {
    text-align: center;
    font-weight: bold;
    color: #4CAF50; /* Cor verde para o texto inferior */
    font-size: 35px;
    margin-top: 2px;
}

.badge {
  border: 1px solid #1f5a39;
  color: var(--green);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

li {
  margin-left: 8px;
}

.lang-switch {
  display: flex;
  gap: 8px;
}

.lang-btn {
  background: transparent;
  color: var(--light);
  border: 1px solid #3b3b3b;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
}

.lang-btn.active {
  background: var(--gold);
  color: #111;
  border-color: var(--gold-strong);
}

.hero {
  padding: 32px 20px 28px;
  text-align: center;
}

.eyebrow {
  color: var(--gold-strong);
  font-weight: 800;
  letter-spacing: 0.2em;
  font-size: 14px;
}

.hero h1 {
  margin: 18px auto 16px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
}

.hero-sub {
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 16px;
}

.hero-meta {
  color: #d5cfc0;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-proof {
  margin-bottom: 24px;
}

.green {
  color: var(--green);
  font-weight: 800;
}

.cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  color: #111;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 30px rgba(240, 200, 109, 0.35);
  margin: 12px 0;
}

.price-box {
  background: var(--card);
  border-radius: 16px;
  padding: 16px;
  margin: 24px auto 0;
  max-width: 360px;
  border: 1px solid #2a2a2a;
}

.price-line {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  margin-bottom: 8px;
}

.striked {
  text-decoration: line-through;
  color: var(--red);
}

.price-highlight {
  color: var(--green);
  font-weight: 900;
}

.section {
  padding: 32px 20px;
}

.section h2 {
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-strong);
}

.section.dark {
  background: var(--bg-soft);
  border-top: 1px solid #1f1f1f;
  border-bottom: 1px solid #1f1f1f;
}

.section.light {
  background: var(--card-light);
  color: #1a1a1a;
}

.section.light h2 {
  color: #111;
}

.section.highlight {
  background: #141414;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
}

.section.final {
  text-align: center;
  background: #0f0f0f;
}

.list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.list li {
  background: var(--card);
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid #2b2b2b;
  position: relative;
  padding-left: 42px;
}

.list li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  color: var(--green);
  font-weight: 900;
}

.cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.urgency {
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
}

.cards {
  display: grid;
  gap: 16px;
}

.card {
  background: var(--card);
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #2a2a2a;
}

.card h3 {
  color: var(--gold-strong);
  margin-bottom: 8px;
}

.grid {
  display: grid;
  gap: 16px;
}

blockquote {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
}

.testimonials {
  display: grid;
  gap: 16px;
}

.testimonials figure {
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #e4dfd7;
}

.testimonials figcaption {
  margin-top: 8px;
  font-weight: 700;
  color: #333;
}

.warning {
  background: #1b1b1b;
  border: 1px solid #2d2d2d;
  padding: 16px;
  border-radius: 16px;
}

.warning h3 {
  color: var(--red);
  margin-bottom: 8px;
}

.warning ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.warning li::before {
  content: "✗";
  color: var(--red);
  font-weight: 900;
  margin-right: 8px;
}

.decision-grid {
  display: grid;
  gap: 16px;
}


 

.recommended {
  flex-direction: column;
  display: flex;
  justify-content: center;
  border: 2px solid var(--gold-strong);
  box-shadow: 0 8px 20px rgba(240, 200, 109, 0.15);
}

.total {
  margin-top: 12px;
  color: var(--red);
  font-weight: 800;
}

.risk {
  color: var(--green);
  font-weight: 800;
  margin-top: 12px;
}

h2 {
  text-align: center;
}

.faq {
  display: grid;
  gap: 16px;
}

.faq h4 {
  color: var(--gold-strong);
  margin-bottom: 6px;
}

.payment {
  margin-top: 16px;
  color: var(--muted);
}

.footer {
  padding: 24px 20px 40px;
  text-align: center;
  color: var(--muted);
}

.footer .disclaimer {
  margin-top: 8px;
  font-size: 12px;
}

@media (min-width: 768px) {
  .cards,
  .testimonials,
  .decision-grid,
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    padding: 48px 80px 32px;
  }

  .section {
    padding: 48px 80px;
  }
}

@media (min-width: 1024px) {
  .cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
