main{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 90%;
    padding: 20px;
    margin-top: 100px;
    gap: 80px;
}
#sidebar{
    width: 200px;
    position: sticky;
    top: 20px;

    h3{
        font-size: 20px;
        margin-bottom: 10px;
        color: #fff;
        font-family: 'Technor', sans-serif;
        font-weight: 100;
    }

    p{
        font-size: 16px;
        color: #ccc;
        margin-bottom: 10px;
    }

    button{
        padding: 10px 20px;
        background-color: rgb(006, 145, 192);
        color: #fff;
        text-decoration: none;
        border-radius: 10px;
        transition: background-color 300ms;
        font-size: 18px;
        text-align: center;
        border: none;
        font-family:'Century Gothic Paneuropean', sans-serif;

        &:hover {
            background-color: rgb(005, 120, 170);
            cursor: pointer;
        }
    }

    .sidebar-header{
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        margin-bottom: 20px;
    }

    .sidebar-content{
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;

        img{
            width: 20px;
        }

        .icone-texto-compartilhar{
            display: flex;
            align-items: center;
            gap: 5px;
            text-decoration: none;
            color: rgb(006, 145, 192);
            cursor: pointer;
            background: none;
            border: none;
            font-size: 15px;
            white-space: nowrap;
        }
    }
}

section{
    width: 70%;
}

.topo-artigo{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    width: 100%;
}

.voltar-conteudos{
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;

    svg {
            position: relative;
            transition: all 300ms;
    }

    a:hover {
        cursor: pointer;

        >svg {
                transform: translateX(-10px);
        }
    }

    a{
        display: flex;
        align-items: center;
        gap: 7px;
        text-decoration: none;
        color: inherit;
    }
}

.imgs-compartilhar{
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: space-between;

    img{
        width: 25px;
    }

    img:hover{
        transform: scale(1.1);
        transition: all 300ms;
        cursor: pointer;
    }

    button{
        background: none;
        border: none;
        cursor: pointer;
    }

}

.artigo{
    h1 {
        font-size: 35px;
        margin-bottom: 10px;
        max-width: 600px;
        font-weight: 400;
        font-family:'Technor', sans-serif; 
    }

    h2 {
        font-family:'Technor', sans-serif; 
        font-size: 25px;
        margin-bottom: 10px;
        font-weight: 400;
    }

    &::after {
        width: 100%;
        height: 1px;
        background: rgba(255, 255, 255, .2);
        position: absolute;
        bottom: 0;
    }

    .link {
        display: block;
        color: rgb(006, 145, 192);
        font-size: 1.25em;
        max-width: 768px;
        cursor: pointer;
    }
    .link:hover {
        text-decoration: underline;
        transition: all 300ms;
    }

    .info-artigo{
        display: flex;
        flex-direction: column;
        
        margin-bottom: 20px;

        h3{
            font-size: 12px;
            margin: 0;
            font-weight: 100;
            color: rgb(200, 202, 204);
        }
    }

    hr{
        border: none;
        border-top: 1px solid grey;
    }
    p {
        font-size: 16px;
        color: #ccc;
    }
}

.artigos-footer{
    position: relative;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    background-color: #03192e;

    > div {
        display: flex;
        padding: 20px;
        align-items: center;
        width: 100%;
        justify-content: center;
        gap: 5%;
    }

    p {
        font-size: 24px;
        color: #ccc;
    }

    .btn {
        display: inline-block;
        padding: 20px 40px;
        background-color: rgb(006, 145, 192);
        color: #fff;
        text-decoration: none;
        border-radius: 15px;
        transition: background-color 300ms;
        font-size: 1.25em;
        text-align: center;

        &:hover {
            background-color: rgb(005, 120, 170);
        }
    }
}

footer{
    margin-top: 5%;
}

