  /* Navegación Desktop */
  nav {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #f6faf4;
    z-index: 1000;
    width: 100%;
    padding: 15px 5%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

#divheaderlogo img {
    width: 300px;
    height: auto;
}

#menutext {
    display: flex;
    gap: 2vw;
    align-items: center;
}

nav a {
    color: #1a2a36;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

nav a:hover {
    color: #747448;
    background: #e8ebe7;
 
}

/* Dropdown Desktop */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #f6faf4;
    min-width: 120px;
    border-radius: 8px;
    padding: 10px 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    padding: 10px 30px;
    font-size: 0.85rem;
    color: #444;
}

/* Menú Mobile */
.menu-btn {
    color: white;
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    background: #686f42;
    border: none;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(249, 249, 249, 0.927);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 20px;
    right: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 999;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 14px;
    color: #444;
    text-decoration: none;
    border-radius: 6px;
    margin: 5px 0;
}

.mobile-menu a:hover {
    background: #f6f6f6;
}

/* Submenú Mobile */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown > a::after {
    content: '›';
    float: right;
    transform: rotate(90deg);
    transition: transform 0.3s;
}

.mobile-dropdown.active > a::after {
    transform: rotate(270deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-left: 25px;
}

.mobile-submenu a {
    font-size: 0.9em;
    padding: 12px 20px;
}

.mobile-dropdown.active .mobile-submenu {
    max-height: 300px;
}
.mobile-logo{
        display: none;
}
@media (max-width: 768px) {
    nav {
        display: none;
    }

    .menu-btn {
        display: block;
    }
    .mobile-logo {
        display: block;
        position: relative;
        width: 100%;
        height: 100%;
        background: #f6faf4;
    }
    #divheaderlogo img {
        width: 140px;
        margin-left: 25%;
    }
}
