/* Importar o CSS da ferramenta */
@import url("tool.css");
/* Importar o CSS das páginas de doações e downloads */
@import url("donations-downloads.css");
/* Importar o CSS do sistema de consentimento de cookies */
@import url("cookie-consent.css");
/* Importar o CSS da página de perfil */
@import url("profile.css");
/* Importar o CSS da discord + apoiadores */
@import url("discord-integration.css");

/* Reset e Estilos Gerais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Cores do modo escuro (padrão agora) */
  --primary-color: #8257fe;
  --primary-dark: #6a3de8;
  --secondary-color: #ff7a77;
  --bg-color: #121212;
  --bg-card: #1e1e1e;
  --bg-section: #1a1a1a;
  --bg-alt: #2a2a2a;
  --text-color: #f5f5f5;
  --text-muted: #bbbbbb;
  --border-color: #333333;
  --dark-color: #0f0f1a;
  --light-color: #2a2a3a;
  --gray-color: #cccccc;
  --gray-light: #aaaaaa;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.4);
  --header-bg: #0f0f1a;
  --header-text: #ffffff;
  --footer-bg: #0f0f1a;
  --footer-text: #ffffff;
  --success-color: #4caf50;
  --danger-color: #f44336;
  --font-main: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --primary-color-rgb: 130, 87, 254;
  --secondary-color-rgb: 255, 122, 119;
  --success-color-rgb: 76, 175, 80;
  --danger-color-rgb: 244, 67, 54;
  --white-color: #ffffff;
}

/* Modo claro */
[data-theme="light"] {
  --primary-color: #6a3de8;
  --primary-dark: #5429d0;
  --secondary-color: #ff5e5b;
  --bg-color: #f5f5f5;
  --bg-card: #ffffff;
  --bg-section: #ffffff;
  --bg-alt: #f0f0f0;
  --text-color: #333333;
  --text-muted: #777777;
  --border-color: #e0e0e0;
  --dark-color: #1a1a2e;
  --light-color: #f5f5f5;
  --gray-color: #333;
  --gray-light: #777;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.15);
  --header-bg: #1a1a2e;
  --header-text: #ffffff;
  --footer-bg: #1a1a2e;
  --footer-text: #ffffff;
  --success-color: #4caf50;
  --danger-color: #f44336;
  --primary-color-rgb: 106, 61, 232;
  --secondary-color-rgb: 255, 94, 91;
  --success-color-rgb: 76, 175, 80;
  --danger-color-rgb: 244, 67, 54;
  --white-color: #ffffff;
}

