/* === GLOBAL === */
body {
  font-family: 'Georgia', serif;
  background-color: #0f0d0d;
  color: #f2e6da;
  padding: 40px 20px;
  max-width: 1100px;
  margin: 0 auto;
  line-height: 1.6;
}

/* === HEADER === */
.cv-header {
  text-align: center;
  margin-bottom: 40px;
}

.cv-header .logo {
  display: block;
  margin: 0 auto 16px auto;
  height: 40px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.cv-header h1 {
  font-size: 36px;
  color: #caa880;
  margin-bottom: 8px;
}

.cv-header p {
  font-size: 18px;
  color: #ccc;
}

.cv-nav {
  margin-top: 20px;
}

.cv-nav a {
  margin: 0 10px;
  color: #f2e6da;
  text-decoration: none;
  font-size: 16px;
}

.cv-nav a:hover,
.cv-nav .active {
  color: #caa880;
  font-weight: bold;
}

/* === BOTONES CV === */
.cv-downloads {
  margin-top: 20px;
  text-align: center;
}

.cv-download {
  display: inline-block;
  margin: 0 10px;
  padding: 8px 14px;
  border: 1px solid #caa880;
  border-radius: 5px;
  color: #caa880;
  background-color: transparent;
  transition: all 0.2s ease;
}

.cv-download:hover {
  background-color: #caa88022;
}

/* === FOTOS ARRIBA DEL CV === */
.cv-photos-top {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.cv-photos-top img {
  width: 140px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
  border: 1px solid #caa88055;
  transition: transform 0.3s ease;
}

.cv-photos-top img:hover {
  transform: scale(1.05);
}

/* === SECCIONES === */
.section {
  margin-bottom: 40px;
}

.section h2 {
  font-size: 22px;
  color: #caa880;
  margin-bottom: 16px;
  border-bottom: 1px solid #caa88044;
  padding-bottom: 6px;
}

.section ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.section li {
  margin-bottom: 10px;
}

/* === LAYOUT CON FOTOS A LOS LADOS (ya no usado pero mantenido por si acaso) === */
.dual-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
  margin-top: 40px;
}

.cv-side {
  flex: 0 0 220px;
  max-width: 220px;
}

.cv-side img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.cv-side img:hover {
  transform: scale(1.03);
}

.cv-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.cv-text.centered {
  margin: 0 auto;
  max-width: 700px;
  text-align: left;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .dual-layout {
    flex-direction: column;
    align-items: center;
  }

  .cv-side {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .cv-text {
    max-width: 100%;
  }

  .cv-header h1 {
    font-size: 28px;
  }

  .cv-header p {
    font-size: 16px;
  }

  .cv-photos-top {
    gap: 12px;
  }

  .cv-photos-top img {
    width: 120px;
  }
}

/* === LINKS === */
a {
  color: #caa880;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}