/* =========================================================
   SEMSOLVENTE - OCULTAR TELEFONE E ENDEREÇO
   ========================================================= */

/* -------------------------
   1) TOPO (DESKTOP)
   - Esconde o item do telefone na barra inicial
   - Mantém o link "Fale Conosco"
   Obs: no tema, o telefone está no 2º <li> do bloco .canais-contato
-------------------------- */
.barra-inicial .canais-contato ul > li:nth-child(2) {
  display: none !important;
}

/* -------------------------
   2) MODAL "FALE CONOSCO"
   - Remove Telefone e Endereço (linhas 3 e 4 da tabela)
   - Mantém Email
-------------------------- */
#modalContato table tr:nth-child(3),
#modalContato table tr:nth-child(4) {
  display: none !important;
}

/* -------------------------
   3) RODAPÉ (MOBILE + DESKTOP)
   - Esconde somente o telefone
   - Mantém e-mail e o restante ("Sobre a loja", etc.)
   Obs: no mobile, o telefone é um link tel:
-------------------------- */
#rodape a[href^="tel:"] {
  display: none !important;
}

/* Mobile: no bloco "Contato" do rodapé, esconde o 1º item (telefone) */
@media (max-width: 767px) {
  #rodape .visible-phone ul > li:nth-child(1) {
    display: none !important;
  }
}
