:root {
    --font1: 'Bebas Neue', sans-serif;
    --font2: 'ruda', sans-serif;
    --color00: #ff005d;
    --color01: #6c788e;
    --color02: #a6aec1;
    --color-bento-box: #e4e5eb;
    --color-transparent-bento-box: linear-gradient(to right, transparent, var(--color-bento-box));
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: black;
}

body {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #F2F2F2;
}
header {
    width: 95%;
    height: 5rem;
    display: flex;
    justify-content: space-between;
    background-color: var(--color-bento-box);
    padding: 0 5rem;
    margin-top: 1rem;
    border-radius: 1rem;
    border-bottom: 4px solid var(--color01);
    /* box-shadow: 0px 1px 20px 1px #cfd5e1; */
}
.logo-pagina {
    width: auto;
    height: 100%;
    display: grid;
    place-items: center;
}
.logo-pagina img {
    width: auto;
    height: 4rem;
}
nav {
    width: fit-content;
    height: 100%;
    display: grid;
}
.nav-links {
    width: fit-content;
    height: 100%;
    display: flex;
    gap: 5rem;
}
/* .nav-links > a {
    width: fit-content;
} */
.nav-link {
    height: 100%;
    font-size: 1.225rem;
    font-family: var(--font2);
    font-weight: 600;
    color: #6c788e;
    list-style-type: none;
}
.nav-link > a {
    display: block;
    align-content: center;
    width: auto;
    height: 100%;
}
.nav-link a:hover {
    cursor: pointer;
    color: var(--color00);
}
.nav-link-articulos {
    max-width: 10rem;
    width: 100%;
    display: none;
    padding: 1rem 4px;
    gap: 1rem;
    background-color: #a6aec174;
    border-radius: 0 0 .25rem .25rem;
}
.nav-link:hover > .nav-link-articulos {
    display: flex;
    flex-direction: column;
    position: absolute;
}

main {
    max-width: 1440px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cont-card {
    width: 100%;
    height: fit-content;
    padding: 4rem;
}
.cont-bruno {
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
}
.subcont-bruno-top {
    width: 100%;
    height: fit-content;
    display: flex;
    gap: 10rem;
    align-items: center;
}
.subcont-bruno-top-left {
    width: 50%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}
h1 {
    width: 30rem;
    font-size: 7rem;
    font-weight: 400;
    letter-spacing: .75rem;
    font-family: var(--font1);
}
.profession {
    width: 100%;
    height: 4rem;
    display: grid;
    border-radius: 2rem;
}
h2 {
    font-size: 2rem;
    font-family: var(--font2);
    font-weight: 300;
}
.subcont-bruno-top-right {
    width: 50%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    place-items: center;
    gap: .5rem;
}
.subcont-bruno-top-right img {
    width: 25vw;
    height: 30vw;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: -10px 10px 30px 10px rgba(0, 0, 0, 0.3);
}
.subcont-bruno-bottom {
    width: 100%;
    height: fit-content;
    display: flex;
    gap: 8px;
    justify-content: end;
    align-items: center;
}
.subcont-bruno-bottom-flecha {
    width: auto;
    height: fit-content;
    display: grid;
    place-items: center;
}
.flecha-icon {
    width: 1.5rem;
    height: auto;
}
.subcont-bruno-bottom p{
    width: 10rem;
    height: 3rem;
    display: flex;
    align-items: center;
    font-size: 1.125rem;
    font-family: var(--font2);
}

.main-bento-box {
    width: 100%;
    height: fit-content;
    display: grid;
    grid-template-columns: repeat(6, 200px);
    grid-template-rows: repeat(5, 110px);
    gap: .5rem;
}
.cont-bento {
    border-radius: 1rem;
    overflow: hidden;
    padding: 1rem 1.5rem;
    gap: 2rem;
}

.bento-quien-soy {
    grid-column: 1/5;
    grid-row: 1/3;
    background: var(--color-transparent-bento-box);
    display: flex;
    flex-direction: column;
}
.bento-quien-soy p {
    max-width: 90%;
    font-size: 1rem;
    letter-spacing: .05rem;
    line-height: 1.325rem;
    font-family: var(--font2);
    color: var(--color01);
}

.quien-soy-img {
    grid-column: 1/3;
    grid-row: 3/6;
    padding: 0;
}
.quien-soy-img img {
    width: auto;
    height: 100%;
}

.bento-formacion {
    grid-column: 3/7;
    grid-row: 4/6;
    display: flex;
    flex-direction: column;
    background: var(--color-transparent-bento-box);
}
.edu-exlab {
    width: 100%;
    height: fit-content;
    display: flex;
    gap: 5rem;
}
.edexla {
    width: 40%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.edexla li {
    font-size: .8rem;
    font-family: var(--font2);
    color: var(--color01);
    margin-left: 2rem;
}

.bento-habilidades {
    grid-column: 5/7;
    grid-row: 1/4;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--color-transparent-bento-box);
}
.bento-habilidades h3 {
    margin-bottom: 2rem;
}
.iconos-len-hab {
    width: 100%;
    height: fit-content;
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-left: 2rem;
}

.bento-contacto {
    grid-column: 3/5;
    grid-row: 3/4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 5rem;
    padding-right: 5rem;
    background: var(--color-transparent-bento-box);
}
.cont-contacto {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    text-align: center;
}
.contacto-bottom {
    width: 100%;
    height: fit-content;
    justify-content: space-between;
    display: flex;
}
.contacto-res-tit {
    display: none;
}


.bottom-bento-box {
    width: 100%;
    height: fit-content;
    display: grid;
    grid-template-columns: repeat(6, 200px);
    grid-template-rows: repeat(2, 110px);
    gap: .5rem;
    margin-top: .7rem;
    margin-bottom: 1.7rem;
}

.galeria-trabajos {
    grid-column: 1/3;
    grid-row: 1/3;
    padding: 0;
}
.cont_slider {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    margin: 0;
}
.container-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: transparent;
    overflow: hidden;
}
.carruseles {
    width: 2000%;
    height: 100%;
    display: flex;

}
.slider-section {
    width: calc(100% / 20);
    height: 100%;
}
.slider-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 15px; */
}
.btn-left,
.btn-right {
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    position: absolute;
    top: 50%;
    font-size: 1.5rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    padding: 5px;
    font-weight: 600;
    cursor: pointer;
    color: #ff000081;
    transform: translate(0,-50%);
    transition: .5s ease;
    user-select: none;
}
.btn-left:hover,
.btn-right:hover {
    background-color: #333333d4;
    color: #fff;
}
.btn-left {
    left: 10px;
}
.btn-right {
    right: 10px;
}

