/*! Fija el header en la parte superior de la página */
header {
  width: 100%;
  position: fixed;
}
/** Agrega el espacio para mostrar la barra de busqueda debajo del menu */
.espacio-responcivo{
  height: 110px;
}

/** Contenedor del menu */
.menu-bar{
  display: flex;
  flex-direction: row;
  position: fixed;
  width: 100%;
  height: 110px;
  justify-content: space-between;
  padding-right: 24px;
  gap: 32px;
  background-image: none;
  background-size: cover;
  background-color: black;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #fff;
}


/*! Seccion de los items */
.navigation {
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: center;
  list-style-type: none;
  gap: 20px;
  padding: 0px;
  width: 100%;
  margin: 30px 0
}
.navigation a{
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  cursor: pointer;
  padding: 0 15px;
  transition: background-color 0.3s, color 0.3s;
  color: #fff;
  font-size: 17px;
}
.navigation > a:last-child{
  background-color: #f5721f;
  color:#fff;
  border-radius: 5px;
}
.navigation a:hover{
  color: #f5721f;
  border-bottom: solid 2.5px #fff;
}

#liquidacion{
  background-color: #f5721f;
  border: none;
  border-radius: 5px;
}

#liquidacion:hover{
  background-color: #d5641d;
  color: #fff;
  border: none;
}

/*! Icono Mobile */
.menu-icon{
  cursor: pointer;
  display: flex;
}
.menu-icon > i{
  transition: transform 0.3s ease; /* Aplica una transición suave */
}
.rotated {
  transform: rotate(90deg); /* Rotación de 90 grados */
}


/*! Responsivo Desktop  */
@media (min-width:1024px)
{
  .menu-icon{
    display: none;
  }
}

@media (max-width: 1024px){
  .navigation{
    display: none;
  }
  .menu-icon{
    display: flex;
    align-items: center;
  }
  .navigation-mobile{
    background-color: #000;
    top: 80px;
    position: absolute;
    display: flex;
    padding: 20px;
    width: 100%;
    gap: 8px;
    flex-direction: column;
    animation: fade 1s ease-in 1 forwards;
  }
  .navigation-mobile a{
    padding: 10px;
  }
}

@media (min-width:1400px){
  .containter-logo{
    position: absolute;
    z-index: 2;
  }
}

/*! Dropdown para submenus */
.dropdown {
  display: flex;
  position: relative;
  align-items: center;
  height: 100%;
  cursor: pointer;
}
.dropdown:last-child{
  background-color: #f5721f;
  border-radius: 5px;
}
.dropdown:last-child:hover{
  background-color: #d5641d;
  border-bottom: none;
}
.dropdown .title:hover{
  color: #fff;
  border-bottom: none;
}
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  padding: 12px 16px;
  color: #333;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dropdown-content a:hover {
  background-color: #ddd;
}
/* Cuando se encuentra en una seccion */
.focus a{
  color: #f5721f;
  border-bottom: solid 2.5px #fff;
}
