/* ================================================================
   CIAINFRACOL — requisitos.css
   Estilos exclusivos para requisitos.html
   Paleta: Azul #1e2c3d / #2F3E55 | Amarillo #FBB030
   ================================================================ */

/* ================================================================
   HERO
   ================================================================ */
.req-hero {
  min-height: 100vh;
  background: linear-gradient(155deg, var(--blue-dark) 0%, var(--blue) 60%, #314d6a 100%);
  position: relative;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 40px) 0 80px;
  overflow: hidden;
}

.rh-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.rh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.rh-blob-1 {
  width: 700px; height: 700px;
  background: rgba(251,176,48,.1);
  top: -200px; right: -180px;
  animation: blobDrift1 11s ease-in-out infinite;
}
.rh-blob-2 {
  width: 500px; height: 500px;
  background: rgba(47,62,85,.5);
  bottom: -150px; left: -120px;
  animation: blobDrift2 14s ease-in-out infinite;
}
@keyframes blobDrift1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(25px,-35px) scale(1.06); }
}
@keyframes blobDrift2 {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(-18px,28px); }
}
.rh-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black, transparent);
}

.rh-inner { position: relative; z-index: 2; }

.rh-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 32px;
}
.rh-breadcrumb a { color: rgba(255,255,255,.45); transition: color var(--transition); }
.rh-breadcrumb a:hover { color: var(--yellow); }
.rh-sep { opacity: .4; }
.rh-current { color: var(--yellow-light); font-weight: 600; }

.rh-content {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 64px;
  align-items: center;
}

.rh-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  background: rgba(251,176,48,.15);
  border: 1px solid rgba(251,176,48,.3);
  color: var(--yellow-light);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: 22px;
  letter-spacing: 0.3px;
}

.rh-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.rh-title-accent {
  color: var(--yellow);
  display: inline;
}

.rh-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  margin-bottom: 30px;
  max-width: 520px;
}
.rh-sub strong { color: var(--yellow-light); }

/* Quick stats strip */
.rh-quick-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  max-width: 380px;
}
.rqs-item {
  flex: 1;
  text-align: center;
}
.rqs-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
}
.rqs-num small {
  font-size: 1rem;
  font-weight: 700;
}
.rqs-label {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}
.rqs-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
}

.rh-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ================================================================
   CHECKLIST CARD (hero right side)
   ================================================================ */
.rh-checklist-wrap {
  position: relative;
}
.rh-checklist-wrap::before {
  content: '';
  position: absolute;
  inset: -24px;
  background: radial-gradient(ellipse 65% 65% at 50% 50%, rgba(251,176,48,.1), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.rh-checklist-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: 0 28px 72px rgba(0,0,0,.32), 0 0 0 1px rgba(251,176,48,.08);
  position: relative;
  overflow: hidden;
  animation: cardLevitate 7s ease-in-out infinite;
}
[data-theme="dark"] .rh-checklist-card {
  background: var(--bg-card);
  box-shadow: 0 28px 72px rgba(0,0,0,.5), 0 0 0 1px rgba(251,176,48,.12);
}
@keyframes cardLevitate {
  0%,100% { transform: translateY(0) rotate(.3deg); }
  50% { transform: translateY(-10px) rotate(-.3deg); }
}
.rh-checklist-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow), var(--blue-light), var(--yellow));
  background-size: 200% 100%;
  animation: shimmerBar 2.5s linear infinite;
}
@keyframes shimmerBar {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.rcc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1.5px solid var(--border);
}
.rcc-header-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow);
  flex-shrink: 0;
}
.rcc-header strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
}
.rcc-header span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Progress bar */
.rcc-progress-wrap { margin-bottom: 18px; }
.rcc-progress-bar {
  height: 6px;
  background: var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 6px;
}
.rcc-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-dark));
  border-radius: 10px;
  transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
}
.rcc-progress-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Checklist items */
.rcc-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.rcc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--bg-section);
  transition: all 0.25s ease;
  cursor: pointer;
}
.rcc-item:hover { border-color: var(--yellow); }
.rcc-item.checked {
  border-color: rgba(34,197,94,.3);
  background: rgba(34,197,94,.06);
}

