/* ===== PROPUESTAS DE VALOR TICKETIZA ===== */
.tz-value-block{
  position: relative;
  background:#080808;
  color:#ffffff;
  padding:80px 0 90px;
  overflow:hidden;
}

.tz-value-block::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:
    radial-gradient(circle at top left, rgba(231,41,78,0.35), transparent 55%),
    radial-gradient(circle at bottom right, rgba(231,41,78,0.25), transparent 55%);
  opacity:0.95;
  pointer-events:none;
}

.tz-value-inner{
  position:relative;
  max-width:1100px;
  margin:0 auto;
  padding:0 24px;
}

.tz-value-title{
  text-align:center;
  margin-bottom:40px;
}

.tz-value-kicker{
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#e7294e;
  margin-bottom:10px;
}

.tz-value-title .head-title-1{
  font-size:32px;
  line-height:1.15;
  font-weight:800;
  margin:0 0 10px;
  color:#ffffff;
}

.tz-value-title .title-end{
  color:#e7294e;
}

.tz-value-sub{
  max-width:640px;
  margin:0 auto;
  font-size:14px;
  color:#ffffff;
}

/* ===== GRID DE CARDS ===== */
.tz-value-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}

/* ===== CARD BASE ===== */
.tz-value-card{
  position:relative;
  background:#0a0a0a;
  border-radius:18px;
  padding:24px 22px;
  overflow:hidden;
  border:1px solid rgba(231,41,78,0.9);
  box-shadow:0 18px 45px rgba(0,0,0,0.6);
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    background .28s ease,
    border-color .28s ease;
}

/* Glow/scan layer */
.tz-value-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:transparent;
  pointer-events:none;
  opacity:0;
}

/* HOVER neon tech */
.tz-value-card:hover{
  transform:translateY(-6px);
  background:#111111;
  border-color:#ff3a67;
  box-shadow:
    0 0 18px rgba(231,41,78,0.45),
    0 0 45px rgba(231,41,78,0.30),
    0 0 80px rgba(231,41,78,0.16);
}

.tz-value-card:hover::after{
  background:
    linear-gradient(135deg,
      rgba(231,41,78,0.18) 0%,
      rgba(231,41,78,0) 55%);
  opacity:1;
  animation:scanGlow 1.4s linear infinite;
}

.tz-value-card-inner{
  position:relative;
  z-index:1;
}

/* ICONO */
.tz-value-icon{
  width:40px;
  height:40px;
  border-radius:999px;
  border:1px solid rgba(231,41,78,0.7);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  margin-bottom:18px;
}

.tz-value-icon i{
  color:#e7294e;
}

/* TAG */
.tz-value-tag{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:#e7294e;
  margin-bottom:10px;
}

/* TITULO CARD */
.tz-value-card h3{
  font-size:18px;
  margin:0 0 8px;
  color:#ffffff;
}

/* TEXTO */
.tz-value-card p{
  font-size:14px;
  margin:0 0 10px;
  color:#ffffff;
}

/* META */
.tz-value-meta{
  font-size:12px;
  color:#ffffff;
}

/* Hover icon pulse tech */
.tz-value-card:hover .tz-value-icon i{
  animation:pulseTech 1.6s ease-in-out infinite;
}

/* ===== Keyframes ===== */
@keyframes pulseTech{
  0%{ transform:scale(1); opacity:1; }
  50%{ transform:scale(1.15); opacity:0.7; }
  100%{ transform:scale(1); opacity:1; }
}

@keyframes scanGlow{
  0%{ transform:translate(-120%, -120%); }
  100%{ transform:translate(120%, 120%); }
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .tz-value-block{
    padding:56px 0 64px;
  }
  .tz-value-title .head-title-1{
    font-size:26px;
  }
  .tz-value-sub{
    font-size:13px;
  }
  .tz-value-grid{
    grid-template-columns:1fr;
    gap:18px;
  }
}
/* === CARD WHATSAPP / CONTACT === */
.tz-contact-card{
  background:#0c0c0c;
  border-radius:20px;
  padding:48px 32px;
  max-width:900px;
  margin:80px auto;
  text-align:center;
  color:#ffffff;
  position:relative;
  overflow:hidden;
  box-shadow:
    0 0 20px rgba(231,41,78,0.20),
    0 0 60px rgba(0,0,0,0.65);
}

