/* ================================================
   INDUSTRIAS CSS — THE TIKET
   Páginas individuales por industria
   ================================================ */

/* ── HERO ────────────────────────────────────── */
.ind-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #070d1a 0%, #0B1220 50%, #130828 100%);
}

.ind-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 40%, rgba(145, 54, 233, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(80, 30, 160, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.ind-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8rem 2rem 5rem;
}

.ind-hero__eyebrow {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a14dec;
  margin-bottom: 1.2rem;
}

.ind-hero__title {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.6rem;
}

.ind-hero__title .hl {
  background: linear-gradient(90deg, #9136E9, #c66aff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ind-hero__desc {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.4rem;
  max-width: 520px;
}

.ind-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.ind-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, #9136E9, #7b1fd6);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(145,54,233,0.4);
}

.ind-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(145,54,233,0.55);
  color: #fff;
}

.ind-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.ind-btn-outline:hover {
  border-color: #9136E9;
  background: rgba(145,54,233,0.08);
  color: #fff;
}

/* Hero visual / icon side */
.ind-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ind-hero__icon-wrap {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ind-hero__icon-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(145,54,233,0.25) 0%, transparent 70%);
  animation: ind-pulse 3s ease-in-out infinite;
}

@keyframes ind-pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.12); opacity: 1; }
}

.ind-hero__icon-ring {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 2px solid rgba(145,54,233,0.3);
  animation: ind-rotate 20s linear infinite;
}

.ind-hero__icon-ring::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9136E9;
  transform: translateX(-50%);
}

@keyframes ind-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.ind-hero__icon-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9136E9, #6818c0);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(145,54,233,0.5);
  z-index: 1;
}

.ind-hero__icon-circle img {
  width: 90px;
  height: 90px;
  filter: brightness(0) invert(1);
}

/* ── STATS BAR ───────────────────────────────── */
.ind-stats {
  background: #111827;
  border-top: 1px solid rgba(145,54,233,0.15);
  border-bottom: 1px solid rgba(145,54,233,0.15);
  padding: 2.5rem 2rem;
}

.ind-stats__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.ind-stat__num {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, #9136E9, #c66aff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.ind-stat__label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* ── INTRO SECTION ───────────────────────────── */
.ind-intro {
  background: #0B1220;
  padding: 6rem 2rem;
}

.ind-intro__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.ind-section-label {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9136E9;
  margin-bottom: 0.8rem;
}

.ind-section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.4rem;
}

.ind-section-title .hl {
  background: linear-gradient(90deg, #9136E9, #c66aff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ind-section-body {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
}

.ind-section-body + .ind-section-body {
  margin-top: 1rem;
}

.ind-checklist {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.ind-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
}

.ind-checklist li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(145,54,233,0.2);
  border: 1.5px solid #9136E9;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239136E9' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2px;
}

/* ── BENEFITS GRID ───────────────────────────── */
.ind-benefits {
  background: linear-gradient(180deg, #0d1526 0%, #111827 100%);
  padding: 6rem 2rem;
}

.ind-section-head {
  max-width: 700px;
  margin: 0 auto 4rem;
  text-align: center;
}

.ind-benefits__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ind-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(145,54,233,0.15);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}

.ind-card:hover {
  border-color: rgba(145,54,233,0.5);
  background: rgba(145,54,233,0.06);
  transform: translateY(-4px);
}

.ind-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(145,54,233,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: #a14dec;
}

.ind-card__icon svg,
.ind-card__icon [data-lucide] {
  width: 24px;
  height: 24px;
  stroke: #a14dec;
}

.ind-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}

.ind-card__body {
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
}

/* ── USE CASES ───────────────────────────────── */
.ind-cases {
  background: #0B1220;
  padding: 6rem 2rem;
}

.ind-cases__list {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ind-case {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  align-items: start;
  transition: border-color 0.3s;
}

.ind-case:hover {
  border-color: rgba(145,54,233,0.35);
}

.ind-case__num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #9136E9, #6818c0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.ind-case__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
}

.ind-case__body {
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
}

/* ── HOW IT WORKS ────────────────────────────── */
.ind-how {
  background: linear-gradient(180deg, #111827 0%, #0d1526 100%);
  padding: 6rem 2rem;
}

.ind-steps {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.ind-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #9136E9, transparent);
}

.ind-step {
  text-align: center;
  position: relative;
}

.ind-step__bubble {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9136E9, #6818c0);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(145,54,233,0.4);
}

.ind-step__title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.ind-step__body {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}

/* ── CTA BANNER ──────────────────────────────── */
.ind-cta {
  background: linear-gradient(135deg, #1a0a30 0%, #0B1220 50%, #0d1a0d 100%);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ind-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(145,54,233,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.ind-cta__inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.ind-cta__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.ind-cta__title .hl {
  background: linear-gradient(90deg, #9136E9, #c66aff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ind-cta__desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.ind-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BACK LINK ───────────────────────────────── */
.ind-breadcrumb {
  position: absolute;
  top: 5.5rem;
  left: 2rem;
  z-index: 10;
}

.ind-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.ind-breadcrumb a:hover {
  color: #a14dec;
}

/* ── INDEX CLICKABLE CARDS ───────────────────── */
.seccion-industry a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.seccion-industry a:hover .icon-container {
  transform: scale(1.08);
  background-color: #a14dec;
}

.seccion-industry a:hover h3 {
  color: #c66aff;
}

.seccion-industry h3 {
  transition: color 0.3s;
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 900px) {
  .ind-hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 7rem;
  }

  .ind-hero__desc { max-width: 100%; }

  .ind-hero__actions { justify-content: center; }

  .ind-hero__visual { display: none; }

  .ind-stats__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .ind-intro__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .ind-benefits__grid {
    grid-template-columns: 1fr 1fr;
  }

  .ind-steps {
    grid-template-columns: 1fr;
  }

  .ind-steps::before { display: none; }
}

@media (max-width: 600px) {
  .ind-benefits__grid {
    grid-template-columns: 1fr;
  }

  .ind-stats__inner {
    grid-template-columns: 1fr 1fr;
  }
}