.bento-mi-trabajo {
    grid-column: 3/5;
    grid-row: 1/3;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--color-transparent-bento-box);
}
.bento-mi-trabajo p {
    font-size: 1rem;
    letter-spacing: .05rem;
    line-height: 1.325rem;
    font-family: var(--font2);
    font-weight: 400;
    color: var(--color01);
}
.linea-mi-trabajo {
    width: 50%;
    border-bottom: 2px solid white;
}
.bento-mi-trabajo a {
    color: rgb(92, 92, 255);
}

.bento-img-pyme {
    grid-column: 5/6;
    grid-row: 1/3;
    display: grid;
    place-items: center;
    padding: 0;
    position: relative;
}
.bento-img-pyme img {
    width: auto;
    height: 100%;
    position: absolute;
}

.bento-meta {
    grid-column: 6/7;
    grid-row: 1/3;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--color-transparent-bento-box);
}
.bento-meta p{
    font-size: 1rem;
    font-family: var(--font2);
    font-weight: 400;
    color: var(--color01);
}

    /* Pagina formulario email */

.cont-main-formulario {
    width: 100%;
    min-height: 100vh;
    display: grid;
    place-items: center;
}
.formulario-card {
    max-width: 100%;
    width: 25rem;
    height: fit-content;
    display: grid;
    place-items: center;
    background-color: #a6aec1;
    border-radius: 1rem;
    padding: 2rem;
}
form {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: .7rem;
    font-size: 1.2rem;
    font-family: var(--font1);
    font-weight: 400;
    letter-spacing: .2rem;
}
input {
    width: 100%;
    height: 2.2rem;
    border-radius: .3rem;
    border: none;
    font-size: 1rem;
    font-family: var(--font2);
    font-weight: 400;
    padding: 0 1rem;
    color: black;
}
textarea {
    width: 100%;
    height: 7rem;
    font-size: 1rem;
    font-family: var(--font2);
    color: black;
    padding: 1rem;
}
.main-button {
    background-color: #6c788e;
    font-size: 1.3rem;
    font-family: var(--font2);
    color: white;
    margin-top: 2rem;
}
.main-button:hover {
    cursor: pointer;
    background-color: rgb(133, 152, 196);
}
.titulo-formulario {
    margin-bottom: 3rem;
    text-align: center;
}

