.nav-2025 {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}

.container-2025 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-2025 img {
    max-height: 50px;
	margin: 20px 20px 40px 0;
}

.menu-2025 {
    display: flex;
    align-items: center;
    gap: 20px;
}
.search-wrap {
    margin-right: 0px !important;
    width: 200px;
    position: relative;
}

.menu-2025 a {
    text-decoration: none;
    color: #000;
	font-weight:400;
    font-size: 16px;
    position: relative;
    white-space: nowrap;
    display: inline-block;
}
.menu-2025 a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #68aa3a;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.menu-2025 a:hover::after,
.menu-2025 a.active::after {
    width: 100%;
}

.search-icon-2025 {
    font-size: 18px;
    cursor: pointer;
}

.dropdown-2025 {
    position: relative;
}

.dropdown-2025 button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-menu-2025 {
    position: absolute;
    top: 100%;
    left: 0;
	text-decoration:none;
	list-style:none;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 5px 0;
    display: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.dropdown-menu-2025 a {
    display: block;
    padding: 5px 20px;
    text-decoration: none;
    color: #000;
    font-size: 14px;
}

.dropdown-menu-2025 a:hover {
    background-color: #f0f0f0;
}

.dropdown-menu-2025 a.active {
    font-weight: bold;
    color: #68aa3a;
    background-color: #f0f0f0;
}

.dropdown-2025:hover .dropdown-menu-2025 {
    display: block;
}

.user-access-2025 {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff !important;
    background-color: #68aa3a;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.user-access-2025 i {
    font-size: 18px;
    color: #f0f0f0;
}

.user-access-2025:hover {
    background-color: #57a230;
}

/*botón flotante*/
.menu-2025 {
    position: relative;
}

.float-menu-2025 {
    display: flex;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    position: absolute;
    top: 175%;
    left: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 100;
    width: 100%;
    height: 300px;
    gap: 20px;
}

.menu-2025 a:hover + .float-menu-2025,
.float-menu-2025:hover {
    visibility: visible;
    opacity: 1;
}

.float-menu-2025 a {
    display: flex;
    color: #000;
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 10px;
}

.float-menu-2025 a:hover {
    color: #68aa3a;
}
.float-links a {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 500px;
    margin:20px;
}


.float-menu-2025 .float-img-2025 img {
    max-width: 400px;
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
}

.menu-2025 a:hover + .float-menu-2025 {
    display: flex;
}

/* Hamburguesa */
.hamburger-2025 {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger-2025 div {
    width: 25px;
    height: 3px;
    background-color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-2025 {
        display: none;
        flex-direction: column;
        gap: 10px;
        background-color: #fff;
        position: absolute;
        top: 100%;
        right: 0;
        padding: 30px 0;
        width: 100%;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }

    .menu-2025.active {
        display: flex;
        top: 70px;
    }

    .hamburger-2025 {
        display: flex;
    }
}
