.lightbox-gallery img {
  width: auto;
  height: auto;
  max-width: 150px;
}

.coming-soon {
  text-align: center;
 color: #1B1100;
  letter-spacing: 2px;
}



.hero-tabs {
  position: relative;
  z-index: 30;
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 25px;
}

.hero-tab {
  background: transparent;
     border: 2px solid #fff;
     color: #1B1100;
	  height: 28px; /* Ajusta este valor */
	   border-radius: 30px;       /* Redondea las esquinas */
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	 font-size: 10px; /* Ajusta el valor a tu gusto (por ejemplo, 10px, 11px, etc.) */
	 min-width: 95px; /* Ensures button is wide enough */
      white-space: nowrap; /* Prevents text from breaking into two lines */
}

.hero-tab:hover,
.hero-tab.active {
  background: white;
  color: black;
  transform: translateY(-2px);
}


.tab-section {
  display: none;
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.tab-section.active {
  display: block;
}

/* Gallery thumbnail */
.lightbox-gallery img {
  width: 280px;
  border-radius: 18px;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 0 18px rgba(255,240,215,0.4);
}

.lightbox-gallery img:hover {
  transform: scale(1.05);
}

/* Lightbox overlay */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 999;
}

.lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 20px;
}

.lightbox-overlay:target {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  inset: 0;
}




.tab-section {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.tab-section.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}




.plans-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap; /* importante para responsive */
}

.plan-card {
  flex: 1;
  min-width: 240px;
  max-width: 280px;
 background: rgba(110, 70, 25, 0.49);
  border: 1px solid rgba(180, 120, 60, 0.6);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  color: #fff;
  position: relative;
}


/* PLAN POPULAR */
.plan-card.popular {
  background: linear-gradient(
    135deg,
    rgba(120, 75, 35, 0.6),
    rgba(90, 55, 25, 0.65)
  );
  border: 1px solid rgba(200, 140, 80, 0.7);
  box-shadow:
    0 0 25px rgba(180, 120, 60, 0.25),
    inset 0 0 20px rgba(255, 200, 120, 0.12);
  transform: scale(1.05);
  transition: all 0.35s ease;
}

/* HOVER – brillo metálico */
.plan-card.popular:hover {
  box-shadow:
    0 0 40px rgba(220, 160, 100, 0.45),
    inset 0 0 25px rgba(255, 220, 160, 0.2);
  transform: scale(1.08);
}

/* BADGE */
.plan-card.popular .badge {
  background: linear-gradient(
    135deg,
    #f5d38a,
    #c07a32
  );
  color: #2b1808;
  font-weight: bold;
}

/* BOTÓN */
.plan-card.popular .plan-btn {
  background: linear-gradient(
    135deg,
    #f1c27d,
    #c07a32
  );
  color: #2b1808;
  box-shadow: 0 5px 15px rgba(200, 130, 70, 0.4);
}

.plan-card.popular .plan-btn:hover {
  filter: brightness(1.1);
}


.price {
  font-size: 32px;
  margin: 15px 0;
}

.price span {
  font-size: 14px;
  opacity: .7;
}

.plan-btn {
  margin-top: 10px;
  padding: 9px 21px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #d4af37, #f5d76e);
  color: #1a1a1a;

  border: 2px solid #c9a227;
  border-radius: 999px; /* completamente redondeado */

  font-weight: 550;
  font-size: 14px;   /* ← tamaño de la fuente */
  text-decoration: none;
  cursor: pointer;

  transition: all 0.25s ease;
}



.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #4f9cff;
  padding: 4px 12px;
  font-size: 12px;
  border-radius: 20px;
}
