*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    /* background-color: #f4f4f4; */
    color: #333;
    text-decoration: none;
    list-style: none;
    border: none;
    outline: none;
    transition: all 0.3s ease;
    cursor: pointer;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */ 
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.container-card {
    padding: 30px;
    display: grid;
    gap: 50px;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    width: 70%;
    max-width: 1200px;
    justify-content: center;
    align-items: center;
}
.card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.card h2 {
    margin-bottom: 10px;
    font-size: 1.2em;
}
.card a {
    display: inline-block;
    padding: 8px 10px;
    background-color: #007BFF;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
}

.card a:hover {
    background-color: #0056b3;
}
.card img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 15px;
    
}

.badge-feriado {
  display: inline-flex;
  align-items: center;
  background-color: #fffae6; /* Fundo amarelo suave */
  color: #b76e00; /* Texto laranja escuro */
  border: 1px solid #ffe58f;
  border-radius: 12px;
  padding: 2px 8px;
  font-size: 0.75em;
  font-weight: bold;
  margin-left: 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.badge-feriado::before {
  content: "📅"; /* Ícone de calendário */
  margin-right: 4px;
  font-size: 1.1em;
}