/*  Menú lateral y secciones*/
.menu { 
  display: grid; 
  gap: .5rem; 
  margin-top: .75rem; 
}

.menu button {
  width: 100%; 
  text-align: left; 
  border: 0; 
  padding: .6rem .8rem;
  border-radius: .6rem; 
  cursor: pointer; 
  font-weight: 600;
  background: #eef0f6;
  transition: background 0.2s ease-in-out;
}

.menu button:hover { background:#e0e3ee; }
.menu button.is-active { 
  background:#dfe3f1; 
  outline: 2px solid #b8c1e5; 
}

.seccion { display:none; }
.seccion.activa { display:block; }

/* General */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;
}

/* Encabezado */
.header {
  background-color: #15153d;
  color: white;
  text-align: center;
  padding: 30px 20px;
}

.header-top h1 {
  margin: 0;
  font-size: 2em;
  font-weight: bold;
}
.header-top h2 {
  margin: 8px 0 20px 0;
  font-weight: normal;
  font-size: 1.2em;
  color: #ddd;
}

/*Cabecera inferior (4 columnas) */
.header-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #444;
  padding-top: 20px;
  margin-top: 20px;
}
.header-bottom .col {
  flex: 1;
  text-align: center;
  border-right: 1px solid #d4af37;
  padding: 0 15px;
}
.header-bottom .col:last-child { border-right: none; }
.header-bottom i {
  display: block;
  font-size: 1.4em;
  margin-bottom: 6px;
  color: #d4af37;
}
.header-bottom p { margin: 0; font-size: 0.95em; }

/* Contenedor principal */
.contenedor {
  display: flex;
  margin: 30px;
  gap: 20px;
}

/* Columna izquierda */
.col-izq {
  width: 30%;
  background-color: #f4f4f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
}
.foto {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.foto img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
}

/* Columna derecha */
.col-der {
  width: 70%;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
}

/* Títulos */
h3 {
  border-bottom: 2px solid #2c2c54;
  padding-bottom: 5px;
  margin: 20px 0 10px;
  color: #2c2c54;
}
/* Espaciar texto perfil */
#perfil p {
  line-height: 1.8;
  margin-bottom: 20px;
}

#perfil p {
  line-height: 1.8;
  margin-bottom: 40px; 
}

/* Barras Skills */
.skill { margin-bottom: 15px; }
.skill span {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}
.barra {
  background: #eee;
  border-radius: 8px;
  overflow: hidden;
  height: 20px;
}
.progreso {
  background: linear-gradient(90deg, #2c2c54, #c520db);
  color: white;
  text-align: right;
  padding-right: 8px;
  line-height: 20px;
  height: 100%;
  border-radius: 8px 0 0 8px;
  font-size: 0.85em;
  font-weight: bold;
  transition: width 1s ease-in-out;
}

/* Circulos Idiomas */
.idioma {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.nivel {
  display: flex;
  align-items: center;
  font-size: 28px;
  color: #2c2c54;
  gap: 6px;
}
.nivel .texto {
  font-size: 14px;
  color: #555;
}

