/* Font imports */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Inter:wght@400;500&display=swap');

/* ---------- Design tokens ---------- */
:root {
  --primary: #1f2a37;      /* texto principal */
  --secondary: #6b7280;    /* texto secundário */
  --background: #f8f9fa;   /* fundo */
  --accent: #8c5a3c;       /* CTA / destaque discreto */

  --max-width: 720px;
}

/* ---------- Base ---------- */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: var(--background);
  color: var(--primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 72px 24px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 72px;
}

/* ---------- Header ---------- */
.logo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}

.language-switch a {
  font-size: 0.85rem;
  color: var(--secondary);
  text-decoration: none;
  margin-left: 12px;
}

.language-switch a:hover {
  text-decoration: underline;
}

/* ---------- Typography ---------- */
h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.15rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
}

h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  margin-top: 56px;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

p {
  margin-bottom: 18px;
  color: var(--primary);
}

.muted {
  color: var(--secondary);
}

/* ---------- Content blocks ---------- */
.block {
  margin-bottom: 52px;
}

/* ---------- Lists ---------- */
ul {
  padding-left: 20px;
  margin-top: 8px;
}

li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.no-bullets {
  list-style-type: none; /* Removes the bullets */
  padding: 0;            /* Removes default indentation */
  margin: 0;             /* Removes default spacing */
}

/* ---------- Pricing ---------- */
.price {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin: 32px 0 12px 0;
  letter-spacing: 0.02em;
}

/* ---------- CTA ---------- */
.cta {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 26px;
  background-color: var(--accent);
  color: #ffffff;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  border-radius: 6px;
  transition: opacity 0.15s ease;
}

.cta:hover {
  opacity: 0.9;
}

/* ---------- Footer / credibility ---------- */
.credibility {
  margin-top: 72px;
  font-size: 0.85rem;
  color: var(--secondary);
  line-height: 1.5;
}

/* ---------- Small screens ---------- */
@media (max-width: 600px) {
  .container {
    padding: 56px 20px;
  }

  h1 {
    font-size: 1.85rem;
  }
}
