/* VENTANA DEL CV */
/* Fondo oscuro */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
}

/* Contenido centrado */
.modal-contenido {
  background-color: white;
  margin: 5% auto;
  padding: 1rem;
  width: 90%;
  max-width: 800px;
  border-radius: 8px;
  position: relative;
}

/* Botón cerrar */
.cerrar {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}