:root{
  --primary: #0fa69e;
  --primary-dark: #0c8e87;
  --text: #1f2937;
  --muted: #6b7280;
  --bg: #f6f7f9;
  --card: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 10px 20px rgba(0,0,0,.06);
  --radius: 14px;
  --container-max: 1200px; /* antes 1100px */
  --container-pad: 32px;   /* margen lateral total */
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Lato, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

a{ color: inherit; text-decoration: none; }
a:hover{ color: var(--primary-dark); }