@media (max-width: 1138px) {

    .nav_icon img {
        padding-left: 0px;
        display: inline-block;
        width: 175px;
        gap: 30px;
        padding-left: 20px;
    }

    .nav-div-a {
        display: inline-flex;
        gap: 20px;
        white-space: nowrap;
        list-style: none;
        padding-top: 0px;
        margin-top: 0px;

    }
}

@media (max-width: 931px) {

     /* Hamburger visible */
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 2000;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background: white;
        transition: 0.3s;
    }

    /* PANEL DESLIZANTE */
    .nav-div-a {
        position: fixed;
        top: 0;
        right: -70%;
        /* 👈 empieza fuera */
        width: 70%;
        height: 100vh;
        background: #123352;
        /* 👈 EDITA AQUÍ EL COLOR */
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        display: flex;
        transition: right 0.4s ease;
        z-index: 1500;
    }

    /* Cuando está activo */
    .nav-index.active .nav-div-a {
        right: 0;
    }

    .nav-index.active .hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-index.active .hamburger span:nth-child(2) {
        opacity: 0;
    }

    .nav-index.active .hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .nav-index::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        opacity: 0;
        pointer-events: none;
        transition: 0.3s;
    }

    .nav-index.active::before {
        opacity: 1;
        pointer-events: auto;
    }

    .nav-index {
        padding-top: 30px;
        margin: 0;
    }

    .nav_icon {
        margin: 0;
        padding: 0;

    }

    .logo {
        width: 150px;
        padding-left: 30px;

    }

}

@media (max-width: 768px) {

    /* Hamburger visible */
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 2000;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background: white;
        transition: 0.3s;
    }

    /* PANEL DESLIZANTE */
    .nav-div-a {
        position: fixed;
        top: 0;
        right: -70%;
        /* 👈 empieza fuera */
        width: 70%;
        height: 100vh;
        background: #123352;
        /* 👈 EDITA AQUÍ EL COLOR */
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        display: flex;
        transition: right 0.4s ease;
        z-index: 1500;
    }

    /* Cuando está activo */
    .nav-index.active .nav-div-a {
        right: 0;
    }

    .nav-index.active .hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-index.active .hamburger span:nth-child(2) {
        opacity: 0;
    }

    .nav-index.active .hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .nav-index::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        opacity: 0;
        pointer-events: none;
        transition: 0.3s;
    }

    .nav-index.active::before {
        opacity: 1;
        pointer-events: auto;
    }

    .nav-index {
        padding-top: 30px;
        margin: 0;
    }

    .nav_icon {
        margin: 0;
        padding: 0;

    }

    .logo {
        width: 150px;
        padding-left: 30px;

    }

}

@media (max-width: 480px) {

    /* Hamburger visible */
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 2000;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background: white;
        transition: 0.3s;
    }

    /* PANEL DESLIZANTE */
    .nav-div-a {
        position: fixed;
        top: 0;
        right: -70%;
        /* 👈 empieza fuera */
        width: 70%;
        height: 100vh;
        background: #123352;
        /* 👈 EDITA AQUÍ EL COLOR */
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        display: flex;
        transition: right 0.4s ease;
        z-index: 1500;
    }

    /* Cuando está activo */
    .nav-index.active .nav-div-a {
        right: 0;
    }

    .nav-index.active .hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-index.active .hamburger span:nth-child(2) {
        opacity: 0;
    }

    .nav-index.active .hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .nav-index::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        opacity: 0;
        pointer-events: none;
        transition: 0.3s;
    }

    .nav-index.active::before {
        opacity: 1;
        pointer-events: auto;
    }

    .nav-index {
        padding-top: 30px;
        margin: 0;
    }

    .nav_icon {
        margin: 0;
        padding: 0;

    }

    .logo {
        width: 150px;
        padding-left: 30px;

    }

}

@media (max-width: 360px) {

    /* Hamburger visible */
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 2000;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background: white;
        transition: 0.3s;
    }

    /* PANEL DESLIZANTE */
    .nav-div-a {
        position: fixed;
        top: 0;
        right: -70%;
        /* 👈 empieza fuera */
        width: 70%;
        height: 100vh;
        background: #123352;
        /* 👈 EDITA AQUÍ EL COLOR */
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        display: flex;
        transition: right 0.4s ease;
        z-index: 1500;
    }

    /* Cuando está activo */
    .nav-index.active .nav-div-a {
        right: 0;
    }

    .nav-index.active .hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-index.active .hamburger span:nth-child(2) {
        opacity: 0;
    }

    .nav-index.active .hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .nav-index::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        opacity: 0;
        pointer-events: none;
        transition: 0.3s;
    }

    .nav-index.active::before {
        opacity: 1;
        pointer-events: auto;
    }

    .nav-index {
        padding-top: 30px;
        margin: 0;
    }

    .nav_icon {
        margin: 0;
        padding: 0;

    }

    .logo {
        width: 150px;
        padding-left: 30px;

    }

}