body {
  font-family: var(--font-main);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn:hover {
  background-color: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn:hover::before {
  left: 100%;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  color: var(--text-color);
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

/* Header */
header {
  background-color: var(--header-bg);
  color: var(--header-text);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
  transition: background-color 0.3s ease;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--header-text);
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.logo h1 a {
  color: var(--header-text);
  text-decoration: none;
}

.logo h1::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.logo h1:hover::after {
  width: 100%;
}

nav {
  display: flex;
  align-items: center;
}

.menu {
  display: flex;
  margin-right: 20px;
}

.menu li {
  margin-left: 30px;
  position: relative;
}

.menu a {
  color: var(--header-text);
  font-weight: 600;
  position: relative;
  padding: 8px 0;
  display: inline-block;
  transition: all 0.3s ease;
}

.menu a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.menu a:hover::before,
.menu a.active::before {
  width: 100%;
}

.menu a:hover,
.menu a.active {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.nav-actions {
  display: flex;
  align-items: center;
}

.menu-mobile {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--header-text);
}

/* Hero Section */
.hero {
  position: relative;
  color: white;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-carousel-item.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 46, 0.8);
  z-index: -1;
}

.hero-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  z-index: 1;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero h2 span {
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.hero h2 span::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: var(--bg-section);
  transition: background-color 0.3s ease;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: var(--bg-card);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(var(--primary-color-rgb), 0.05), transparent);
  z-index: -1;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.feature-card:hover::before {
  transform: translateY(0);
}

.feature-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.feature-card:hover i {
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

/* Server Status Section */
.server-status {
  padding: 80px 0;
  background-color: var(--bg-alt);
  transition: background-color 0.3s ease;
}

.servers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.server {
  padding: 20px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  position: relative;
  box-shadow: var(--shadow);
  background-color: var(--bg-card);
  transition: all 0.3s ease;
}

.server.online {
  border: 2px solid var(--success-color);
  background-color: rgba(76, 175, 80, 0.1);
}

.server.offline {
  border: 2px solid var(--danger-color);
  background-color: rgba(244, 67, 54, 0.1);
}

.loading {
  text-align: center;
  padding: 20px;
  color: var(--text-muted);
  grid-column: 1 / -1;
}

.server-info {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.status-indicator {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin: 0 5px 0 15px;
}

.status-indicator.online {
  background-color: var(--success-color);
  box-shadow: 0 0 10px var(--success-color);
  animation: pulse 2s infinite;
}

.status-indicator.offline {
  background-color: var(--danger-color);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
  }
}

/* Games Section */
.games {
  padding: 80px 0;
  background-color: var(--bg-section);
  transition: background-color 0.3s ease;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.game-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  background-color: var(--bg-card);
  position: relative;
}

.game-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.game-card:hover::before {
  opacity: 1;
}

.game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.game-card:hover img {
  transform: scale(1.05);
}

.game-info {
  padding: 20px;
  position: relative;
  z-index: 2;
}

.game-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

/* Footer */
footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 60px 0 20px;
  transition: background-color 0.3s ease;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.footer-logo h2::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.footer-logo:hover h2::after {
  width: 100%;
}

.footer-links h3,
.footer-social h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3::after,
.footer-social h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links ul li {
  margin-bottom: 10px;
  transition: transform 0.3s ease;
  margin: 0;
  flex: 0 0 auto; /* não cresce, não encolhe, mantém o tamanho natural */
}

.footer-links ul li:hover {
  transform: translateX(5px);
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
}

.footer-links ul li a::before {
  content: "→";
  position: absolute;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(-10px);
}

.footer-links ul li a:hover {
  color: var(--primary-color);
  padding-left: 20px;
}

.footer-links ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px; /* espaço entre os links */
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-icons a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transform: scale(0);
  transition: transform 0.3s ease;
  border-radius: 50%;
  z-index: -1;
}

.social-icons a:hover {
  color: white;
  transform: translateY(-5px);
}

.social-icons a:hover::before {
  transform: scale(1);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Page Header */
.page-header {
  background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.9)), url("../img/page-header.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--primary-color) 0%, transparent 70%);
  opacity: 0.3;
}

.page-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
}

/* Servers Detailed Page */
.servers-detailed {
  padding: 80px 0;
  background-color: var(--bg-section);
  transition: background-color 0.3s ease;
}

.server-info-header {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.servers-detailed-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.server-detailed {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 20px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background-color: var(--bg-card);
  transition: all 0.3s ease;
}

.server-detailed.online {
  border: 2px solid var(--success-color);
  background-color: rgba(76, 175, 80, 0.05);
}

.server-detailed.offline {
  border: 2px solid var(--danger-color);
  background-color: rgba(244, 67, 54, 0.05);
}

.server-name {
  font-weight: 600;
  font-size: 1.1rem;
}

.server-ip {
  text-align: center;
  color: var(--text-muted);
  display: none; /* Ocultar os IPs */
}

.server-status {
  text-align: right;
  font-weight: 600;
}

.server-status.online {
  color: var(--success-color);
}

.server-status.offline {
  color: var(--danger-color);
}

/* Server Instructions */
.server-instructions {
  padding: 80px 0;
  background-color: var(--bg-alt);
  transition: background-color 0.3s ease;
}

.instructions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.instruction-card {
  background-color: var(--bg-card);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

.instruction-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.instruction-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.instruction-card ol {
  padding-left: 20px;
}

.instruction-card ol li {
  margin-bottom: 10px;
  position: relative;
}

.instruction-card ol li::marker {
  color: var(--primary-color);
  font-weight: bold;
}

/* About Page */
.about-content {
  padding: 80px 0;
  background-color: var(--bg-section);
  transition: background-color 0.3s ease;
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--text-color);
  position: relative;
  padding-bottom: 10px;
}
.about-text h4 {
  font-size: 1.0rem;
  margin-bottom: 5px;
  margin-left: 5px;
  color: var(--text-color);
  position: relative;
  padding-bottom: 5px;
}
.about-text h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 1px;
  background-color: var(--primary-color);
}

.about-text h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 2px;
  background-color: var(--primary-color);
}

.about-text p {
  margin-bottom: 20px;
}

.about-text ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.about-text ul li {
  margin-bottom: 10px;
  list-style-type: disc;
  position: relative;
}

.about-text ul li::marker {
  color: var(--primary-color);
}

.about-image img {
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

/* Team Section */
.team {
  padding: 80px 0;
  background-color: var(--bg-alt);
  transition: background-color 0.3s ease;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  background-color: var(--bg-card);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
}

.team-member::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.team-member:hover::before {
  opacity: 1;
}

.team-member img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover img {
  transform: scale(1.05);
}

.team-member h3 {
  padding: 20px 20px 5px;
  font-size: 1.5rem;
  color: var(--text-color);
  position: relative;
  z-index: 2;
}

.team-member .role {
  padding: 0 20px;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.team-member p {
  padding: 0 20px 20px;
  position: relative;
  z-index: 2;
}

/* Contact Page */
.contact-content {
  padding: 80px 0;
  background-color: var(--bg-section);
  transition: background-color 0.3s ease;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--text-color);
  position: relative;
  padding-bottom: 10px;
}

.contact-info h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateX(5px);
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 15px;
}

