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

:root {
  --navy: #e8eaf2;
  --navy-mid: #c8cfe0;
  --accent: #4a8fff;
  --accent-light: #0d1528;
  --text: #e8eaf2;
  --muted: #a0a8c0;
  --border: #1e3060;
  --bg: #080b14;
  --white: #ffffff;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: #080b14;
  font-size: 14px;
  line-height: 1.6;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
  display: flex;
  justify-content: center;
  padding: 2rem;
}

.curriculo-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 860px;
}

.back-btn {
  align-self: flex-start;
  color: #8890a8;
  font-size: 0.9rem;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}

.back-btn:hover {
  color: #e8eaf2;
}

.page {
  width: 100%;
  background-color: #080b14;
  box-shadow: 0 4px 40px rgba(26,39,68,0.12);
}

.body {
  padding: 0 2.8rem 2.5rem;
}

.section {
  margin-top: 1.8rem;
}

.section-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
  padding-bottom: 0.45rem;
  border-bottom: 1.5px solid var(--border);
}

.exp-divider {
  height: 1px;
  background: var(--border);
  margin: 1rem 0;
}

@media print {
  body { background: white; }
  .page { margin: 0; box-shadow: none; max-width: 100%; }
}