.body2 {
  color: #ffffff;
  
}

nav {
  display: flex;
  position: fixed;
  width: 100%;
  height: 90px;
  z-index: 1000;
  /*background: linear-gradient(to left, #3676ff, #3f45ff);*/
  background-color: #383c4c ;
  justify-content: space-around;
  align-items: center;
  top: 0;
  /* Para pegar el nav a la parte superior */
  left: 0;  
  font-family: fantasy;
}

nav ul {
  list-style-type: none;
  padding: 0;
  margin:auto 0;
}

nav ul ul {
  display: none;
  position: absolute;
  background-color: #383c4c;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav ul li:hover>ul {
  display: block;
}

nav ul li {
  position: relative;
  float: left;
}

nav ul ul {
  top: 100%;
  left: 0;
}

nav ul a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  /*font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;*/
  color: white;  
  transition: background-color 0.3s;
}

nav ul a:hover {
  color: #737373;
}

nav ul ul a {
  padding: 8px 20px;
}

nav ul ul ul {
  left: 100%;
  top: 0;
}

nav ul ul ul a {
  padding: 8px 30px;
}

.logo {
  display: flex;
  width: 300px;
  height: 60px;
}
nav ul li:hover{  
  color: rgb(61, 61, 255);
  border-bottom: 3px solid rgb(0, 38, 255); /* Cambia "blue" al color que desees */
}
nav ul li a:hover{  
  color: rgb(61, 61, 255); 
  
}

.logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.menu-toggle {
  display: none;  
}
/* Estilos para dispositivos pequeños */
@media screen and (max-width: 768px) {  
  nav ul {
    
    display: none;
    flex-direction: column;
    background-color: #f1f1f1;
    width: 100%;
    position: absolute;
    top: 40px;
    left: 0;
    margin: 0;
    padding: 0;
  }
  nav ul.open {
    display: flex;
    margin-top: 50px;
    background-color: #4e546d ;
    
  }
  nav li {
    width: 100%;
    text-align: center;
    border: solid 1px;
    border-color: white;
  }
  nav ul ul {
    position: static;
  }
  .menu-toggle {
    display: block;
    cursor: pointer;
    color: #000000;
    margin-right: 20px;
  }
  nav{
    border-end-start-radius: 0px;
  border-end-end-radius: 0px;
  }
}

/* Estilos para los botones de redes sociales */
.social-button {
  margin-left: 2px; /* Espacio entre los botones y los elementos del men��� */  
}
.social-button a{
  cursor: default;
}

.social-button img {
  height: 20px; /* Altura deseada del logo */
  width: 20px; /* Para mantener la proporci���n del logo */
  object-fit: fill;
  cursor: pointer;
}
.social-button img:hover {
  opacity: 0.5;  
  scale: 1.3;
}

/* Estilos para dispositivos peque���os */
@media screen and (max-width: 768px) {
  .social-button {
    margin: 10px 0; /* Espacio entre los botones y los elementos del men��� en dispositivos peque���os */
  }
  .social-button{
    display: none;
  }
}





