header{
  position: fixed;
  width: 99.3%;
  height: 55px;
  background-color: white;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  color: black;
  padding: 10px 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000; /* Asegúrate de que esté por encima de otros elementos */
}

.logomarca{
  width: 140px;
  height: 50px;
  margin: 0px 30px 0px -100px;
}

@keyframes logoFadeIn {
  0% {
      opacity: 0;
      transform: translateY(-20px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

.menu ul {
  list-style-type: none;
  display: flex;
  gap: 51px;
  margin: 0;
  padding: 20px;
  justify-content: center;
  align-items: center;
}



.menu ul li a {
  color: black;
  text-decoration: none;
  padding: 10px;
  transition:  color 0.3s ease;
}

.menu ul li a:hover {
  color: rgb(0, 0, 0);
  text-decoration: none;
  padding: 10px;
  transition:  color 0.3s ease;
  background-color: whitesmoke;
  border-radius: 5px;
}

.hover-underline-animation {
  display: inline-block;
  position: relative;
}

.hover-underline-animation::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: rgb(255, 0, 0);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.search{
  list-style-type: none;
  width: 420px;
  height: 50px;
  display: flex;
  align-items: center;
  margin: 0px -90px 0px 60px;
  padding: 7px;
  border-radius: 28px;
  background-color: whitesmoke;
  transition: background 0.25s;
}

.search:focus-within{
  background: #f1f1f1;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.9);
}

.search-input{
  font-size: 14px;
  width: 500px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #333333;
  margin-left: 7px;
  border: none;
  outline: none;
  background: transparent;
}

.search-input::placeholder,
.search-icon{
  color: rgba(0, 0, 0, 0.4);
}

body{
  background-color: #000;
}




html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
  }

.centro{
  align-items: center;
}

.footer {
    background-color: #000;
    color: #ccc;
    padding: 40px 20px 10px;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-logo img {
    width: 120px;
    margin-bottom: 10px;
  }
  
  .footer-logo p {
    max-width: 250px;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #aaa;
  }
  
  .footer-links,
  .footer-social {
    min-width: 200px;
  }
  
  .footer-links h4,
  .footer-social h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.1rem;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links a {
    color: #aaa;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #fff;
  }
  
  .social-icons a {
    display: inline-block;
    margin-right: 10px;
  }
  
  .social-icons img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
  }
  
  .social-icons img:hover {
    transform: scale(1.2);
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 0.85rem;
    border-top: 1px solid #333;
    padding-top: 15px;
    color: #777;
  }
