* {
    padding: 0;
    border: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    width: 100vw;
    overflow-x: hidden;
    scroll-behavior: smooth !important;
}

body {
    background-color: hsl(0, 0%, 5%);
    font-family: "Inter", sans-serif;
    /* padding-top: 50px; */
    width: 100vw;
    overflow-x: hidden;
}

.hidden {
    opacity: 0;
    transition: all .6s;
    filter: blur(2px);
}
.hidden_left {
    transform: translateX(-10%);
}
.hidden_right {
    transform: translateX(10%);
}
.hidden_bottom {
    transform: translateY(10%);
}
.hidden_top {
    transform: translateY(-10%);
}
.hidden_sm {
    scale: 0.97;
}

.show {
    opacity: 1;
    transform: translateX(0);
    transform: translateY(0);
    filter: blur(0);
    scale: 1;
}


.nav_menu {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    padding: 15px 5%;
    height: 50px;
    width: 100%;
    transition: height 0.2s ease;
    background: linear-gradient(140deg, #0c0c0caf, #0c0c0c81);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav_menu_links {
    display: flex;
    list-style: none;
    display: none;
}

.nav_menu_links li {
    padding: 0 15px;
    font-weight: 200;
}
.nav_menu_links li:first-child {
    padding-left: 0;
}



.nav_menu_opened {
    height: 280px;
}

.nav_menu_btn {
    scale: 1.4;
}

.nav_mobile ul {
    list-style: none;
}
.nav_mobile {
    position: absolute;
    top: 50px;
    opacity: 1;
    transition: opacity 0.5s ease;
}
.nav_mobile li {
    padding-top: 20px;
}

.d-none {
    display: none;
}
.menu-hidden {
    top: -300px;
    opacity: 0;
    transition: opacity 1s ease;
}

.nav_menuTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav_menu a, .nav_name {
    text-decoration: none;
    color: #ffffff8a;
    font-weight: 500;
}

.menu-link {
    transition: all .2s ease;
    font-weight: 500;
}
.menu-link:hover {
    color: #ffffffd5;
}

.nav_mobile a {
    font-weight: 500;
    color: #ffffff9f;
}

.nav_name {
    font-weight: 300;
    color: #ffffffdc;
}

.nav_menu_btn img {
    height: 13px;
}



header {
    padding: 5%;
    height: 100vh;
    
    position: relative;
    overflow: visible;
    text-decoration: none;
}

.header_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.header_title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #ffffffc9;
    margin-bottom: 25px;
    line-height: 1;
    max-width: 340px;
    z-index: 20;
}

.header_top_title {
    font-size: 0.75rem;
    line-height: 1.4;
    font-weight: 800;
    background: linear-gradient(45deg, #fff5, #fff3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    text-transform: uppercase;
    max-width: 300px;
    z-index: 20;
}

.header_title-bold {
    font-weight: 800;
    color: #9ED177;
}

.header_wrapper>p {
    color: #ffffffad;
    font-weight: 300;
    font-size: 0.9rem;
    line-height: 23px;
    margin-bottom: 40px;
    max-width: 390px;
    z-index: 20;
}


.contacto_btn {
    text-decoration: none;
    color: #9ED177;
    font-weight: 400;
    font-size: 1rem;
    display: inline-flex;
    width: fit-content;
    align-items: end;
    position: relative;
    z-index: 20;
}

.contacto_btn::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -7px;
    height: 2px;
    width: 0;
    background-color: #9ED177;
    transition: .6s ease;
}

.contacto_btn:hover::after {
    width: 100%;
}

.contacto_btn>img {
    height: 14px;
    margin-left: 5px;
    padding-bottom: 3px;
}

