/* ================================================
   KROZ SPORT CENTER — Pages CSS
   Estilos compartidos para páginas internas
   ================================================ */

/* ================================================
   PAGE HERO (sección superior de páginas internas)
================================================ */
.page-hero {
  position: relative;
  min-height: 90vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.6) 55%,
    rgba(0,0,0,0.8) 100%
  );
}

/* Ambient glow por página */
.page-hero::before {
  content: '';
  position: absolute;
  top: 20%;
  right: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196,154,42,0.1) 0%, transparent 70%);
  animation: pulseGlow 5s ease-in-out infinite;
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 60px;
}

/* Breadcrumb */
.breadcrumb-kroz {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  font-size: 0.82rem;
}
.breadcrumb-kroz li { color: rgba(255,255,255,0.5); }
.breadcrumb-kroz li a { color: var(--gold, #C49A2A); text-decoration: none; font-weight: 600; }
.breadcrumb-kroz li a:hover { color: #fff; }
.breadcrumb-kroz li.active { color: rgba(255,255,255,0.8); }
.breadcrumb-kroz i { font-size: 0.65rem; color: rgba(255,255,255,0.3); }

/* Page hero badge */
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,154,42,0.12);
  border: 1px solid rgba(196,154,42,0.4);
  color: #E8BC4A;
  border-radius: 50px;
  padding: 7px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

/* Page hero title */
.page-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  max-width: 700px;
}

.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.75;
  max-width: 580px;
}