/* Glow suave en el fondo */
.tz-contact-card::before{
  content:"";
  position:absolute;
  inset:-60%;
  background:
    radial-gradient(circle at top, rgba(231,41,78,0.18), transparent 65%),
    radial-gradient(circle at bottom, rgba(231,41,78,0.12), transparent 65%);
  opacity:0.75;
  pointer-events:none;
}

.tz-contact-inner{
  position:relative;
  z-index:2;
}

.tz-contact-kicker{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.20em;
  color:#e7294e;
  margin-bottom:12px;
}

.tz-contact-title{
  font-size:32px;
  font-weight:800;
  margin-bottom:18px;
  color:#fff;
}

.tz-contact-sub{
  font-size:15px;
  max-width:580px;
  margin:0 auto 28px;
  color:#e5e5e5;
}

/* BOTÓN WHATSAPP (verde oficial y centrado) */
.tz-contact-button{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 26px;
  background:#25D366;
  color:#ffffff;
  font-size:16px;
  font-weight:600;
  border-radius:50px;
  text-decoration:none;
  transition:transform .25s ease, box-shadow .25s ease;
  box-shadow:0 0 12px rgba(37, 211, 102, 0.35);
}

.tz-contact-button i{
  font-size:20px;
}

.tz-contact-button:hover{
  transform:translateY(-4px);
  box-shadow:
    0 0 16px rgba(37,211,102,0.45),
    0 0 45px rgba(37,211,102,0.25);
}

/* RESPONSIVE */
@media (max-width: 980px){
  .tz-contact-card{
    padding:36px 20px;
    margin:48px 16px;
  }
  .tz-contact-title{
    font-size:26px;
  }
  .tz-contact-sub{
    font-size:14px;
  }
  .tz-contact-button{
    width:100%;
    justify-content:center;
  }
}
/* ===== Animación Glow + Scan elegante ===== */
.tz-contact-card{
  animation: tzGlowPulse 4s ease-in-out infinite;
  position: relative;
}

/* capa holográfica */
.tz-contact-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:20px;
  background:linear-gradient(
    135deg,
    rgba(231,41,78,0.12) 0%,
    rgba(231,41,78,0) 60%
  );
  opacity:0;
  animation: tzScan 3.4s linear infinite;
  pointer-events:none;
}

/* ===== KEYFRAMES ===== */

/* pulso suave del glow */
@keyframes tzGlowPulse{
  0%{
    box-shadow:
      0 0 18px rgba(231,41,78,0.18),
      0 0 48px rgba(0,0,0,0.55);
  }
  50%{
    box-shadow:
      0 0 26px rgba(231,41,78,0.28),
      0 0 68px rgba(0,0,0,0.75);
  }
  100%{
    box-shadow:
      0 0 18px rgba(231,41,78,0.18),
      0 0 48px rgba(0,0,0,0.55);
  }
}

/* barrido holográfico */
@keyframes tzScan{
  0%{
    opacity:0;
    transform:translate(-120%, -120%);
  }
  20%{
    opacity:0.45;
  }
  100%{
    opacity:0;
    transform:translate(150%, 150%);
  }
}


/* === Dentro del contenedor respuestaEventos === */

/* Ubicación */
.respuestaEventos .tp-location {
  /* tus estilos aquí */
  color:#d50053;
  font-weight: bold;
  font-size: 11px;
  
}



/* Título (el <a> dentro del h3.tp-title) */
.respuestaEventos .tp-title a {
  /* tus estilos aquí */
  text-align: left;
 
}
.event-related-content h3 {
  /* tus estilos aquí */
  text-align: left;
   height: 10px;

}

/* Fecha del evento */
.respuestaEventos .tp-meta .tp-date {
  /* tus estilos aquí */
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 17px;
  color: #111;
  font-weight: bold;
}