.rcc-checkbox {
  width: 24px; height: 24px;
  border-radius: 6px;
  border: 2px solid var(--gray-300);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
  background: transparent;
}
.rcc-item.checked .rcc-checkbox {
  background: var(--success);
  border-color: var(--success);
}
.check-icon {
  width: 14px; height: 14px;
  fill: white;
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
.rcc-item.checked .check-icon {
  opacity: 1;
  transform: scale(1);
}

.rcc-item-body {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.rcc-emoji { font-size: 1.1rem; flex-shrink: 0; }
.rcc-item-body strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--text-primary);
  line-height: 1.3;
}
.rcc-item.checked .rcc-item-body strong {
  text-decoration: line-through;
  opacity: .6;
}
.rcc-item-body small {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.rcc-ready {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.25);
  border-radius: var(--radius-sm);
  color: #16a34a;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 14px;
  animation: fadeInUp 0.4s ease forwards;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
[data-theme="dark"] .rcc-ready { color: #4ade80; background: rgba(34,197,94,.12); }

.rcc-cta {
  display: block;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.92rem;
  text-align: center;
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(251,176,48,.38);
}
.rcc-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(251,176,48,.5); }
.rcc-cta.ready {
  background: linear-gradient(135deg, var(--success), #16a34a);
  box-shadow: 0 4px 18px rgba(34,197,94,.4);
}

/* ================================================================
   DOCUMENTS SECTION
   ================================================================ */
.docs-section {
  padding: 100px 0;
  background: var(--bg);
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.doc-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}
.doc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.doc-card:hover::after { transform: scaleX(1); }
.doc-card:hover {
  border-color: rgba(251,176,48,.35);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Featured card (comparendo) spans 2 columns */
.doc-card--featured {
  grid-column: span 2;
}

.dc-icon-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.dc-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(251,176,48,.15), rgba(251,176,48,.08));
  border: 1.5px solid rgba(251,176,48,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  transition: transform var(--transition);
}
.doc-card:hover .dc-icon { transform: scale(1.08) rotate(-4deg); }
.dc-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(251,176,48,.1);
  line-height: 1;
  letter-spacing: -2px;
}

.dc-body { flex: 1; }
.dc-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.dc-body p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}
.dc-body p strong { color: var(--text-primary); }

/* Info tip */
.dc-tip {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  padding: 9px 12px;
  background: rgba(47,62,85,.05);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}
[data-theme="dark"] .dc-tip { background: rgba(255,255,255,.04); }
.dc-tip svg { flex-shrink: 0; fill: var(--blue-light); margin-top: 1px; }
[data-theme="dark"] .dc-tip svg { fill: var(--yellow); }

/* Required badge */
.dc-required { margin-top: auto; }
.req-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.req-badge.required {
  background: rgba(239,68,68,.1);
  color: var(--error);
  border: 1px solid rgba(239,68,68,.2);
}
.req-badge.optional {
  background: rgba(251,176,48,.12);
  color: var(--yellow-dark);
  border: 1px solid rgba(251,176,48,.25);
}

/* Expandable section for códigos */
.dc-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(47,62,85,.07);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 0;
}
.dc-expand-btn:hover { border-color: var(--yellow); color: var(--yellow-dark); }
.dc-expand-btn svg { transition: transform var(--transition); }
.dc-expand-btn.open svg { transform: rotate(180deg); }
[data-theme="dark"] .dc-expand-btn { background: rgba(255,255,255,.05); }

.dc-expanded {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1);
}
.dc-expanded.open { max-height: 200px; }
.dc-expanded-intro {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 12px 0 10px;
}
.codigos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 10px;
}
.codigo-chip {
  padding: 5px 13px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--yellow);
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
}
.dc-expanded-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.dc-expanded-note strong { color: var(--text-secondary); }

/* ================================================================
   PROCESO SECTION
   ================================================================ */
.proceso-section {
  padding: 100px 0;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}
