@media (min-width: 1200px) {
  html {
    zoom: 0.80;
  }
}
.header.header-image {
    min-height: 600px;
}
  /* Centrar los enlaces en el navbar */
  .nav-bar .nav-bar-menu-inner {
    width: 100%;
    justify-content: space-between;
  }

  .nav-bar .nav-bar-links {
    margin-inline-start: 0 !important;
    flex-grow: 1;
    justify-content: center;
  }

  /* Subrayado animado para los enlaces principales */
  .nav-bar .nav-bar-links .link {
    position: relative;
  }

  .nav-bar .nav-bar-links .link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: rgb(var(--primary_color));
    transition: width 0.3s ease;
  }

  .nav-bar .nav-bar-links .link:hover::after {
    width: 100%;
  }
}

/* Texto de descripción en el footer */
.footer .footer-desc {
    color: rgb(var(--footer_text_color));
    font-size: 14px;
    line-height: 1.6;
    margin-top: 15px;
    margin-bottom: 24px;
}

/* Selector de idiomas adaptado para el footer oscuro */
.footer .footer-language-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 8px !important;
    color: rgb(var(--footer_heading_color)) !important;
    cursor: pointer;
    font-size: 14px;
    min-width: 130px;
    transition: all 0.3s ease;
}

.footer .footer-language-btn:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
}

.footer .footer-language-btn .language-img {
    margin-right: 8px;
    width: 20px;
    height: 14px;
    display: flex;
    align-items: center;
}

.footer .footer-language-btn .language-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.footer .footer-language-btn i {
    font-size: 12px;
    margin-left: 8px;
}

/* Menú dropdown del idioma en el footer hacia arriba */
.footer .languages {
    position: relative;
    display: inline-block;
}

.footer .languages .drop-down-menu {
    bottom: 100% !important;
    top: auto !important;
    margin-bottom: 8px;
    background-color: #1e1e1e;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer .languages .drop-down-menu .drop-down-item {
    color: #fff;
}

.footer .languages .drop-down-menu .drop-down-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Estilos para el enlace de Sign In (sin forma de botón) */
.nav-bar-signin {
    display: inline-flex;
    align-items: center;
    color: #fff !important;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: opacity 0.3s ease;
    margin-right: 20px;
}

.nav-bar-signin:hover {
    opacity: 0.8;
    color: #fff !important;
}

.nav-bar-signin i {
    font-size: 16px;
}

@media (max-width: 1199.98px) {
    .nav-bar-signin {
        margin-right: 0;
        margin-bottom: 20px;
        width: 100%;
        justify-content: center;
    }
}

/* Estilos para el enlace de For Businesses (sin forma de botón) */
.nav-bar-business {
    display: inline-flex;
    align-items: center;
    color: #fff !important;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-bar-business:hover {
    opacity: 0.8;
    color: #fff !important;
}

.nav-bar-business i {
    font-size: 16px;
}

/* Estilos para el enlace de Sign Up (sin forma de botón) */
.nav-bar-signup {
    display: inline-flex;
    align-items: center;
    color: #fff !important;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-bar-signup:hover {
    opacity: 0.8;
    color: #fff !important;
}

.nav-bar-signup i {
    font-size: 16px;
}

@media (max-width: 1199.98px) {
  /* Contenedor de botones en el menú móvil */
  .nav-bar .nav-bar-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgb(var(--border_color));
  }

  /* Transformación del enlace Sign in a botón con borde en móvil */
  .nav-bar-signin {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
    border: 1px solid rgb(var(--primary_color)) !important;
    border-radius: 8px;
    color: rgb(var(--primary_color)) !important;
    font-weight: 500;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    transition: all 0.3s ease;
  }
  
  .nav-bar-signin:hover {
    background-color: rgba(var(--primary_color), 0.05);
    color: rgb(var(--primary_color)) !important;
    opacity: 1;
  }

  /* Transformación del enlace For Businesses a botón relleno en móvil */
  .nav-bar-business {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
    background-color: rgb(var(--business_button_color)) !important;
    border: 1px solid rgb(var(--business_button_color)) !important;
    border-radius: 8px;
    color: #fff !important;
    font-weight: 500;
    margin-bottom: 0 !important;
    transition: all 0.3s ease;
  }
  
  .nav-bar-business:hover {
    opacity: 0.9;
    color: #fff !important;
  }

  /* Transformación del enlace Sign Up a botón relleno en móvil */
  .nav-bar-signup {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
    background-color: rgb(var(--business_button_color)) !important;
    border: 1px solid rgb(var(--business_button_color)) !important;
    border-radius: 8px;
    color: #fff !important;
    font-weight: 500;
    margin-bottom: 0 !important;
    transition: all 0.3s ease;
  }
  
  .nav-bar-signup:hover {
    opacity: 0.9;
    color: #fff !important;
  }
}