.respuestaEventos .tp-meta .tp-date i {
  /* tus estilos aquí */
  color: #d50053;
}

/* Precio */
.respuestaEventos .tp-price {
  /* tus estilos aquí */
  
  margin-top: 8px;
  font-size: 20px;
  text-align: left;
  color: #d50053;
}



/* ========= Sidebar consola productora (sin neon) ========= */
.tzk-pro-dashboard .tzk-pro-side{
  background: linear-gradient(180deg, #ffffff 0%, #f7f7fb 60%, #f3f4f6 100%);
  border-right: 1px solid rgba(148, 163, 184, 0.35);
  padding: 18px 14px;
  border-radius: 0 16px 16px 0; /* sutil curva, sin glow */
}

/* Contenedor del menú */
.tzk-pro-dashboard .tzk-pro-nav{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Botón del menú (base limpio, sin neon) */
.tzk-pro-dashboard .tzk-pro-nav__item{
  width: 100%;
  text-align: left;
  border: none;
  background: #ffffff;
  color: #222;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;

  display: flex;
  align-items: center;
  gap: 8px;

  transition:
    background-color .15s ease,
    color .15s ease,
    transform .08s ease;
}

/* Hover sencillo, sin glow */
.tzk-pro-dashboard .tzk-pro-nav__item:hover{
  background: #f3e7ec; /* rosado extremadamente suave */
  color: #111;
  transform: translateX(2px);
}

/* Activo limpio, sin sombras ni efectos */
.tzk-pro-dashboard .tzk-pro-nav__item.is-active{
  background: #d50053;
  color: #ffffff;
  transform: translateX(2px);
}

/* Focus accesible */
.tzk-pro-dashboard .tzk-pro-nav__item:focus-visible{
  outline: 2px solid rgba(213, 0, 83, 0.4);
  outline-offset: 2px;
}

/* Responsive */
@media (max-width: 768px){
  .tzk-pro-dashboard .tzk-pro-side{
    padding: 12px 10px;
  }
  .tzk-pro-dashboard .tzk-pro-nav__item{
    font-size: 13px;
    padding: 8px 12px;
  }
}

/* ======== Título ======== */
.tzk-pro-pane#resumen .tzk-pro-h2{
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin-bottom: 16px;
}

/* ======== KPIs ======== */
.tzk-pro-pane#resumen .tzk-pro-kpi{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.tzk-pro-pane#resumen .tzk-pro-kpi__card{
  background: #ffffff;
  border: 1px solid rgba(148,163,184,0.25);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);

  transition: transform .15s ease, box-shadow .15s ease;
}

.tzk-pro-pane#resumen .tzk-pro-kpi__card:hover{
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
}

.tzk-pro-pane#resumen .tzk-pro-kpi__icon{
  font-size: 20px;
  margin-bottom: 6px;
}

/* KPI número */
.tzk-pro-pane#resumen .tzk-pro-kpi__card b{
  font-size: 26px;
  color: #d50053; /* MAGENTA */
}

/* KPI label */
.tzk-pro-pane#resumen .tzk-pro-kpi__card small{
  color: #555;
}

/* ======== Grid de cards ======== */
.tzk-pro-pane#resumen .tzk-pro-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ======== Cards ======== */
.tzk-pro-pane#resumen .tzk-pro-card{
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(148,163,184,0.22);
  padding: 18px 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Header de la card */
.tzk-pro-pane#resumen .tzk-pro-card__head{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tzk-pro-pane#resumen .tzk-pro-card__head h3{
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #111;
}

/* Link dentro de header */
.tzk-pro-pane#resumen .tzk-pro-link{
  font-size: 13px;
  font-weight: 600;
  color: #d50053;
  cursor: pointer;
  transition: color .15s ease;
}

.tzk-pro-pane#resumen .tzk-pro-link:hover{
  color: #b40047;
}

/* ======== Lista de próximos eventos ======== */
.tzk-pro-pane#resumen .tzk-pro-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.tzk-pro-pane#resumen .tzk-pro-list li{
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: #fafafa;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(148,163,184,0.18);

  transition: background .15s ease, transform .15s ease;
}

