/* ============================================================
   Ticket Go — organizador.css
   Organizer landing: hero, features, pricing, steps,
   dashboard preview, FAQ, CTA final
   ============================================================ */

/* ============================================================
   HERO
   ============================================================ */
.org-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 150px 0 90px;
  background: radial-gradient(ellipse 120% 100% at 0% 0%, #6D28D9 0%, rgba(109,40,217,0.35) 28%, var(--bg-base) 70%);
}
.org-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at 80% 30%, rgba(236,72,153,0.18), transparent 55%);
}
.org-hero .container { position: relative; z-index: 2; }
.org-hero .chip { margin: 0 auto 26px; }
.org-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  line-height: 1.05;
  margin-bottom: 22px;
}
.org-hero h1 .line { display: block; }
.org-hero .lead {
  color: var(--text-secondary);
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 36px;
}
.org-hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 42px;
}
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 26px;
}
.hero-stats .hs {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.hero-stats .hs b {
  font-family: 'Righteous', cursive;
  font-weight: 400;
  color: var(--text-primary);
}
.hero-stats .sep { color: var(--text-muted); }

/* ============================================================
   FEATURES GRID
   ============================================================ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feat-card {
  background: var(--bg-card-elevated);
  border: 1px solid var(--border-low);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.feat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124,58,237,0.5);
  box-shadow: 0 24px 50px -28px rgba(124,58,237,0.6);
}
.feat-ic {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124,58,237,0.14);
  border: 1px solid rgba(124,58,237,0.3);
  margin-bottom: 20px;
}
.feat-ic svg { width: 28px; height: 28px; stroke: var(--purple-light); }
.feat-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.feat-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.55; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--bg-card); }
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.price-card {
  position: relative;
  background: var(--bg-card-elevated);
  border: 1px solid var(--border-low);
  border-radius: 24px;
  padding: 44px 36px;
  text-align: center;
}
.price-card--vip {
  border-color: rgba(255,102,0,0.45);
  box-shadow: 0 30px 80px -30px rgba(255,102,0,0.4);
  transform: translateY(-8px);
}
.price-card--vip::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,102,0,0.6), transparent 50%, rgba(255,153,68,0.3));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.price-card--pro {
  border-color: rgba(124,58,237,0.45);
  box-shadow: 0 40px 100px -40px rgba(124,58,237,0.5);
}
.price-card--pro::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(124,58,237,0.6), transparent 45%, rgba(236,72,153,0.4));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.price-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.price-badge {
  display: inline-block;
  background: rgba(255,102,0,0.15);
  color: var(--orange-action);
  border: 1px solid rgba(255,102,0,0.3);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 12px;
  margin-bottom: 10px;
}
.price-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}
.price-amount .num {
  font-family: 'Righteous', cursive;
  font-size: clamp(3rem, 8vw, 4.4rem);
  line-height: 1;
}
.price-amount .cur { font-family: 'Righteous', cursive; font-size: 1.6rem; color: var(--text-secondary); }
.price-sub { color: var(--text-secondary); font-size: 1rem; margin-top: 8px; }
.price-divider { height: 1px; background: var(--border-low); margin: 28px 0; }
.price-list { display: grid; gap: 14px; text-align: left; margin-bottom: 30px; }
.price-item { display: flex; align-items: flex-start; gap: 12px; }
.price-item .check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(52,211,153,0.14);
  display: flex; align-items: center; justify-content: center;
}
.price-item .check svg { width: 15px; height: 15px; stroke: var(--green-success); }
.price-item span { font-size: 0.98rem; color: var(--text-primary); padding-top: 1px; }
.price-note { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; margin-top: 22px; max-width: 420px; margin-left: auto; margin-right: auto; }

/* ============================================================
   STEPS (3 pasos)
   ============================================================ */
.org-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; position: relative; }
.org-step {
  background: var(--bg-card);
  border: 1px solid var(--border-low);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.org-step .step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-light));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Righteous', cursive; font-size: 1.3rem; color: #fff;
  box-shadow: 0 8px 24px -8px rgba(124,58,237,0.7);
}
.org-step h3 { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1.15rem; margin-bottom: 10px; }
.org-step p { color: var(--text-secondary); font-size: 0.95rem; }
.org-step-arrow { position: absolute; top: 56px; z-index: 1; }
.org-step-arrow svg { width: 40px; height: 40px; stroke: var(--purple-dark); }
.org-step-arrow.one { left: calc(33.33% - 20px); }
.org-step-arrow.two { left: calc(66.66% - 20px); }

/* ============================================================
   DASHBOARD PREVIEW
   ============================================================ */
.dashprev { background: var(--bg-card); }
.dashprev-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; }
.dashprev-text h2 { font-size: clamp(2rem, 4.5vw, 3rem); line-height: 1.1; margin-bottom: 18px; }
.dashprev-text .chip { margin-bottom: 18px; }
.dashprev-list { display: grid; gap: 16px; margin-top: 24px; }
.dashprev-list .di { display: flex; align-items: flex-start; gap: 14px; }
.dashprev-list .di .check {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: rgba(52,211,153,0.14); display: flex; align-items: center; justify-content: center;
}
.dashprev-list .di .check svg { width: 16px; height: 16px; stroke: var(--green-success); }
.dashprev-list .di span { font-size: 1rem; color: var(--text-primary); padding-top: 1px; }