h5 {
    font-size: .8rem;
    font-family: var(--font2);
    font-weight: 600;
}
h4 {
    font-size: 1.2rem;
    font-family: var(--font2);
    font-weight: 600;
}
h3 {
    font-size: 2.5rem;
    font-family: var(--font1);
    font-weight: 400;
    letter-spacing: .3rem;
}
.iconos-len-hab img {
    width: 2rem;
    height: auto;
}
.icon-contacto {
    width: auto;
    height: fit-content;
    display: grid;
    place-items: center;
}
.bento-contacto img {
    width: 3rem;
    height: auto;
}
a {
    text-decoration: none;
    color: #6c788e;
}

/* ----- Resposive desig: movile ----- */

@media (max-width: 520px) {
    /* body {
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: black;
    } */

    header {
        width: 100%;
        height: fit-content;
        /* display: flex; */
        justify-content: space-between;
        align-items: center;
        /* background-color: var(--color-bento-box); */
        padding: 0 1rem;
        margin-top: 0;
        border-radius: 0 0 .5rem .5rem;
        border-bottom: 2px solid var(--color01);
        /* box-shadow: 0px 1px 20px 1px #cfd5e1; */
    }
    .nav-links {
        /* width: fit-content; */
        /* height: auto; */
        display: flex;
        flex-direction: column;
        gap: 0;
        align-items: end;
    }
    /* .logo-pagina {
        width: auto;
        height: 100%;
        display: grid;
        place-items: center;
    } */
    .logo-pagina img {
        width: auto;
        height: 2rem;
    }
    /* nav {
        width: fit-content;
        height: 100%;
        display: grid;
    }
    .nav-links {
        width: fit-content;
        height: 100%;
        display: flex;
        gap: 3rem;
    }
    .nav-link {
        height: 100%;
        font-size: 1.225rem;
        font-family: var(--font2);
        font-weight: 600;
        color: #6c788e;
        list-style-type: none;
    }
    .nav-link > a {
        display: block;
        align-content: center;
        width: 100px;
        height: 100%;
    }
    .nav-link a:hover {
        cursor: pointer;
        color: var(--color00);
    } */
    .nav-link-articulos {
        position: absolute;
        right: 0rem;
        /* max-width: 10rem;
        width: 100%;
        display: none;
        padding: 1rem 4px;
        gap: 1rem;
        background-color: #a6aec174;
        border-radius: 0 0 .25rem .25rem; */
    }
    .nav-link:hover > .nav-link-articulos {
        display: flex;
        flex-direction: column;
        position: absolute;
    }
    /* ul {
        width: fit-content;
        height: auto;
        display: flex;
        gap: 3rem;
    } */
    li {
        font-size: 1rem;
        /* font-family: var(--font2);
        font-weight: 600;
        color: #6c788e;
        list-style-type: none; */
    }

    main {
        max-width: 100%;
        /* height: fit-content; */
        /* display: flex;
        flex-direction: column;
        align-items: center; */
        gap: .5rem;
    }
    
    .cont-card {
        /* width: 100%; */
        /* height: fit-content; */
        padding: 1rem;
    }
    .cont-bruno {
        height: 100vh;
        /* display: flex; */
        /* flex-direction: column; */
        /* justify-content: center; */
        gap: 2rem;
    }
    .subcont-bruno-top {
        /* width: 100%; */
        /* height: fit-content; */
        /* display: flex; */
        flex-direction: column-reverse;
        gap: 2rem;
        /* align-items: center; */
    }
    .subcont-bruno-top-left {
        width: 100%;
        /* height: fit-content; */
        /* display: flex; */
        /* flex-direction: column; */
        gap: 3rem;
    }
    h1 {
        width: 100%;
        font-size: 5rem;
        text-align: center;
        /* font-weight: 400; */
        letter-spacing: .3rem;
        line-height: 5.2rem;
        /* font-family: var(--font1); */
    }
    .profession {
        /* width: 100%; */
        height: 3rem;
        /* display: grid; */
        /* border-radius: 2rem; */
        place-items: center;
    }
    h2 {
        font-size: 1.5rem;
        /* font-family: var(--font2); */
        /* font-weight: 300; */
    }
    .subcont-bruno-top-right {
        width: 100%;
        display: grid;
        place-items: center;
        /* height: fit-content; */
    }
    .subcont-bruno-top-right img {
        width: 50vw;
        height: 50vw;
        object-fit: cover;
        box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.3);
        /* height: auto; */
        /* object-fit: cover; */
        border-radius: 50%;
    }
    /* .subcont-bruno-bottom {
        width: 100%;
        height: fit-content;
        display: flex;
        gap: 1rem;
        justify-content: end;
        align-items: center;
    } */
    /* .subcont-bruno-bottom-flecha {
        width: auto;
        height: fit-content;
        display: grid;
        place-items: center;
    } */
    .flecha-icon {
        width: 1.3rem;
        /* height: auto;
        transform: rotate(270deg); */
    }
    /* .subcont-bruno-bottom p{
        width: 10rem;
        height: 3rem;
        display: flex;
        align-items: center;
        font-size: 1.125rem;
        font-family: var(--font2);
    } */
    
    .main-bento-box {
        width: 100%;
        height: fit-content;
        display: grid;
        grid-template-columns: repeat(2, 49%);
        grid-template-rows: repeat(7, 110px);
        gap: .5rem;
        padding: 0 .5rem;
    }
    .cont-bento {
        /* border-radius: .5rem; */
        /* overflow: hidden; */
        padding: 1rem 1rem;
        gap: 1rem;
    }
    
    .bento-quien-soy {
        grid-column: 1/3;
        /* grid-row: 1/3; */
        /* background: linear-gradient(to right, black, #210042); */
        /* display: flex; */
        /* flex-direction: column; */
    }
    .bento-quien-soy p {
        max-width: 100%;
        font-size: .75rem;
        letter-spacing: .03rem;
        line-height: 1.125rem;
        text-align: justify;
        /* font-family: var(--font2); */
        /* color: var(--color01); */
    }
    
    .quien-soy-img {
        grid-column: 1/2;
        grid-row: 3/6;
        /* background-color: aliceblue; */
        padding: 0;
        position: relative;
    }
    .quien-soy-img img {
        position: absolute;
        /* width: auto; */
        /* height: 100%; */
        left: -8rem;
    }
    
    .bento-formacion {
        grid-column: 1/3;
        grid-row: 6/8;
        /* display: flex; */
        /* flex-direction: column; */
        /* background: linear-gradient(to right, black, #172F39); */
    }
    .edu-exlab {
        /* width: 100%; */
        /* height: fit-content; */
        /* display: flex; */
        gap: 1rem;
    }
    .edexla {
        width: 50%;
        /* height: fit-content; */
        /* display: flex; */
        /* flex-direction: column; */
        gap: .5rem;
    }
    .edexla li {
        font-size: .6rem;
        /* font-family: var(--font2);
        color: var(--color01); */
        margin-left: 1rem;
    }
    
    .bento-habilidades {
        grid-column: 2/3;
        grid-row: 4/6;
        /* display: flex; */
        /* flex-direction: column; */
        gap: 1rem;
        /* background: linear-gradient(to right, black, #473232); */
    }
    .bento-habilidades h3 {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
    .iconos-len-hab {
        /* width: 100%;
        height: fit-content;
        display: flex; */
        gap: 1rem;
        /* align-items: center; */
        margin-left: 0;
    }
    .contacto-bottom {
        width: 100%;
        display: flex;
        gap: 1rem;
        justify-content: center;
    }
    .bento-contacto {
        grid-column: 2/3;
        grid-row: 3/4;
        display: flex;
        flex-direction: column;
        /* justify-content: space-between;
        align-items: center; */
        padding-left: 1rem;
        padding-right: 1rem;
        /* background: linear-gradient(to right, black, #494434); */
    }
    .contato-res {
        display: none;
    }
    .contacto-res-tit {
        display: flex;
    }
    h5 {
        display: flex;
    }
    
    
    .bottom-bento-box {
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        /* grid-template-columns: repeat(6, 200px);
        grid-template-rows: repeat(2, 110px); */
        gap: .5rem;
        margin-top: 0;
        padding: 0 .5rem;
        /* margin-bottom: 1.7rem; */
    }
    
    .galeria-trabajos {
        width: 100%;
        grid-column: none;
        grid-row: none;
        padding: 0;
    }
    /* .cont_slider {
        width: 100%;
        height: 100%;
        display: grid;
        place-items: center;
        margin: 0;
    } */
    /* .container-carousel {
        position: relative;
        width: 100%;
        height: 100%;
        background-color: transparent;
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.66);
        border-radius: 0;
        overflow: hidden;
    } */
    /* .carruseles {
        width: 2000%;
        height: 100%;
        display: flex;
    } */
    /* .slider-section {
        width: calc(100% / 20);
        height: 100%;
    } */
    /* .slider-section img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 15px;
    } */
    .btn-left,
    .btn-right {
        width: 2rem;
        height: 2rem;
        /* display: grid;
        place-items: center;
        position: absolute;
        top: 50%;
        font-size: 1.5rem;
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 50%;
        padding: 5px;
        font-weight: 600;
        cursor: pointer;
        color: #ff000081;
        transform: translate(0,-50%);
        transition: .5s ease;
        user-select: none; */
    }
    /* .btn-left:hover,
    .btn-right:hover {
        background-color: #333333d4;
        color: #fff;
    }
    .btn-left {
        left: 10px;
    }
    .btn-right {
        right: 10px;
    } */
    
    .bento-mi-trabajo {
        grid-column: none;
        grid-row: none;
        width: 100%;
        height: fit-content;
        /* display: flex;
        flex-direction: column; */
        gap: .5rem;
        background: linear-gradient(to bottom, transparent, var(--color-bento-box));
    }
    .bento-mi-trabajo p {
        font-size: .75rem;
        /* letter-spacing: .05rem;
        line-height: 1.325rem;
        font-family: var(--font2);
        font-weight: 400; */
    }
    /* .linea-mi-trabajo {
        width: 50%;
        border-bottom: 2px solid white;
    } */
    /* .bento-mi-trabajo a {
        color: rgb(92, 92, 255);
    } */
    
    .bento-img-pyme {
        width: 100%;
        height: 50vh;
        grid-column: none;
        grid-row: none;
        display: grid;
        /* place-items: center;
        padding: 0;
        position: relative; */
    }
    .bento-img-pyme img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: none;
        top: 0;
    }
    
    .bento-meta {
        height: fit-content;
        grid-column: none;
        grid-row: none;
        /* display: flex; */
        /* flex-direction: column; */
        gap: .5rem;
        background: linear-gradient(to bottom, transparent, var(--color-bento-box));
    }
    .bento-meta p{
        font-size: 1rem;
        margin-bottom: 2rem;
        /* font-family: var(--font2);
        font-weight: 400; */
    }
    
        /* Pagina formulario email */
    
    /* .cont-main-formulario {
        width: 100%;
        min-height: 100vh;
        display: grid;
        place-items: center;
    } */
    .formulario-card {
        /* max-width: 100%; */
        width: 95%;
        /* height: 40rem;
        display: grid;
        place-items: center;
        background-color: #272727;
        border-radius: 1rem;
        padding: 2rem; */
    }
    /* form {
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        gap: .7rem;
        font-size: 1.2rem;
        font-family: var(--font1);
        font-weight: 400;
        letter-spacing: .2rem;
    }
    input {
        width: 100%;
        height: 2.2rem;
        border-radius: .3rem;
        border: none;
        font-size: 1rem;
        font-family: var(--font2);
        font-weight: 400;
        padding: 0 1rem;
        color: black;
    }
    textarea {
        width: 100%;
        height: 7rem;
        font-size: 1rem;
        font-family: var(--font2);
        color: black;
        padding: 1rem;
    }
    .main-button {
        background-color: rgb(72, 72, 150);
        font-size: 1.3rem;
        font-family: var(--font2);
        color: white;
        margin-top: 2rem;
    }
    .main-button:hover {
        cursor: pointer;
        background-color: rgb(76, 76, 230);
    }
    .titulo-formulario {
        margin-bottom: 3rem;
    } */
    
    
    h4 {
        font-size: 1rem;
        font-family: var(--font2);
        font-weight: 600;
    }
    h3 {
        font-size: 2.5rem;
        font-family: var(--font1);
        font-weight: 400;
        letter-spacing: .3rem;
    }
    .iconos-len-hab img {
        width: 1.25rem;
        height: auto;
    }
    .icon-contacto {
        width: auto;
        height: fit-content;
        display: grid;
        place-items: center;
    }
    .bento-contacto img {
        width: 2rem;
        height: auto;
    }
    a {
        text-decoration: none;
    }
}