:root {
      --primary-color: #d19c42;
      --background-dark: #0b0b0b;
      --text-light: #f5f5f5;
    }
    body {
      font-family: 'Montserrat', 'Segoe UI', sans-serif;
      background-color: var(--background-dark);
      color: var(--text-light);
      margin: 0;
      padding: 0;
    }
    .hero {
      background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url('https://www.recreacionvikinga.com/img/hero-solar-sinnis.png') center/cover no-repeat;
      color: white;
      text-align: center;
      padding: 100px 15px;
    }
    .hero h1 {
      font-size: 3rem;
      font-weight: 900;
    }
    .hero p {
      font-size: 1.25rem;
      margin-top: 1rem;
    }
    .section-title {
      color: var(--primary-color);
      margin-top: 3rem;
      margin-bottom: 1rem;
      text-align: center;
    }
    footer {
      background-color: #111;
      color: #ccc;
      padding: 2rem 0;
      text-align: center;
    }
    footer a {
      color: var(--primary-color);
      text-decoration: none;
    }
    .cta {
      background-color: var(--primary-color);
      color: white;
      padding: 2rem 1rem;
      text-align: center;
      margin: 3rem 0;
    }
    .cta a {
      font-size: 1.25rem;
      padding: 10px 20px;
      background: #000;
      color: #fff;
      border-radius: 4px;
      text-decoration: none;
      font-weight: bold;
      display: inline-block;
      margin-top: 1rem;
    }
    .nav-link {
      color: var(--primary-color) !important;
    }
    .navbar-dark .navbar-brand {
      color: #fff;
      font-weight: bold;
    }
    @media (max-width: 768px) {
      .hero {
        padding: 80px 10px;
      }
      .hero h1 {
        font-size: 2rem;
      }
      .hero p {
        font-size: 1rem;
      }
    }

    /*  EVENTOS  */
    .evento-card {
  display: block;
  height: 260px;
}

.evento-bg {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
}

.evento-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.evento-title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.evento-bg:hover .evento-overlay {
  background: rgba(0, 0, 0, 0.35);
  transition: background 0.3s ease;
}
