/*
Theme Name: Ajuda Makro
Template: hello-elementor
Author: Makro
Version: 1.0.0.1749512847
Updated: 2025-06-09 20:47:27

*/


/* Categorias Lista */
ul.categorias-central-ajuda {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

ul.categorias-central-ajuda li a {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.15); /* fundo branco transparente */
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

ul.categorias-central-ajuda li a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}


/* Lista Principal de Categorias */
.lista-categorias-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 16px 0;
}

.categoria-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 220px;
}

.categoria-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

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

.categoria-icon img,
.categoria-icon svg {
  max-width: 48px;
  max-height: 48px;
}

.categoria-titulo {
  font-size: 18px;
  color: #001640;
  font-weight: 700;
  margin-bottom: 8px;
  font-style: italic;
}

.categoria-descricao {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}
