/* Contemplados Popular — Design System (Oficial: rgb(116, 142, 19) / #748E13) */
:root {
  /* Cor Oficial da Marca */
  --brand-official: #748E13; /* rgb(116, 142, 19) */
  --brand-dark:     #60760F;
  --brand-light:    #85A316;
  --brand-soft:     #9ABF1D;
  --brand-tint:     #F1F5E1;
  --brand-border:   #E0E7C5;

  /* Cores de Contraste Planejadas */
  --contrast-dark:    #161B11; /* Grafite Profundo / Black-Green para Header/Footer/Dark Sections */
  --contrast-surface: #1F2618; /* Superfície Escura Secundária */
  --contrast-gold:    #EAB308; /* Dourado Âmbar quentinho para Destaques, Estrelas e Badges */
  --contrast-amber:   #D97706; /* Âmbar Forte */
  
  --whatsapp:         #25D366; /* Verde WhatsApp */

  --white:     #FFFFFF;
  --slate-50:  #F7F9EE;
  --slate-100: #EEF2DE;
  --slate-200: #E0E7C5;
  --slate-300: #CBD5E1;
  --slate-400: #94A3B8;
  --slate-500: #64748B;
  --slate-600: #475569;
  --slate-700: #333D29;
  --slate-800: #1F2618;
  --slate-900: #161B11;

  --font-display: 'Poppins', 'Outfit', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 2px rgba(22, 27, 17, 0.05);
  --shadow-md: 0 4px 12px rgba(22, 27, 17, 0.08);
  --shadow-lg: 0 12px 32px rgba(22, 27, 17, 0.12);
  --shadow-xl: 0 24px 64px rgba(22, 27, 17, 0.18);

  --container: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--brand-official); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); color: var(--slate-900); line-height: 1.2; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* Botões com Cor Oficial #748E13 e Contraste */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 16px;
  padding: 12px 22px; border-radius: var(--radius-md);
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap; line-height: 1.2; text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-lg { padding: 16px 28px; font-size: 17px; }
.btn-sm { padding: 8px 16px; font-size: 14px; }

.btn-primary { background: var(--brand-official); color: white; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--brand-dark); box-shadow: var(--shadow-md); }

.btn-secondary { background: var(--contrast-dark); color: white; }
.btn-secondary:hover { background: var(--contrast-surface); box-shadow: var(--shadow-md); }

.btn-outline { background: transparent; color: var(--brand-official); border: 1.5px solid var(--brand-official); }
.btn-outline:hover { background: var(--brand-tint); }

.btn-whatsapp { background: var(--whatsapp); color: white; }
.btn-whatsapp:hover { background: #1EBE5D; box-shadow: var(--shadow-md); }

/* Utilitários de Seção */
.section { padding: 80px 0; }
.section-tinted { background: var(--slate-50); }
.section-title { font-size: 36px; font-weight: 700; color: var(--slate-900); text-align: center; margin-bottom: 12px; }
.section-title em { font-style: normal; color: var(--brand-official); }
.section-sub { font-size: 18px; color: var(--slate-600); text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-kicker { text-transform: uppercase; font-size: 13px; font-weight: 700; letter-spacing: 1px; color: var(--brand-official); text-align: center; margin-bottom: 8px; }

.card-quota {
  background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--slate-200);
  padding: 24px; box-shadow: var(--shadow-sm); transition: all 200ms ease; display: flex; flex-direction: column; justify-content: space-between;
}
.card-quota:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--brand-official); }
