/* Fuente moderna desde Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
  background-color: #f7f7f7;
  color: #333;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.header {
  background-color: #1e3a8a;
  color: white;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 40px;
  text-align: center;
}

.header h1 {
  margin: 0 0 10px 0;
  font-size: 32px;
  color: white; /* ← esto faltaba */
}


.header p, .header a {
  color: #ffe58f;
  font-size: 16px;
  text-decoration: none;
}

.section {
  background-color: #fafafa;
  padding: 20px 25px;
  margin-bottom: 30px;
  border-radius: 10px;
  border-left: 5px solid #1e3a8a;
}

h2 {
  font-size: 22px;
  margin-top: 0;
  color: #1e3a8a;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #0b3d91;
}

h4 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 15px;
}

p {
  margin: 5px 0 15px 0;
}

ul {
  padding-left: 20px;
  margin-top: 0;
}

li {
  margin-bottom: 8px;
}

a:hover {
  text-decoration: underline;
}

.company {
  font-weight: 600;
  color: #666;
  margin-top: 4px;      /* Antes -10px */
  margin-bottom: 15px;  /* Más separación */
  display: block;       /* Así ocupa una línea propia sí o sí */
}

.experience-block {
  margin-bottom: 30px;
}
