@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

:root {
    --color-primary: #000747;
    --color-secondary: #0c0c0c;
    --color-tertiary: #ff9900;
    --color-fonts: #fff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/*Color de background*/

body {

    background: linear-gradient(to left, #000747, #0c0c0c);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
    background-origin: border-box;
    background-attachment: fixed;
    margin: 0;

    /* min-height: 100vh; */
    /* max-width: 100vw; */
}

.wallpaper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/assets/Wallpaper.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 150vh;
    opacity: 0.1;
    z-index: -1;
}

/* SCROLL */

.scroll::-webkit-scrollbar {
    width: 5px;
    margin: 10px;
}

.scroll::-webkit-scrollbar-thumb {
    border-radius: 7px;
    background: var(--color-secondary);
    width: 3px;
}

/* button de whatsapp*/

.whatsapp {

    position: fixed;
    padding-right: 25%;
    padding-left: 92%;
    padding-top: 36%;
    z-index: 1000;
}

/* Pagination */

.pagination ul li {
    list-style: none;
    display: inline-block;
    max-width: 47%;

}

.pagination ul {
    margin-left: 61%;
    display: flex;
    flex-direction: row;
    gap: 4%;

}

.pagination ul li a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    padding: 5px 40px;
    border: solid 2px #ffffff;
    border-radius: 30px;
    transition: .3s;
}

.pagination ul li a:hover {
    background: var(--color-tertiary);
}

/*
.pagination ul li a.active{
    background-color: var(--color-tertiary);
    font-weight: 700;
    transition: .3s;
}*/

/*----------------------------*/

/*Dev Page - End */

.info {
    width: 100%;
    height: 50px;
    background-color: var(--color-secondary);
    color: #d9d9d9;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

.contenido .button {

    text-decoration: none;
    color: white;
    padding: 9px 25px;
    text-transform: uppercase;
    border-radius: 5px;
    background-color: #1577e7;
    transition: .3s ease;
}

.contenido .button:hover {

    background-color: #ff9900;

}

.titulo {

    font-size: 38px;
    font-weight: 700;
    line-height: 46px;
}

/*Nav bar Web-Mobil*/

#Home {

    scroll-margin-top: 500ex;
}

.bg-color {
    backdrop-filter: blur(100px);
}


nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    position: fixed;
    top: 0;
    z-index: 1;
}

.logo {
    color: #ffffff;
    text-shadow: 0px 0px 10px black;
    font-size: 12px;
}

.bar-btn {
    font-size: 25px;
    color: #ffffff;
    margin-right: 20px;
    cursor: pointer;
}

.nav-menu {
    position: absolute;
    width: 100%;
    height: 0vh;
    top: 140px;
    background: rgba(0, 0, 0, .95);
    text-align: center;
    transition: all .5s;
}

.nav-menu li {
    display: none;
    line-height: 30px;
    margin: 50px 0;
    transition: all .5s;
}

.nav-menu li a {
    color: #ffffff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
}

.nav-menu li a.active,
.nav-menu li a:hover {
    color: #ff6600;
    transition: .3s;
}

#check {
    display: none;

}

#check:checked~.nav-menu {
    height: 100vh;
}

#check:checked~.nav-menu li {
    display: block;
}

/* Menu Web*/

@media screen and (min-width: 700px) {

    .logo h1 {
        margin-left: 147%;
        font-size: 18px;
        margin-top: 5px;
    }

    nav {
        height: 60px;
    }

    nav.bg-color {
        background: rgba(255, 255, 255, 0.018);
        backdrop-filter: blur(100px);
        text-align: center;
    }

    .bar-btn {
        display: none;
    }

    .nav-menu {
        margin-top: 6px;
        position: relative;
        margin-left: 47%;
        height: 100px;
        top: 0;
        background: none;
        transition: none;
        text-align: center;
    }

    .nav-menu li {
        display: inline-block;
        line-height: 100px;
        transition: none;
    }

    .nav-menu li {
        display: inline-block;
        line-height: 104px;
        margin: 0 20px;
        transition: none;
    }

    .contact-btn {
        background-color: #ffffff;
        border-radius: 5px;
        padding: 5px 10px;
        margin-left: 250px;
        background-color: #007AFF;
    }

    .contact-btn:hover {
        background-color: #ffffff;
        color: #007AFF;
        font-weight: 600;
    }

    .nav-menu li a {
        font-size: 11.5px;
        letter-spacing: 2px;
    }
}

.trabajos .open-trabajos h2 {
    margin-top: 8%;
    color: #fff;
    display: flex;
    justify-content: flex-start;
    margin-left: 8%;
    font-weight: 900;
    font-size: 5rem;
}

/*Animation Herramientas*/

/* Card */

.containerGridProjects {

    margin-top: 5%;
    margin-bottom: 5%;
    margin-left: 7.8%;
    margin-right: 7.8%;
    display: grid;
    grid-template-columns: repeat(4, 0.3fr);
    grid-template-rows: repeat(1, 1fr);
    row-gap: 20px;

}


