/* estilos.css */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.navbar {
  background-color: #004d40;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  flex-wrap: wrap;
  color: white;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 500;
}

.auth-buttons .btn {
  background-color: #ffffff;
  color: #004d40;
  padding: 8px 15px;
  border-radius: 5px;
  margin-left: 10px;
  font-weight: bold;
  text-decoration: none;
}

.auth-buttons .btn-primary {
  background-color: #00bfa5;
  color: white;
}

.hero {
  background-color: #00796b;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
}

.hero-buttons .btn {
  margin-top: 20px;
  display: inline-block;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 40px 20px;
  background: #ffffff;
  text-align: center;
}

.features .feature i {
  font-size: 2rem;
  color: #004d40;
}

.features .feature h3 {
  margin: 10px 0;
  font-size: 1.2rem;
}

.torneos {
  background: #f1f1f1;
  padding: 40px 20px;
}

.torneos h2 {
  text-align: center;
  margin-bottom: 20px;
}

.torneos-lista {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0 auto 20px;
  max-width: 800px;
}

.torneos-lista li {
  background: white;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.btn {
  background: #004d40;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
}


footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 20px;
}

footer a {
  color: #ccc;
  text-decoration: none;
  margin: 0 10px;
}

footer a:hover {
  color: white;
  text-decoration: underline;
}






