/* =====================================================
   page-servicios.css — Estilos exclusivos de /servicios/
   ===================================================== */

/* ---- PAGE HERO ---- */
.page-hero--servicios {
  padding: 140px 2rem 80px;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,92,26,0.12) 0%, transparent 50%);
  z-index: 0; pointer-events: none;
}
.page-hero-stripe {
  position: absolute; top: 0; right: 0;
  width: 40%; height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(249,115,22,0.04) 100%);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0; pointer-events: none;
}
.page-hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.page-hero h1 {
  font-size: var(--text-4xl);
  margin-bottom: 1.25rem;
}
.page-hero h1 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero-lead {
  font-size: var(--text-lg); font-weight: 300;
  color: var(--muted); line-height: 1.75;
}

/* Pills */
.hero-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-pill {
  font-size: var(--text-sm); font-weight: 500;
  padding: 8px 16px; border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--dark2); color: rgba(255,255,255,0.5);
  transition: all 0.2s;
}
.hero-pill.hot {
  background: rgba(249,115,22,0.1);
  border-color: rgba(249,115,22,0.3);
  color: var(--or3);
}

@media (max-width: 768px) {
  .page-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---- SECTION LAYOUT ---- */
.section { padding: 5rem 0; }
.section-alt { background: var(--dark2); }
.section-alt-inner { width: 100%; }
.section-h {
  font-size: var(--text-3xl); margin-bottom: 0.75rem;
}
.section-sub {
  font-size: var(--text-base); font-weight: 300;
  color: var(--muted); line-height: 1.75;
  max-width: 560px; margin-bottom: 3rem;
}

/* ---- SERVICES BIG GRID ---- */
.svc-big-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 2px; background: rgba(255,255,255,0.05);
  border-radius: var(--r-xl); overflow: hidden;
}
.svc-big {
  background: var(--dark2); padding: 2.5rem;
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.svc-big::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  height: 2px; width: 0%;
  background: var(--grad); transition: width 0.4s ease;
}
.svc-big:hover { background: rgba(249,115,22,0.04); }
.svc-big:hover::after { width: 100%; }
.svc-big.featured { background: rgba(249,115,22,0.05); }
.svc-big.featured::after { width: 100%; }
.svc-big-num {
  position: absolute; top: 1rem; right: 1.5rem;
  font-family: var(--font-d); font-size: 5rem; font-weight: 800;
  color: rgba(255,255,255,0.025); line-height: 1;
  pointer-events: none; user-select: none;
}
.svc-icon-wrap {
  width: 50px; height: 50px; border-radius: 12px;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 1.25rem;
}
.svc-title {
  font-family: var(--font-d); font-size: 18px; font-weight: 700;
  letter-spacing: -0.01em; margin-bottom: 0.75rem;
}
.svc-desc {
  font-size: var(--text-md); font-weight: 300;
  color: var(--muted); line-height: 1.75; margin-bottom: 1.25rem;
}
.svc-stack { display: flex; flex-wrap: wrap; gap: 6px; }
@media (max-width: 640px) { .svc-big-grid { grid-template-columns: 1fr; } }

/* ---- CHARLAS ---- */
.talks-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 1rem; flex-wrap: wrap;
}
.new-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--text-xs); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.3);
  color: var(--or3); padding: 4px 12px; border-radius: 100px;
}
.new-badge::before { content: '✦'; }
.talks-intro {
  font-size: var(--text-base); font-weight: 300;
  color: var(--muted); line-height: 1.75;
  max-width: 620px; margin-bottom: 2rem;
}
.talk-list {
  display: flex; flex-direction: column; gap: 2px;
  background: var(--border); border-radius: var(--r-xl); overflow: hidden;
}
.talk-card {
  background: var(--dark2); padding: 2rem 2.5rem;
  display: grid; grid-template-columns: 1fr auto;
  gap: 2rem; align-items: start;
  transition: background 0.25s; position: relative;
}
.talk-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--grad);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.3s;
}
.talk-card:hover { background: rgba(249,115,22,0.04); }
.talk-card:hover::before { transform: scaleY(1); }
.talk-card.available::before { transform: scaleY(1); }
.talk-status {
  font-size: var(--text-xs); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 3px 10px; border-radius: 100px;
  display: inline-flex; align-items: center; gap: 5px;
  margin-bottom: 10px; width: fit-content;
}
.status-available {
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.2); color: var(--success);
}
.status-available::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--success);
}
.status-soon {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border); color: rgba(255,255,255,0.3);
}
.talk-title {
  font-family: var(--font-d); font-size: 17px; font-weight: 700;
  letter-spacing: -0.01em; margin-bottom: 8px;
}
.talk-desc {
  font-size: var(--text-md); font-weight: 300;
  color: var(--muted); line-height: 1.7; margin-bottom: 14px;
}
.talk-meta-row {
  display: flex; flex-wrap: wrap; gap: 16px;
  font-size: var(--text-sm); color: rgba(255,255,255,0.35);
}
.talk-meta-row span { display: flex; align-items: center; gap: 5px; }
.talk-audience {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border); border-radius: 10px;
  padding: 12px 16px; font-size: var(--text-sm); font-weight: 300;
  color: rgba(255,255,255,0.5); line-height: 1.6; margin-top: 10px;
}
.talk-right { min-width: 130px; }
.talk-duration {
  background: rgba(249,115,22,0.08);
  border: 1px solid rgba(249,115,22,0.15);
  border-radius: 10px; padding: 12px 16px; text-align: center;
}
.talk-dur-num {
  font-family: var(--font-d); font-size: 1.5rem; font-weight: 800;
  color: var(--or2); line-height: 1;
}
.talk-dur-label { font-size: var(--text-xs); color: var(--muted); margin-top: 2px; }
.talk-cap { font-size: var(--text-sm); color: rgba(255,255,255,0.3); text-align: center; margin-top: 8px; }
.note-box {
  background: rgba(249,115,22,0.06);
  border: 1px solid rgba(249,115,22,0.15);
  border-radius: 12px; padding: 1.25rem 1.5rem;
  font-size: var(--text-md); font-weight: 300;
  color: rgba(255,255,255,0.6); line-height: 1.7;
  margin-top: 1.5rem; display: flex; gap: 12px; align-items: flex-start;
}
.note-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
@media (max-width: 640px) { .talk-card { grid-template-columns: 1fr; } }
