/* Importar fuentes elegantes desde Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Merriweather:wght@400;700&display=swap');

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.profile-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%; /* Hace la foto redonda */
  object-fit: cover; /* Ajusta la foto sin deformar */
  margin-bottom: 20px;
  border: 3px solid #1b365d; /* Un borde elegante azul */
}


/* Body */
body {
  font-family: 'Lato', sans-serif;
  background-color: #ffffff;
  color: #102542;
  line-height: 1.7;
  padding: 40px 20px;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 50px;
}

header h1 {
  font-family: 'Merriweather', serif;
  font-size: 42px;
  color: #102542;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

header h2 {
  font-size: 20px;
  color: #555;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 20px;
}

/* Contacto */
.contact {
  font-size: 14px;
  color: #555;
}

.contact p {
  margin-bottom: 5px;
}

/* Contenedor principal del CV */
.cv-container {
  display: flex;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  align-items: flex-start;
}

/* Columnas */
.left-column {
  flex: 0.9;
  padding-right: 25px;
  border-right: 1px solid #d4dce3;
}

.right-column {
  flex: 1.5;
  padding-left: 25px;
}

/* Secciones */
section {
  margin-bottom: 35px;
}

h3 {
  font-size: 18px;
  font-family: 'Merriweather', serif;
  color: #102542;
  text-transform: uppercase;
  border-bottom: 2px solid #d4dce3;
  padding-bottom: 6px;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

h4 {
  font-size: 16px;
  color: #102542;
  margin-bottom: 5px;
  margin-top: 18px;
  font-weight: bold;
  font-family: 'Lato', sans-serif;
}

/* Listas */
ul {
  list-style-type: disc;
  padding-left: 22px;
  margin-top: 10px;
}

li {
  margin-bottom: 6px;
  font-size: 15px;
  color: #333;
}

/* Enlaces */
a {
  color: #102542;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

/* Bloque de aportes */
.block {
  background-color: #f4f6f9;
  padding: 18px 22px;
  border-left: 4px solid #102542;
  margin-top: 15px;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* Referencias */
.references p {
  font-size: 15px;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .cv-container {
    flex-direction: column;
    gap: 30px;
  }

  .left-column,
  .right-column {
    padding: 0;
    border: none;
  }

  header h1 {
    font-size: 32px;
  }

  header h2 {
    font-size: 18px;
  }
}
