 *  {
     margin: 0px;
     padding: 0px;
     box-sizing: border-box;

}
body{
    font-family: 'Poppins', sans-serif;
}

header{
    display: flex;
    width: 80%;
    margin: auto;
    align-items: center;
    border-bottom: 2px solid #b11116;
}
.logo-container, 
.nav-links{
    display: flex;
}
.responsive_menu{
    display: none;
}
.hide{
    display: none;
}
.logo-container{
    flex: 1;
}
.logo-container img {
    margin-bottom: 15px;
}
nav{
    flex: 3;
}
.nav-links{
    justify-content: space-around;
    list-style: none;
}
.nav-link{
    text-decoration: none;
    color: dimgrey;
    font-size: 0.80rem;
}
.presentation{
    display: flex;
    width: 80%;
    margin: auto;
    min-height: 80vh;
    align-items: center;
    color: dimgrey;
    margin-bottom: 10%;
    }
.main-image img{
    width: 90%;
    float:right;
    animation: drop 1.5s ease;
    border-bottom: 2px solid #b11116;

}
#logoepicaind {
    border: none;
    opacity: 0.8;
    width: 50%;
}
.main-image {
    margin-top: 40px;
    flex: 1;
    
}
.introduction{
    flex: 1;
   
}
.intro-text h1 {
    margin-top: 40px;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 50px;

}
.intro-text p {
    text-align: justify;
    margin-top: 10px;
    font-size: 18px;
    margin-right: 40px;

}
.descricao_link {
   display: flex;
   margin-bottom: 30px;
   font-size: 16px;
   align-items: center;

}

.descricao_link img{
    margin-right: 20px;
}
.bt_pdf {
    margin-left: 20px;
    background: #b11116;
    width: 90px;
    height: 30px;
    font-weight: 700;
    cursor: pointer;
    color: white;

}
.cta {
    padding: 50px 0px 0px 0px ;
}
.cta-escm{
    border: 2px solid #b11116;
    width: 150px;
    height: 50px;
    font-weight: 700;
    cursor: pointer;

}
@keyframes drop {
    0% {
        opacity: 0;
        transform: translateY(-80px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
    
}

@media screen and (max-width: 600px) {
    .presentation{
        flex-direction: column;
    }

    .logo-container img {
        width: 150px;
        margin-top: 15px;
    }
    .introduction{
        margin-top: 5vh;
        text-align: center;

    }
    .intro-text h1{
        font-size: 30px;
    }
    .intro-text p{
        font-size: 16px;
    }
    .cta-escm{
        margin-bottom: 30px ;
    }
    .nav-links{
        display:table;
        font-size: 12px;
        margin: auto;
              
    }
    .nav-links li {
        width: 100%;
        background: #b11116;
        border-radius: 5px;
        border-color: white;
        margin-bottom: 4px;
        margin-top: 4px;
    }
    .nav-links li a{
        color: white;
        padding: 2px 2px 2px 2px;
    }
  


    
}
footer{
    display: flex;
    width: 80%;
    margin: auto;
    align-items: center;
    border-top: 2px solid #b11116;
    margin-bottom: 30px;
}
.adress {
    width: 80%;
    flex: 1;
    text-align: center;
    font-size: 12px;
    margin-top: 30px;
    margin-bottom: 30px;

}

.adress h3{
    text-transform: uppercase;
    font-weight: 200;
}
#logo_publicacoes{
    width: 10px;
}
.nodeco {
    text-decoration: none;
    color: white;
}


  
  
  
