/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap'); */;
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
/*Titulo*/ @import url("https://use.typekit.net/ehk8xjl.css");

:root {
    --color-primary: #000747;
    --color-secondary: #0c0c0c;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/*Color de BG*/

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;
    /*transform: rotate(45deg);*/
    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;
    margin-top: 5%;
    padding-right: 25%;
    padding-left: 92%;
    z-index: 1000;

}

.frame-39899 {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 2px;
    margin-top: 2%;
    margin-left: 41%;
    z-index: -1;
}

.frame-39899 a {
    display: inline-block;
    padding: 0;
    margin: 0;
    width: 10%;

}

/*----------------------------*/

/*Dev Page - End */

.info {
    width: 100%;
    height: 50px;
    background-color: var(--color-secondary);
    color: #ffffff;
    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;

}

/*Nav bar Web-Mobil*/

#Home {

    scroll-margin-top: 500ex;
}

.bg-color {
    backdrop-filter: blur(100px);
}


nav {
    width: 96.5%;
    margin: 2%;
    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;
}

/*BANNER TEXT*/

.banner-text {

    padding: 0 30px;
    margin-top: 300px;
    text-align: center;
    color: #ffffff;
    text-shadow: 0px 0px 20px black;
    flex-wrap: wrap;
}

.banner-text .text-H1 H1 {
    /* font-size: clamp (11px, 1.5vw, 45px); */
  /*   font-family: "Ubuntu", sans-serif;
    font-weight: 500; */
    font-size: 70px;
    font-family: "akzidenz-grotesk-next-conden", sans-serif;
font-weight: 700;
font-style: normal;
}

.banner-text h2 {
    font-size: 30px;
    font-weight: 400;
    flex-wrap: wrap;
    font-family: "akzidenz-grotesk-next-conden", sans-serif;
    font-weight: 300;
}

/*Animation H1*/

.open H1 {

    width: 0;
    height: 120px;
    margin: 0 auto;
    overflow: hidden;
    display: inline-block;
    white-space: nowrap;
    animation: open 2s ease forwards;
}

@keyframes open {
    from {
        width: 0;
    }

    to {
        width: 800px;
    }
}

/*Objet Animate 1*/

#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);
    }

}

/*Objet Animate 2*/

#animation_Objet-2 {
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 10%;
    margin-left: 55%;
    width: 45%;
    height: 50%;
    z-index: -1;
    /*padding-left: 3%;*/
    filter: blur(1px);
    opacity: 0.4;
    /*transform: scale(5px); /*Reduce el tamaño sin modificar las dimensiones */

    /*Animation*/
    animation-name: objet2;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-delay: 1s;
}

@keyframes objet2 {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-50px);
    }

    100% {
        transform: translateY(0px);
    }

}

/*Objet Animate*/

#animation_Objet_3 {
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 142%;
    margin-left: 55%;
    width: 45%;
    height: 90%;
    z-index: -1;
    /*padding-left: 3%;*/
    filter: blur(1px);
    opacity: 0.4;
    /*transform: scale(5px); /*Reduce el tamaño sin modificar las dimensiones */

    /*Animation*/
    animation-name: objet3;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-delay: 1s;
}

@keyframes objet3 {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-50px);
    }

    100% {
        transform: translateY(0px);
    }

}

/* Menu Web*/

@media screen and (min-width: 700px) {

    .logo h1 {
        margin-left: 149%;
        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.5%;
        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;
    }

}

.arrow_down {
    margin-top: 10%;
    animation-name: arrow_down;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-delay: 1s;
}

/* Arrow Animation*/

@keyframes arrow_down {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0px);
    }

}

/* Section Trabajos*/

#Trabajos {
    scroll-margin-top: 18ex;
}

.texto-trabajos .open-trabajos h2 {
    margin-top: 4%;
    color: #fff;
    display: flex;
    justify-content: flex-end;
    margin-right: 12%;
    font-weight: 900;
    font-size: 5rem;
}

