/* BrazilSlotsOnline MMA/UFC - Estilos Principais */
:root {
  --primary-color: #e63946;
  --secondary-color: #1d3557;
  --accent-color: #ffb703;
  --light-color: #f1faee;
  --dark-color: #1d3557;
  --text-color: #333333;
  --background-color: #f8f9fa;
  --header-height: 80px;
}

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

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

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

/* Header */
header {
  background-color: var(--dark-color);
  color: white;
  position: fixed;
  width: 100%;
  z-index: 1000;
  top: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

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

.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;
}

/* Hero Section */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/1.png');
  background-size: cover;
  background-position: center;
  height: 500px;
  color: white;
  display: flex;
  align-items: center;
  text-align: center;
  margin-top: var(--header-height);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

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

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #d32f2f;
}

/* Seção de próximos eventos */
.eventos {
  padding: 60px 0;
}

.eventos h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--secondary-color);
}

.eventos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.evento-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.evento-card:hover {
  transform: translateY(-5px);
}

.evento-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.evento-content {
  padding: 20px;
}

.evento-content h3 {
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.evento-content p {
  margin-bottom: 15px;
  color: var(--text-color);
}

.evento-meta {
  display: flex;
  justify-content: space-between;
  color: #666;
  font-size: 0.9rem;
}

/* Seção de apostas destaque */
.apostas-destaque {
  background-color: #f4f4f4;
  padding: 60px 0;
}

.apostas-destaque h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--secondary-color);
}

.apostas-table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.apostas-table thead {
  background-color: var(--secondary-color);
  color: white;
}

.apostas-table th, 
.apostas-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.apostas-table tr:last-child td {
  border-bottom: none;
}

.odds {
  font-weight: bold;
  color: var(--primary-color);
}

.apostar-btn {
  padding: 8px 15px;
  background-color: var(--accent-color);
  color: var(--dark-color);
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s;
  display: inline-block;
}

.apostar-btn:hover {
  background-color: #e6a600;
}

/* Seção de análises */
.analises {
  padding: 60px 0;
}

.analises h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--secondary-color);
}

.analise-item {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.analise-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.lutadores-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: 20px;
  object-fit: cover;
}

.analise-title {
  flex: 1;
}

.analise-content p {
  margin-bottom: 20px;
}

/* Seção de promoções */
.promocoes {
  background-color: var(--dark-color);
  color: white;
  padding: 60px 0;
}

.promocoes h2 {
  text-align: center;
  margin-bottom: 40px;
}

.promocao-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  margin-bottom: 30px;
  transition: transform 0.3s;
}

.promocao-card:hover {
  transform: translateY(-5px);
}

.promocao-card h3 {
  margin: 20px 0;
  color: var(--accent-color);
}

.promocao-card p {
  margin-bottom: 20px;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 60px 0 20px;
}

.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 {
    height: 400px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .eventos-grid {
    grid-template-columns: 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 {
    height: 350px;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .btn {
    padding: 10px 20px;
  }
}
