@font-face {
    font-family: "poppins";
    src: url("../fonts/Poppins-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "poppins", sans-serif;
    scroll-behavior: smooth;
    scroll-padding: 10rem;
}

body{
    min-height: 100vh;
    min-width: 100vw;
}

.section-main{
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: url(../img/portada.jpg) no-repeat 50% 50%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 20px 100px;
}


.descripcion{
    display: flex;
    flex-direction: column;
    margin-left: 20px;
    text-align: center;
}

.nombre{
    color: #292929;
    font-size: 60px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 80px;
    text-shadow: 30px 5px 30px rgba(255, 255, 255, 0.995);
}

.job{
    color: #434343;
    font-size: 30px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 80px;
}

header{
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 100px;
    transition: 0.6s;
}

header.sticky{
    background: #444d6f;
    padding: 15px 100px;
}

.brand{
    width: 70px;
    height: 70px;
    text-decoration: none;
}

.menu{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu a{
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    margin: 0 30px;
    padding: 0 10px;
    border-radius: 20px;
    transition: 0.3s;
    transition-property: color, background;
}

.menu a:hover, .menu a.active{
    color: #000;
    background: #fff;
}


.btn{
    color: #fff;
    font-size: 25px;
    cursor: pointer;
    display: none;
}

.section-2{
    min-width: 100vw;
    min-height: 100vh;
    background: #f8ecf5;
    padding: 20px 100px;
}

.section-2__sobremi > *{
    box-shadow: 10px 6px 37px -13px rgba(51,51,51,0.74);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}


.section-2__sobremi{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-template-areas: 
    "foto parrafo-1 parrafo-1"
    "parrafo-2 parrafo-2 parrafo-2";
}

.foto__perfil{
    width: 350px;
    height: 360px;
    border-radius: 150px;
    line-height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    grid-area: foto;
    margin-top: 50px;
    margin-left: -30px;
    object-fit: cover;
}

.parrafo-1{
    grid-area: parrafo-1;
}

.parrafo-2{
    grid-area: parrafo-2;
}


.section-2 h2{
    color: #000;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 20px 0;
}

.section-2 p{
    color: #000;
    font-size: 18px;
    margin: 30px 0;
}

.parrafo-1 h2{
    margin-top: 60px;
}

.parrafo-1 p{
    margin-top: 40px;
}

.servicios{
    width: 100%;
    min-height: 100vh;
    background-color: #6a79a9;
}

.servicios h2{
    color: rgba(255, 255, 255, 0.5);
    font-size: 50px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 70px 0;
    text-align: center;
}

.servicios h4{
    color: rgba(255, 255, 255, 0.5);
    font-size: 30px;
    font-weight: 700;
    margin: 20px 0;
    text-align: center;
}

.servicios p{
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    margin: 30px 20px;
}

.columnas > *{
    box-shadow: 10px 6px 37px -13px rgba(51,51,51,0.74);
    border-radius: 10px;
    margin-right: 25px;
    text-align: center;
}


.servicios .columnas{
   display: flex;
   flex-wrap: wrap;
   text-align: center;
   padding: 10px;
   transition: all 0.5s ease;
   cursor: pointer;
}

.columna-1{
    flex: 1;
}

.columna-2{
    flex: 1;
}

.columna-2 p, .columna-3 p{
    margin-top: 70px;
}

.columna-3{
    flex: 1;
}

.columna-1:hover, .columna-2:hover, .columna-3:hover{
    transform: scale(1.1);
}

.block{
    width: 100%;
    height: auto;
    border-radius: 25px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}


.footer__container{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer__contacto{
    width: 1100px;
    height: 800px;
    border-radius: 20px;
    background-color: #6a79a9;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    padding: 20px;
    margin:80px 0 40px 0;
    box-shadow: 10px 6px 37px gray;
}


.contacto__title{
    font-size: 50px;
    font-weight: bold;
    padding: 20px;
}

.contacto__mail{
    margin: 10px;
}

.footer__contacto .button{
    width: 220px;
    height: 70px;
    border: 2px solid white;
    border-radius: 50px;
    font-size: 25px;
    cursor: pointer;
    font-weight: 600;
    color: white;
    transition: all 0.2s ease-in-out;
    background-color: transparent;
}

.footer__contacto  .button i{
    color: white;
    transition: all 0.2s ease-in-out;
}


.footer__contacto .button:hover{
    color: #444d6f;
    background-color: white;
}


.footer__contacto .button:hover i{
   color: #444d6f;
}


.contacto__rrss{
    width: 100%;
    height: 600px;
    background-color: #f8ecf5;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.contacto__iconos{
    width: 300px;
    height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease-in;
    font-size: 30px;
    transition: all 0.2s ease-in;
    text-align: center;
    margin: 40px;
}

.bi-linkedin, .bi-envelope{
    font-size: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #444d6f;
    margin-top: 70px;
    cursor: pointer;
    background-color: transparent;
}

.contacto__iconos a i:hover{
    background-color: #fff;
    color: #444d6f;
    border: 1px solid white;
    border-radius: 50px;
}

.derechos{ 
    padding: 20px;
    margin: 20px;
}

/* RESPONSIVE */

@media (max-width: 1060px){
    header .btn{
        display: block;
    }

    header .menu{
        position: fixed;
        background: #444d6f;
        flex-direction: column;
        min-width: 350px;
        height: 100vh;
        top: 0;
        right: -100%;
        padding: 80px 40px;
        transition: 0.7s ease-in-out;
        transition-property: right;
    }

    header .menu.active{
        right: 0;
    }

    header .menu .bi-x{
        position: absolute;
        top: 0;
        left: 0;
        margin: 25px;
    }

    header .menu a{
        display: block;
        font-size: 20px;
        margin: 20px;
        margin-right: 50px;
        padding: 0 15px;
    }

    .brand{
        width: 50px;
        height: 50px;
        margin-top: 5px;
    }

    .foto__perfil{
        width: 300px;
        height: 300px;
        border-radius: 100%;
        margin-left: -50px;
    }

    .columnas{
        margin-left: 25px;
    }

    .contacto__title{
        font-size: 35px;
    }

    .nombre{
        font-size: 40px;
    }

    .job{
        font-size: 18px;
    }
}


@media (max-width:1024px){
    .foto__perfil{
        width: 250px;
        height: 250px;
        border-radius: 100%;
        margin-left: -80px;
    }

    .section-main h1, .job{
        font-size: 50px;
        line-height: 60px;
    }

    .section-2__sobremi{
        width: 90vw;
    }

    .parrafo-1{
        width: 650px;
        margin-left: -80px;
    }

    .parrafo-2{
        width: 950px;
        margin-left: -70px;
    }

    .columnas{
        margin-left: 30px;
    }

    .contacto__title{
        font-size: 50px;
    }

    .contacto__title{
        font-size: 35px;
    }

    .nombre{
        font-size: 40px;
    }

    .job{
        font-size: 20px;
    }
}


@media (max-width:980px){

    .brand{
        left: -50px;
    }

    header.sticky{
        background: #444d6f;
        padding: 15px 50px;
    }

    header .btn{
        display: block;
        margin-right: 120px;
    }

    header .menu{
        position: fixed;
        background: #444d6f;
        flex-direction: column;
        min-width: 400px;
        height: 100vh;
        top: 0;
        right: -100%;
        padding: 80px 20px;
        transition: 0.7s ease-in-out;
        transition-property: right;
        margin-right: 30px;
    }

    header .menu.active{
        right: 0;
    }

    header .menu .bi-x{
        position: absolute;
        top: 0;
        left: 0;
        margin: 25px;
    }

    header .menu a{
        display: block;
        font-size: 20px;
        margin: 20px;
        margin-right: 75px;
        padding: 0 15px;
    }

    .section-2__sobremi > *{
        padding: 5px;
    }

    .section-2__sobremi{
        width: 100vw;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(3, 1fr);
        grid-template-areas: 
        "foto"
        "parrafo-1 "
        "parrafo-2 ";
    }

    .foto__perfil{
        width: 350px;
        height: 360px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 100%;
        border: 2px solid #f8ecf5;
        margin-top: 100px;
        margin-left: 130px;
        margin-bottom: -500px;
    }

    .parrafo-1, .parrafo-2{
        width: 100%;
        margin-left: -100px;
    }

    .footer__contacto{
        display: flex;
        flex-direction: column;
        width: 600px;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .nombre{
        font-size: 40px;
    }

    .job{
        font-size: 18px;
    }
}

@media (max-width:768px){

    .brand{
        width: 50px;
        height: 50px;
        margin-left: 10px;
    }

    header.sticky{
        background: #444d6f;
        padding: 15px 50px;
    }

    header .btn{
        display: block;
        margin-right: 120px;
    }

    header .menu{
        position: fixed;
        background: #444d6f;
        flex-direction: column;
        min-width: 400px;
        height: 100vh;
        top: 0;
        right: -100%;
        padding: 80px 20px;
        transition: 0.7s ease-in-out;
        transition-property: right;
        margin-right: 30px;
    }

    header .menu.active{
        right: 0;
    }

    header .menu .bi-x{
        position: absolute;
        top: 0;
        left: 0;
        margin: 25px;
    }

    header .menu a{
        display: block;
        font-size: 20px;
        margin: 20px;
        margin-right: 75px;
        padding: 0 15px;
    }

    .section-2__sobremi > *{
        padding: 5px;
    }

    .section-2__sobremi{
        width: 100vw;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(3, 1fr);
        grid-template-areas: 
        "foto"
        "parrafo-1 "
        "parrafo-2 ";
    }

    .foto__perfil{
        width: 350px;
        height: 360px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 100%;
        border: 2px solid #f8ecf5;
        margin-top: 100px;
        margin-left: 90px;
        margin-bottom: -500px;
    }

    .parrafo-1, .parrafo-2{
        width: 100%;
        margin-left: -100px;
    }

    .footer__contacto{
        display: flex;
        flex-direction: column;
        width: 600px;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin-top: 300px;
    }

    .columnas > *{
        box-shadow: none
    }

    .descripcion{
        padding-top: 100px;
    }

    .nombre{
        font-size: 40px;
    }

    .job{
        font-size: 18px;
    }
}

@media(max-width:426px){

    .brand{
        display: none;
    }

    header .bi-list{
        margin-left: 250px;
        color: #000;
    }

    header .menu{
        padding-bottom: 270px;
    }

    header .menu a{
        display: block;
        font-size: 20px;
        margin: 20px;
        margin-right: 70px;
        padding: 0 15px;
    }

    .descripcion{
        display: flex;
        font-size: 30px;
        text-align: center;
        margin-right: 10px;
    }

    .foto__perfil{
        width: 250px;
        height: 260px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 100%;
        border: 2px solid #f8ecf5;
        margin-top: 200px;
        margin-left: -15px;
        margin-bottom: -500px;
    }

    .parrafo-1{
        margin-top: -100px;
        margin-bottom: -500px;
    }

    .parrafo-2{
        margin-top: -200px;
    }

    .section-2__sobremi > *{
        box-shadow: none;
    }

    .footer__contacto{
        width: 300px;
    }

    .contacto__title{
        font-size: 20px;
    }

}

@media (max-width: 376px){

    .brand{
        display: none;
    }

    header .bi-list{
        margin-left: 200px;
        color: #000;
    }

    header .menu{
        padding-top: 200px;
    }

    header .menu a{
        display: block;
        font-size: 20px;
        margin: 20px;
        margin-right: 70px;
        padding: 0 15px;
    }

    .descripcion{
        display: flex;
        font-size: 30px;
        text-align: center;
        margin-right: 10px;
    }

    .foto__perfil{
        width: 250px;
        height: 260px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 100%;
        border: 2px solid #f8ecf5;
        margin-top: 200px;
        margin-left: -35px;
        margin-bottom: -500px;
    }

    .parrafo-1{
        margin-top: -100px;
        margin-bottom: -500px;
    }

    .parrafo-2{
        margin-top: -200px;
    }

    .columnas > *{
        box-shadow: none
    }

    .columna-1, .columna-2, .columna-3{
        width: 100%vw;
        margin-right: 9px;
        margin-left: -15px;
    }

    .servicios .columnas{
        text-align: center;
        padding: 5px;
     }

    .contacto__title{
        font-size: 20px;
    }

    .nombre{
        font-size: 30px;
    }

    .job{
        font-size: 20px;
        letter-spacing: 1px;
        font-weight: 800;
    }
}

@media (max-width: 321px){

    .brand{
        display: none;
    }

    header .bi-list{
        margin-left: 170px;
        color: #000;
    }

    header .menu{
        padding-top: 200px;
    }

    header .menu a{
        display: block;
        font-size: 16px;
        margin: 10px;
        margin-right: 130px;
        padding: 0 15px;
    }

    .descripcion{
        display: flex;
        font-size: 30px;
        text-align: center;
        margin-right: 10px;
    }

    .foto__perfil{
        width: 250px;
        height: 260px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 100%;
        border: 2px solid #f8ecf5;
        margin-top: 200px;
        margin-left: -65px;
        margin-bottom: -500px;
    }

    .nombre{
        font-size: 20px;
    }

    .job{
        font-size: 15px;
        letter-spacing: 1px;
        font-weight: 800;
    }
}