body{
    height: 100vh;
    background: #E7EBF4;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.container_conteudo{
    min-height: calc(100vh - 136.23px); 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: start;
    text-align: center;
    margin: 1rem;
    gap: 1rem;
}

.titulo_conteudo{
    font-size: 24px;
    color: #222222;
    font-weight: 500;
    word-spacing: 2px;
    margin-bottom: 0.2rem;
}

.card_veiculos{
    width: 100%;
    padding: 0.6rem;
    background-color: white;
    border-radius: 4px;
    box-sizing: border-box;
    color: black;
    display: flex;
    justify-content: end;
    position: relative;
    height: 90px;
}

.container_cards{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.div_dados_veiculo{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 60%;
    padding-left: 170px;
}

.img_veiculo{
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translate(0px, -50%);
    width: 160px;
}


.nome_veiculo{
    font-size: 16px;
}

.modelo_veiculo{
    font-size: 16px;
    font-weight: 400;
}

.placa_veiculo{
    font-size: 16px;
    font-weight: 400;
    background-color: #0095B9;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    color: white;
}

.circulo_perfil{
    width: 120px; 
    height: 120px; 
    border-radius: 50%; 
    border: 4px solid white;
    background-color: #0D2D44;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icones_veiculos{
    width: 40px;
}

.icones_sinistro{
    font-size: 24px;
    color: grey;
}

.texto_sinistro{
    color: grey;
    font-weight: 400;
    font-size: 14px;
}

.div_circulo_veiculos{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

@media(max-width: 410px){
    .card_veiculos{
        flex-direction: column;
        height: auto;
        align-items: center;
        gap: 0.4rem;
    }

    .img_veiculo{
        position: static;
        transform: none;
        width: 160px;
    }

    .div_dados_veiculo {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding-left: 0;
    }
}