.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-top-bar {
    height: 5px;
    background-color: #a5bd2c; /* Verde */
}

.nav-dow-bar {
    height: 10px;
    background-color: #a5bd2c; /* Verde */
}

.nav-content {
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 40px;
    position: relative;
    overflow: visible;
}

.nav-logo {
    height: 160px;
    width: auto;
    object-fit: contain;
    margin-left: 60px;
    margin-top: 110px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icons a {
    color: #a5bd2c;
    font-size: 18px;
    margin-right: 8px;
    text-decoration: none;
}

.btn-outline {
    border: 2px solid #a5bd2c;
    padding: 8px 15px;
    border-radius: 5px;
    color: #a5bd2c;
    text-decoration: none;
    font-weight: bold;
    white-space: nowrap;
}

.btn-fill {
    background-color: #a5bd2c;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    white-space: nowrap;
}

.nav-menu {
    background-color: #fff;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.nav-menu a {
    text-decoration: none;
    color: #111;
    font-weight: bold;
    padding: 10px 0;
}

.nav-menu-inner {
    max-width: 95%;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    padding: 0 40px;
}

.nav-menu a.active {
    color: #a5bd2c;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #a5bd2c;
}

.nav-actions {
    display: flex;
    flex-direction: row;
    gap: 15px;
    flex-wrap: nowrap; /* No permiten bajar de línea */
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        padding: 10px 20px;
        transition: all 0.3s ease;
    }

    .nav-left-group {
        width: 100%;
        display: flex; 
        justify-content: space-between;
        align-items: center;
    }

    .nav-logo {
        margin: 0;
        height: 80px;
    }

    .hamburger {
        display: block;
        background: none;
        border: none;
        font-size: 28px;
        cursor: pointer;
        color: #a5bd2c;
    }

    .nav-right {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        gap: 10px;
        margin-top: 10px;
        flex-wrap: nowrap; /* no permitir bajar */
    }

    .btn-outline,
    .btn-fill {
        font-size: 0.7rem; /* tamaño más pequeño */
        padding: 4px 8px;  /* reduce padding */
    }

    .social-icons {
        display: flex;
        gap: 5px;
        margin-left: 0;
    }

    .nav-actions {
        gap: 5px; /* reduce separación entre botones */
        flex-wrap: nowrap; /* no permite bajar */
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 20px;
    }

    .nav-menu.show {
        display: flex;
    }

    .nav-menu-inner {
        flex-direction: column;
        width: 100%;
        padding: 0;
        gap: 15px;
    }

    .nav-menu a {
        padding: 10px 0;
    }
}
