/* === CONTENEDOR PRINCIPAL === */
.header-container {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    height: 80px
}
/* === LOGO === */
.logo {
    width: 20rem;       /* Aprox. 160px si 1rem = 16px */
    height: auto;       /* Mantiene la proporción */
}
.logo img {
    width: 100%;       /* Aprox. 160px si 1rem = 16px */
    height: 100%;       /* Mantiene la proporción */
}

/* === whatsapp === */

#whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #FA5740;
  color: white;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: background-color 0.3s ease;
}
#whatsapp-button:hover {
  background-color: #d94533;
}
#whatsapp-button .wa-icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
/* === REDES === */
.social-icons {
    display: flex;
    align-items: center;
    gap: 15px
}

.icons {
    color: #000;
    padding: 6px;
    font-size: 30px;
}
.eye-slash{
    font-size: 2rem;
    margin: 10px;
}

.maps {
    width: 78rem;
    height: 30rem;
}

/* === FORMULARIO LOGIN === */
.login-form-wrapper {
    flex: 0 0 400px;
    /* max-width: 300px; */
}

.block-login {
    display: flex !important;
    gap: 0px !important;
    align-items: center;
    flex-direction: row;
    align-content: flex-start;
    margin: 0 !important;
}

.block-login input {
    margin: 1px !important;
    padding: 6px 10px; /* ajusta si necesitas más o menos altura */
    box-sizing: border-box;
}

.input-group-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login {
   padding:3px 5px !important; 
    font-size:12px!important; 
    border: 1.5px solid #000 !important; 
    border-radius: 25px !important;
}

.input-group-text {
    font-size: 18px;
    cursor: pointer;
    color: #fe0202;
}

/* === BOTÓN LOGIN === */
.btn-login {
    padding:3px 20px !important; 
    font-size:12px!important; 
    background-color: #000;
    border: 1.5px solid #000 ; 
    border-radius: 25px !important;
    color: #FFF;
}

.btn-login :hover{
    border: #fe0202 !important; 
    color: #fe0202;

}

.table-cel {
    background-color: #acacac !important;
    color: rgb(54, 63, 66);
    border: 1px solid #FFF;
    font-weight: bolder;
    width: 20% !important;
}

.btn-app {
    background-color: #FF7300;
    color: #fff;
    border: none;
    border-radius: 20px;
    width: 12rem;
    height: 1.5rem;
    font-weight: 500;
}

.btn-app :hover{
    background-color: #000;

}
/* === MENÚ DE NAVEGACIÓN === */

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}
.navbar-container {
    background-color: black;
    padding: 10px 0;
}

.navbar-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.btn-navbar {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

.btn-navbar:hover {
    color: #fe0202 !important;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 200px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 6px;
    padding: 0;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background-color: #f5f5f5;
    color: #000;

}

.dropdown.open .dropdown-menu {
    display: block;
    background-color: #000000;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .header-container {
        display: flex;
        height: 140px;
        flex-wrap: wrap;
        flex-direction: row-reverse;
        align-content: flex-start;
        gap: 1px;
        padding: 4px;
    }
    .block-login{
        display: flex !important;
        flex-direction: row;
    }
    .logo {
        display: block;
        width: 12rem;

    }
    .login{
        width: 50% !important;
    }
    .input-group-wrapper{
        width: 60% !important;
    }
    .login-form-wrapper {
       flex: 0 0 340px;
    }
    .btn-login {

    }
    .navbar-container {
    background-color: transparent;
    }

    .navbar-container i{
    color: #000;
    }
    .navbar-container button{
    color: #222222;
    
    }
    .navbar-links {
        display: none;
        flex-direction: column;
        gap: 10px;
        background-color: #000;
        padding: 10px;
        width: 90%;
    }

    .navbar-links.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }
    .maps {
    width: 26.5rem;
    height: 30rem;
}
}