.container-social {
  display: flex;
  justify-content: center;
  align-items: center; /* Asegura el centrado vertical */
  height: 100vh;
  width: 100vw;
  background-color: black;
  flex-direction: column;
}

.redes-div-tit {
  /* border-top: 2px solid #0044ff;
  border-bottom: 2px solid #0044ff; */
border-top: 3px solid transparent;
border-bottom: 3px solid transparent;
border-image: linear-gradient(to right, #ed1c24, bisque, #0b0b70) 1;

  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  height: auto;
}

#social-titulo {
  font-size: calc(22px + 3vw);
  color: #fff;
  text-shadow: 0 0 5px #0072ff, 0 0 10px #0072ff, 0 0 15px #0072ff, 0 0 20px #0072ff;
  font-family: "lilita one";
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
}

body.light-mode #linkedin,
body.light-mode #twitter,
body.light-mode #facebook {
  color: white;
}

.iconos {
  display: flex;
  justify-content: center;
  gap: calc(0.5rem + 1.5vw);
  margin: 3rem 0; /* Simplificado el margin top y bottom */
  transform: translateY(-5%);
}

.iconos i,
#linkedin,
#youtube,
#twitter,
#instagram,
#facebook {
  font-size: calc(14px + 1.5vw);
  min-width: 30px;
  min-height: 30px;
  max-width: 80px;
  max-height: 80px;
  padding: 5px 10px;
  border: 2px solid transparent;
  border-image: linear-gradient(360deg, bisque, #ff5100);
  border-image-slice: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.iconos i i,
#linkedin i,
#youtube i,
#twitter i,
#instagram i,
#facebook i {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.social-titulo-text {
  align-items: center;
  margin: 0 auto;
}


  
.iconos :hover{
  transform: scale(1.1);
  text-decoration: none;

}

