* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

body {
  font-family: Helvetica, sans-serif;
  color: #111;
    background-color: #e6e6e6;
}


.top-bar {
  background-color: #00AEEF;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

.redes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.redes img {
  width: 24px;
  height: 24px;
}

.logo img {
  width: 80px;
  justify-content: center;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  width: 30px;
  height: 3px;
  background: white;
  border-radius: 2px;
}

.menu {
  display: none;
  width: 100%;
  background-color: #00AEEF;
  text-align: right;
  padding-top: 10px;
}

.menu.activo {
  display: block;
}

.menu ul {
  list-style: none;
}

.menu li {
  margin: 10px 0;
}

.menu a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}



.bienvenida {
  background-image: url('Img/Recurso 1.png');
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  text-align: center;
  color: white;
}

.bienvenida h1 {
  font-size: 40px;
}

.bienvenida p {
  font-size: 20px;
  padding-bottom: 50px;
}

.sponsors {
  background-color: #00AEEF;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 15px;
}

.sponsors img {
  max-height: 40px;
}

.sponsors img:hover {
  transform: scale(1.1);
}

.noticias {
  padding: 30px 15px;
  background-color: #e6e6e6;
}

.noticias .titulo {
  display: block;
  text-align: center;
  margin-bottom: 20px;
  font-size: 25px;
}

.noticias-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.noticias-grid h4 {
  font-size: 25px;
  border-bottom: 1px solid black;
  padding-bottom: 5px;
  margin-bottom: 8px;
  width: fit-content;
}

.noticias article img {
  width: 100%;
  border-radius: 5px;
}

.sin-subrayado {
  text-decoration: none;
}

.boton {
  display: inline-block;
  background-color: #00AEEF;
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 10px;
   cursor: pointer;
}

.boton:hover {
color: #00AEEF;
background-color: white;
}

.fixture {
  text-align: center;
  padding: 30px 15px;
  background-color: #e6e6e6;
}

.fixture h3 {
  font-size: 30px;
}

.fixture .botones {
  margin: 15px 0;
}

.fixture button {
  padding: 8px 20px;
  border: none;
  margin: 0 5px;
  border-radius: 4px;
  cursor: pointer;
}

.fixture .activo {
  background-color: #00AEEF;
  color: white;
}

.versus {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.versus img {
  height: 120px;
}

.versus span {
  color: white;
  font-weight: bold;
  font-size: 20px;
  padding: 15px;
  background-color: #00AEEF;
  border-radius: 100px;
}

.mapa {
  text-align: center;
  margin: 40px 0;

}

.mapa h3 {
  font-size: 30px;
  margin-bottom: 10px;
  color: black;
}

.mapa p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: black;
}

.mapa iframe {
  display: block;
  margin: 0 auto;
  width: 80%;
  max-width: 600px;
  height: 400px;
  border: 2px solid #00AEEF;
  border-radius: 10px;
}

.form-container {
  max-width: 480px;
  margin: 0 auto;
  padding: 10px;
}

.form-container h1 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
  text-align: center;
}

.form-container p {
  margin-bottom: 20px;
  font-size: 1rem;
  text-align: center;
}

.form-socio label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  margin-top: 15px;
}

.form-socio input[type="text"] {
  width: 100%;
  padding: 12px 15px;
  border: 1.2px solid #aaa;
  border-radius: 8px;
  font-size: 1rem;
  color: #555;
  outline-offset: 2px;
  transition: border-color 0.3s;
}

.form-socio input[type="text"]::placeholder {
  color: #bbb;
}

.form-socio input[type="text"]:focus {
  border-color: #00aeef;
}

.checkbox-container {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
  font-size: 0.9rem;
}

.checkbox-container a {
  color: #00aeef;
  text-decoration: none;
}

.checkbox-container a:hover {
  text-decoration: underline;
}

.form-socio button {
  margin-top: 30px;
  width: 100%;
  padding: 15px 0;
  background-color: #00aeef;
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.3s;
}

.form-socio button:hover {
  background-color: #007ea7;
}

.re-captcha-info {
  margin-top: 25px;
  font-size: 0.85rem;
  color: #444;
  text-align: center;
}

.re-captcha-info a {
  color: #00aeef;
  text-decoration: none;
}

.re-captcha-info a:hover {
  text-decoration: underline;
}

.footer {
  background-color: #00AEEF;
  color: white;
  display: flex;
  flex-wrap: wrap;
  padding: 30px 20px;
  gap: 20px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-col p,
.footer-col li {
  border-bottom: 1px solid black;
  padding-bottom: 5px;
  margin-bottom: 8px;
}
.footer-col h4 {
   padding-bottom: 10px;
   color: black;
}

.footer-col p:last-child,
.footer-col li:last-child {
  border-bottom: none;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-bottom {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.footer-bottom .redes {
    border-top: 1px solid black;
  padding-top: 5px;
  margin-top: 8px;
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 10px;
  flex-direction: row;
}

.footer-bottom img {
  width: 24px;
}

.menu-izquierda, .menu-derecha {
  display: none;
}

@media (min-width: 800px) {
  .top-bar {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 10px 20px;
  }

  .redes {
    grid-column: 1;
    flex-direction: column;
    gap: 5px;
  }

  .menu-izquierda {
    display: block;
    grid-column: 2;
    justify-self: end;
  }

  .logo {
    grid-column: 3;
    justify-self: center;
  }

  .logo img {
    width: 80px;
  }

  .menu-derecha {
    display: block;
    grid-column: 4;
    justify-self: start;
  }

  .menu-izquierda ul, .menu-derecha ul {
    display: flex;
    gap: 30px;
    list-style: none;
  }

  .menu-izquierda li, .menu-derecha li {
    margin: 0;
  }

  .menu-izquierda a, .menu-derecha a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s;
  }

  .menu-izquierda a:hover, .menu-derecha a:hover {
    color: #00AEEF;
    background-color: white;
  }

  .menu-toggle {
    display: none;
  }

  .menu {
    display: none;
  }

  .noticias-grid {
    flex-direction: row;
  }
}