.proc-bg { position: absolute; inset: 0; pointer-events: none; }
.proc-bg-shape {
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(251,176,48,.06), rgba(47,62,85,.08));
  filter: blur(60px);
}
.proc-inner { position: relative; z-index: 1; }

/* Timeline */
.proc-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 60px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.proc-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  position: relative;
}

/* Aside with bubble + connector */
.ps-aside {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ps-bubble {
  position: relative;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(47,62,85,.3);
  transition: transform var(--transition), box-shadow var(--transition);
  flex-direction: column;
  gap: 0;
}
.proc-step:hover .ps-bubble {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(47,62,85,.4);
}
.ps-bubble--done {
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  box-shadow: 0 8px 24px rgba(251,176,48,.4);
}

.ps-bubble-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(251,176,48,.2);
  animation: bubblePulse 2.5s ease-in-out infinite;
}
.ps-bubble--done .ps-bubble-ring {
  border-color: rgba(251,176,48,.4);
}
.proc-step:nth-child(2) .ps-bubble-ring { animation-delay: .4s; }
.proc-step:nth-child(3) .ps-bubble-ring { animation-delay: .8s; }
.proc-step:nth-child(4) .ps-bubble-ring { animation-delay: 1.2s; }
.proc-step:nth-child(5) .ps-bubble-ring { animation-delay: 1.6s; }
@keyframes bubblePulse {
  0%,100% { transform: scale(1); opacity: .35; }
  50% { transform: scale(1.2); opacity: .7; }
}

.ps-step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.7rem;
  color: rgba(255,255,255,.5);
  line-height: 1;
  letter-spacing: 0.5px;
}
.ps-step-icon {
  font-size: 1.4rem;
  line-height: 1;
}
.ps-bubble--done .ps-step-num { color: rgba(30,44,61,.5); }

/* Connector line between steps */
.ps-connector {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue-light), rgba(47,62,85,.15));
  min-height: 24px;
  margin: 6px 0;
  position: relative;
  overflow: hidden;
}
.ps-connector::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0; right: 0;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--yellow), transparent);
  animation: connectorFlow 3s ease-in-out infinite;
}
@keyframes connectorFlow {
  0% { top: -100%; }
  100% { top: 200%; }
}

/* Step card */
.ps-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 28px 28px 28px 28px;
  border: 1.5px solid var(--border);
  margin-bottom: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.ps-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--yellow), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.proc-step:hover .ps-card::before { opacity: 1; }
.proc-step:hover .ps-card {
  border-color: rgba(251,176,48,.25);
  box-shadow: var(--shadow-lg);
  transform: translateX(6px);
}

.ps-card--final {
  border-color: rgba(251,176,48,.3);
  background: linear-gradient(135deg, rgba(251,176,48,.04), var(--bg-card));
}
.ps-card--final::before { opacity: 1; background: var(--yellow); }

.ps-card-tag {
  display: inline-block;
  padding: 3px 12px;
  background: rgba(251,176,48,.12);
  color: var(--yellow-dark);
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.ps-card-tag--done {
  background: rgba(34,197,94,.12);
  color: #16a34a;
}
[data-theme="dark"] .ps-card-tag--done { color: #4ade80; }

.ps-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.ps-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}
.ps-card p strong { color: var(--text-primary); }

/* Detail box */
.ps-detail-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-section);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 12px;
}
.ps-detail-icon { font-size: 1.5rem; }
.ps-detail-box strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.ps-detail-box span { font-size: 0.8rem; color: var(--text-muted); }

.ps-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--yellow-dark);
  transition: color var(--transition);
}
.ps-link:hover { color: var(--yellow); }

/* Chips */
.ps-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0;
}
.ps-chips span {
  padding: 5px 14px;
  background: var(--bg-section);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  font-family: var(--font-display);
}

/* Time badge */
.ps-time-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(251,176,48,.1);
  border: 1px solid rgba(251,176,48,.25);
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--yellow-dark);
  margin-bottom: 14px;
}
[data-theme="dark"] .ps-time-badge { color: var(--yellow); }
.ps-time-badge svg { stroke: var(--yellow-dark); }

/* Fields mini list */
.ps-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.ps-field {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.psf-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}