.parrafo__ h1 {

    margin-top: 3%;
    color: #fff;
    text-wrap: pretty;
    margin-left: 10%;
    font-weight: 400;
    line-height: 3rem;
    margin-right: 10%;
    font-weight: 400;
    font-size: 1.8rem;
}

/*Animation Herramientas*/

/* Card*/

.container-grid-projects {

    margin-top: 4%;
    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;
}

.container-grid-projects .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: 40.5%;
    height: 50px;
    margin-left: 29.8%;
    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);
}

/* Section Herramientas*/

#Herramientas {
    scroll-margin-top: 18ex;
}

.texto-Herramientas h2 {
    margin-top: 4%;
    color: #fff;
    display: flex;
    justify-content: flex-start;
    margin-left: 8.2%;
    font-weight: 900;
    font-size: 4rem;
}

.parrafo_ h1 {

    margin-top: 3%;
    color: #fff;
    text-wrap: pretty;
    margin-left: 10%;
    font-weight: 400;
    line-height: 3rem;
    margin-right: 25%;

    font-weight: 400;
    font-size: 1.8rem;
}

.container {

    display: grid;
    grid-template-columns: repeat(1, 0.5fr);
    grid-template-rows: repeat(1, 1fr);
    /*grid-template-rows: 100px 1em 1fr;*/
    margin: auto 0;

}

/*Button Designer*/

.show-popup {

    width: 98%;
    height: 52px;
    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: 19%;
    margin-top: 5%;

}

.popup-container {

    position: absolute;
    width: 90%;
    height: 100%;
    /*background: #0c0c0ca7;*/
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    z-index: 1;

}

.popup-container.active {
    opacity: 1;
    pointer-events: auto;
    transition: .4s ease;

}

.popup-container .popup-box {

    width: 500px;
    background: #d9d9d9;
    border-radius: 6px;
    box-shadow: 0 0 10px #0c0c0c;
    padding: 20px;
    margin-bottom: 83%;
    transform: scale(0);

}

.popup-container.active .popup-box {
    transform: scale(1);
    transition: .4s ease;
    transition-delay: .25s;

}

.popup-box h1 {
    font-weight: 700;
    font-size: 1.5rem;
}

.close-btn {

    width: 100%;
    height: 52px;
    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: auto 0;
    cursor: pointer;

}

/* Sobre mi*/

#Conocer {
    scroll-margin-top: 18ex;
}

/*
.container__About_me .container__{
    margin-top: -5%;
}*/

.container__About_me {
    display: flex;
    margin-right: 10%;
}

.container_About_me {
    display: flex;
    float: inline-end;
    margin-bottom: 17%;
}

/*Texto informativo*/

.texto__parrafo {

    color: #fff;
    text-wrap: balance;
    font-weight: 400;
    line-height: 3rem;
    margin-left: 9%;
    margin-right: 12%;
    font-size: 1.8rem;
}

p.texto__parrafo {
    margin-bottom: -21rem;
}

.texto-About_me h2 {

    margin-top: 5%;
    color: #fff;
    display: flex;
    justify-content: flex-start;
    font-weight: 900;
    font-size: 4rem;
    margin-left: 8.5%;

}

/* FX imagen */

.img_FX {
    position: relative;
    width: 304px;
}

.img_FX img {
    width: 304px;
    display: block;
    border-radius: 9px;

}

.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;
}

.img_FX:hover .texto-FX {
    transform: opacity(0);
}


.texto-FX {
    color: white;
    text-align: left;
    max-width: 100%;
    padding-left: 5px;
    padding-bottom: 25px;
    transform: opacity(100%);
    transition: transform 0.5s ease;
}

/* Footer */

.logo__ {
    color: #fff;
    margin-left: 12%;
}

.footer__ {
    background: #d9d9d9;
    padding: 10px 134px 0px 127px;
    gap: 70%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 73px;
    position: center;
    background-position: right center;

}

/*----------------------- Desktop --------------------------*/

