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

body {
  font-family: 'eFootballSans-Bold', sans-serif;
  background: radial-gradient(circle, #021d0d 0%, #000 100%);
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 20px;
  background: transparent;
  z-index: 1000;
}

/* Menú lateral */
.menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  max-width: 300px;
  height: 100vh;
  background: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: right 0.4s ease-in-out;
  z-index: 999;
}

.menu a {
  color: #fff;
  font-family: 'Marker', sans-serif;
  text-decoration: none;
  font-size: 1.5rem;
  margin: 15px 0;
  transition: color 0.3s;
}

.menu a:hover {
  color: #00ff88;
}

.menu.active {
  right: 0;
}

/* Botón Hamburguesa */
.hamburger {
  position: relative;
  width: 35px;
  height: 28px;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 1001; /* Encima del menú */
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background: #fff;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 10px;
}
.hamburger span:nth-child(3) {
  top: 20px;
}

/* Animación a X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}

/* Sección principal */
.hero {
  text-align: center;
  padding: 120px 20px 40px;
}

.hero img.logo {
  max-width: 250px;
  margin-bottom: 15px;
}

.hero h1 {
  font-family: 'Marker', sans-serif;
  font-size: 3rem;
  color: #00ff88;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  color: #ccc;
}

/* Botones personalizados */
.btn {
  display: inline-block;
  margin: 15px 10px;
  padding: 12px 25px;
  background: linear-gradient(45deg, #004d26, #00ff88);
  border: none;
  border-radius: 30px;
  font-family: 'eFootballSans-Bold', sans-serif;
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #00ff88;
}

/* Equipos */
.teams {
  padding: 40px 20px;
  text-align: center;
}

.teams h2 {
  font-family: 'Marker', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

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

.team-card {
  background: #111;
  padding: 15px;
  border-radius: 12px;
  transition: transform 0.3s;
  cursor: pointer;
}

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

.team-card img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.team-card p {
  font-size: 0.9rem;
  color: #ccc;
}

/* Sponsors */
.sponsors {
  padding: 40px 20px;
  text-align: center;
}

.sponsors h2 {
  font-family: 'Marker', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.sponsor-card {
  padding: 20px;
  border-radius: 15px;
  background: linear-gradient(180deg, #fff, #000);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsor-card img {
  max-width: 120px;
  height: auto;
}

/* Footer */
footer {
  padding: 30px 20px;
  text-align: center;
  background: #000;
}

footer .socials {
  margin-bottom: 15px;
}

footer .socials a {
  margin: 0 10px;
  font-size: 1.4rem;
  color: #fff;
  transition: color 0.3s;
}

footer .socials a:hover {
  color: #00ff88;
}

footer p {
  font-size: 0.8rem;
  color: #777;
}