@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,600;1,400;1,500&display=swap');

* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

body {
    background-color: #e4e4e4;
}

header {
    background-color: white;
    text-align: center;
    padding: 20px 0;
    width: 100%;
    border-bottom: solid 41px #004a8c;
}
header img {
    width: 150px;
}

.hero {
    background-image: url('assets/images/repositorio-forum-internacional-senac-de-educadores.jpeg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-repeat: no-repeat;
    height: 700px;
}

.hero article {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    height: 460px;
}

.hero article h1{
    color: white;
    background-color: #117271;
    width: fit-content;
    padding: 20px 40px;
    text-transform: uppercase;
    border-radius: 0 0 5px 5px;
}

.hero article blockquote{
    color: white;
    width: 50%;
    background-color: rgba(17,114,113,0.9);
    padding: 20px 50px;
    font-weight: 600;
    line-height: 24px;
    border-radius: 10px 0 10px 0;
    border: solid 2px white;
    text-align: justify;
}

.educar {
    position: relative;
    top: -50px
}

.educar .container {
    padding: 50px;
    background-color: white;
    border-radius: 20px 20px 0 0;
    border-top: solid 20px #117271;
}
.educar .container p{
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    color: #2a2e43
}

.educar .container hr {
    width: 100%;
    height: 1px;
    background-color: #117271;
    margin: 50px 0;
}

.now{
    background-color: #004A8D;
}
.now article {
    padding: 50px 0;
    color: #fff;
    text-align: center;
}
.now article h2 {
    font-size: 50px;
    margin-bottom: 20px;
}
.now article p {
    margin-bottom: 50px;
}
.now article .button {
    padding-top: 50px;
}

.now article .button a {
    background-color: white;
    text-align: center;
    text-decoration: none;
    padding: 20px 50px;
    font-weight: bold;
    color: #F7941D;
    border-radius: 15px;

}
.now article .button a:hover {
    background-color: #F7941D;
    color: white;
}

.forum {
    background-color: #117271;
    padding: 50px 0;
    color: white
}
.forum .container h2{
    font-weight: 600;
    line-height: 30px;
    text-align: center;
    margin-bottom: 40px;
}

.forum .container .columns{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
}

.forum .container .columns a{
    padding: 50px 16px; 
    width: 40%;
    margin: 0 0 30px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 15px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    color: white;
    text-align: center;
}

.forum .container .columns a:hover {
    background-color: white;
    color: #117271;
}

.forum .container .columns a h3 {
    font-size: 30px;
    margin-bottom: 10px;
}

.forum .container .columns a span {
    font-weight: 600;
}

.forum .container p {
    text-align: center;
    font-weight: 500;
    line-height: 28px;
}
.forum .container p a {
    text-decoration: none;
    color: yellow;
    font-weight: 600;
}
.forum .container p a:hover {
    text-decoration: underline;
}
.graydark {
    background-color: #2B2E41;
    color: white;
    text-align: center;
    padding: 50px 0;
}
.graydark p {
    font-weight: 500;
    line-height: 28px;
}

footer {
    background-color: #004a8c;
    padding: 45px 0;
    text-align: center;
}
footer img {
    width: 150px;
}

.copyright {
    background-color: #003e76;
    color: white;
    text-align: center;
    width: 100%;
    padding: 10px 0;
}

@media (max-width: 768px){
    .hero {
        height: auto;
    }
    
    .hero article h1 {
        padding: 5px 20px;
        width: 80%;
    }

    .hero article blockquote {
        width: 90%;
        margin-bottom: 80px;
    }

    .educar {
        position: none;
        top: 0;
    }
    .now article h2 {
        font-size: 36px;
    }
    .forum .container .columns {
        flex-direction: column;
        align-items: center;
    }

    .forum .container .columns button {
        width: 80%;
        margin: 0 0 30px;
    }
}