@media (max-width: 1280px) and (min-width: 1536px) {

    /* nav Info Date */

    .header,
    .header * {
        box-sizing: border-box;
    }

    .header {
        background: #d9d9d9;
        display: flex;
        flex-direction: row;
        gap: 600px;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        height: 64px;
        position: fixed;
        top: 0;
        z-index: 1;
    }

    .header .frame-39898 {
        padding-left: 0;
    }

    /* 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;
        }

    }

    /* Sobre mi*/

    #Conocer {
        scroll-margin-top: 18ex;
    }

    .texto-About_me h2 {
        margin-top: 4%;
        color: #fff;
        display: flex;
        justify-content: flex-start;
        font-weight: 900;
        font-size: 4rem;
        margin-left: 11%;

    }

    .container__About_me {
        display: flex;
        margin-right: 12%;
        margin-top: 4%;
    }

    .container_About_me {
        display: flex;
    }

    .img_FX {
        position: relative;
        width: 350px;
    }

    .img_FX img {
        width: 350px;
        display: block;
        border-radius: 9px;
    }

    .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: left;
        max-width: 100%;
        padding-left: 5px;
        padding-bottom: 25px;

        transform: opacity(100%);
        transition: transform 0.5s ease;
    }

    .img_FX:hover .texto-FX {
        transform: opacity(0);
    }

    /*Texto informativo*/

    .texto__parrafo {

        color: #fff;
        text-wrap: pretty;
        font-weight: 400;
        line-height: 3rem;
        margin-left: 22%;
        margin-top: -2%;
        padding-right: 4%;

        font-size: 1.8rem;
    }

    .button__ {
        display: flex;
        margin-top: 20px;
    }

    .button-card-behance__ {

        width: 68%;
        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: 22%;
        margin-bottom: 3%;
        margin-top: 19px;
    }

    .button-card-behance:hover {
        background: linear-gradient(to right, #004999, #007AFF);
        transition: background 0.5s ease;
    }

    /* Footer */

    .logo__ {
        color: #fff;
        margin-left: 12%;
    }

    .footer__ {
        background: #d9d9d9;
        padding: 10px 134px 0px 127px;
        gap: 70%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        height: 73px;
        position: center;
        background-position: right center;
    }

}

/*----------------------- Tablet -----------------------------*/

@media (min-width: 768px) and (max-width: 990px) {

    /* nav Info Date */

    .whatsapp {
        position: fixed;
        padding-right: 25%;
        padding-left: 78%;
        z-index: 1;
    }

    .header {
        background: #d9d9d9;
        padding: 0px 0px 0px 2px;
        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;
    }

    .header .frame-39898 {
        padding-left: 33px;
    }

    .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: 38%;
        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: 50px;
            margin-left: 26%;
            padding: 0;
        }

        .nav-menu li {
            margin: 0;
        }

        .nav-menu a {
            text-decoration: none;
            color: #000;
        }

        .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%;
        }

    }

    /*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;
    }

    /* 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);
    }

    /* 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;
    }

    /*Sobre mí*/

    #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;
    }

    .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;
    }

    .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
    }

    .button__ {
        display: flex;
        margin-top: 20%;
    }

    .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;
    }

}

/*------------------------- Version Mobiles -----------------------*/

