
header{
  position: absolute;
  margin: auto;
  top: 0;
  height: 10vh;
  width: 100vw;
  background-color: #005f54;
      z-index: 3;
}

@media (max-width: 500px) {
  .titulo_web{
    
    font-size: 10px !important;
  }
}


@media (aspect-ratio <= 4/3) {
  .container_header {
    background-image: none !important;
    display: flex !important;              
    justify-content: center;    
    align-items: center;
    margin: 0;
  }
  header{
    height: 8.5vh;
  }
  .lista_enlaces{
    padding: 0 !important;
  }
  .lista_enlaces li a{
    display: none;
  }
  .lista_RRSS li a img{
     display: none !important;
  }
  .lista_RRSS li a {
     display: none !important;
  }
  .huevo_web{
     display: none !important;
  }

  .titulo_web{
    display: block !important;
    width: 100%;
    height: 100%;    
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 15px;
  }
  .titulo_web p{
    width: 90%;
    height: 90%;
    color: #e8c65f;
    font-size: 4em;
    font-weight: bold;
    text-align: center;
    margin: auto;
  }
  .proyect{
    display: none !important;
  } 
}



.container_header {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: grid;
    position: absolute;
    top: 0;
    grid-template-columns: 1.25fr 0.75fr 1.25fr;
    z-index: 3;
  }


.titulo_web{
  display: none;
}

.lista_enlaces{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
}

.lista_enlaces li{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  padding-left: 3.5%;
  align-items: center;
  margin: auto;
  font-size: 1.25vw;
  flex: 1;
}

.lista_enlaces  li a {
  border-bottom: none;
  color: white;
  opacity: 0.75;
  transition: all 0.3s ease-in-out;
}

.lista_enlaces li a:hover{
opacity: 1;
font-size: 1.35vw;
color: white !important;
}

#responsive-nav{
  top: 2% !important;
}

.container_proyect_RRSS{
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  justify-content: center;
}

.proyect{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25vw;
  list-style: none;
}

.proyect li a {
  border-bottom: none;
  color: white;
  opacity: 0.75;
  transition: all 0.3s ease-in-out;
}
.proyect li a:hover{
opacity: 1;
font-size: 1.35vw;
color: white !important;
}

.lista_RRSS {
  width: 65%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content:flex-start;
  align-items: center;
}

.lista_RRSS > ul{
  align-self: flex-start !important;
}

.lista_RRSS li {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}



.lista_RRSS  li a {
  height: auto; /* Ajusta según el tamaño deseado */
  width: 50%;
  border-bottom: none;
  color: white;
  opacity: 0.75;
    display: inline-block;
  transition: all 0.3s ease-in-out;
}

.lista_RRSS  li a img {
height: 100%; /* Ajusta según el tamaño deseado */
width: 100%;
display: block;
}


.lista_RRSS li a:hover {
  opacity: 1;
  transform: scale(1.1);
}


.huevo_web{
position: relative;
width: 100%;
height: 170%;
background-image: url(../html/Header_Huevo.svg);
background-size: contain;
background-repeat: no-repeat;
transform: translateY(57.5%);
background-position: center top; /* 🔥 Esto es clave */
overflow: visible !important;
}

.huevo_web > a {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0.8;
  transform: translate(-50%, -80%);
  width: 9vw;
  height: 9vw; /* ← Añadí esto */
  aspect-ratio: 1;
  z-index: 10;
  display: block;
  border-bottom: none;
  transition: all 0.3s ease-in-out ;
}

.huevo_web > a:hover {
  opacity: 1;
  width: 9.5vw;
  height: 9.5vw;
}