.navbar-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.navbar-contenedor {
    height: 80px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* LOGO TEXTO / IMAGEN */
.navbar-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 320px;
    max-width: 320px;
    overflow: visible;
    font-size: 24px;
    font-weight: 800;
    color: #2E7D32;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.navbar-logo:hover {
    opacity: 0.8;
}
/* TAMAÑO DEL LOGO  PC*/
.navbar-logo-img {
    height: 200px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    display: block;
}

.navbar-links-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navbar-link {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    padding-bottom: 4px;
    transition: color 0.2s ease;
}

.navbar-link:hover {
    color: #2E7D32;
}

.navbar-link.activo {
    color: #2E7D32;
    font-weight: 700;
    border-bottom: 2px solid #2E7D32;
}

.navbar-boton {
    background: #2E7D32;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.navbar-boton:hover {
    background: #256428;
}

.navbar-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #2E7D32;
    cursor: pointer;
}

.navbar-menu-mobile {
    display: none;
    position: absolute;
    top: 88px;
    left: 16px;
    right: 16px;
    background: rgba(46, 125, 50, 0.96);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 16px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.navbar-menu-mobile.abierto {
    display: block;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.navbar-links-mobile {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.navbar-link-mobile {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    padding: 16px;
    border-radius: 14px;
    border-left: 4px solid transparent;
    transition: all 0.2s ease;
}

.navbar-link-mobile:hover,
.navbar-link-mobile.activo {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-left-color: #ffffff;
}

.navbar-boton-mobile {
    margin-top: 12px;
    background: #ffffff;
    color: #2E7D32;
    text-align: center;
    padding: 16px;
    border-radius: 18px;
    font-weight: 800;
    text-decoration: none;
}

body.menu-abierto {
    overflow: hidden;
}

@media (max-width: 767px) {
    .navbar-links-desktop {
        display: none;
    }

    .navbar-menu-btn {
        display: block;
    }

    .navbar-logo {
        width: 220px;
        max-width: 220px;
        font-size: 22px;
    }

    /* TAMAÑO DEL LOGO  CELULAR*/
    .navbar-logo-img {
        height: 100px;
        max-width: 200px;
    }
}