/* ============================================================
   CMP Club · assets/css/base.css
   Reset + tipografia base
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--white);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100dvh;
}

a { color: var(--gold); text-decoration: none; }
a:hover { opacity: 0.85; }

img { display: block; max-width: 100%; }

/* Previne zoom automático em inputs no iOS */
input, select, textarea {
  font-size: 16px;
  font-family: 'Inter', sans-serif;
}

/* Utilitários de cor */
.c-gold  { color: var(--gold)  !important; }
.c-white { color: var(--white) !important; }
.c-gray  { color: var(--gray)  !important; }
.c-green { color: var(--green) !important; }
.c-red   { color: var(--red)   !important; }

/* Labels de seção uppercase */
.section-label {
  font-size: 10px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.divider {
  height: 0.5px;
  background: var(--border);
  margin: 24px 0;
}
