/* Estilos generales */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #111;
  color: #fff;
}

/* Encabezado */
header {
  background: #222;
  padding: 20px;
  text-align: center;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
}

/* Hero */
.hero {
  text-align: center;
  padding: 50px;
  background: linear-gradient(to right, #444, #222);
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #e91e63;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: transform 0.3s;
}

.btn:hover {
  transform: scale(1.1);
}

/* Sección de artistas */
#artistas {
  text-align: center;
  padding: 40px 20px;
}

.intro-text {
  font-size: 0.9rem;   /* más pequeño que el título */
  font-weight: 300;    /* más ligero */
  margin-bottom: 20px;
  color: #ccc;         /* gris claro para diferenciarlo */
}

.section-title {
  font-size: 2rem;     /* grande y llamativo */
  font-weight: 700;    /* más grueso */
  margin-bottom: 40px;
  color: #ff2e91;      /* tu color rosa de acento */
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Para que se acomoden en móviles */
  margin-top: 20px;
}

.card {
  background: #333;
  padding: 15px;
  border-radius: 10px;
  width: 200px;
  text-align: center;
  transition: transform 0.3s;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  border-radius: 10px;
}

.card h3 {
  margin: 10px 0 5px;
}

.card p {
  color: #ccc;
  font-size: 14px;
}

/* Carrusel horizontal */
.carrusel {
  display: flex;
  gap: 20px;
  overflow-x: auto;   /* scroll horizontal */
  scroll-snap-type: x mandatory;
  padding: 20px;
}

.carrusel .card {
  flex: 0 0 auto;     /* evita que se encojan */
  scroll-snap-align: center;
  width: 200px;
  background: #333;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}






/* Sección de recursos */


#recursos h2 {
  margin-bottom: 20px;
}


  #recursos {
    background: #111;
    padding: 40px 20px;
    text-align: center;
    width: 400px;
    margin: 40px auto;
  }


@media (max-width: 480px) {
  #recursos {
    width: 90%;
    
  }
  
}




  
  /* Estilo de los enlaces */
  #recursos a {
    display: block;          /* que ocupe todo el ancho del div */
    margin-bottom: 20px;
    max-width: 500px;
    margin: auto;
    text-align: center;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
  }

 
  .recursos-lista {
    background: #333;
    margin: 10px 0;
    padding: 15px;
    border-radius: 8px;
    transition: background 0.3s;
  }

  .recursos-lista:hover {
    background: #444;
  }









/* Sección de eventos */
#eventos {
  padding: 40px 20px;
  text-align: center;
}

#eventos h2 {
  margin-bottom: 20px;
}

#eventos table {
  width: 80%;
  margin: auto;
  border-collapse: collapse;
  background: #333;
  border-radius: 8px;
  overflow: hidden;
}

#eventos th, #eventos td {
  border: 1px solid #555;
  padding: 12px;
  text-align: center;
}

#eventos th {
  background: #444;
  color: #fff;
}

#eventos tr:nth-child(even) {
  background: #2a2a2a;
}

#eventos tr:hover {
  background: #444;
}


/* ubicacion */

.titulo-ubicacion{
  text-align: center;
}



.mapa {
  max-width: 900px;      
  margin: 40px auto;      
  padding: 10px;
  text-align: center;     
}

.mapa iframe {
  width: 100%;           
  height: 450px;          
  border: none;           
  border-radius: 10px;   
  box-shadow: 0 4px 12px rgba(0,0,0,0.2); 
}






/* Footer */
footer {
  background: #222;
  padding: 30px 20px;
  text-align: center;
  margin-top: 40px;
}

footer h2 {
  margin-bottom: 15px;
}

footer a {
  color: #e91e63;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.redes {
  margin: 10px 0;
}

.copy {
  margin-top: 15px;
  font-size: 14px;
  color: #aaa;
}

footer a {
  color: #e91e63; /* Rosa principal */
  text-decoration: none;
  margin: 0 5px;
}

footer a:hover {
  text-decoration: underline;
}

/* Colores específicos para cada red */
.redes a {
  text-decoration: none;
  margin: 0 5px;
  font-weight: bold;
}

.facebook {
  color: #1877f2; /* Azul Facebook */
}

.instagram {
  color: #e1306c; /* Rosa Instagram */
}

.youtube {
  color: #ff0000; /* Rojo YouTube */
}

.twitter {
  color: #1da1f2; /* Azul Twitter */
}

.whatsapp {
  color: #25d366; /* Verde WhatsApp */
}

.redes a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .hero {
    padding: 30px;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }

  #eventos table {
    width: 100%;
    font-size: 14px;
  }

  footer {
    font-size: 14px;
  }
}