.containerGridProjects .card {
    justify-self: center;
    align-self: center;

}

.card {
    width: 300px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card .parrafo p {
    margin-top: 0;
    margin-bottom: 0rem;
}

.card img {
    width: 100%;
    height: 200px;
}

.parrafo h4 {
    font-weight: 800;
    font-size: 1.3rem;
}

.parrafo {
    text-align: balance;
    padding: 25px;
    font-size: 14px;
    flex-wrap: wrap;
}

.button-card {
    width: 100%;
    height: 50px;
    border-radius: 0 0 5px 5px;
    text-align: center;
    font-size: 17px;
    color: #fff;
    font-weight: 500;
    background: linear-gradient(to left, #007AFF, #004999);
    border: none;
    cursor: pointer;
    flex-wrap: wrap;
}

.button-card:hover {
    transition: 1s ease;
    background: linear-gradient(to left, #004999, #007AFF);
}

a {
    text-decoration: none;
    width: 100%;
    flex-wrap: wrap;
}

/*Button Behance*/

.button-card-behance {

    margin-top: -12px;
    width: 83%;
    height: 50px;
    margin-left: 8.5%;
    border-radius: 5px;
    text-align: center;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    background: linear-gradient(to left, #007AFF, #004999);
    border: none;
    cursor: pointer;
    flex-wrap: wrap;
}

.button-card-behance:hover {
    background: linear-gradient(to right, #004999, #007AFF);
}

/* Footer */

.logo__ {
    color: #fff;
    margin-left: 12%;
}

.footer__ {
    background: #d9d9d9;
    padding: 0px 0px 0px 92px;
    display: flex;
    flex-direction: row;
    gap: 1000px;
    align-items: center;
    justify-content: flex-start;
    height: 60px;
    position: center;
    background-position: right center;
}

/*----------------------- Laptop --------------------------*/

@media (max-width: 1280px) and (min-width: 1536px) {

    /* nav Info Date */

    .header,
    .header * {
        box-sizing: border-box;
    }

    .whatsapp {
        position: fixed;
        padding-right: 25%;
        padding-left: 87%;
    }


    .header {
        background: #d9d9d9;
        display: flex;
        flex-direction: row;
        gap: 500px;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        height: 64px;
        position: fixed;
        top: 0;
        z-index: 1;
    }

    .header .frame-39898 {
        padding-left: 60px;
    }

    .frame-39898 {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        flex-shrink: 0;
        position: relative;
        gap: 37px;
    }

    .telefono {
        color: #000000;
        text-align: left;
        font-family: "Inter-Medium", sans-serif;
        font-size: 15px;
        font-weight: 500;
        position: relative;
        text-decoration: none;
    }

    .email {
        color: #000000;
        text-align: left;
        font-family: "Inter-Medium", sans-serif;
        font-size: 15px;
        font-weight: 500;
        position: relative;
        text-decoration: none;
    }

    .frame-39899 {
        padding: 10px;
        display: flex;
        flex-direction: row;
        gap: 70px;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 30px;
        height: 30px;
        position: relative;
    }

    .icon-linked-in {
        display: flex;
        flex-direction: row;
        gap: 10px;
        align-items: center;
        justify-content: flex-start;
        flex-shrink: 0;
        height: auto;
        position: absolute;
        left: -158px;
        top: 0px;
        overflow: visible;
    }

    .icon-behance-square {
        display: flex;
        flex-direction: row;
        gap: 10px;
        align-items: center;
        justify-content: flex-start;
        flex-shrink: 0;
        height: auto;
        position: absolute;
        left: -30px;
        top: 0px;
        overflow: visible;
    }

    .icon-git-hub-square {
        display: flex;
        flex-direction: row;
        gap: 10px;
        align-items: center;
        justify-content: flex-start;
        flex-shrink: 0;
        height: auto;
        position: absolute;
        left: 91px;
        top: 0px;
        overflow: visible;
    }

    /*BANNER TEXT*/

    .banner-text {
        padding: 0 30px;
        margin-top: 300px;
        text-align: center;
        color: #ffffff;
        text-shadow: 0px 0px 20px black;
    }

    .banner-text H1 {
        font-size: 50px;
        margin-bottom: 30px;
    }

    .banner-text H2 {
        font-size: 22px;
        font-weight: 400;
    }

    .boton1 {
        padding: 10px 25px;
        background-color: #1577e7;
        color: #ffffff;
        border-radius: 5px;
        text-decoration: none;
    }

    .boton1:hover {
        background-color: #ff6600;
        color: #ffffff;
        transition: .5s;
    }

    /* Menu Web*/

    @media screen and (min-width: 1280px) {

        .logo h1 {
            margin-left: 130%;
            font-size: 18px;
            margin-top: 5px;
        }

        nav {
            height: 60px;
        }

        nav.bg-color {
            background: rgba(255, 255, 255, 0.018);
            backdrop-filter: blur(100px);
            text-align: center;
        }

        .bar-btn {
            display: none;
        }

        .nav-menu {
            margin-top: 6px;
            position: relative;
            padding-right: 43px;
            height: 100px;
            top: 0;
            background: none;
            transition: none;
            text-align: center;
        }

        .nav-menu li {
            display: inline-block;
            line-height: 100px;
            transition: none;
        }

        .nav-menu li {
            display: inline-block;
            line-height: 104px;
            margin: 0 20px;
            transition: none;
        }

        .contact-btn {
            background-color: #ffffff;
            border-radius: 5px;
            padding: 5px 10px;
            margin-left: 250px;
            background-color: #007AFF;
        }

        .contact-btn:hover {
            background-color: #ffffff;
            color: #007AFF;
            font-weight: 600;
        }

        .nav-menu li a {
            font-size: 11.5px;
            letter-spacing: 2px;
        }

        /*Texto del banner*/

        .banner-text {
            margin-top: 25%;
            margin-bottom: 3%;
        }

        .banner-text h1 {
            font-size: 70px;
            margin-top: 1%;
        }

        .banner-text p {
            font-size: 25px;
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            margin-left: 20%;
        }

        .arrow_down {
            margin-top: 8%;
        }

    }

    /*Trabajos*/

    /* Card */

    .containerGridProjects {

        margin-top: 5%;
        margin-bottom: 5%;
        margin-left: 7.8%;
        margin-right: 7.8%;
        display: grid;
        grid-template-columns: repeat(4, 0.3fr);
        grid-template-rows: repeat(1, 1fr);
        row-gap: 20px;

    }

    .containerGridProjects .card {
        justify-self: center;
        align-self: center;

    }

    .card {
        width: 300px;
        height: 400px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 5px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .card .parrafo p {
        margin-top: 0;
        margin-bottom: 0rem;
    }

    .card img {
        width: 100%;
        height: 200px;
    }

    .parrafo h4 {
        font-weight: 800;
        font-size: 1.3rem;
    }

    .parrafo {
        text-align: balance;
        padding: 25px;
        font-size: 14px;
        flex-wrap: wrap;
    }

    .button-card {
        width: 100%;
        height: 50px;
        border-radius: 0 0 5px 5px;
        text-align: center;
        font-size: 17px;
        color: #fff;
        font-weight: 500;
        background: linear-gradient(to left, #007AFF, #004999);
        border: none;
        cursor: pointer;
        flex-wrap: wrap;
    }

    .button-card:hover {
        transition: 1s ease;
        background: linear-gradient(to left, #004999, #007AFF);
    }

    a {
        text-decoration: none;
        width: 100%;
        flex-wrap: wrap;
    }

    /*Button Behance*/

    .button-card-behance {

        margin-top: -12px;
        width: 83%;
        height: 50px;
        margin-left: 8.5%;
        border-radius: 5px;
        text-align: center;
        font-size: 18px;
        color: #fff;
        font-weight: 500;
        background: linear-gradient(to left, #007AFF, #004999);
        border: none;
        cursor: pointer;
        flex-wrap: wrap;
    }

    .button-card-behance:hover {
        background: linear-gradient(to right, #004999, #007AFF);
    }

    /* Footer */

    .logo__ {
        color: #fff;
        margin-left: 12%;
    }

    .footer__ {
        background: #d9d9d9;
        padding: 0px 0px 0px 92px;
        display: flex;
        flex-direction: row;
        gap: 1000px;
        align-items: center;
        justify-content: flex-start;
        height: 60px;
        position: center;
        background-position: right center;
    }

}

/*----------------------- Tablet -----------------------------*/

@media (min-width: 768px) and (max-width: 990px) {

    /* nav Info Date */

    .header,
    .header * {
        box-sizing: border-box;
    }

    .whatsapp {
        position: fixed;
        padding-right: 25%;
        padding-left: 87%;
    }


    .header {
        background: #d9d9d9;
        display: flex;
        flex-direction: row;
        gap: 500px;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        height: 64px;
        position: fixed;
        top: 0;
        z-index: 1;
    }

    .header .frame-39898 {
        padding-left: 31px;
    }

    .frame-39898 {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        flex-shrink: 0;
        position: relative;
        gap: 32px;
    }

    .telefono {
        color: #000000;
        text-align: left;
        font-family: "Inter-Medium", sans-serif;
        font-size: 15px;
        font-weight: 500;
        position: relative;
        text-decoration: none;
    }

    .email {
        color: #000000;
        text-align: left;
        font-family: "Inter-Medium", sans-serif;
        font-size: 15px;
        font-weight: 500;
        position: relative;
        text-decoration: none;
    }

    .frame-39899 {
        padding: 10px;
        display: flex;
        flex-direction: row;
        gap: 70px;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 30px;
        height: 30px;
        position: relative;
    }

    .icon-linked-in {
        display: flex;
        flex-direction: row;
        gap: 10px;
        align-items: center;
        justify-content: flex-start;
        flex-shrink: 0;
        height: auto;
        position: absolute;
        left: -158px;
        top: 0px;
        overflow: visible;
    }

    .icon-behance-square {
        display: flex;
        flex-direction: row;
        gap: 10px;
        align-items: center;
        justify-content: flex-start;
        flex-shrink: 0;
        height: auto;
        position: absolute;
        left: -30px;
        top: 0px;
        overflow: visible;
    }

    .icon-git-hub-square {
        display: flex;
        flex-direction: row;
        gap: 10px;
        align-items: center;
        justify-content: flex-start;
        flex-shrink: 0;
        height: auto;
        position: absolute;
        left: 91px;
        top: 0px;
        overflow: visible;
    }

    /*BANNER TEXT*/

    .banner-text {
        padding: 0 30px;
        margin-top: 300px;
        text-align: center;
        color: #ffffff;
        text-shadow: 0px 0px 20px black;
    }

    .banner-text H1 {
        font-size: 50px;
        margin-bottom: 30px;
    }

    .banner-text H2 {
        font-size: 22px;
        font-weight: 400;
    }

    .boton1 {
        padding: 10px 25px;
        background-color: #1577e7;
        color: #ffffff;
        border-radius: 5px;
        text-decoration: none;
    }

    .boton1:hover {
        background-color: #ff6600;
        color: #ffffff;
        transition: .5s;
    }

    /* Menu Web*/

    @media screen and (min-width: 1280px) {

        .logo h1 {
            margin-left: 130%;
            font-size: 18px;
            margin-top: 5px;
        }

        nav {
            height: 60px;
        }

        nav.bg-color {
            background: rgba(255, 255, 255, 0.018);
            backdrop-filter: blur(100px);
            text-align: center;
        }

        .bar-btn {
            display: none;
        }

        .nav-menu {
            margin-top: 6px;
            position: relative;
            padding-right: 43px;
            height: 100px;
            top: 0;
            background: none;
            transition: none;
            text-align: center;
        }

        .nav-menu li {
            display: inline-block;
            line-height: 100px;
            transition: none;
        }

        .nav-menu li {
            display: inline-block;
            line-height: 104px;
            margin: 0 20px;
            transition: none;
        }

        .contact-btn {
            background-color: #ffffff;
            border-radius: 5px;
            padding: 5px 10px;
            margin-left: 250px;
            background-color: #007AFF;
        }

        .contact-btn:hover {
            background-color: #ffffff;
            color: #007AFF;
            font-weight: 600;
        }

        .nav-menu li a {
            font-size: 11.5px;
            letter-spacing: 2px;
        }

    }

    /*Trabajos*/


    .trabajos .open-trabajos h2 {
        margin-top: 18%;
    }

    /* Card*/

    .containerGridProjects {

        margin-top: 5%;
        margin-bottom: 5%;
        margin-left: 10%;
        margin-right: 7.8%;
        display: grid;
        grid-template-columns: repeat(2, 0.3fr);
        grid-template-rows: repeat(1, 1fr);
        gap: 20px;

    }

    .containerGridProjects .card {
        justify-self: center;
        align-self: center;

    }

    .card {

        width: 300px;
        height: 400px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 5px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .card .parrafo p {
        margin-top: 0;
        margin-bottom: 0rem;
    }

    .card img {
        width: 100%;
        height: 200px;
    }

    .parrafo h4 {
        font-weight: 800;
        font-size: 1.3rem;
    }

    .parrafo {
        text-wrap: pretty;
        padding: 25px;
        font-size: 14px;
        flex-wrap: wrap;
    }

    .button-card {
        width: 100%;
        height: 50px;
        border-radius: 0 0 5px 5px;
        text-align: center;
        font-size: 17px;
        color: #fff;
        font-weight: 500;
        background: linear-gradient(to left, #007AFF, #004999);
        border: none;
        cursor: pointer;
        flex-wrap: wrap;
    }

    .button-card:hover {
        transition: 1s ease;
        background: linear-gradient(to left, #004999, #007AFF);
    }

    a {
        text-decoration: none;
        width: 100%;
        flex-wrap: wrap;
    }

    /*Button Behance*/

    .button-card-behance {

        margin-top: -12px;
        width: 83%;
        height: 50px;
        margin-left: 8.5%;
        border-radius: 5px;
        text-align: center;
        font-size: 18px;
        color: #fff;
        font-weight: 500;
        background: linear-gradient(to left, #007AFF, #004999);
        border: none;
        cursor: pointer;
        flex-wrap: wrap;
    }

    .button-card-behance:hover {
        background: linear-gradient(to right, #004999, #007AFF);
    }

    /* Footer */

    .logo__ {
        color: #fff;
        margin-left: 12%;
    }

    .footer__ {
        background: #d9d9d9;
        padding: 0px 0px 0px 92px;
        display: flex;
        flex-direction: row;
        gap: 1000px;
        align-items: center;
        justify-content: flex-start;
        height: 60px;
        position: center;
        background-position: right center;
    }

}




/*----------------------- Tablet -----------------------------*/

@media (min-width: 768px) and (max-width: 990px) {

    /* nav Info Date */

    .header,
    .header * {
        box-sizing: border-box;
    }

    .whatsapp {
        position: fixed;
        padding-right: 25%;
        padding-left: 78%;
        z-index: 1;
    }


    .header {
        background: #d9d9d9;
        padding: 0px 0px 0px 0px;
        display: flex;
        flex-direction: row;
        gap: 30%;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        height: 64px;
        position: fixed;
        top: 0;
        z-index: 1;
    }

    .frame-39898 {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        flex-shrink: 0;
        position: relative;
        gap: 50px;
    }

    .telefono {
        color: #000000;
        text-align: left;
        font-family: "Inter-Medium", sans-serif;
        font-size: 15px;
        font-weight: 500;
        position: relative;
        text-decoration: none;
    }

    .email {
        color: #000000;
        text-align: left;
        font-family: "Inter-Medium", sans-serif;
        font-size: 15px;
        font-weight: 500;
        position: relative;
        text-decoration: none;
    }

    .frame-39899 {
        padding: 10px;
        display: flex;
        flex-direction: row;
        gap: 10px;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 10px;
        height: 30px;
        position: relative;
    }

    .icon-linked-in {
        display: flex;
        flex-direction: row;
        gap: 5px;
        align-items: center;
        justify-content: space-evenly;
        flex-shrink: 0;
        height: auto;
        position: absolute;
        left: -320%;
        top: 0px;
        overflow: visible;
    }

    .icon-behance-square {
        display: flex;
        flex-direction: row;
        gap: 5px;
        align-items: center;
        justify-content: flex-start;
        flex-shrink: 0;
        height: auto;
        position: absolute;
        left: 20px;
        top: 0px;
        overflow: visible;
    }

    .icon-git-hub-square {
        display: flex;
        flex-direction: row;
        gap: 5px;
        align-items: center;
        justify-content: flex-start;
        flex-shrink: 0;
        height: auto;
        position: absolute;
        left: 500%;
        top: 0px;
        overflow: visible;
    }

    /*BANNER TEXT*/

    .banner-text {
        padding: 0 30px;
        margin-top: 300px;
        text-align: center;
        color: #ffffff;
        text-shadow: 0px 0px 20px black;
    }

    .banner-text H1 {
        font-size: 50px;
        margin-bottom: 30px;
    }

    .banner-text H2 {
        font-size: 22px;
        font-weight: 400;
    }

    .boton1 {
        padding: 10px 25px;
        background-color: #1577e7;
        color: #ffffff;
        border-radius: 5px;
        text-decoration: none;
    }

    .boton1:hover {
        background-color: #ff6600;
        color: #ffffff;
        transition: .5s;
    }


    /*Objet Animate*/

    #animation_Objet {
        position: absolute;
        top: 0;
        left: 0;
        margin-top: 15%;
        margin-right: 100px;
        width: 40%;
        height: 80%;
        z-index: -1;
        /*padding-left: 3%;*/
        /*filter: blur(1px);*/
        opacity: 0.3;
        /*transform: scale(5px); /*Reduce el tamaño sin modificar las dimensiones */

        /*Animation*/
        animation-name: objet;
        animation-duration: 2s;
        animation-iteration-count: infinite;
        animation-timing-function: ease-in-out;
        animation-delay: 1s;
    }

    @keyframes objet {

        0% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(50px);
        }

        100% {
            transform: translateY(0px);
        }

    }

    /* Menu Web*/

    @media screen and (min-width: 768px) {

        .logo h1 {
            margin-left: 40%;
            font-size: 18px;
            margin-top: 5px;
        }

        nav {
            height: 80px;
        }

        nav.bg-color {
            background: rgba(255, 255, 255, 0.018);
            backdrop-filter: blur(100px);
            text-align: center;
        }

        .bar-btn {
            display: none;
        }

        .nav-menu {
            list-style: none;
            display: flex;
            gap: 20px;
            margin-left: 36%;
            padding: 0;
        }

        .nav-menu li {
            margin: 0;
        }

        .nav-menu a {
            text-decoration: none;
            color: #000;
        }

        /* @media (max-width: 768px) {
        .nav-menu {
            display: block;
            text-align: center;
        }
    }

      .nav-menu {
          margin-top: 6px;
          position: relative;
          padding-left: 20px;
          height: 100px;
          top:0;
          background: none;
          transition: none;
          text-align: center;
          margin-right: -44px;
      }
  
      .nav-menu li {
          display: inline-block;
          line-height: 100px;
          transition: none;
      }
  
      .nav-menu li {
          display: inline-block;
          line-height: 104px;
          transition: none;
      }
    
    .nav-menu li a {
        color: #ffffff;
        font-size: 16px;
        text-transform: uppercase;
        font-weight: 600;
        text-decoration: none;
    }*/

        .contact-btn {
            background-color: #ffffff;
            border-radius: 5px;
            padding: 5px 10px;
            margin-left: 100px;
            background-color: #007AFF;
        }

        .contact-btn:hover {
            background-color: #ffffff;
            color: #007AFF;
            font-weight: 600;
        }

        .nav-menu li a {
            font-size: 11.5px;
            letter-spacing: 2px;
        }

        /*Texto del banner*/

        .banner-text {
            margin-top: 50%;
            margin-bottom: 10%;
        }

        .banner-text h1 {
            font-size: 70px;
            margin-top: 1%;
        }

        .banner-text p {
            font-size: 25px;
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            margin-left: 20%;
        }

        .arrow_down {
            margin-top: 20%;
        }

    }

    /* Section Tool*/

    #Herramientas {
        scroll-margin-top: 18ex;
    }

    .texto-Herramientas {
        color: #fff;
        border-bottom: 3px solid #fff;
        margin-left: 40%;
        margin-right: 40%;
    }

    .texto-Herramientas h2 {
        font-size: 22px;
    }

    .container {

        display: grid;
        grid-template-columns: repeat(4, 0.8fr);
        grid-template-rows: repeat(1, 1fr);
        /*grid-template-rows: 100px 1em 1fr;*/
        row-gap: 50px;
        margin-top: 10%;
        margin-left: 5.5px;
    }

    .container img {
        justify-self: center;
        align-self: center;
    }

    /* interactions */

    .container #tooltip {
        position: relative;
        cursor: pointer;
        justify-self: center;
        align-self: center;
    }

    .container #tooltipText {
        position: absolute;
        left: 50%;
        top: 0;
        transform: translate(-50%);
        background-color: #ffffff;
        color: var(--color-primary);
        font-weight: 600;
        white-space: nowrap;
        padding: 2px 15px;
        border-radius: 7px;
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
    }

    .container #tooltipText::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 100%;
        transform: translateX(-50%);
        border: 15px solid;
        border-color: #ffffff #0000 #0000;
    }

    .container #tooltip:Hover #tooltipText {
        top: -55%;
        visibility: visible;
        opacity: 1;
        transition: opacity 0.7s ease-out;
        z-index: 1;
    }

    /*Trabajos*/

    /* Section Trabajos*/

    #Trabajos {
        scroll-margin-top: 18ex;
    }

    .texto-trabajos {
        margin-top: 7%;
        color: #fff;
        border-bottom: 3px solid #fff;
        text-align: center;
        display: flex;
        /* Cambiado a flexbox */
        justify-content: center;
        /* Centrado horizontalmente */
        padding-bottom: 5px;
        /* Ajusta según sea necesario */
        width: 20%;
        margin-left: 40%;
        /* Ancho completo del contenedor */
    }

    .texto-trabajos .open-trabajos h2 {
        font-size: 22px;
    }

    /*Animation Herramientas*/

    /*
.open_Herramientas h2 {
    width: 0;
    margin: 0 auto;
    overflow: hidden;
    display: inline-block;
    white-space: nowrap;
    animation: open 2s ease forwards;
    
}

@keyframes open {
    from {
        width: 0;
    }
    to {
        width: 800px;
    }
}*/


    /* Card*/

    .container-grid-projects {

        margin-top: 5%;
        margin-bottom: 5%;
        margin-left: 0%;
        display: grid;
        grid-template-columns: auto;
        grid-template-rows: repeat(1, 1fr);
        row-gap: 50px;

    }

    .container-grid-projects .card {
        justify-self: center;
        align-self: center;

    }

    .card {
        width: 300px;
        height: 80px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 5px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .card img {
        width: 100%;
        height: 200px;
    }

    .parrafo {
        text-align: balance;
        padding: 15px;
        font-size: 14px;
        flex-wrap: wrap;
    }

    .button-card {
        width: 100%;
        height: 50px;
        border-radius: 0 0 5px 5px;
        text-align: center;
        font-size: 17px;
        color: #fff;
        font-weight: 500;
        background: linear-gradient(to left, #007AFF, #004999);
        border: none;
        cursor: pointer;
        flex-wrap: wrap;
    }

    .button-card:hover {
        transition: 1s ease;
        background: linear-gradient(to left, #004999, #007AFF);
    }

    a {
        text-decoration: none;
        width: 100%;
        flex-wrap: wrap;
    }

    /*Button Behance*/

    .button-card-behance {

        width: 90.8%;
        height: 50px;
        margin-left: 5%;
        border-radius: 5px;
        text-align: center;
        font-size: 18px;
        color: #fff;
        font-weight: 500;
        background: linear-gradient(to left, #007AFF, #004999);
        border: none;
        cursor: pointer;
        flex-wrap: wrap;
    }

    .button-card-behance:hover {
        background: linear-gradient(to right, #004999, #007AFF);
    }

    /*About_me*/

    #Conocer {
        scroll-margin-top: 18ex;
    }

    .texto-About_me {
        margin-top: 1%;
        margin-bottom: 4%;
        color: #fff;
        border-bottom: 3px solid #fff;
        text-align: center;
        display: flex;
        /* Cambiado a flexbox */
        justify-content: center;
        /* Centrado horizontalmente */
        padding-bottom: 0px;
        /* Ajusta según sea necesario */
        width: 20%;
        margin-left: 40%;
        /* Ancho completo del contenedor */
    }

    .texto-About_me h2 {
        font-size: 22px;
    }

    /*Animation Herramientas*/

    /*
.open_Herramientas h2 {
    width: 0;
    margin: 0 auto;
    overflow: hidden;
    display: inline-block;
    white-space: nowrap;
    animation: open 2s ease forwards;
    
}

@keyframes open {
    from {
        width: 0;
    }
    to {
        width: 800px;
    }
}*/


    .container__About_me {
        display: flex;
        margin-left: 5%;
    }

    .container_About_me {
        display: flex;

    }

    .img_FX {
        position: relative;
        width: 250px;
    }

    .img_FX img {
        width: 250px;
        display: block;
    }


    /*Animation


.container__img {
    animation-name: container__img;
    animation-duration: 2s; 
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards; 
}

@keyframes container__img {
    from {
        transform: scaleX(0.2); 
        filter: blur(20px);
        opacity: 0;

    }
    to {
        transform: scaleX(1);
        filter: blur(0);
        opacity: 1;
    }
}*/

    .overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 450;
        background: linear-gradient(to bottom, transparent, rgba(0, 122, 255, 0.8));
        opacity: 0;
        transition: opacity 0.5s ease;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        border-radius: 5px;
    }

    .img_FX:hover .overlay {
        opacity: 1;
    }

    .texto-FX {
        color: white;
        text-align: balance;
        padding: 25px;
        transform: opacity(100%);
        transition: transform 0.5s ease;
    }

    .img_FX:hover .texto-FX {
        transform: opacity(0);
    }

    .container_About_me .texto__parrafo {
        display: flex;
        float: right;
        padding-top: 0%;
        padding-left: 23px;
        padding-right: 10px;
        margin-bottom: 10px;
        margin-bottom: -10px;
        /*text-wrap: wrap;*/
        flex-wrap: wrap;
        color: #fff;
        line-height: 45px;
        letter-spacing: 0.3px;
        font-size: 16px
    }

    /*
.container__ .SocialMedia{
    margin-bottom: 30px;
}

.container__ .SocialMedia a{
    margin-left: 15%;
}


.SocialMedia {
    margin-top: 15%;
    margin-left: 50px;
    margin-bottom: 7%;

}*/

    .button__ {
        display: flex;
        margin-top: 20%;
    }

    /*Video */

    .trailer {
        display: none;
        /*Adicional*/
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1000;
        background: #181818a1;
        /*Contenido de bg*/
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        visibility: hidden;
        opacity: 0;
    }

    .trailer.active {
        visibility: visible;
        opacity: 1;
        display: block;
        /*Adicional*/
    }

    .trailer audio {
        position: relative;
        max-width: 900px;
        outline: none;
        margin-left: 26%;
        margin-top: 50%;
    }

    .close {
        position: absolute;
        top: 60%;
        right: 40%;
        cursor: pointer;
        max-width: 30px;
    }

    /* Video Close
.close{
    position: absolute;
    top:89%;
    right: 15%;
    cursor: pointer;
    max-width: 30px;
}*/


    @media (max-width: 991px) {

        .trailer video {
            max-width: 90%;
        }

    }

    .button-card-behance__ {

        width: 87%;
        height: 50px;
        border-radius: 5px;
        text-align: center;
        font-size: 18px;
        color: #fff;
        font-weight: 500;
        background: linear-gradient(to left, #007AFF, #004999);
        border: none;
        cursor: pointer;
        margin-left: 5%;
        margin-bottom: 5%;
    }

    .button-card-behance:hover {
        background: linear-gradient(to right, #004999, #007AFF);
        transition: background 0.5s ease;
    }

    /* Footer */

    .logo__ {
        color: #fff;
        margin-left: 5%;
    }

    .footer__ {
        background: #d9d9d9;
        display: flex;
        flex-direction: row;
        gap: 45%;
        align-items: center;
        justify-content: flex-start;
        height: 60px;
        position: relative;
    }

}

/*------------------------- Versiones Mobiles -----------------------*/


@media (min-width: 320px) and (max-width: 428px) {

    /* SCROLL */
    .scroll::-webkit-scrollbar-thumb {
        border-radius: 7px;
        background: var(--color-secondary);
    }

    /* button de whatsapp*/

    .whatsapp {
        position: fixed;
        padding-left: 80%;
        margin-top: 145%;
    }

    /* nav Info Date */

    .header,
    .header * {
        box-sizing: border-box;
    }

    .header {
        background: #d9d9d9;
        width: 100%;
        padding: 0px 0px 1px 10px;
    }

    .bg-color {
        backdrop-filter: blur(100px);
        padding-top: 12px;
        padding-bottom: 12px;
        padding-left: 20px;
    }

    .nav-menu {
        position: absolute;
        width: 100%;
        top: 64px;
        background: rgb(0, 0, 0);
        text-align: center;
        transition: all .5s;
        padding: 0 20px;
        box-sizing: border-box;
        /* Asegura que el padding no afecte el ancho */
        left: 0;
        right: 0;
        margin: 0 auto;
        /* Centra el menú horizontalmente */
        z-index: 1;
    }

    .bg-color .nav .ul {
        margin-right: 20px;
    }

    .frame-39898 {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        flex-shrink: 0;
        position: relative;
        gap: 80px;
    }

    /*.header .frame-39898 {
        padding-left: 20px;
    }*/

    .icon-linked-in {
        display: none;
        flex-direction: row;
        gap: 10px;
        align-items: center;
        justify-content: flex-start;
        flex-shrink: 0;
        height: auto;
        position: absolute;
        left: -158px;
        top: 0px;
        overflow: visible;
    }

    .icon-behance-square {
        display: none;
        flex-direction: row;
        gap: 10px;
        align-items: center;
        justify-content: flex-start;
        flex-shrink: 0;
        height: auto;
        position: absolute;
        left: -30px;
        top: 0px;
        overflow: visible;
    }

    .icon-git-hub-square {
        display: none;
        flex-direction: row;
        gap: 10px;
        align-items: center;
        justify-content: flex-start;
        flex-shrink: 0;
        height: auto;
        position: absolute;
        left: 91px;
        top: 0px;
        overflow: visible;
    }

    /* trabajos*/

    .trabajos .open-trabajos h2 {
        margin-top: 15%;
        color: #fff;
        display: flex;
        justify-content: flex-start;
        margin-left: 8%;
        font-weight: 900;
        font-size: 2.5rem;
    }

    /* Pagination */

    .pagination ul li {
        list-style: none;
        display: inline-block;
        max-width: 47%;

    }

    .pagination ul {
        margin-left: -1%;
        margin-top: 5%;
        display: flex;
        flex-direction: row;
        gap: 2%;

    }

    .pagination ul li a {
        color: #ffffff;
        text-decoration: none;
        display: block;
        padding: 5px 32px;
        border: solid 2px #ffffff;
        border-radius: 30px;
        transition: .3s;
        font-size: small;
    }

    .pagination ul li a:hover {
        background: var(--color-tertiary);
    }

    /*
.pagination ul li a.active{
    background-color: var(--color-tertiary);
    font-weight: 700;
    transition: .3s;
}*/

    /* Card*/

    .containerGridProjects {

        margin: 5% 5%;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 20px;

    }

    .containerGridProjects .card {
        justify-self: center;
        align-self: center;

    }

    .card {
        width: 180px;
        height: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 5px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .card img {
        width: 100%;
        height: 50%;
    }

    .parrafo h4 {
        font-weight: 800;
        font-size: 1rem;
    }

    .parrafo {
        text-align: balance;
        padding: 25px;
        font-size: 14px;
        flex-wrap: wrap;
    }

    .button-card {
        width: 100%;
        height: 50px;
        border-radius: 0 0 5px 5px;
        text-align: center;
        font-size: 17px;
        color: #fff;
        font-weight: 500;
        background: linear-gradient(to left, #007AFF, #004999);
        border: none;
        cursor: pointer;
        flex-wrap: wrap;
    }

    .button-card:hover {
        transition: 1s ease;
        background: linear-gradient(to left, #004999, #007AFF);
    }

    a {
        text-decoration: none;
        width: 100%;
        flex-wrap: wrap;
    }

    /*Button Behance*/

    .button-card-behance {

        margin-top: -12px;
        width: 83%;
        height: 50px;
        margin-left: 8.5%;
        border-radius: 5px;
        text-align: center;
        font-size: 18px;
        color: #fff;
        font-weight: 500;
        background: linear-gradient(to left, #007AFF, #004999);
        border: none;
        cursor: pointer;
        flex-wrap: wrap;
    }

    .button-card-behance:hover {
        background: linear-gradient(to right, #004999, #007AFF);
    }


































    /* Footer */

    .logo__ {
        color: #fff;
        margin-left: 12%;
    }

    .footer__ {
        background: #d9d9d9;
        padding: 0px 72px 0px 54.5px;
        display: flex;
        flex-direction: row;
        gap: 4px;
        align-items: center;
        justify-content: space-evenly;
        height: 60px;
        position: relative;
        width: 103%;
    }

    .footer__ h6 {
        font-size: small;
    }

}