* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #e0e5ec;
  display: flex;
  justify-content: center;
  padding: 50px 20px;
}


.cv-contenedor {
  display: flex;
  width: 100%;
  max-width: 900px;
  background-color: white;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  overflow: hidden;
}


.barra-lateral {
  width: 35%;
  background: linear-gradient(135deg, #1d7b93, #155b6d);
  color: white;
  padding: 50px 40px;
  z-index: 2;
}

.contenedor-foto-perfil {
  text-align: center;
  margin-bottom: 40px;
}

.foto-perfil {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.3);
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);

}




.barra-lateral h2 {
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.separador {
  height: 3px;
  background-color: #55a8bc;
  width: 50px;
  margin-bottom: 15px;
}

.barra-lateral h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #aae0ef;
}

.barra-lateral p,
.barra-lateral li {
  font-size: 14px;
  margin-bottom: 10px;
  color: #e6f4f8;
}

.barra-lateral ul {
  list-style-type: none;
  padding-left: 10px;
}

.barra-lateral li::before {
  content: "•";
  color: #55a8bc;
  font-weight: bold;
  display: inline-block;
  width: 1em;
}

.margen-arriba-15 {
  margin-top: 15px;
}

.margen-arriba-40 {
  margin-top: 40px;
}

.elemento-idioma {
  margin-bottom: 15px;
}

.elemento-idioma p {
  margin-bottom: 5px;
  font-weight: bold;
}

.barra-fondo {
  width: 100%;
  height: 8px;
  background-color: #0f404d;
  border-radius: 4px;
  overflow: hidden;
}

.barra-progreso {
  height: 100%;
  background-color: #ffffff;
  width: 0;
  border-radius: 4px;
  transition: width 1.5s ease-in-out;
}

.animar {
  opacity: 1;
  transform: translateY(0);
}

.animar.visible {
  opacity: 1;
  transform: translateY(0);
}

.contenido-principal {
  width: 65%;
  padding: 60px;
  background-color: #ffffff;
}

.encabezado {
  background-color: #218ba6;
  color: white;
  padding: 30px 40px;
  margin: -60px -60px 40px -60px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.encabezado h1 {
  font-size: 45px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cargo {
  font-size: 18px;
  font-weight: 300;
  margin-top: 10px;
  color: #d1f0f7;
  letter-spacing: 2px;
}

.seccion-contenido {
  margin-bottom: 35px;
}

.titulo-seccion {
  color: #1d7b93;
  font-size: 20px;
  border-bottom: 2px solid #1d7b93;
  padding-bottom: 8px;
  margin-bottom: 20px;
  display: inline-block;
}

.elemento {
  margin-bottom: 20px;
}

.elemento h4 {
  color: #222;
  font-size: 16px;
  margin-bottom: 4px;
}

.fecha {
  color: #1d7b93;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.lista-experiencia {
  margin-left: 20px;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}