/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 24 2025 | 01:45:01 */
/* Estilos gerais da página */
.page-id-123 .entry-header {
  text-align: center;
  margin-bottom: 30px;
}

.page-id-123 .entry-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Estilos da lista de categorias */
.page-id-123 .categorias-alfabeticas ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  padding: 0;
  list-style: none;
  margin: 0;
}

.page-id-123 .categorias-alfabeticas li {
  background-color: #f4f4f4;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-id-123 .categorias-alfabeticas li:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.page-id-123 .categorias-alfabeticas li a {
  display: block;
  padding: 20px;
  text-align: center;
  color: #333;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: capitalize;
  background-color: #fff;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-id-123 .categorias-alfabeticas li a:hover {
  background-color: #007bff;
  color: #fff;
}

/* Estilos para dispositivos móveis */
@media (max-width: 768px) {
  .page-id-123 .categorias-alfabeticas ul {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .page-id-123 .entry-title {
    font-size: 2rem;
  }
}