.trabajos_btn {
    background: linear-gradient(45deg, #fff7, #fff5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 10px;
    transition: all .6s ease;
}
.trabajos_btn::after {
    background: none;
}
.trabajos_btn:hover {
    background-color: #fff5;
}

.header_blur {
    position: absolute;
    z-index: -1;
    height: 450px;
    top: 50%;
    transform: translateY(-50%);
    right: -150px;
    user-select: none;
    overflow: visible;
    will-change: opacity; /* hint de performance */
    opacity: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .header_blur {
    transition: opacity 80ms linear;
  }
}

section {
    padding: 80px 5%;
}

.section_title {
    font-size: 20px;
    text-align: center;
    margin: auto;
    margin-bottom: 70px;
    font-weight: 700;
    background: linear-gradient(45deg, #fff5, #fff3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.solucion_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    margin: auto;
}

.solucion {
    margin: 30px 0;
    width: 100%;
    display: flex;
    align-items: center;
}

.solucion_icon_container {
    width: 50%;
    display: flex;
    justify-content: center;
    position: relative;
}

.solucion_icon_container img {
    width: 100%;
    max-width: 250px;
    user-select: none;
}
.solucion_icon_container img.w-70 {
    width: 70%;
    max-width: 200px;
}

.solucion_text_container {
    width: 50%;
    display: flex;
    justify-content: center;
}

.solucion_text_wrapper {
    display: inline-flex;
    flex-direction: column;
}

.solucion_title {
    color: #ffffff65;
    font-weight: 600;
    font-size: 1.5rem;
    display: inline;
}

.solucion_text {
    color: #9ED177;
    font-weight: 600;
    font-size: 0.8rem;
    display: inline;
}

.align-right {
    text-align: right;
    margin-right: 10px;
}

.solucion_blur_left {
    position: absolute;
    top: -30%;
    left: -20%;
    scale: 200%;
}

.solucion_blur_right {
    position: absolute;
    top: -30%;
    right: -20%;
    scale: 200%;
}

.section_text {
    color: #ffffffb7;
    font-weight: 200;
    font-size: 15px;
    line-height: 27px;
    margin-bottom: 60px;
    margin: 0 5% 5%;
    text-align: center;
}

.section_text_bold {
    font-weight: 700;
    background: linear-gradient(45deg, #fff5, #fff3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.opciones_container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.opcion {
    color: #ffffffa8;
    background: linear-gradient(180deg, #ffffff09, #ffffff05);
    padding: 40px 30px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 200;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    max-width: 370px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.opcion:first-child:hover .opcion_glass {
    backdrop-filter: blur(100px);
    background-color: #0C0C0C00;
}

.opcion_glass {
    position: absolute;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(20px);
    background-color: #0c0c0c4d;
    transition: all .6s ease;
    z-index: -1;
    top: 0;
    left: 0;
}

.opcion-landing {
    color: #ffffff85;
}

.opcion_title {
    font-size: 25px;
    color: #ffffffd7;
    font-weight: 600;
    margin-bottom: 20px;
}

.opcion_title-landing {
    color: #ffffffb7;
}

.opcion_description {
    margin-bottom: 20px;
    line-height: 20px;
}

.opcion_incluye {
    font-weight: 600;
    margin-bottom: 10px;
}

.opcion_items {
    margin-left: 15px;
    margin-bottom: 35px;
}

.opcion_items_italics {
    color: #ffffff57;
    font-style: italic;
}

.opcion_items li {
    margin-bottom: 10px;
}

.opcion_btn {
    width: fit-content;
    color: #ffffffa8;
    font-weight: 600;
    font-size: 18px;
    padding: 10px 15px;
    text-decoration: none;
    background: linear-gradient(120deg, #ffffff1c, #ffffff15);
    background-size: 200%;
    border-radius: 30px;
    transition: all 0.2s ease;
}

.opcion_btn-landing {
    color: #ffffff85;
    background: linear-gradient(120deg, #ffffff13, #ffffff0e);
    background-size: 200%;
}

.opcion_btn-landing:hover {
    background-position: right center;
}

.opcion_btn:hover {
    color: #ffffffaf;
}

.opcion_blur {
    position: absolute;
    bottom: -260px;
    left: -220px;
    z-index: -2;
    width: 200%;
}

footer {
    background: linear-gradient(180deg, #ffffff02, #ffffff01);
    padding: 30px 10px;
    position: relative;
    overflow: hidden;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer .opcion_btn {
    font-size: 15px;
    padding: 7px 15px;
}

.footer_text {
    color: #ffffffad;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    max-width: 90%;
}

.footer_text_color {
    color: #9ED177;
}


.footer_blur {
    position: absolute;
    bottom: -180px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}


/* Contacto */
.contactForm {
    display: flex;
    flex-direction: column;
    align-items: left;
}
.contactForm input, .contactForm textarea {
    /* border: 1px solid #232323; */
    width: 100%;
    outline: none;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 18px;
    color: #ffffff85;
    background: linear-gradient(120deg, #ffffff0c, #ffffff0e);
}
.contactForm input.contactForm_message, .contactForm textarea.contactForm_message {
    height: 180px;
    resize: none;
}
.contactForm input.contactForm_inputError, .contactForm textarea.contactForm_inputError {
    border: 2px solid #ffffffab;
}
.contactForm_submit {
    color: #ffffff85;
    background: linear-gradient(120deg, #ffffff13, #ffffff0e);
    font-weight: 600;
    font-size: 18px;
    padding: 10px 55px;
    text-decoration: none;
    border-radius: 30px;
    width: fit-content;
    margin-top: 10px;
}



.contactForm_statusMessage {
    font-size: 15px;
    transition: all .2s ease;
    color: #ffffffcc;
    text-align: left;
    display: flex;
    flex-direction: column;
}
.contactForm_statusMessage span {
    margin-bottom: 7px;
}


section#proyectos {
    padding-bottom: 0;
}

.proyectos_container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.proyexto_description_container {
    border-radius: 15px;
    background: linear-gradient(180deg, #ffffff09, #ffffff05);
    padding: 20px;
    margin-bottom: 30px;
    height: fit-content;
    backdrop-filter: blur(20px);
    z-index: 50;
}

.proyecto_divide {
    height: 2px;
    width: 80%;
    max-width: 200px;
    background-color: #ffffff0a;
    margin: 40px auto 60px;
}

.proyecto {
    color: #ffffff85;
    max-width: 375px;
    font-size: 14px;
    font-weight: 300;
    display: flex;
    flex-direction: column;
    position: relative;
}

.proyecto_title {
    font-size: 20px;
    color: #ffffffd6;
    margin-bottom: 20px;
}

.proyecto_img {
    width: 100%;
}

.proyecto_description {
    line-height: 150%;
}

.proyecto_description-mb2 {
    margin-bottom: 5px;
}

.proyecto_text-container {
    padding: 20px;
    height: 100%;
}

.proyecto_items {
    margin-bottom: 0;
    min-height: auto;
}

.proyecto_items_italics {
    color: #ffffff57;
    font-style: italic;
    font-size: 0.82rem;
}

.proyecto_link {
    text-decoration: none;
    font-weight: 200;
    line-height: 150%;
    color: #ffffffd2;
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
    padding-bottom: 2px;
    border-bottom: solid 0.5px #ffffff8f;
    cursor: pointer;
    font-size: 14px;
}

.proyecto_link img {
    margin-left: 2px;
    height: 15px;
    opacity: .8;
}

@media only screen and (min-width: 430px) {
    .solucion_title {
        font-size: 2rem;
    }
    .solucion_text {
        font-size: 1rem;
    }
    header>h1{
        font-size: 3rem;
    }
    .opcion_blur {
        bottom: -350px;
    }
}

@media only screen and (min-width: 650px) {
    .nav_mobile {
        font-size: 1.3rem;
    }

    .nav_mobile li {
        padding-top: 30px;
    }

    .nav_menu_opened {
        height: 350px;
    }

    .header_title {
        font-size: 3.5rem;
        max-width: 500px;
        margin-bottom: 30px;
    }
    .header_wrapper>p {
        font-size: 1.1rem;
        line-height: 1.4;
        max-width: 500px;
    }
    .header_blur {
        height: 800px;
        right: -150px
    }

    .section_title {
        font-size: 27px;
    }
    .section_text {
        font-size: 20px;
        line-height: 1.7;
    }

    .solucion_title {
        font-size: 2.5rem;
    }
    .solucion_text {
        font-size: 1.4rem;
    }

    .footer_text {
        font-size: 2.2rem;
    }
}

@media only screen and (min-width: 650px) and (max-width: 749px) {

    


    .opcion {
        max-width: 450px;
        padding: 50px 40px;
    }
    .opcion_title {
        font-size: 35px;
    }
    .opcion_description {
        margin-bottom: 30px;
        line-height: 25px;
    }
    .opcion_items {
        margin-bottom: 45px;
    }
    .opcion_items li {
        margin-bottom: 15px;
    }
    .opcion_btn {
        font-size: 22px;
    }



    .proyecto {
        max-width: 450px;
        font-size: 18px;
    }
    .proyecto_title {
        font-size: 25px;
        padding: 25px 40px;
    }
    .proyecto_text-container {
        padding: 25px 40px;
        padding-bottom: 50px;
    }
}

@media only screen and (min-width: 750px) {
    .header_title {
        font-size: 4rem;
        max-width: 550px;
    }
    .header_top_title {
        font-size: 0.9rem;
        max-width: none;
    }
    .opciones_container {
        flex-direction: row;
        justify-content: center;
        position: relative;
        height: 620px;
    }

    .opcion {
        width: 49%;
        height: 100%;
    }
    .opcion:first-child {
        margin-right: 2%;
    }

    .proyecto {
        margin-bottom: 350px;
        height: 100%;
        flex-direction: row;
        align-items: center;
        max-width: 930px;
    }
    .proyecto_mb400 {
        margin-bottom: 400px;
    }

    .proyecto_img {
        width: 60%;
        height: fit-content;
    }
    .proyexto_description_container {
        position: absolute;
        width: 60%;
        max-width: 700px;
        top: 90%;
        left: 50%;
        transform: translateX(-50%);
    }
    .proyecto_divide {
        display: none;
    }
    .proyecto_text-container {
        margin-bottom: 20px;
    }
    .opcion_items li {
        margin-bottom: 7px;
    }

    footer {
        margin-top: 30px;
    }
    .footer_blur {
        bottom: -200px;
    }
}

@media only screen and (min-width: 900px) {
    .nav_menu_btn {
        display: none;
    }
    .nav_menu_links {
        display: flex;
    }
    
    .header_title {
        font-size: 4.5rem;
        max-width: 600px;
    }

    .header_blur {
        right: -50px;
    }

    .trabajos_btn {
        margin-right: 15px;
    }

    
    .opcion {
        max-width: 390px;
    }
    .opciones_container {
        height: 580px;
    }

    .section_text {
        max-width: 720px;
        margin: auto;
    }


    .proyecto {
        font-size: 16px;
    }

    .footer_text {
        font-size: 2.8rem;
    }
}

@media only screen and (min-width: 1000px) {
    .nav_menu {
        padding: 15px 10%;
    }

    header {
        padding: 10%;
    }
    .header_title {
        font-size: 5rem;
        max-width: 700px;
    }
    .proyecto_items_italics {
        font-size: 0.9rem;
    }

    section {
        padding: auto 10%;
    }

    .footer_text {
        font-size: 3rem;
    }
    footer .opcion_btn {
        font-size: 18px;
    }
    .footer_blur {
        scale: 1.2;
        transform: translateX(-40%);
    }
}


@media only screen and (min-width: 1200px) {
    .header_title {
        font-size: 6rem;
        max-width: 800px;
        margin-bottom: 35px;
    }
    .header_top_title {
        font-size: 1rem;
    }
    .header_wrapper>p {
        font-size: 1.3rem;
        max-width: 600px;
    }
    .contacto_btn {
        font-size: 1.3rem;
    }
    
    section {
        padding: 100px 5%;
    }

    .section_text {
        max-width: 850px;
    }

    .solucion_container {
        max-width: 800px;
    }

    .solucion_icon_container img {
        max-width: 300px;
    }

    .solucion_title {
        font-size: 3rem;
    }
    .solucion_text {
        font-size: 2rem;
    }
    .solucion {
        margin: 50px 0;
    }
    .solucion_container {
        margin: -50px auto;
    }

    footer {
        padding: 50px 10px;
    }

    .footer_text {
        font-size: 3.5rem;
    }

    footer .opcion_btn {
        font-size: 22px;
    }
}   

@media only screen and (min-width: 1400px) {
    .nav_menu {
        padding: 15px 14%;
    }
    .nav_menu_links li {
        padding: 0 20px;
    }
    header {
        padding: 14%;
    }
    .header_blur {
        right: -100px;
        height: 930px;
    }

    .solucion_container {
        max-width: 950px;
    }
    .solucion_title {
        font-size: 3.5rem;
    }

    .section_text {
        font-size: 1.4rem;
        max-width: 950px;
    }

    .solucion_icon_container img {
        max-width: 400px;
    }


    .proyecto {
        max-width: 1100px;
        font-size: 1.2rem;
    }
    .proyecto_text-container {
        padding-left: 40px;
    }
    .proyecto_items_italics {
        font-size: 1rem;
    }


    .footer_text {
        font-size: 3.7rem;
    }
}

@media only screen and (min-width: 1600px) {
    .nav_menu {
        padding: 15px 17%;
    }
    header {
        padding: 17%;
    }

    .header_blur {
        right: -50px;
    }

    section {
        padding: 150px 5%;
    }

    .section_title {
        font-size: 2rem;
    }

    .solucion_title {
        font-size: 3.5rem;
    }

    .section_text {
        font-size: 1.4rem;
        max-width: 950px;
    }

    .opcion {
        padding: 40px 35px;
    }

    .proyecto_text-container {
        padding-left: 60px;
    }

}

@media only screen and (min-width: 1800px) {
    .header_blur {
        right: 0px;
    }
    .nav_menu {
        padding: 15px 20%;
    }
    header {
        padding: 20%;
    }

    .section_text {
        max-width: 1150px;
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .opcion {
        max-width: 450px;
        line-height: 27px;
    }
    .opcion_items li {
        margin-bottom: 5px;
    }
    .opcion_title {
        font-size: 1.8rem;
    }
    .opciones_container {
        height: 620px;
    }
    .opcion_blur {
        bottom: -400px;
    }
}