body {
    background: blue;
}
.hero-title {
  font-size: 65px;
  text-align: center;
  letter-spacing: 5px;
  color: #ff2e2e;
  text-transform: uppercase;
  font-weight: 900;
  text-shadow:
    0 0 10px rgba(255,0,0,0.7),
    0 0 20px rgba(255,0,0,0.5);
}
.hero-title {
  font-family: 'Orbitron', sans-serif;
}


 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #111;
  color: #fff;
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

header {
  padding: 60px 20px;
  text-align: center;
}

h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

h2 {
  margin-top: 35px;
  margin-bottom: 12px;
  font-size: 28px;
}

.btn {
  display: inline-block;
  background-color: #ff2e2e;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.gallery {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.gallery img {
  width: 200px;
  max-width: 50%;
  border-radius: 10px;
  border: 1px solid rgba(155,155,155,0.12);
}
.gallery img {
  filter: brightness(0.75) contrast(1.1);
}
.gallery img:hover {
  transform: scale(1.05);
  filter: brightness(1);
  transition: 0.3s;
}
.gallery img {
  filter: brightness(0.75);
}
.gallery img {
  filter: brightness(0.7) contrast(1.1);
}
.gallery img {
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

h2 {
  margin-top: 40px;
}


.plans {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: stretch;
  margin-top: 10px;
}

.plan-card {
  position: relative;
  flex: 1 1 320px;
  max-width: 420px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 0 18px rgba(0,0,0,0.35);
  transition: transform 0.18s ease, border 0.18s ease, box-shadow 0.18s ease;
}

.plan-card:hover {
  transform: translateY(-5px);
  border: 1px solid #ff2e2e;
  box-shadow: 0 0 25px rgba(255,46,46,0.18);
}

.plan-card h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.price {
  font-weight: bold;
  margin-bottom: 12px;
}

.plan-card ul {
  list-style: disc;
  margin-left: 18px;
  margin-bottom: 14px;
}

.plan-card li {
  margin: 6px 0;
}

.plan-card .btn {
  margin-top: auto;
  width: fit-content;
}

.plan-pro {
  border: 1px solid #ff2e2e;
  transform: scale(1.03);
  box-shadow: 0 0 24px rgba(255,46,46,0.22);
  box-shadow: 0 0 25px rgba(255, 46, 46, 0.4);
}

.popular {
  position: absolute;
  top: 5px;
  left: 5px;
  background: #ff2e2e;
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: bold;
}

.horarios {
  margin-top: 25px;
}

.horarios p {
  margin: 6px 0;
}

@media (max-width: 768px) {
  h1 {
    font-size: 38px;
  }

  .plans {
    flex-direction: column;
  }

  .plan-card {
    max-width: 100%;
    transform: none;
  }

  .plan-pro {
    transform: none;
  }
}
