body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #f9f9f9;
  color: #333;
}

html {
  scroll-behavior: smooth;
}

section {
  min-height: 100vh; /* ✅ altura uniforme para todas las secciones */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  box-sizing: border-box;
}

/* COLORES DE FUENTE */

.naranja {
  color: #ff6b00;
}

.claro {
  color: white;
}

/* HEADER */
header {
  background-color: #111;
  padding: 10px 20px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

/* NAVBAR BÁSICA */
.navbar {
  background-color: #111;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  font-size: 1.2rem;
  color: white;
}

.logo-icon {
  width: 24px;
  height: auto;
}

.menu-toggle {
  background-color: #ff6b00;
  border: none;
  color: white;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
  margin-right: 45px;
}

.menu {
  display: none;
  position: absolute;
  top: 60px;
  right: 20px;
  background-color: #111;
  list-style: none;
  padding: 10px;
  margin: 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  border-radius: 5px;
  width: 200px;
  flex-direction: column;
}

.menu li {
  margin: 5px 0;
}

.menu li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 10px;
  display: block;
  border-radius: 5px;
}

.menu li a:hover {
  background-color: #222;
}

/* EFECTO PARALLAX PARA TODAS LAS SECCIONES CON FONDO */
.about-section,
.channel-section,
.ligas-section,
.equipos-section,
.jugadores-section,
.servicios-section,
.merch-section,
.contacto-section {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* HERO (PORTADA) */
.hero {
  background-image: url('../imgs/fondo_home.png'); /* usa tu imagen real aquí */
  background-size: cover;
  background-position: center;
  height: 50vh; /* antes estaba en 100vh */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.5); /* oscurece la imagen */
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}

.logo-hero {
  width: 500px; /* antes 120px */
  z-index: 1;
}

.social-vertical {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 10;
}

.social-vertical a img {
  width: 36px;
  height: 36px;
  transition: transform 0.3s ease;
}

.social-vertical a img:hover {
  transform: scale(1.2);
}

/* SECCIONES */
section {
  padding: 40px 20px;
  border-bottom: 1px solid #ccc;
}

section h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

/* FORMULARIO DE CONTACTO */
form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  gap: 10px;
}

form input, form textarea {
  padding: 10px;
  border: 1px solid #aaa;
  border-radius: 5px;
}

