*{
    padding: 0;
    margin: 0;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
h1{
    text-align: center;
    padding: 2rem 0;
    color: #444;
}
h1::after{
    content: "";
    width: 250px;
    height: 3px;
    background: currentColor;
    display: block;
    margin: 0 auto;
}
#historia{
    display: flex;
    width: 95%;
    margin: auto;
    align-items: center;
    padding: 1rem 0;
    background: #333;
    border-radius: 10px;
}
#historia .container{
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    position: relative;
}
.container .conteudo{
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    background: #888;
    padding: 3rem 1rem;
    border-radius: 5px;
}
.container .conteudo p{
    text-align: justify;
    color: #222;
}
.container .conteudo .titulo-duvidas{
    color: #111;
    font-size: 15pt;
    border-bottom: 2px solid #111;
}
.container .conteudo .assinatura{
    border-bottom: 3px solid currentColor;
}
.container .empresa{
    width: 40%;
    margin: auto;
    display: flex;
}
.container .empresa img{
    width: 300px;
    margin: 0 auto;
    border-radius: 50%;
    animation: rodar 20s linear infinite;
    /* box-shadow: 2px 2px 25px 10px #24ecff; */
    box-shadow: 2px 2px 25px 10px rgb(204, 134, 4);
}

@keyframes rodar{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 890px) {
    .container{
        flex-wrap: wrap;
        display: flex;
        flex-direction: column;
        margin: 0 auto;
        gap: 1rem;
    }
    .container .conteudo{
        width: 90%;
        border-radius: 10px;
    }
    .container .empresa{
        width: 90%;
    }
}
@media screen and (max-width: 600px){
    .container .empresa img{
        width: 150px;
    }
    .container .conteudo{
        width: 85%;
    }
}