/* What to bring */
.ps-what-bring {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.psb-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
}
.psb-yes {
  background: rgba(34,197,94,.07);
  color: #15803d;
  border: 1px solid rgba(34,197,94,.2);
}
.psb-yes svg { fill: #16a34a; }
[data-theme="dark"] .psb-yes { color: #4ade80; }
.psb-opt {
  background: rgba(251,176,48,.07);
  color: var(--yellow-dark);
  border: 1px solid rgba(251,176,48,.2);
}
.psb-opt svg { stroke: var(--yellow-dark); fill: none; }
[data-theme="dark"] .psb-opt { color: var(--yellow); }

/* Final step badges */
.ps-final-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(34,197,94,.1);
  border: 1.5px solid rgba(34,197,94,.25);
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: #16a34a;
  margin-bottom: 16px;
}
[data-theme="dark"] .ps-final-badge { color: #4ade80; background: rgba(34,197,94,.12); }
.ps-final-badge svg { stroke: #16a34a; }

.ps-cert-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.ps-cert-logos img {
  height: 28px;
  width: auto;
  opacity: .7;
  transition: opacity var(--transition);
}
.ps-cert-logos img:hover { opacity: 1; }
.ps-cert-txt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ================================================================
   SEDE / MAP SECTION
   ================================================================ */
.sede-section {
  padding: 100px 0;
  background: var(--bg-card);
}

.sede-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  align-items: start;
}

.sede-info-card {
  background: var(--bg-section);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
  position: sticky;
  top: calc(var(--nav-height) + 20px);
}

.sic-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1.5px solid var(--border);
}
.sic-icon {
  font-size: 2rem;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sic-header h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.sic-cert {
  font-size: 0.75rem;
  color: #16a34a;
  font-weight: 600;
  display: block;
}
[data-theme="dark"] .sic-cert { color: #4ade80; }

.sic-rows { display: flex; flex-direction: column; gap: 0; margin-bottom: 24px; }
.sic-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.sic-row:last-child { border-bottom: none; }
.sic-row-icon { font-size: 1.2rem; flex-shrink: 0; width: 28px; text-align: center; }
.sic-row strong {
  display: block;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.sic-row span { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; }
.sic-row a { color: var(--yellow-dark); font-weight: 600; font-size: 0.88rem; }
[data-theme="dark"] .sic-row a { color: var(--yellow); }

.sic-actions { display: flex; flex-direction: column; gap: 10px; }
.sic-map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.sic-map-btn:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.sic-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.sic-wa-btn:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.4); }

/* Map frame */
.sede-map-wrap { position: relative; }
.sede-map-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 520px;
  box-shadow: var(--shadow-xl);
  border: 1.5px solid var(--border);
  position: relative;
}
.sede-map-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  box-shadow: inset 0 0 0 1.5px rgba(251,176,48,.15);
  pointer-events: none;
  z-index: 1;
}
.sede-map-frame iframe { width: 100%; height: 100%; display: block; }

/* ================================================================
   HELP CTA SECTION
   ================================================================ */
.help-cta-section {
  padding: 100px 0;
  background: var(--bg-section);
}

.hcs-inner {
  background: linear-gradient(150deg, var(--blue-dark) 0%, var(--blue) 55%, #2d4a68 100%);
  border-radius: var(--radius-xl);
  padding: 72px 64px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hcs-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hcs-deco-1 {
  width: 400px; height: 400px;
  background: rgba(251,176,48,.07);
  filter: blur(70px);
  top: -100px; right: -100px;
}
.hcs-deco-2 {
  width: 300px; height: 300px;
  background: rgba(255,255,255,.03);
  filter: blur(50px);
  bottom: -80px; left: 20%;
}

.hcs-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px; height: 100px;
  flex-shrink: 0;
  z-index: 1;
}
.hcs-main-icon {
  font-size: 3rem;
  position: relative;
  z-index: 2;
  animation: iconBounce 3s ease-in-out infinite;
}
@keyframes iconBounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hcs-icon-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(251,176,48,.3);
  animation: iconRing 2s ease-in-out infinite;
}
@keyframes iconRing {
  0%,100% { transform: scale(1); opacity: .4; }
  50% { transform: scale(1.2); opacity: .9; }
}

