
  /* Historia del Circuito */
  .historia {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
  }
  
  .historia-titulo {
    font-size: 2.5rem;
    color: #0e944f;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .historia-contenido {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.6;
  }
  
  .historia-contenido .intro {
    font-style: italic;
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 1.5rem;
  }
  
  .historia-bloque {
    margin-top: 1.5rem;
    padding: 1rem;
    border-left: 5px solid #0e944f;
    background: #fff;
    border-radius: 5px;
  }
  
  .historia-bloque h3 {
    font-size: 1.5rem;
    color: #0e944f;
    margin-bottom: 0.5rem;
  }
  
  .historia-bloque p {
    margin: 0;
  }
  
  .historia-bloque:hover {
    background: #e6f9e8;
  }

  .timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin: 2rem 0;
    padding: 1rem;
    border-top: 2px solid #ddd; /* Línea de tiempo */
  }
  
  .timeline-item {
    text-align: center;
    position: relative;
    flex: 1; /* Hace que cada ítem ocupe el mismo espacio */
  }
  
  .timeline-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: #0e944f;
    position: relative;
    top: -30px; /* Mueve la fecha hacia arriba para que no pise el punto */
    background: #fff; /* Fondo blanco para destacar la fecha */
    display: inline-block;
    padding: 0 0.5rem;
    border-radius: 5px;
  }
  
  .timeline-item p {
    margin-top: 0,5rem; /* Espaciado para que no se mezcle con el punto */
  }
  
  .timeline-item:before {
    content: '';
    position: absolute;
    top: 0; /* Alineado con la línea de tiempo */
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: #0e944f; /* Color del punto */
    border-radius: 50%; /* Hace el punto redondo */
    border: 2px solid white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  }
  
  .timeline-item:nth-child(1):before {
    background: #FFD500; /* Ejemplo de color diferente para el primer punto */
  }
  
  
  /* Clubes */
  .clubes {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .clubes h2 {
    color: #0e944f;
    margin-bottom: 1.5rem;
  }
  
  .clubes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  
  .club {
    text-align: center;
    width: 200px;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .club img {
    max-width: 100px;
    height: auto;
    margin-bottom: 0.5rem;
  }
  
  .club h3 {
    margin: 0.5rem 0;
    color: #0e944f;
  }
  
  .redes a {
    display: inline-block;
    margin: 0.5rem;
    color: #0e944f;
    text-decoration: none;
    font-weight: bold;
  }
  
  .redes a:hover {
    color: #0b7a3e;
  }
  
  /* Ciudades */
  
    /* Contenedor de la sección */
.ciudades {
  margin-left: 30%;
  margin-bottom: 3%;
  text-align: center;
  padding: 1rem;
  background: #f4f4f4;
  border-radius: 15px;
  width: 40%;
}

/* Estilo de la lista de ciudades */
.ciudades-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

/* Estilo de cada "chip" de ciudad */
.ciudad {
  background: #e6f7e6;
  border: 2px solid #a8d5a8;
  border-radius: 50px;
  padding: 1rem 1.5rem;
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.ciudad:hover {
  background: #d4f3d4;
  border-color: #76c776;
}

/* Ocultar contenido por defecto */
.contenido {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

/* Estilo del título */
.ciudad h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0;
  font-size: 1.2rem;
  color: #333;
}

/* Estilo de la flecha */
.toggle-arrow {
  font-size: 1.2rem;
  color: #76c776;
  transition: transform 0.3s ease;
}

.ciudad.expandida .toggle-arrow {
  transform: rotate(90deg); /* Gira la flecha */
}

/* Mostrar contenido cuando esté expandido */
.ciudad.expandida .contenido {
  max-height: 600px; /* Ajustar según el contenido */
  margin-top: 0.5rem;
  color: #555;
}  
  
/* Responsivo */
@media (max-width: 768px) {
  .ciudad {
      width: 100%;
  }
}


  .social-icon {
    font-size: 32px; /* Tamaño del ícono */
    color: #0e944f; /* Color inicial */
    margin: 0 0.5rem; /* Espaciado entre íconos */
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .social-icon:hover {
    color: #FFD500; /* Cambia de color al hacer hover */
    transform: scale(1.1); /* Pequeño zoom */
  }

  @media (max-width: 988px){
   /* Contenedor de la sección */
.ciudades {
  margin-left: 30%;
  margin-bottom: 3%;
  text-align: center;
  padding: 1rem;
  background: #f4f4f4;
  border-radius: 15px;
  width: 40%;
}

/* Estilo de la lista de ciudades */
.ciudades-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

/* Estilo de cada "chip" de ciudad */
.ciudad {
  background: #e6f7e6;
  border: 2px solid #a8d5a8;
  border-radius: 50px;
  padding: 1rem 1.5rem;
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.ciudad:hover {
  background: #d4f3d4;
  border-color: #76c776;
}

/* Ocultar contenido por defecto */
.contenido {
  font-size: 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

/* Estilo del título */
.ciudad h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0;
  font-size: 20px;
  color: #333;
}

/* Estilo de la flecha */
.toggle-arrow {
  font-size: 1.2rem;
  color: #76c776;
  transition: transform 0.3s ease;
}

.ciudad.expandida .toggle-arrow {
  transform: rotate(90deg); /* Gira la flecha */
}

/* Mostrar contenido cuando esté expandido */
.ciudad.expandida .contenido {
  max-height: 700px; /* Ajustar según el contenido */
  margin-top: 0.5rem;
  color: #555;
}  
  
}