.social-contact {
  margin-top: 40px;
}

.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--text-color);
  position: relative;
  padding-bottom: 10px;
}

.contact-form h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: var(--font-main);
  font-size: 1rem;
  background-color: var(--bg-card);
  color: var(--text-color);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(var(--primary-color-rgb), 0.2);
  outline: none;
}

.form-group textarea {
  resize: vertical;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background-color: var(--bg-alt);
  transition: background-color 0.3s ease;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
}

.faq-item {
  background-color: var(--bg-card);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.faq-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Theme Toggle Button */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 15px;
  position: relative;
  overflow: hidden;
}

.theme-toggle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
  z-index: -1;
}

.theme-toggle:hover {
  color: white;
}

.theme-toggle:hover::before {
  transform: scale(1);
}

/* Game Servers List */
.game-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.game-item {
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  background-color: var(--bg-card);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.game-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.game-item h3 {
  margin-bottom: 10px;
  color: var(--text-color);
}

.game-item.online {
  border: 2px solid var(--success-color);
}

.game-item.offline {
  border: 2px solid var(--danger-color);
}

.game-item .status {
  font-weight: bold;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 20px;
  margin-top: 5px;
}

.game-item.online .status {
  color: white;
  background-color: var(--success-color);
}

.game-item.offline .status {
  color: white;
  background-color: var(--danger-color);
}

.server-address {
  display: none; /* Ocultar os IPs dos servidores */
}

#games {
  padding: 80px 0;
  background-color: var(--bg-alt);
  transition: background-color 0.3s ease;
}

#games h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  color: var(--text-color);
  position: relative;
  padding-bottom: 15px;
}

#games h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.text-center {
  text-align: center;
  margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .menu {
    display: none;
  }

  .menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    padding: 20px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .menu.active li {
    margin: 10px 0;
  }

  .nav-actions {
    display: flex;
  }

  .menu-mobile {
    display: block;
  }

  .hero h2 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }
 

  .server-detailed {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }

  .server-ip,
  .server-status {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Animações */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.animate-fadeIn {
  animation: fadeIn 1s ease-out;
}

.animate-slideInLeft {
  animation: slideInLeft 1s ease-out;
}

.animate-slideInRight {
  animation: slideInRight 1s ease-out;
}

/* Estilos para autenticação */
.auth-buttons {
  display: flex;
  align-items: center;
  margin-right: 15px;
}

.btn-sm {
  padding: 8px 15px;
  font-size: 0.9rem;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

.user-menu {
  position: relative;
}

.user-avatar {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.user-avatar:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.user-avatar img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 10px;
  border: 2px solid var(--primary-color);
}

.user-avatar span {
  color: var(--header-text);
  margin-right: 5px;
  font-weight: 600;
}

.user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--bg-card);
  border-radius: 5px;
  box-shadow: var(--shadow);
  width: 200px;
  z-index: 1000;
  display: none;
  overflow: hidden;
}

.user-menu:hover .user-dropdown {
  display: block;
  animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.user-dropdown a {
  display: block;
  padding: 12px 15px;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.user-dropdown a:hover {
  background-color: rgba(var(--primary-color-rgb), 0.1);
  color: var(--primary-color);
  padding-left: 20px;
}

.user-dropdown a i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.dropdown-divider {
  height: 1px;
  background-color: var(--border-color);
  margin: 5px 0;
}

/* Responsividade para autenticação */
@media (max-width: 768px) {
  .auth-buttons {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    padding: 15px;
    justify-content: center;
    gap: 10px;
    display: none;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }

  .menu.active + .auth-buttons {
    display: flex;
  }

  .user-menu {
    width: 100%;
  }

  .user-avatar {
    justify-content: center;
  }

  .user-dropdown {
    width: 100%;
  }
}

/* Abas de autenticação */
.auth-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.auth-tab {
  padding: 10px 30px;
  font-weight: 600;
  color: var(--text-color);
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.auth-tab:hover {
  color: var(--primary-color);
}

.auth-tab.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

/* Estilos para o banner de assinatura */
.subscription-banner {
  background-color: rgba(var(--primary-color-rgb), 0.1);
  padding: 20px 0;
  margin-bottom: 30px;
}

.subscription-info {
  display: flex;
  align-items: center;
  background-color: var(--bg-card);
  border-radius: 10px;
  padding: 20px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary-color);
}

.subscription-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-right: 20px;
}

.subscription-details h3 {
  margin: 0 0 10px 0;
  color: var(--primary-color);
}

.subscription-details p {
  margin: 5px 0;
}

/* Estilos para a duração do pacote */
.package-duration {
  font-size: 0.9rem;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 5px;
  display: inline-block;
}

/* Estilos para o modal quando não está logado */
.login-required {
  text-align: center;
  padding: 20px 0;
}

.login-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}