.hcs-content { position: relative; z-index: 1; }
.hcs-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  line-height: 1.25;
}
.hcs-content p {
  font-size: 1rem;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 580px;
}
.hcs-content p strong { color: var(--yellow-light); }

.hcs-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.hcs-feat {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  font-family: var(--font-display);
  backdrop-filter: blur(8px);
}
.hcs-feat span { color: var(--yellow); font-weight: 800; }

.hcs-contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.hcs-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
}
.hcs-wa-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(37,211,102,.6); }

.hcs-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.7);
  font-size: 1.5rem;
}
.hcs-phone div strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
}
.hcs-phone div small {
  font-size: 0.75rem;
  color: rgba(255,255,255,.5);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .docs-grid { grid-template-columns: repeat(2, 1fr); }
  .doc-card--featured { grid-column: span 2; }
  .sede-layout { grid-template-columns: 320px 1fr; }
}

@media (max-width: 1024px) {
  .rh-content { grid-template-columns: 1fr; text-align: center; }
  .rh-checklist-wrap { max-width: 480px; margin: 0 auto; }
  .rh-sub, .rh-quick-stats { margin-left: auto; margin-right: auto; }
  .rh-ctas { justify-content: center; }

  .hcs-inner { grid-template-columns: 1fr; text-align: center; padding: 56px 48px; }
  .hcs-icon-wrap { margin: 0 auto; }
  .hcs-contact { justify-content: center; }
  .hcs-features { justify-content: center; }
  .hcs-content p { max-width: 100%; }

  .sede-layout { grid-template-columns: 1fr; }
  .sede-info-card { position: static; }
  .sede-map-frame { height: 380px; }

  .proc-timeline { max-width: 100%; }
}

@media (max-width: 768px) {
  .req-hero { padding-bottom: 60px; }
  .rh-breadcrumb { justify-content: center; }
  .rh-title { font-size: clamp(2rem, 8vw, 3rem); }

  .docs-section { padding: 70px 0; }
  .docs-grid { grid-template-columns: 1fr; gap: 16px; }
  .doc-card--featured { grid-column: span 1; }

  .proceso-section { padding: 70px 0; }
  .proc-step { grid-template-columns: 56px 1fr; gap: 16px; }
  .ps-bubble { width: 52px; height: 52px; }
  .ps-step-icon { font-size: 1.2rem; }
  .ps-card { padding: 22px 20px; }
  .ps-fields { grid-template-columns: 1fr; }

  .sede-section { padding: 70px 0; }
  .sede-map-frame { height: 320px; }

  .help-cta-section { padding: 70px 0; }
  .hcs-inner { padding: 40px 28px; gap: 36px; }
  .hcs-wa-btn { width: 100%; justify-content: center; }
  .hcs-contact { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .rh-quick-stats { flex-direction: column; padding: 16px; gap: 12px; max-width: 100%; }
  .rqs-div { width: 80%; height: 1px; }
  .rh-ctas { flex-direction: column; align-items: stretch; }
  .rh-ctas .btn-primary, .rh-ctas .btn-secondary { justify-content: center; }

  .docs-grid { gap: 12px; }
  .doc-card { padding: 22px 18px; }
  .dc-number { font-size: 2.2rem; }

  .proc-step { grid-template-columns: 48px 1fr; gap: 12px; }
  .ps-bubble { width: 46px; height: 46px; }
  .ps-step-icon { font-size: 1rem; }
  .ps-card { padding: 18px 16px; }
  .ps-what-bring { gap: 4px; }

  .hcs-inner { padding: 32px 20px; }
  .hcs-content h2 { font-size: 1.5rem; }
  .hcs-features { flex-direction: column; gap: 8px; }
  .hcs-feat { justify-content: center; }

  .sede-map-frame { height: 260px; }
  .sic-actions { gap: 8px; }

  .rcc-list { gap: 4px; }
  .rh-checklist-card { padding: 24px 20px; }
  .codigos-grid { gap: 5px; }
}