body {
  background: linear-gradient(to right, #1f1c2c, #928dab);
  color: white;
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
}
#logo a{
  color: rgb(66, 66, 66); 
}
.header{
     font-family: 'Open Sans', sans-serif;
    position: fixed;
    width: 100%;
     z-index: 1500;
     margin-top: 10px;
    background-color:transparent;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
   
}

.header nav {
    background-color: rgba(250, 250, 250, 0.884);
    border-radius: 19px;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    height: 75px;
    width: 79%;
}
.header nav p {
    color: black;
    padding-left: 40px;
    font-size: clamp(1rem, 2.5vw, 1.6em);
    font-weight: bold;
}
.menu-horizontal {
  margin-right: 20px;
  list-style: none;
  display: flex;
  justify-content: space-around;
  align-items:center; 
  height: 100%;
  position: relative;
}

.menu-horizontal li a {
    text-decoration: none;
    color: rgb(66, 66, 66);
    font-weight: bold;
    font-size: 1em;
}
.menu-horizontal li {
  display: flex;
    margin: 0 10px;
    height: 100%;
   align-items: center;
   

} 

.menu-horizontal li a:hover {
    color:rgb(190, 190, 190);
    transition: 0.3s;
}



.menu-vertical{
   padding-top: 5px;
   padding-left: 0px;
   padding-bottom: 8px;
  list-style: none;
  display: none;
  flex-direction: column;
  position: absolute;
  top: 75px;
  background-color: rgba(250, 250, 250, 0.884);
  border-bottom-left-radius: 15px;
}

.menu-vertical li {
   padding-left: 0;
   margin-left: 8px;
    padding: 10px;
    text-align: center;
}
.menu-vertical li:hover {
    background-color: rgb(201, 201, 201);
    transition: 0.3s;
    width:76%;
    border-bottom-left-radius: 15px;
    border-top-right-radius: 15px;
}
.menu-mobiles{
  display: none;
  margin-right: 40px;
  background-color: blue;
}
.vertical-mobile{
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 59px;
  right: 0;
  padding-left: 0;
  min-width: 200px;
  background-color: rgba(250, 250, 250, 0.884);
  box-shadow: 0 0 15px rgba(0,0,0,0.2);

  border-bottom-left-radius: 15px;
}
.header nav .menu-toggle {
  display: flex;
  background-color: transparent;
  border: none;
  font-size: 1.5em;
  color: black;
  cursor: pointer;
}
#menu-close{
  margin-left: 5px;
  padding-left: 5px;
}
.header nav .menu-toggle{
  display: none;
  margin-right: 20px;
}
.vertical-mobile li {
  width: 100%;
  padding: 15px;
  text-align: center;
}
.vertical-mobile li:hover {
  background-color: rgb(201, 201, 201);
  transition: 0.3s;
  width: 76%;
  border-bottom-left-radius: 15px;
  border-top-right-radius: 15px;
}
.vertical-mobile li a {
  margin-left: 20px;
  text-decoration: none;
  color: rgb(66, 66, 66);
  font-weight: bold;
  font-size: 1em;
}
.vertical-mobile li a:hover {
  color: rgb(190, 190, 190);
  transition: 0.3s;
}
.vertical-mobile li {
  display: flex;
  margin: 0 10px;
  height: 100%;
  align-items: center;
}


.submenu-parent:hover .menu-vertical {
    display: flex;
}

.presentacion{
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.89) 0%, rgba(0, 0, 0, 0.452) 50%),
    url('./images/background-index.webp');
    
    background-size: cover;
    background-position: center;
    height: 600px;
    background-color: brown;
    display: flex;
    flex-direction: column;
    justify-content:end;
    align-items: center;
}
.contenido{
    color: white;
    height: 250px;
    width: 60%;
    background-color:transparent;
    text-align: center;
    margin-bottom: 0px;
    font-size: clamp(1rem, 2.5vw, 24px);
}
@media (max-width: 1024px) {
  .presentacion {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.89) 0%, rgba(0, 0, 0, 0.452) 50%),
                      url('./images/background-index-mobile.webp');
  }
}

section {
    padding: 20px;
    margin: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-align: center;
}  
footer {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
}
a{
    color: white;
    text-decoration: none;
}
@media (max-width: 670px) {
  /* estilos para móviles */
  .menu-horizontal{
    display: none;
  }
  .menu-mobiles{
    display: none;
   
  }
  .header nav {
    width: 100%;
    border-radius: 0;
  }
  .header nav .menu-toggle{
  display: flex;
}
  .header{
    margin-top: 0;
    
  }
}
@media(min-width: 670px) {
  /* estilos para pantallas más grandes */
  .menu-mobiles{
    display: none;
  }
  #menu-toggle {
    display: none !important;
  }
  .vertical-mobile {
    display: none;
  }
}