/* Ícones Minimalistas SVG - Estilos Base */

/* Garantir que todos os ícones SVG tenham estilo consistente e tamanhos corretos */
.icon-logo {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon-logo svg {
    width: 32px;
    height: 32px;
}

/* SVG branco no footer */
.footer .icon-logo {
    color: var(--white);
}

.footer .icon-logo svg {
    stroke: var(--white);
}

.icon-consultoria,
.icon-estudos,
.icon-gestao,
.icon-sustentabilidade {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-consultoria svg,
.icon-estudos svg,
.icon-gestao svg,
.icon-sustentabilidade svg {
    width: 48px;
    height: 48px;
}

.icon-email,
.icon-phone,
.icon-location {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-email svg,
.icon-phone svg,
.icon-location svg {
    width: 48px;
    height: 48px;
}

.icon-person {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-person svg {
    width: 48px;
    height: 48px;
}

