.topo{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.topo img{
    width: 100%;
}

.topo h1{
    color: var(--Preto);
    font-size: 34px;
    margin: 20px 0;
    font-weight: 700;
}

.topo h1 > span{
    color: var(--Vermelho-Escuro);
    font-weight: 700;
}

.topo h3{
    font-size: 25px;
    color: var(--Cinza);
}

.topo a{
    width: 30%;
    text-decoration: none;
    background-color: var(--Vermelho-Claro);
    color: white;
    padding: 13px 16px;
    border-radius: 8px;
    display: inline-block;
}

.topo a:hover{
    scale: 1.1;
    transition: 0.45s;
}

.sobre{
    margin-top: 80px;
    text-align: center;
}

.sobre h1{
    color: var(--Vermelho-Escuro);
    font-size: 55px;
    font-weight: 700;
}

.sobre p{
    color: var(--Cinza);
	font-size: 28px;
	font-weight: normal;
    text-align: justify;
}

.sobre li{
    color: var(--Cinza);
	font-size: 28px;
	font-weight: normal;
    text-align: justify;
}

.sobre li > span{
    font-weight: bold;
}

.chamado{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    width: 60%;
    margin: 80px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 4px 6px rgba(0, 0, 0, 0.25);
}

.chamado h2{
    color: var(--Vermelho-Escuro);
    font-size: 35px;
    font-weight: 700;
}

.chamado img{
    width: 25%;
    margin: 20px 0;
    border-radius: 50%;
}

.chamado p{
    font-size: 26px;
}

.chamado a{
    margin-top: 15px;
    width: 30%;
    text-align: center;
    text-decoration: none;
    background-color: var(--Vermelho-Claro);
    color: white;
    padding: 13px 16px;
    border-radius: 8px;
    display: inline-block;
}

.chamado a:hover{
    scale: 1.1;
    transition: 0.45s;
}

@media screen and (max-width: 768px){
    .sobre{
        width: 90%;
        margin: 80px auto;
    }
    .chamado{
        width: 90%;
    }
    .chamado img{
        width: 30%;
    }
}

@media screen and (max-width: 425px){
    .topo a{
        width: 60%;
    }
    .sobre{
        width: 80%;
    }
    .sobre h1{
        font-size: 48px;
    }
    .sobre p{
        font-size: 25px;
    }
    .sobre li{
        font-size: 25px;
    }
    .chamado{
        width: 100%;
    }
    .chamado img{
        width: 50%;
    }
    .chamado a{
        width: 60%;
    }
}