/* BrazilSlotsOnline Slots - Estilos Principais */
:root {
  --primary-color: #8b5cf6;
  --secondary-color: #4f46e5;
  --accent-color: #f59e0b;
  --light-color: #f3f4f6;
  --dark-color: #1f2937;
  --text-color: #e5e7eb;
  --card-bg: #374151;
  --header-height: 80px;
  --body-bg: #111827;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-color);
  background-color: var(--body-bg);
  line-height: 1.6;
}

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

/* Header */
header {
  background-color: rgba(31, 41, 55, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--light-color);
  text-decoration: none;
}

/* Navegação */
nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
}

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

.nav-menu a {
  color: var(--light-color);
  text-decoration: none;
  font-weight: 500;
  padding: 10px;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: var(--accent-color);
}

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

/* Banner Principal */
.hero {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  padding: 100px 0 60px;
  text-align: center;
  margin-top: var(--header-height);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  background: linear-gradient(to right, #fff, #ccc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.8);
}

.search-bar {
  max-width: 600px;
  margin: 0 auto 40px;
  position: relative;
}

.search-bar input {
  width: 100%;
  padding: 15px 20px;
  border-radius: 30px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  backdrop-filter: blur(5px);
}

.search-bar input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.search-bar button {
  position: absolute;
  right: 5px;
  top: 5px;
  background: var(--accent-color);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-color);
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--accent-color);
  color: var(--dark-color);
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Filtros */
.filtros {
  background-color: rgba(31, 41, 55, 0.5);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 40px;
}

.filtros-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.filtros-title h2 {
  font-size: 1.5rem;
}

.filtros-toggle {
  background: none;
  border: none;
  color: var(--accent-color);
  font-size: 1.2rem;
  cursor: pointer;
}

.filtros-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.filtro-item {
  padding: 10px 20px;
  background-color: var(--card-bg);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s;
}

.filtro-item:hover, .filtro-item.active {
  background-color: var(--accent-color);
  color: var(--dark-color);
}

/* Seção de Jogos em Destaque */
.jogos-destaque {
  padding: 60px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.jogos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

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

.jogo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.jogo-thumbnail {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.jogo-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.jogo-provider {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
}

.jogo-popular {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--accent-color);
  color: var(--dark-color);
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
}

.jogo-content {
  padding: 15px;
}

.jogo-content h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.jogo-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.play-btn {
  padding: 8px 20px;
  background-color: var(--accent-color);
  color: var(--dark-color);
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.play-btn:hover {
  background-color: #e89a06;
  transform: translateY(-2px);
}

.fav-btn {
  background: none;
  border: none;
  color: #ccc;
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.3s;
}

.fav-btn:hover, .fav-btn.active {
  color: var(--accent-color);
}

/* Seção de Provedores */
.provedores {
  padding: 60px 0;
  background-color: rgba(31, 41, 55, 0.5);
}

.provedores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px;
}

.provedor-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.provedor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.provedor-logo {
  height: 60px;
  margin-bottom: 15px;
}

.provedor-card h3 {
  font-size: 1rem;
  font-weight: 500;
}

/* Seção de Ganhos Recentes */
.ganhos-recentes {
  padding: 60px 0;
}

.ganhos-lista {
  background-color: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
}

.ganho-item {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ganho-item:last-child {
  border-bottom: none;
}

.ganho-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-weight: bold;
}

.ganho-info {
  flex: 1;
}

.ganho-jogo {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.ganho-valor {
  font-weight: bold;
  color: var(--accent-color);
}

/* Footer */
footer {
  background-color: rgba(17, 24, 39, 0.95);
  color: var(--text-color);
  padding: 60px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-column h3 {
  color: var(--accent-color);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

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

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #999;
}

/* Responsividade */
@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    background-color: var(--dark-color);
    width: 250px;
    height: calc(100vh - var(--header-height));
    flex-direction: column;
    padding: 20px;
    transition: right 0.3s;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    margin: 15px 0;
  }

  .mobile-menu-btn {
    display: block;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .jogos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .provedores-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .header-container {
    height: 60px;
  }
  
  :root {
    --header-height: 60px;
  }
  
  .logo-text {
    font-size: 1.2rem;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .btn {
    padding: 10px 20px;
  }
  
  .jogos-grid {
    grid-template-columns: 1fr;
  }
}
