
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Orbitron', sans-serif;
    background-color: #0e0e0e;
    color: #fff;
  }

  .imagen-fondo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
  }

  .imagen-fondo img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    filter: blur(5px) brightness(0.5);
    transform: translateZ(0);
    will-change: transform;
  }

  header {
    
    padding: 20px;
    text-align: center;
    border-bottom: 3px solid #ffd700;
    transition: background 0.5s ease;
  }

  header h1 {
    color: #ffd700;
    font-size: 2em;
  }

  nav {
    background: rgba(218, 208, 208, 0.123);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  nav a {
    color: white;
    padding: 10px 90px;
    text-decoration: none;
    transition: background 0.10s;
  }

  nav a:hover {
    background-color: #444;
  }

  .hero {
    background-image: url('https://cdn.wallpapersafari.com/58/11/iCz43m.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
  }

  .hero h2 {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
  }

  .content {
    padding: 20px;
    max-width: 1000px;
    margin: auto;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
  }

  .content h3 {
    margin-bottom: 10px;
    color: #ffd700;
  }

  .content p {
    line-height: 1.6;
  }

  footer {
    background: #020202;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
    color: #888;
  }

  .btn-evento {
    display: inline-block;
    margin: 0 15px 15px;
    padding: 10px 20px;
    background-color: #ffd700;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Orbitron', sans-serif;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    animation: pulse 2s infinite;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
  }

  .btn-evento:hover {
    background-color: #ffea00;
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 0 20px 5px rgba(255, 215, 0, 0.7);
  }

  @keyframes pulse {
    0% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.8); }
    100% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.4); }
  }

  .btn-centro {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .aparecer {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

    .redes-sociales {
    margin-bottom: 10px;
  }

  .redes-sociales a {
    color: #ffd700;
    margin: 0 10px;
    font-size: 24px;
    transition: color 0.3s, transform 0.3s;
  }

  .redes-sociales a:hover {
    color: #fff;
    transform: scale(1.2);
  }

  footer p {
    font-size: 14px;
    color: #aaa;
  }