form button {
  padding: 10px;
  background-color: #ff6b00;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

form button:hover {
  background-color: #e65c00;
}

/* FOOTER */
footer {
  background-color: #111;
  color: white;
  text-align: center;
  padding: 20px;
}

/* SECCIÓN QUIENES SOMOS */
.about-section {
  background-image: url('../imgs/wallpaper_quienes_somos.png'); /* ✅ Imagen de fondo */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 80px 20px;
  color: white;
}

.about-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.about-text {
  flex: 1;
  text-align: left;
}

.about-text h2 {
  font-size: 2.5rem;
  color: #ff6b00;
  margin-bottom: 20px;
}

.about-text h2 span {
  color: white;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

.btn-info {
  background-color: #ff6b00;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1rem;
}

.btn-info:hover {
  background-color: #e65c00;
}

.about-image img {
  max-width: 300px;
  height: auto;
  border-radius: 15px;
  border: 4px solid #ff6b00;
  box-shadow: 0 0 10px rgba(255, 107, 0, 0.4);
}

/* SECCIÓN CHANNEL */

.channel-section {
  background-image: url('../imgs/fondo_chanel_index.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px;
  color: white;
}

.channel-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.channel-image img {
  max-width: 500px;
  border-radius: 15px;
  border: 4px solid #ff6b00;
}

.channel-text {
  flex: 1;
  text-align: left;
}

.channel-text h2 {
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.channel-text h2 span:first-child {
  color: #ff6b00; /* SuperSportsMX */
}

.channel-text h2 span:last-child {
  color: white; /* Channel */
}

.channel-text h3 {
  font-size: 1.3rem;
  color: #ff6b00;
  margin-top: 10px;
}

.channel-text p {
  font-size: 1rem;
  margin: 20px 0;
  line-height: 1.6;
}

.icono-play {
  font-size: 1.5rem;
  background-color: #ff6b00;
  color: white;
  border-radius: 8px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* SECCIÓN LIGAS */

.ligas-section {
  background-image: url('../imgs/fondo_Ligas.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px;
  color: white;
}

.ligas-content {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.ligas-texto h2 {
  font-size: 2.5rem;
  color: #ff6b00;
  margin-bottom: 10px;
}

.ligas-texto h3 {
  font-size: 1.2rem;
  color: #ff6b00;
  margin-bottom: 20px;
}

.ligas-texto p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.ligas-imagenes {
  display: flex;
  flex-direction: row;        /* ✅ ahora es fila */
  justify-content: center;    /* ✅ centra horizontalmente */
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;            /* ✅ permite que salten de línea si hay poco espacio */
}

.liga-img img {
  max-width: 400px;
  width: 100%;
  border-radius: 12px;
  border: none;
  box-shadow: none;
}

/* SECCIÓN EQUIPOS */
.equipos-section {
  background-image: url('../imgs/fondo_equipos.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px;
  color: white;
}

.equipos-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.equipos-imagenes {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.equipo-img img {
  width: 100%;
  max-width: 350px;
  border-radius: 15px;
  border: 4px solid #ff6b00;
}

.equipos-texto {
  flex: 1;
  text-align: left;
}

.equipos-texto h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.equipos-texto h3 {
  font-size: 1.2rem;
  color: #ff6b00;
  margin-bottom: 20px;
}

.equipos-texto p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* SECCIÓN JUGADORES */

.jugadores-section {
  background-image: url('../imgs/fondo_jugadores.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px;
  color: white;
}

.jugadores-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.jugadores-texto {
  flex: 1;
}

.jugadores-texto h2 {
  font-size: 2.5rem;
  line-height: 1.2;
}

.jugadores-texto h3 {
  font-size: 1.2rem;
  color: #ff6b00;
  margin: 20px 0;
}

.jugadores-texto p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.inspirado {
  color: #ffb700;
}

.jugadores-imagen {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.jugadores-imagen img {
  max-width: 80%;      /* ✅ la mitad del tamaño */
  height: auto;
  border-radius: 15px;
  margin-left: 40px;   /* ✅ separación del texto */
}

/* SECCIÓN SERVICIOS */

.servicios-section {
  background-image: url('../imgs/fondo_servicios_index.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px;
  color: white;
}

.servicios-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.servicios-imagen img {
  width: 100%;
  max-width: 400px;
  border: 4px solid #ff6b00;
  border-radius: 20px;
}

.servicios-texto {
  flex: 1;
}

.servicios-texto h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.servicios-texto h3 {
  font-size: 1.2rem;
  color: #ff6b00;
  margin-bottom: 20px;
}

.servicios-texto p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}


/* SECCIÓN MERCH */

.merch-section {
  background-image: url('../imgs/fondo_index_merch.png'); /* Si tienes fondo, si no puedes usar color plano */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px;
  color: white;
}

.merch-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.merch-texto {
  flex: 1;
}

.merch-texto h3 {
  font-size: 1.2rem;
  color: #ff6b00;
  margin-bottom: 20px;
}

.merch-texto h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.merch-texto p {
  font-size: 1.1rem;
}

.merch-imagen img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
}

/* SECCIÓN CONTACTO */

.contacto-section {
  background-image: url('../imgs/fondo_contacto.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px;
  color: white;
}

.contacto-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.contacto-info {
  flex: 1;
}

.contacto-info h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.contacto-info h3 {
  font-size: 1.2rem;
  color: #ff6b00;
  margin-bottom: 15px;
}

.contacto-info p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.contacto-imagen img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  border: 4px solid #ff6b00;
  margin-top: 20px;
}

.contacto-formulario {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center; /* ✅ Centrado horizontal */
  justify-content: center;
  text-align: center;
}

.contacto-formulario form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 400px;
}

.contacto-formulario .btn-info {
  align-self: center;
}

.telefono-contacto {
  margin-top: 30px;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.6;
}

.telefono-contacto .icono-telefono {
  font-size: 1.2rem;
  color: white;
  vertical-align: middle;
  margin-right: 6px;
}

.telefono-contacto .naranja {
  color: #ff6b00;
  font-weight: bold;
  display: inline-block;
}

.telefono-contacto .blanco {
  color: white;
  font-weight: bold;
  display: inline-block;
}

/* FOOTER */

.site-footer {
  background-color: #f37021;
  padding: 30px 20px;
  color: white;
  font-family: 'Arial Black', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-logo img {
  max-width: 300px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 1.2rem;
}

.footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact a {
  color: white;
  text-decoration: underline;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.1rem;
  text-align: right;
}

.footer-menu i {
  margin-right: 8px;
}



/* 📱 Estilos para pantallas pequeñas (teléfonos) */
@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    font-size: 1rem;
  }

  .logo-icon {
  width: 20px;
  }
  .logo span {
    font-size: 1rem;
  }

  .menu-toggle {
  font-size: 0.9rem;
  padding: 6px 12px;
  margin-right: 70px; /* ✅ separación del boton menu del borde derecho */
}

  .menu {
  width: 200px; /* tamaño del menú al abrir presionando el botón MENU */
  right: 10px;
  top: 60px;
}

  .hero {
    height: 100vh; /* ✅ pantalla completa en móvil */
    width: 100%;    /* ✅ ocupar todo el ancho */
    background-size: cover;
    background-position: center;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .logo-hero {
    width: 450px; /* Puedes ajustar según tu imagen para celulares */
    max-width: 80%;
  }

  section {
    padding: 30px 15px;
  
.about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .about-image img {
    max-width: 70%;
    margin-top: 20px;
  }

  .about-icon {
  justify-content: center;
  text-align: center;
}

/* SECCIÓN CHANNEL RESPONSIVE*/

.channel-content {
  flex-direction: column;
  text-align: center;
}

.channel-text {
  text-align: center;
}

.channel-image img {
  max-width: 90%;
  margin-bottom: 20px;
}

/* SECCIÓN LIGAS RESPONSIVE */

.ligas-content {
  flex-direction: column;
  text-align: center;
}

.ligas-texto {
  text-align: center;
}

.ligas-imagenes {
  flex-direction: column;
  align-items: center;
}

.liga-img img {
  max-width: 90%;
}

/* SECCIÓN EQUIPOS RESPONSIVE*/
.equipos-content {
  flex-direction: column;
  text-align: center;
}

.equipos-texto {
  text-align: center;
}

.equipos-imagenes {
  flex-direction: column;
  align-items: center;
}

.equipo-img img {
  max-width: 70%;
}

/* SECCIÓN JUGADORES RESPONSIVE */
.jugadores-content {
    flex-direction: column;
    text-align: center;
  }

  .jugadores-texto {
    text-align: center;
  }

  .jugadores-imagen img {
    max-width: 90%;
    margin-left: 0;
    margin-top: 20px;
  }

/* SECCIÓN SERVICIOS RESPONSIVE*/

.servicios-content {
  flex-direction: column;
  text-align: center;
}

.servicios-imagen img {
  max-width: 70%;
  margin-bottom: 20px;
}

.servicios-texto {
  text-align: center;
}

/* SECCIÓN MERCH RESPONSIVE*/

.merch-content {
  flex-direction: column;
  text-align: center;
}

.merch-imagen img {
  max-width: 70%;
  margin-top: 20px;
}


/* SECCIÓN CONTACTO RESPONSIVE */

.contacto-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contacto-content {
  flex-direction: column;
  text-align: center;
}

.contacto-info, .contacto-formulario {
  width: 100%;
}

.contacto-formulario form {
  align-items: center;
}

.contacto-formulario .btn-info {
  align-self: center;
}

.contacto-imagen img {
  max-width: 70%;
}

/* FOOTER RESPONSIVE */

.footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo img {
    margin-bottom: 20px;
  }

  .footer-contact, .footer-menu {
    align-items: center;
    font-size: 1rem;
  }

  .footer-menu {
    text-align: center;
  }

}

/* ESTA PARTE DEL CODIGO EVITA QUE SE GENERE UNA LINEA BLANCA EN LA PARTE DE LOS ICONOS DE LAS REDES SOCIALES */
body {
  overflow-x: hidden;
}

section {
  min-height: 100vh;
  overflow-x: hidden;
  padding: 80px 20px;
  box-sizing: border-box;
}

/* AJUSTE RESPONSIVE PARA LOS ICONOS DE REDES SOCIALES */
@media screen and (max-width: 768px) {
  .social-vertical {
    right: 5px;
  }
}

.navbar-buttons {
  display: flex;
  gap: 10px;
}

.login-toggle {
  background-color: #f17245;
  color: white;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
}


