@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f2f2f2;
  color: #333;
  line-height: 1.6;
}

.line {
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #cdcdcd;
  margin: 20px 0 40px 0;
}

.categoria {
  margin-top: 40px;
}

/* Cabeçalho */
.header {
  background-color: #ffffff;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.header .logo img {
  max-height: 50px;
  vertical-align: middle;
}
.header .site-title {
  font-size: 1.5em;
  color: #2c3e50;
}

/* Container Principal dos Cartões */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  /* Estilo dos Cartões */
}
.card-grid .card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-grid .card .card-icon {
  font-size: 3em;
  color: #a7c400;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-grid .card .card-icon img {
  width: 50px;
}
.card-grid .card .card-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
}
.card-grid .card .card-description {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 20px;
  flex-grow: 1;
}
.card-grid .card .card-button {
  display: inline-block;
  background-color: #a7c400;
  color: #ffffff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  margin-top: auto;
}
.card-grid .card .card-button:hover {
  background-color: #7c9100;
}
.card-grid .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

/* Rodapé */
.footer {
  text-align: center;
  padding: 20px;
  background-color: #cccccc;
  color: #2C3E50;
  position: absolute;
  width: 100%;
  margin-top: 60px;
  font-size: 0.9em;
}

/* Media Queries para Responsividade */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    text-align: center;
  }
  .header .site-title {
    margin-top: 10px;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=styles.css.map */