/* ================================================
   ABOUT BLOCK (imagen + texto)
================================================ */
.about-text {
  color: #aaa;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}

.about-img {
  width: 100%;
  border-radius: 20px;
  display: block;
  object-fit: cover;
  max-height: 480px;
  border: 1px solid rgba(196,154,42,0.15);
}

.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, #9A7520, #C49A2A);
  border-radius: 16px;
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 30px rgba(196,154,42,0.35);
}
.aib-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  line-height: 1;
  color: #0a0a0a;
}
.aib-num sup { font-size: 1.2rem; }
.aib-label {
  font-size: 0.72rem;
  color: rgba(0,0,0,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  text-align: center;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(196,154,42,0.05);
  border: 1px solid rgba(196,154,42,0.12);
  border-radius: 12px;
  padding: 12px 14px;
  transition: all 0.3s ease;
}
.highlight-item:hover {
  background: rgba(196,154,42,0.1);
  border-color: rgba(196,154,42,0.3);
}
.highlight-item i {
  color: var(--gold, #C49A2A);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}
.highlight-item div {
  display: flex;
  flex-direction: column;
}
.highlight-item strong {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.highlight-item span {
  font-size: 0.75rem;
  color: #777;
}

/* ================================================
   ZONE CARDS (gimnasio.html)
================================================ */
.zone-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 18px;
  padding: 28px 24px;
  height: 100%;
  transition: all 0.35s ease;
  position: relative;
}
.zone-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196,154,42,0.3);
  box-shadow: 0 16px 40px rgba(196,154,42,0.1);
}
.zone-card--featured {
  border-color: rgba(196,154,42,0.4);
  background: linear-gradient(150deg, #1a1200 0%, #111 50%);
  box-shadow: 0 8px 32px rgba(196,154,42,0.15);
}
.zone-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #9A7520, #E8BC4A);
  color: #0a0a0a;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
}
.zone-icon {
  width: 56px;
  height: 56px;
  background: rgba(196,154,42,0.1);
  border: 1px solid rgba(196,154,42,0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #C49A2A;
  margin-bottom: 16px;
}
.zone-icon--gold {
  background: linear-gradient(135deg, #9A7520, #E8BC4A);
  color: #0a0a0a;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(196,154,42,0.35);
}
.zone-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #fff;
}
.zone-desc {
  color: #888;
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.zone-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.zone-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #ccc;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.zone-list li:last-child { border-bottom: none; }
.zone-list li i { color: #C49A2A; font-size: 0.72rem; }

/* ================================================
   PLAN / PRICING CARDS
================================================ */
.plan-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: all 0.35s ease;
}
.plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196,154,42,0.3);
  box-shadow: 0 20px 50px rgba(196,154,42,0.1);
}
.plan-card--featured {
  border-color: rgba(196,154,42,0.5);
  background: linear-gradient(160deg, #1a1200 0%, #111 50%);
  box-shadow: 0 12px 50px rgba(196,154,42,0.2);
}

.plan-popular-badge {
  background: linear-gradient(135deg, #9A7520, #E8BC4A);
  color: #0a0a0a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-align: center;
  padding: 8px;
}

.plan-header {
  padding: 28px 28px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.plan-icon {
  width: 60px;
  height: 60px;
  background: rgba(196,154,42,0.1);
  border: 1px solid rgba(196,154,42,0.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #C49A2A;
  margin: 0 auto 14px;
}
.plan-icon--dark {
  background: linear-gradient(135deg, #9A7520, #E8BC4A);
  color: #0a0a0a;
  border: none;
  box-shadow: 0 4px 20px rgba(196,154,42,0.35);
}
.plan-icon--outline {
  background: transparent;
  border: 2px solid rgba(196,154,42,0.5);
  color: #C49A2A;
}
.plan-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 6px;
}
.plan-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.plan-currency { font-size: 1.5rem; color: #C49A2A; vertical-align: top; line-height: 1.5; }
.plan-period { font-size: 1rem; color: #666; font-family: 'Outfit', sans-serif; }
.plan-tagline { font-size: 0.82rem; color: #777; margin: 0; }

.plan-features {
  list-style: none;
  padding: 24px 28px;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #ccc;
}
.plan-features li.excluded { color: #444; text-decoration: line-through; }
.plan-features li.included i { color: #C49A2A; }
.plan-features li.excluded i { color: #333; }

.plan-card .btn {
  margin: 0 28px 28px;
  border-radius: 50px;
}

/* ================================================
   CLASS CARDS (gimnasio.html)
================================================ */
.class-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  transition: all 0.35s ease;
}
.class-card:hover {
  transform: translateY(-5px);
  border-color: rgba(196,154,42,0.25);
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
}
.class-color {
  height: 5px;
}
.class-body {
  padding: 24px;
}
.class-icon {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 12px;
}
.class-body h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: #fff;
}
.class-body p {
  color: #888;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 14px;
}
.class-schedule {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.class-schedule span {
  font-size: 0.78rem;
  color: #C49A2A;
  font-weight: 600;
}
.class-schedule i { margin-right: 5px; }

/* ================================================
   STEP CARDS (terapia.html)
================================================ */
.step-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.05);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: all 0.35s ease;
}
.step-card--alt {
  background: rgba(196,154,42,0.04);
  border-color: rgba(196,154,42,0.1);
}
.step-card:hover {
  background: rgba(196,154,42,0.05);
  border-color: rgba(196,154,42,0.25);
}
.step-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(196,154,42,0.1);
  position: absolute;
  top: 12px;
  right: 16px;
  letter-spacing: 2px;
}
.step-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #9A7520, #E8BC4A);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #0a0a0a;
  margin: 0 auto 18px;
  box-shadow: 0 6px 20px rgba(196,154,42,0.3);
}
.step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 10px;
}
.step-desc {
  color: #888;
  font-size: 0.87rem;
  line-height: 1.7;
  margin: 0;
}

/* ================================================
   TREATMENT CARDS (terapia.html)
================================================ */
.treatment-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 20px;
  transition: all 0.35s ease;
  height: 100%;
}
.treatment-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196,154,42,0.3);
  box-shadow: 0 12px 32px rgba(196,154,42,0.08);
}
.treatment-icon {
  width: 52px;
  height: 52px;
  background: rgba(196,154,42,0.1);
  border: 1px solid rgba(196,154,42,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #C49A2A;
  flex-shrink: 0;
}
.treatment-body h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 8px;
}
.treatment-body p {
  color: #888;
  font-size: 0.87rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
.treatment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.treatment-tags span {
  background: rgba(196,154,42,0.08);
  border: 1px solid rgba(196,154,42,0.2);
  color: #C49A2A;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.3px;
}

/* ================================================
   TEAM CARDS (terapia.html)
================================================ */
.team-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  transition: all 0.35s ease;
}
.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196,154,42,0.3);
  box-shadow: 0 16px 40px rgba(196,154,42,0.1);
}
.team-card--featured {
  border-color: rgba(196,154,42,0.4);
  background: linear-gradient(150deg, #1a1200 0%, #111 60%);
  box-shadow: 0 8px 32px rgba(196,154,42,0.15);
}
.team-avatar {
  width: 80px;
  height: 80px;
  background: rgba(196,154,42,0.1);
  border: 2px solid rgba(196,154,42,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #C49A2A;
  margin: 0 auto 16px;
}
.team-avatar--gold {
  background: linear-gradient(135deg, #9A7520, #E8BC4A);
  color: #0a0a0a;
  border: none;
  box-shadow: 0 4px 20px rgba(196,154,42,0.4);
}
.team-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 4px;
}
.team-role {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #C49A2A;
  margin-bottom: 14px;
}
.team-bio {
  color: #888;
  font-size: 0.87rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.team-certs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}
.team-certs span {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #aaa;
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 50px;
}

/* ================================================
   ESTÉTICA CARDS (estetica.html)
================================================ */
.estetica-tabs .nav-link {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #888;
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.estetica-tabs .nav-link:hover {
  background: rgba(196,154,42,0.08);
  border-color: rgba(196,154,42,0.25);
  color: #C49A2A;
}
.estetica-tabs .nav-link.active {
  background: linear-gradient(135deg, #9A7520, #E8BC4A);
  border-color: transparent;
  color: #0a0a0a;
  box-shadow: 0 4px 16px rgba(196,154,42,0.35);
}

.est-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 28px 24px;
  height: 100%;
  transition: all 0.35s ease;
}
.est-card:hover {
  transform: translateY(-5px);
  border-color: rgba(196,154,42,0.3);
  box-shadow: 0 12px 32px rgba(196,154,42,0.1);
}
.est-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 16px;
}
.est-card h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 10px;
}
.est-card p {
  color: #888;
  font-size: 0.87rem;
  line-height: 1.7;
  margin-bottom: 14px;
}
.est-duration {
  font-size: 0.78rem;
  color: #C49A2A;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ================================================
   INNER CTA SECTION
================================================ */
.inner-cta-section {
  position: relative;
  background: linear-gradient(135deg, #100d00 0%, #0f0f0f 50%, #100d00 100%);
  border-top: 1px solid rgba(196,154,42,0.15);
  border-bottom: 1px solid rgba(196,154,42,0.15);
  overflow: hidden;
}
.inner-cta-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C49A2A' fill-opacity='0.04'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.inner-cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196,154,42,0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* ================================================
   RESPONSIVE PAGES
================================================ */
@media (max-width: 991px) {
  .page-hero { min-height: 70vh; }
  .page-hero-title { font-size: clamp(2.4rem, 9vw, 4.5rem); }
  .about-img-badge { right: 10px; bottom: -10px; }
}
@media (max-width: 576px) {
  .page-hero { min-height: 60vh; }
  .page-hero-content { padding-top: 80px; }
  .step-card { padding: 28px 20px; }
  .treatment-card { flex-direction: column; }
  .plan-card .btn { margin: 0 20px 20px; }
  .plan-features { padding: 20px; }
  .plan-header { padding: 24px 20px 16px; }
}
