/* Fondo general del sitio */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: white;
  background-color: black;
  background-image: url("img/fondo.webp"); /* Reemplazar por imagen si se desea */
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
}

/* Encabezado */
header {
  text-align: center;
  padding: 60px 20px;
  background-color: rgba(0, 0, 0, 0.7);
}

/* Foto de perfil */
.foto-perfil {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  /*border: 4px solid #ffffff;*/
  border: 4px solid #00ffff;    
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
  margin-bottom: 20px;
}

/* Secciones generales */
section {
  padding: 30px 25px;
  margin: 20px auto;
  max-width: 800px;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
}

/* Línea divisoria entre secciones */
section + section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Títulos */
h1, h2 {
  margin-bottom: 10px;
}

h2 {
  font-size: 20px;
  margin-top: 10px;
}

/* Texto general */
p, ul {
  font-size: 16px;
  line-height: 1.6;
}

/* Listas */
ul {
  padding-left: 20px;
}

/* Redes sociales */
#redes {
  text-align: center;
}

.social-icons a {
  display: inline-block;
  margin: 10px 15px;
  color: white;
  font-size: 18px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.social-icons a:hover {
  text-decoration: underline;
  transform: scale(1.1);
}

/* Responsive para móviles */
@media (max-width: 768px) {
  .foto-perfil {
    width: 120px;
    height: 120px;
    border: 4px solid #00ffff; /* Azul cian */
    box-shadow: 0 0 16px rgba(0, 255, 255, 1); /* Glow más fuerte */
  }

  section {
    background-color: rgba(0, 0, 0, 0.6); /* Más opaco en móviles para mejor lectura */
  }
}

@media (max-width: 600px) {
  header, section {
    padding: 30px 15px;
    background-color: rgba(0, 0, 0, 0.48); /* Más visible aún en móviles chicos */
  }

  .social-icons a {
    font-size: 16px;
    margin: 8px;
  }
}