.tzk-pro-pane#resumen .tzk-pro-list li:hover{
  background: #f2f2f2;
  transform: translateX(2px);
}

.tzk-pro-pane#resumen .tzk-pro-list b{
  display: block;
  font-size: 14px;
  color: #111;
}

.tzk-pro-pane#resumen .tzk-pro-list small{
  color: #6b7280;
  font-size: 12px;
}

/* ======== Badges ======== */
/* Base */
.tzk-pro-pane#resumen .tzk-pro-badge{
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  background: #e5e7eb;
  color: #111;
}

/* Verde OK */
.tzk-pro-pane#resumen .tzk-pro-badge--ok{
  background: #16a34a;
  color: #fff;
}

/* Amarillo (20%) para "Revisión" → Aplicado SOLO aquí */
.tzk-pro-pane#resumen .tzk-pro-badge--rev{
  background: #e7d22c; /* Amarillo Ticketiza */
  color: #000;
}

/* ======== Notas / alertas ======== */
.tzk-pro-pane#resumen .tzk-pro-notes{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.tzk-pro-pane#resumen .tzk-pro-notes li{
  background: #fff4b8; /* Amarillo muy suave (solo en alertas) */
  border-left: 4px solid #e7d22c; /* Amarillo oficial */
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  color: #333;
}

/* ======== Responsive ======== */
@media (max-width: 900px){
  .tzk-pro-pane#resumen .tzk-pro-grid{
    grid-template-columns: 1fr;
  }
}


/* ============================
   Encabezado de la sección Eventos
   ============================ */
.tzk-pro-headrow{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.tzk-pro-headrow .tzk-pro-h2{
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
}

.tzk-pro-filters{
  display: flex;
  align-items: center;
  gap: 10px;
}

.tzk-pro-filters .tzk-pro-inp{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.6);
  background: #ffffff;
  font-size: 13px;
  outline: none;
  min-width: 150px;
}

.tzk-pro-filters .tzk-pro-inp:focus{
  border-color: #d50053;
  box-shadow: 0 0 0 1px rgba(213,0,83,0.15);
}

/* ============================
   Tabla de eventos (wrapper)
   ============================ */
.tzk-pro-table{
  margin-top: 4px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(148,163,184,0.4);
  box-shadow: 0 4px 12px rgba(15,23,42,0.06);
  overflow: hidden;
  font-size: 13px;
}

/* Header de la tabla */
.tzk-pro-thead{
  display: grid;
  grid-template-columns:
    minmax(220px, 2.4fr) /* Evento */
    minmax(150px, 1.6fr) /* Lugar / País */
    minmax(90px, 1fr)    /* Código */
    minmax(90px, 1fr)    /* Llave */
    minmax(110px, 1.2fr) /* Fecha */
    minmax(100px, 1.1fr) /* Aforo */
    minmax(110px, 1.3fr) /* Venta WEB */
    minmax(90px, 1fr)    /* Estado */
    minmax(160px, 1.6fr) /* Acciones */;
  padding: 10px 16px;
  background: #f3f4f6;
  border-bottom: 1px solid rgba(148,163,184,0.5);
  font-weight: 600;
  color: #4b5563;
}

.tzk-pro-thead > div{
  padding-right: 6px;
}

/* Filas de eventos */
.tzk-pro-row{
  display: grid;
  grid-template-columns:
    minmax(220px, 2.4fr)
    minmax(150px, 1.6fr)
    minmax(90px, 1fr)
    minmax(90px, 1fr)
    minmax(110px, 1.2fr)
    minmax(100px, 1.1fr)
    minmax(110px, 1.3fr)
    minmax(90px, 1fr)
    minmax(160px, 1.6fr);
  padding: 10px 16px;
  align-items: center;
  column-gap: 8px;
  border-bottom: 1px solid rgba(243,244,246,1);
  background: #ffffff;
  transition: background-color .15s ease, transform .12s ease, box-shadow .12s ease;
}

.tzk-pro-row:nth-child(even){
  background: #f9fafb;
}

