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

.container_cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 2rem;
    box-sizing: border-box;
}
.titulo_conteudo{
    font-size: 24px;
    color: #222222;
    font-weight: 500;
    word-spacing: 2px;
    margin-bottom: 0.2rem;
}
.circulo_perfil{
    width: 120px; 
    height: 120px; 
    border-radius: 50%; 
    border: 4px solid white;
    background-color: #0D2D44;
    display: flex;
    align-items: center;
    justify-content: center;
}
.endereco_parceiro {
    font-size: 14px;
    color: #444;
    margin: 6px 0;
}
.div_circulo_veiculos{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.card_parceiro {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.card_parceiro:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.img_parceiro {
    width: 100%;
    height: 160px;
    object-fit: cover;
    background: #f4f4f4;
}

.dados_parceiro {
    padding: 0.8rem;
    color: #222;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
}

.nome_parceiro {
    font-size: 18px;
    font-weight: 600;
    color: #0D2D44;
    margin-bottom: 0.2rem;
}

.descricao_parceiro {
    font-size: 14px;
    color: #444;
    line-height: 1.4;
    flex: 1;
    max-height: 70px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contatos_parceiro {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.6rem;
    flex-wrap: wrap;
}

.contatos_parceiro a {
    color: #0D2D44;
    font-size: 18px;
    transition: color 0.2s;
}

.contatos_parceiro a:hover {
    color: #009AB3;
}
