html{
    scroll-behavior: smooth;
}

body{
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

header{
    width: 100%;
    height: 100vh;
    background-image: url(../img/bg-header.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom right;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
}

header h1{
    margin-top: 0;
    width: 85%;
    text-align: left;
    margin-top: -50px;
}

.intro{
    background-color: #006eb7;
    padding: 80px;
    display: flex;
    align-items: center;
}

.intro .text-section{
    width: 60%;
    text-align: left;
}

.intro .text-section p{
    text-align: left;
}

.intro p{
    text-align: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
}

.title{
    width: 90%;
    max-width: 500px;
}

.links{
    text-decoration: none;
    text-align: center;
    padding: 10px 20px;
    background-color: #b7e0f7;
    font-family: 'Roboto', sans-serif;
    color: #0051a0;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 10px;
}

p.nar{
    font-weight: 500;
}

.links:hover{
    background-color: #ffda01;
}

.actions{
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.actions a{
    width: 100px;
    height: 100px;
    border: 1px dashed #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
}

.documents{
    background-color: #e8f7ff;
    padding: 60px 20px; 
}

.documents .punto{
    padding: 30px 0;
    display: flex;
    justify-content: flex-start;
    align-items: top;
    width: 100%;
    max-width: 1200px;
    flex-wrap: wrap;
    margin: auto;
}

.nuemro{
    font-size: 80px;
    font-weight: bold;
    position: relative;
    z-index: 2;
    margin-right: 20px;
}

.nuemro::before{
    content: " ";
    position: absolute;
    width: 150px;
    height: 150px;
    border: 1px dashed #a0c4dd;
    border-radius: 50%;
    top: -27px;
    left: -50px;
    display: block;
    z-index: 1;
}

.documents h3{
    width: 100%;
    max-width: 1200px;
    margin: auto;
    font-size: 32px;
    color: #016eb7;
    margin-top: 60px;
}

.nuemro-cap{
    display: flex!important;
    width: 150px;
    height: 150px;
    border: 1px dashed #016eb7;
    justify-content: center;
    align-items: center;
    margin: auto;
    font-size: 100px;
    font-weight: bold!important;
    border-radius: 50%;
}

.item-p{
    margin: auto;
    width: 100%;
    max-width: 240px;
}

.item-p img{
    transition: all 0.5s;
    width: 100%;
    -webkit-box-shadow: 0px 0px 16px -5px rgba(0,0,0,0.66); 
    box-shadow: 0px 0px 16px -5px rgba(0,0,0,0.66);
    border: 5px solid #ff9c31;
    animation: latido 0.8s ease-in-out infinite;
}

.item-p:hover img{
    transform: scale(1.05);
}

.documents h2{
    width: 100%;
    max-width: 1200px;
    margin: auto;
    font-size: 46px;
    color: #016eb7;
    text-align: center;
    margin-top: 0;
    margin-bottom: 15px;
}
.documents h2 span{
    display: block;
    font-weight: 400;
}

.item{
    width: 90%;
    max-width: 200px;
    padding: 15px;
}

.item:hover{
    background-color: #c3def0;
}

.item p{
    font-size: 16px;
    color: #0052a0;
}

.item a{
    text-decoration: none;
}

.item img{
    transition: all 0.5s;
    width: 100%;
    -webkit-box-shadow: 0px 0px 16px -5px rgba(0,0,0,0.66); 
    box-shadow: 0px 0px 16px -5px rgba(0,0,0,0.66);
}

.item:hover img{
    transform: scale(1.3);
}

.description{
    font-size: 18px;
    color: #0052a0;
    text-align: center;
    margin-bottom: 60px;;
}


@keyframes latido {
    0% {
        transform: 0;
    }
    100% {
      transform: scale(1.05);
    }
  }
@media (max-width: 680px) {
    .documents{
        display: block;
    }

    .item{
        width: 90%;
        max-width: 90%;
        padding: 15px;
    }

    .links{
        display: block;
        margin-bottom: 20px;
    }

    .intro{
        display: block
    }

    .intro .text-section{
        width: 100%;
    }

    .intro .text-section p{
        text-align: center;
    }
  }