.tzk-pro-row:hover{
  background: #fdf2f6; /* rosado muy suave */
  box-shadow: 0 2px 10px rgba(213,0,83,0.12);
  transform: translateY(-1px);
}

/* ============================
   Columna evento (imagen + texto)
   ============================ */
.tzk-pro-row__event{
  display: flex;
  align-items: center;
  gap: 10px;
}

.tzk-pro-row__event img{
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(148,163,184,0.5);
  background: #e5e7eb;
}

.tzk-pro-row__event b{
  display: block;
  font-size: 14px;
  color: #111827;
}

.tzk-pro-row__event small a{
  font-size: 11px;
  color: #6b7280;
  text-decoration: underline;
}

.tzk-pro-row__event small a:hover{
  color: #d50053;
}

/* ============================
   Columnas texto genérico
   ============================ */
.tzk-pro-row > div{
  min-width: 0;
}

.tzk-pro-row > div b{
  font-size: 13px;
  color: #111827;
}

.tzk-pro-row > div small{
  display: block;
  font-size: 11px;
  color: #6b7280;
}

/* ============================
   Badge estado
   ============================ */
.tzk-pro-table .tzk-pro-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  background: #e5e7eb;
  color: #111827;
}

.tzk-pro-table .tzk-pro-badge--ok{
  background: #16a34a;
  color: #ffffff;
}

/* ============================
   Acciones
   ============================ */
.tzk-pro-actions{
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.tzk-pro-mini{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 9px;
  border-radius: 6px;
  width:100%;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid rgba(148,163,184,0.8);
  background: #ffffff;
  color: #374151;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}

.tzk-pro-mini:hover{
  border-color: #d50053;
  color: #d50053;
  background: #fdf2f8;
}

/* Botón "Más ▾" */
.tzk-pro-mini--more{
  position: relative;
}

/* Dropdown */
.tzk-pro-drop{
  position: relative;
  width: 100%;
}

.tzk-pro-drop__menu{
  position: absolute;
  top: 110%;
  right: 0;
  min-width: 170px;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid rgba(148,163,184,0.6);
  box-shadow: 0 10px 25px rgba(15,23,42,0.25);
  padding: 6px 0;
  display: none;
  z-index: 20;
}

.tzk-pro-drop.is-open .tzk-pro-drop__menu{
  display: block;
}

.tzk-pro-drop__menu a{
  display: block;
  padding: 7px 11px;
  font-size: 12px;
  color: #374151;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color .12s ease, color .12s ease;
}

.tzk-pro-drop__menu a:hover{
  background: #f9fafb;
  color: #d50053;
}

/* ============================
   Responsive
   ============================ */
@media (max-width: 1024px){
  .tzk-pro-headrow{
    flex-direction: column;
    align-items: flex-start;
  }

  .tzk-pro-filters{
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 900px){
  /* Tabla → modo semi-cards (simple, sin reetiquetar columnas) */
  .tzk-pro-thead{
    display: none;
  }
  .tzk-pro-row{
    grid-template-columns: 1fr;
    row-gap: 6px;
    align-items: flex-start;
  }
  .tzk-pro-actions{
    justify-content: flex-start;
  }
}


.pm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 99999;
}

.pm-overlay.pm-open {
  opacity: 1;
  pointer-events: auto;
}

.pm-modal {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  min-width: 280px;
  max-width: 520px;
  width: 90%;
  position: relative;
  transform: scale(.95) translateY(10px);
  transition: transform .25s ease;
}

.pm-overlay.pm-open .pm-modal {
  transform: scale(1) translateY(0);
}

.pm-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: 0;
  font-size: 20px;
  cursor: pointer;
}

/* ===== MODO APP (scroll interno) SIN TAPAR FOOTER ===== */
:root{ --tzFooterH: 320px; } /* ajusta según tu footer real */

.tzk-pro-main{
  height: calc(100vh - 80px); /* 80px aprox topbar */
  overflow: auto;
  padding-bottom: calc(var(--tzFooterH) + 24px);
}

#footer.tz-footer{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  height: var(--tzFooterH);
  z-index: 50;
}