@media (min-width: 320px) and (max-width: 428px) {


    /* button de whatsapp*/

    .whatsapp {
        position: fixed;
        padding-left: 80%;
        margin-top: 20%;
    }

    .frame-39899 {
        position: relative;
        display: flex;
        flex-direction: row;
        gap: 2px;
        margin-top: 12%;
        margin-left: 20%;
        z-index: -1;
    }

    .frame-39899 a {
        display: inline-block;
        padding: 0;
        margin: 0;
        width: 25%;

    }

    /* 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: 34px;
        padding-right: 11px;
    }

    .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;
    }

    /*BANNER TEXT*/

    .banner-text {
        padding: 0px;
        text-align: center;
        color: #ffffff;
        text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.397);
    }

    .banner-text H1 {
        font-size: 1.0rem;
        margin-top: 65%;
        text-align: center;
        height: 30%;

    }

    .banner-text h2 {
        font-size: 20px;
        font-weight: 500;
        margin-top: -2%;
    }

    .banner-text {
        margin-top: 35%;
        margin-bottom: 3%;
    }

    .arrow_down {
        margin-top: 35%;
        margin-bottom: 35%;
    }

    /*Objet Animate*/

    #animation_Objet {
        position: absolute;
        top: 0;
        left: 0;
        margin-top: 80%;
        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);
        }

    }

    #animation_Objet-2 {
        position: absolute;
        top: 0;
        left: 0;
        margin-top: -18%;
        margin-left: 45%;
        width: 45%;
        height: 80%;
        z-index: -1;
        /*padding-left: 3%;*/
        filter: blur(1px);
        opacity: 0.4;
        /*transform: scale(5px); /*Reduce el tamaño sin modificar las dimensiones */

        /*Animation*/
        animation-name: objet2;
        animation-duration: 2s;
        animation-iteration-count: infinite;
        animation-timing-function: ease-in-out;
        animation-delay: 1s;
    }

    @keyframes objet2 {

        0% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-50px);
        }

        100% {
            transform: translateY(0px);
        }

    }

    /*Objet Animate*/

    #animation_Objet_3 {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        margin-top: 142%;
        margin-left: 55%;
        width: 45%;
        height: 90%;
        z-index: -1;
        /*padding-left: 3%;*/
        filter: blur(1px);
        opacity: 0.4;
        /*transform: scale(5px); /*Reduce el tamaño sin modificar las dimensiones */

        /*Animation*/
        animation-name: objet3;
        animation-duration: 2s;
        animation-iteration-count: infinite;
        animation-timing-function: ease-in-out;
        animation-delay: 1s;
    }

    @keyframes objet3 {

        0% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-50px);
        }

        100% {
            transform: translateY(0px);
        }

    }

    /*Trabajos */

    #Trabajos {
        scroll-margin-top: 18ex;
    }

    .texto-trabajos .open-trabajos h2 {
        margin-top: 4%;
        color: #fff;
        display: flex;
        justify-content: flex-end;
        margin-right: 12%;
        font-weight: 900;
        font-size: 2.7rem;
    }

    .texto-trabajos {
        text-align: center;
        margin-top: 7%;
    }

    .parrafo__ h1 {

        margin-top: 3%;
        color: #fff;
        text-wrap: pretty;
        margin-left: 10%;
        font-weight: 400;
        line-height: 2rem;
        margin-right: 10%;
        letter-spacing: 2px;

        font-weight: 400;
        font-size: 1.2rem;
    }

    /* Card*/

    .container-grid-projects {

        margin: 5% 5%;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 20px;
    }

    .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: 130px;
    }

    .parrafo {
        text-align: balance;
        padding: 15px;
        font-size: 12px;
    }

    .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;
    }

    .button-card-behance {
        width: 84.1%;
        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: 7.5%;
        margin-top: 12px;
        margin-bottom: 12px;
    }

    .button-card:hover {
        transition: 1s ease;
        background: linear-gradient(to left, #004999, #007AFF);
    }

    a {
        text-decoration: none;
        width: 100%;
    }

    /* Section Herramientas */

    #Herramientas {
        scroll-margin-top: 22ex;
    }

    .texto-Herramientas {
        color: #fff;
        /*border-bottom: 2px solid #fff;*/
        text-align: center;
    }

    .texto-Herramientas h2 {
        margin-top: 4%;
        color: #fff;
        display: flex;
        justify-content: flex-start;
        margin-left: 8.2%;
        font-weight: 900;
        font-size: 2.7rem;
    }

    .parrafo_ h1 {

        margin-top: 3%;
        color: #fff;
        text-wrap: pretty;
        margin-left: 10%;
        font-weight: 400;
        line-height: 2rem;
        margin-right: 10%;
        letter-spacing: 2px;
        font-weight: 400;
        font-size: 1.2rem;
    }


    .container {

        display: grid;
        grid-template-columns: repeat(3, 0.8fr);
        grid-template-rows: repeat(1, 1fr);
        /*grid-template-rows: 100px 1em 1fr;*/
        row-gap: 15px;
        margin-top: 10%;

    }

    .container img {
        justify-self: center;
        align-self: center;
        width: 90px;
        height: 90px;
    }

    .show-popup {
        width: 258%;
        height: 52px;
        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: 19%;
        margin-top: 5%;
    }


    /*Button Designer*/

    .popup-container {

        position: absolute;
        width: 90%;
        height: 100%;
        /*background: #0c0c0ca7;*/
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        pointer-events: none;
        z-index: 1;
        margin-left: 2%;
        margin-top: 20%;
        margin-top: -555px;
    }

    .popup-container.active {
        opacity: 1;
        pointer-events: auto;
        transition: .4s ease;

    }

    .popup-container .popup-box {

        width: 500px;
        background: #d9d9d9;
        border-radius: 6px;
        box-shadow: 0 0 10px #0c0c0c;
        padding: 20px;
        margin-bottom: 83%;
        margin-left: 2%;
        transform: scale(0);

    }

    .popup-container.active .popup-box {
        transform: scale(1);
        transition: .4s ease;
        transition-delay: .25s;

    }

    .popup-box h1 {
        font-weight: 700;
        font-size: 1.5rem;
    }

    .close-btn {

        width: 100%;
        height: 52px;
        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: auto 0;
        cursor: pointer;

    }

    .show-popup {

        width: 258%;
        height: 52px;
        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: 19%;
        margin-top: -10%;

    }

    /* Sobre mí*/

    #Conocer {
        scroll-margin-top: 18ex;
    }

    .texto-About_me h2 {

        margin-top: 4%;
        color: #fff;
        display: flex;
        justify-content: flex-start;
        font-weight: 900;
        font-size: 4rem;
        margin-left: 8.5%;

    }

    .container__About_me {
        margin-top: 5%;
        margin-bottom: 5%;
        margin-left: 5%;
        margin-right: 2%;
        display: grid;
        grid-template-columns: repeat(1, 0.3fr);
        grid-template-rows: repeat(1, 1fr);
        row-gap: 20px;

    }

    .texto-About_me h2 {
        margin-top: 4%;
        color: #fff;
        font-weight: 900;
        font-size: 2.7rem;
    }


    .texto__parrafo {

        color: #fff;
        margin: 0;
        /* Eliminar márgenes para que ocupe el ancho completo */
        padding: 0 5%;
        /* Agregar padding lateral si deseas un poco de espacio */
        width: 390px;
        /* Establecer un ancho fijo de 390 píxeles */
        line-height: 2rem;
        letter-spacing: 2px;
        font-weight: 400;
        font-size: 1.2rem;

    }

    .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;
    }

    .container__About_me .container_About_me .container__img .img_FX .overlay .texto-FX h3 {
        font-size: 25px;
    }

    .container__About_me .container_About_me .container__img .img_FX .overlay .texto-FX h4 {
        font-size: 25px;
    }

    .img_FX:hover .texto-FX {
        transform: opacity(0);
    }

    .container__About_me .container_About_me {
        display: flex;
        margin-left: 20%;
        /*flex-direction: column;*/

    }

    .img_FX {
        position: relative;
        width: 290px;
        margin-top: 5%;
        margin-left: -20%;

    }

    .img_FX img {
        width: 290px;
        display: block;
        margin-top: 125%;
        margin-bottom: -15%;
    }

    /* Footer */

    .logo__ {
        color: #fff;
        margin-left: 12%;
    }

    .footer__ {
        background: #d9d9d9;
        padding: 0px 27px 0px 14.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: medium;
    }
}