/* Reset suave */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 100%; }
body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #eaf4f3;  /* fondo gris-verdoso suave */
}

/* Contenedor central */
.cv {
  max-width: 880px;
  margin: 0 auto;
  padding: 24px 20px;
  text-align: center;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);

}

/* Títulos */
h1 {
  font-size: clamp(1.8rem, 2.2vw + 1rem, 2.6rem);
  color: #10443f;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: clamp(1.1rem, 1.2vw + .8rem, 1.5rem);
  color: #10443f;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  position: relative;
}

h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 2px;
  background: #10443f;
  margin: 0.4rem auto 0;
  border-radius: 2px;
}

/* Texto */
p {
  font-size: clamp(.95rem, .4vw + .8rem, 1.05rem);
  margin-top: .75rem;
  color: #333;
}

/* Listas */
ul {
  list-style: none;
  margin-top: .75rem;
  padding: 0;
  display: inline-block;
  text-align: left;
  max-width: min(720px, 92vw);
}
li {
  margin: .4rem 0;
  padding-left: 1.4rem;
  position: relative;
  color: #333;
}
li::before {
  content: "◆";
  color: #10443f;
  position: absolute;
  left: 0;
  font-size: .8rem;
}

/* Separadores suaves entre secciones */
.section {
  margin-top: 1.8rem;
  padding-top: 1rem;
  border-top: 1px solid #e0f2f1;
}
.footer p {
  padding-top: 2rem;
  margin-top: 4rem;
  font-size: 0.rem;
  color: #172367;
}

/* Responsivo */
@media (min-width: 900px) {
  .cv { padding: 40px 48px; }
  .section { margin-top: 2rem; }
}

/* Modo impresión */
@media print {
  body { background: #fff; }
  .cv { box-shadow: none; border-radius: 0; border: none; }
}
