/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fontes externas (exemplo pronto para ativar)
@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
*/

body {
  background-color: #111;
  color: #eee;
  font-family: 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  padding: 20px;
}

header, footer {
  text-align: center;
  margin-bottom: 30px;
}

h1, h2 {
  color: #ff4d4d;
  margin-bottom: 10px;
}

p {
  margin-bottom: 10px;
}

/* Grid de grupos */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

/* Card de grupo */
.group-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 15px;
  background-color: #111;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  overflow: hidden;
  transition: transform 0.2s ease;
  text-align: center;
}

.group-card:hover {
  transform: scale(1.03);
}

.group-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 10px;
}

.group-card h3 {
  font-size: 1.1em;
  margin-bottom: 5px;
}

.group-card h3 a {
  color: #ff4d4d !important;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s ease;
}

.group-card h3 a:hover {
  color: #ff1a1a !important;
}

.group-card .category {
  font-size: 0.9em;
  color: #ccc;
}

/* VIP destaque */
.vip {
  border: 2px solid #ff4d4d;
}

.badge {
  display: inline-block;
  background-color: #ff4d4d;
  color: #fff;
  padding: 2px 6px;
  font-size: 0.8em;
  border-radius: 4px;
  margin-top: 5px;
}

/* VIP Plus destaque */
.vip-plus {
  border: 2px solid gold;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
  border-radius: 8px;
}

.vip-plus .badge {
  background-color: gold;
  color: #000;
}

/* Garantir estilo no mobile */
@media (max-width: 768px) {
  .vip-plus {
    border: 2px solid gold !important;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4) !important;
  }
}

/* Página individual */
.group-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
}

.group-container img.group-thumb {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 15px;
}

.group-description {
  margin-bottom: 15px;
}

.group-category, .group-tags {
  font-size: 0.9em;
  color: #ccc;
  margin-bottom: 10px;
}

.vip-badge {
  background-color: #ff4d4d;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.85em;
  display: inline-block;
  margin-bottom: 10px;
}

.tag {
  display: inline-block;
  background-color: #333;
  color: #fff;
  padding: 3px 6px;
  margin: 2px;
  border-radius: 4px;
  font-size: 0.8em;
}

/* Botão de entrada */
.join-button,
.btn-entrar {
  display: inline-block;
  background-color: #e60000;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.2s ease-in-out;
}

.join-button:hover,
.btn-entrar:hover {
  background-color: #ff1a1a;
  text-decoration: none;
}

.enter-button {
  margin-top: 15px;
  text-align: center;
}

/* Filtro por categoria */
.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
}

.category-btn {
  background-color: #333;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.95em;
  transition: background-color 0.2s ease;
}

.category-btn[aria-pressed="true"] {
  background-color: #ff4d4d;
  font-weight: bold;
}

.category-btn:focus {
  outline: 2px solid #ff4d4d;
  outline-offset: 2px;
}

/* Rodapé */
.site-footer {
  background-color: #111;
  color: #ccc;
  padding: 30px 15px;
  font-size: 14px;
}

.footer-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo a {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copy {
  margin-top: 20px;
  color: #777;
}

/* Links padrão */
a {
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

a:hover {
  text-decoration: underline;
}

.category-link {
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.category-link:hover {
  text-decoration: underline;
}

.tag-link {
  text-decoration: none;
}

.tag-link:hover .tag {
  text-decoration: underline;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 14px;
  margin: 10px 20px;
  color: #ccc;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: #999;
}
.vip-plus-badge {
  background-color: gold;
  color: #000;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.85em;
  display: inline-block;
  font-weight: bold;
  margin-left: 10px;
  box-shadow: 0 0 5px rgba(255, 215, 0, 0.4);
}
