/* 🎨 Scrollbar discreta e moderna */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgba(166, 75, 244, 0.4);
    border-radius: 10px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(166, 75, 244, 0.7);
}

/* 🎯 RESET GLOBAL */
*, *::before, *::after {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #0d0d1a;
  color: #e5e5e5;
  line-height: 1.5;
}

/* 🌟 HEADER */
header {
  background: linear-gradient(90deg, #251533, #251533);
  text-align: center;
  padding: 20px 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.site-logo {
  width: 320px;
  max-width: 80%;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

header p {
  margin: 10px 0 10px;
  font-size: 0.8rem;
  opacity: 0.9;
}

/* 🔗 NAVEGAÇÃO */
nav {
  margin-top: 10px;
}
nav a,
nav span {
  margin: 0 5px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.8rem;
  padding: 10px 16px;
  border-radius: 6px;
  transition: background 0.3s ease;
}
nav a:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* 🔥 BOTÃO DE AÇÃO */
.action-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 14px 24px;
  background: #a64bf4;
  color: #fff;
  font-weight: bold;
  font-size: 0.8rem;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(166, 75, 244, 0.4);
  transition: transform 0.2s ease, background 0.3s ease;
}
.action-btn:hover {
  background: #8b2bd4;
  transform: translateY(-3px);
}

/* 📦 MAIN (GRID FLEXÍVEL) */
main {
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 🖥️ Desktop: 5 colunas */
  gap: 25px;
  max-width: 1600px;
  margin: auto;
}

/* 🃏 CARDS */
section {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
section:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}
section h2 {
  margin-top: 0;
  color: #d9aaff;
  font-size: 0.8rem;
}

/* 🔹 LISTAS */
section ul {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
}
section ul li {
  margin: 8px 0;
  font-size: 0.8rem;
}

/* 🔚 FOOTER */
footer {
  background: #1e0f2d;        /* Fundo roxo escuro */
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #ccc;
  margin-top: 30px;
  border-top: 2px solid #a64bf4;
}

/* 🔗 Links dos parceiros */
footer .partners {
    margin-bottom: 10px;
    font-size: 14px;
}

footer .partners a {
    color: #c799ff;
    text-decoration: none;
    margin: 0 5px;
    font-weight: bold;
    transition: color 0.3s ease;
}

footer .partners a:hover {
    color: #fff;
}

/* 📱 Ícones Sociais */
footer .social-icons {
    margin: 10px 0;
}

/* Remove o sublinhado dos links */
footer .social-icons a {
    text-decoration: none;
}

/* Ícones */
footer .social-icons img {
    width: 28px;
    height: 28px;
    margin: 0 8px;
    background: transparent;
    transition: transform 0.2s ease;
    filter: none;
    cursor: pointer;
}

/* Efeito hover */
footer .social-icons img:hover {
    transform: scale(1.1);
    opacity: 0.8;
}


/* 📜 Texto inferior */
footer p {
    font-size: 13px;
    margin-top: 8px;
    color: #aaa;
}


/* 📱 RESPONSIVIDADE */
@media (max-width: 1200px) {
  main {
    grid-template-columns: repeat(3, 1fr); /* 📲 Tablets grandes: 3 colunas */
  }
}

@media (max-width: 800px) {
  main {
    grid-template-columns: repeat(2, 1fr); /* 📲 Tablets menores: 2 colunas */
  }
}

@media (max-width: 500px) {
  main {
    grid-template-columns: 1fr; /* 📱 Celular: 1 coluna */
  }
  .site-logo {
    width: 250px;
  }
  nav a, nav span {
    display: block;
    margin: 5px auto;
  }
}
