/* ============================================================
   CONTÁGIO — Design System
   Extraído de graza.co
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  /* Cores */
  --bg:           #F6E6D9;   /* cream quente — background principal */
  --bg-surface:   #FFF4EC;   /* peachy-white — cards e superfícies */
  --bg-card:      #FFF4EC;
  --border:       rgba(60, 66, 46, 0.18);
  --border-strong: #9FCD7A;  /* stroke verde */

  --brand:        #D1E030;   /* lima neon — CTA */
  --brand-2:      #FBD535;   /* amarelo dourado — destaque */
  --sage:         #9EEF80;   /* verde sage — acento suave */

  --text:         #3C422E;   /* marrom-oliva escuro */
  --text-muted:   rgba(60, 66, 46, 0.55);
  --text-dim:     rgba(60, 66, 46, 0.30);

  /* Tipografia */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Layout */
  --max-width:    880px;
  --padding-x:    1.5rem;

  /* Forma */
  --radius-btn:   30px;
  --radius-card:  4px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