.dashboard {
  background: var(--bg-card-elevated);
  border: 1px solid var(--border-mid);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 50px 110px -45px rgba(124,58,237,0.65);
}
.db-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.db-head .db-brand { font-size: 0.9rem; color: var(--text-secondary); display: flex; align-items: center; gap: 7px; }
.db-head .db-brand .wm { font-family: 'Righteous', cursive; font-size: 1.05rem; }
.db-pub {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; color: var(--green-success);
  background: rgba(52,211,153,0.12); padding: 5px 11px; border-radius: 999px;
}
.db-pub svg { width: 13px; height: 13px; stroke: var(--green-success); }
.db-demo-note { font-size: 0.78rem; color: var(--text-secondary); margin: -10px 0 14px; letter-spacing: 0.02em; }
.db-event { font-family: 'Righteous', cursive; font-size: 1.4rem; margin-bottom: 18px; }
.db-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 18px; }
.db-stat {
  background: var(--bg-surface); border: 1px solid var(--border-low);
  border-radius: 12px; padding: 14px 12px;
}
.db-stat .label { font-size: 0.7rem; color: var(--text-muted); margin-bottom: 6px; }
.db-stat .val { font-family: 'Righteous', cursive; font-size: 1.25rem; line-height: 1.1; }
.db-progress { margin-bottom: 22px; }
.db-progress .bar { height: 9px; border-radius: 999px; background: var(--bg-surface); overflow: hidden; }
.db-progress .bar i { display: block; height: 100%; width: 70%; background: linear-gradient(90deg, var(--purple-primary), var(--purple-light)); border-radius: 999px; }
.db-progress .pl { display: flex; justify-content: space-between; font-size: 0.72rem; color: var(--text-muted); margin-top: 8px; }
.db-table { display: grid; gap: 8px; }
.db-row {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg-surface); border: 1px solid var(--border-low);
  border-radius: 10px; padding: 10px 14px;
}
.db-row .who { font-size: 0.85rem; color: var(--text-primary); }
.db-row .amt { display: flex; align-items: center; gap: 10px; }
.db-row .amt .bs { font-size: 0.85rem; color: var(--text-secondary); font-weight: 500; }
.db-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.68rem; color: var(--green-success);
  background: rgba(52,211,153,0.12); padding: 4px 9px; border-radius: 999px;
}
.db-tag svg { width: 11px; height: 11px; stroke: var(--green-success); }
.db-foot { font-size: 0.74rem; color: var(--text-muted); margin-top: 14px; text-align: center; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-wrap { max-width: 760px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--bg-card-elevated);
  border: 1px solid var(--border-low);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color var(--ease);
}
.faq-item.open { border-color: rgba(124,58,237,0.45); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 24px;
  background: none; border: none;
  text-align: left;
  cursor: pointer;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1.05rem;
  color: var(--text-primary);
}
.faq-q .ico {
  flex-shrink: 0; width: 24px; height: 24px;
  transition: transform var(--ease);
}
.faq-q .ico svg { width: 24px; height: 24px; stroke: var(--purple-light); }
.faq-item.open .faq-q .ico { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-a .faq-a-inner {
  padding: 0 24px 22px;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final { padding: 60px 0 120px; }
.cta-card {
  position: relative;
  text-align: center;
  border-radius: 28px;
  padding: 64px 40px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(124,58,237,0.35), transparent 70%),
    var(--bg-card-elevated);
  border: 1px solid rgba(124,58,237,0.4);
  overflow: hidden;
  box-shadow: 0 40px 100px -50px rgba(124,58,237,0.8);
}
.cta-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(120deg, rgba(124,58,237,0.7), transparent 50%, rgba(236,72,153,0.5));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.cta-card h2 { font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.1; margin-bottom: 16px; }
.cta-card p { color: var(--text-secondary); font-size: 1.1rem; max-width: 540px; margin: 0 auto 32px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .dashprev-grid { gap: 40px; }
  .price-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .price-card--pro { grid-column: 1 / -1; transform: none; max-width: 480px; margin: 0 auto; width: 100%; }
}
@media (max-width: 860px) {
  .org-hero { padding-top: 130px; }
  .feat-grid { grid-template-columns: 1fr; }
  .org-steps { grid-template-columns: 1fr; }
  .org-step-arrow { display: none; }
  .dashprev-grid { grid-template-columns: 1fr; gap: 40px; }
  .price-grid { grid-template-columns: 1fr; }
  .price-card--vip { transform: none; }
  .price-card--pro { grid-column: auto; max-width: 100%; }
}
@media (max-width: 480px) {
  .org-hero-ctas .btn { flex: 1; justify-content: center; }
  .price-card { padding: 30px 20px; }
  .cta-card { padding: 48px 24px; }
  .db-stats { grid-template-columns: 1fr; }
}
