 /* ════════════════════════════
       NAVBAR HERO 
    ════════════════════════════ */
 #navbar-hero {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 60;
     display: flex;
     align-items: center;
     justify-content: flex-end;
     padding: 24px 48px;
     gap: 40px;
     transition: opacity 0.3s ease, visibility 0.3s ease;
     /* Transición para ocultarse */
 }

 /* Clase que se aplica mediante JS al hacer scroll */
 #navbar-hero.hidden {
     opacity: 0;
     visibility: hidden;
     pointer-events: none;
 }

 .nav-links {
     display: flex;
     align-items: center;
     gap: 40px;
     list-style: none;
 }

 .nav-links a {
     font-size: 0.875rem;
     font-weight: 700;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     text-decoration: none;
     color: var(--gris);
     transition: color 0.25s;
 }

 .nav-links a:hover {
     color: #fff;
 }

 .btn-contacto {
     font-size: 0.875rem;
     font-weight: 700;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     text-decoration: none;
     border: 1px solid var(--gris);
     color: var(--gris);
     padding: 9px 22px;
     border-radius: 2px;
     transition: border-color 0.25s, color 0.25s, background 0.25s;
 }

 .btn-contacto:hover {
     border-color: #fff;
     color: #fff;
 }

 /* NAVBAR GLOBAL (Antes llamado navbar-nosotros, ahora continuo)*/
 #navbar-nosotros {
     position: sticky;
     top: 0;
     z-index: 50;
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 10px 48px;
     background: #FFFFFF;
     border-bottom: 1px solid rgba(181, 168, 159, 0.25);
 }

 /*logo navbar*/
 .nav2-logo {
     display: flex;
     align-items: center;
 }

 .logo-img {
     height: 48px;
     width: auto;
     display: block;
 }

 /*LOGO mobile*/
 .logo-img-mobile {
     height: 36px;
     width: auto;
     display: block;
 }

 .nav2-right {
     display: flex;
     align-items: center;
     gap: 40px;
 }

 .nav2-links {
     display: flex;
     align-items: center;
     gap: 40px;
     list-style: none;
 }

 .nav2-links a {
     font-size: 0.875rem;
     font-weight: 700;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     text-decoration: none;
     color: var(--gris);
     transition: color 0.25s;
 }

 .nav2-links a:hover {
     color: var(--azul);
 }

 .btn-contacto-2 {
     font-size: 0.875rem;
     font-weight: 700;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     text-decoration: none;
     border: 1px solid var(--gris);
     color: var(--gris);
     padding: 9px 22px;
     border-radius: 2px;
     transition: border-color 0.25s, background 0.25s, color 0.25s;
 }

 .btn-contacto-2:hover {
     border-color: var(--azul);
     background: var(--azul);
     color: #fff;
 }

 /* BOTONES HAMBURGUESA (Ocultos por defecto en desktop) */
 .open-menu-btn {
     display: none;
     background: none;
     border: none;
     color: inherit;
     cursor: pointer;
     padding: 0;
 }

 .open-menu-btn .material-symbols-rounded {
     font-size: 32px;
     color: var(--gris);
 }

 /* MENÚ DESPLEGABLE MÓVIL (Overlay) */
 .mobile-menu {
     position: fixed;
     inset: 0;
     background-color: #B5A89F;
     z-index: 100;
     display: flex;
     flex-direction: column;
     opacity: 0;
     visibility: hidden;
     transition: opacity 0.3s ease, visibility 0.3s ease;
 }

 .mobile-menu.active {
     opacity: 1;
     visibility: visible;
 }

 .mobile-menu-header {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 24px;
     border-bottom: 1px solid rgba(255, 255, 255, 0.2);
 }

 .mobile-logo {
     font-size: 1.5rem;
     font-weight: 700;
     letter-spacing: 0.1em;
     color: #ffffff;
     text-decoration: none;
     text-transform: uppercase;
 }

 .close-btn {
     background: none;
     border: none;
     color: #ffffff;
     cursor: pointer;
 }

 .close-btn .material-symbols-rounded {
     font-size: 32px;
 }

 .mobile-nav-links {
     display: flex;
     flex-direction: column;
     width: 100%;
 }

 .mobile-link {
     font-size: 4rem;
     font-weight: 700;
     text-transform: uppercase;
     text-decoration: none;
     color: #ffffff;
     padding: 48px 24px;
     border-bottom: 1px solid rgba(255, 255, 255, 0.2);
     letter-spacing: 0.05em;
     transition: background 0.2s;
 }

 .mobile-link:hover {
     background-color: rgba(255, 255, 255, 0.1);
 }

 body.menu-open {
     overflow: hidden;
 }


 /*Responsive*/

 /*Responsive - Menu hamburguesa*/
 @media (max-width: 800px) {

     #navbar-hero,
     #navbar-nosotros {
         padding: 24px;
     }

     #navbar-hero .nav-links,
     #navbar-hero .btn-contacto {
         display: none;
     }

     #navbar-nosotros .nav2-links,
     #navbar-nosotros .btn-contacto-2 {
         display: none;
     }

     .open-menu-btn {
         display: block;
     }
 }

 @media (max-width: 640px) {
     #navbar-hero {
         gap: 20px;
     }

     #navbar-nosotros {
         padding: 24px;
     }

     .nav-links,
     .nav2-links {
         gap: 20px;
     }

     .mobile-link {
         padding: 24px;
         font-size: 2.25rem;
     }
 }