/* Fuente agresiva tipo Cobra Kai */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

body {
  margin: 0;
  background-color: #000;
  color: #f5f5f5;
  font-family: 'Bebas Neue', sans-serif;
}

.galeria-container {
  padding: 3rem 2rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.galeria-container h2 {
  color: #ffcc00;
  font-size: 3rem;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 10px #ff0000;
  letter-spacing: 2px;
}

.galeria-subtitulo {
  color: #ff5555;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 5px #990000;
}

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

.imagen {
  position: relative;
  overflow: hidden;
  border: 3px solid #ff0000;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.imagen:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(255, 204, 0, 0.8);
}

.imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.imagen:hover img {
  transform: scale(1.1);
}
a {
  display: inline-block;
  max-width: 250px;
  margin: 30px auto 0;
  background: linear-gradient(90deg, #ff0000, #cc0000);
  color: white;
  padding: 14px 30px;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  border-radius: 10px;
  box-shadow: 0 0 12px #cc0000;
  transition: all 0.3s ease;
  font-size: 1.15em;
}

a:hover {
  background: linear-gradient(90deg, #ffcc00, #ff2d2d);
  transform: scale(1.1);
  box-shadow: 0 0 20px #ffcc00, 0 0 30px #ff2d2d;
}