/* ==========================================
   BOTONES
========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-main);
  font-weight: 600;
  border-radius: var(--radius-full);
  padding: 0.75rem 1.6rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.45);
}

.btn-secondary {
  background: #0a192f;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(10, 25, 47, 0.2);
}

.btn-secondary:hover {
  background: #172a45;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(10, 25, 47, 0.3);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.45);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-youtube-subscribe {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  color: white;
  width: 100%;
  font-weight: 700;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(255, 0, 0, 0.25);
}

.btn-youtube-subscribe:hover {
  background: linear-gradient(135deg, #ff1a1a 0%, #b30000 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 0, 0, 0.35);
}

.btn-whatsapp-cta {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-cta:hover {
  background: linear-gradient(135deg, #2ae06f 0%, #0e7064 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

.btn-outline-whatsapp {
  background: transparent;
  border: 1.5px solid var(--color-whatsapp);
  color: #128c7e;
  border-radius: var(--radius-full);
}

.btn-outline-whatsapp:hover {
  background-color: var(--color-whatsapp);
  color: white;
  transform: translateY(-2px);
}

.btn-yt { background-color: var(--color-youtube); color: white; border-radius: var(--radius-full); }
.btn-fb-group { background-color: #1877f2; color: white; border-radius: var(--radius-full); }
.btn-linkedin { background-color: #0a66c2; color: white; }

/* ==========================================
   TARJETAS DE VIDEO
========================================== */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.video-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-border-hover);
}

.video-thumb-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  background-color: #0f172a;
  overflow: hidden;
  display: block;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-card:hover .video-thumb {
  transform: scale(1.04);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background-color: rgba(13, 43, 69, 0.85);
  color: var(--color-accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0.9;
  transition: var(--transition);
  padding-left: 3px;
}

.video-card:hover .video-play-btn {
  opacity: 1;
  background-color: var(--color-youtube);
  color: white;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
}

.video-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.video-category-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent-blue);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
  letter-spacing: 0.03em;
}

.video-card-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.video-card-title a:hover {
  color: var(--color-accent-gold-hover);
}

.video-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
  padding-top: 0.75rem;
}

/* ==========================================
   SERVICIOS
========================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.service-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent-gold);
}

.service-icon {
  font-size: 2.75rem;
  margin-bottom: 1.25rem;
}

.service-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-summary {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  flex: 1;
}

.service-points {
  margin-bottom: 1.5rem;
  border-top: 1px dashed var(--color-border);
  padding-top: 1rem;
}

.service-points li {
  font-size: 0.88rem;
  color: var(--color-text-main);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.service-points i {
  color: var(--color-accent-gold);
  margin-top: 0.2rem;
}

.service-link {
  font-weight: 700;
  color: var(--color-accent-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
}

.service-link:hover {
  color: var(--color-accent-gold-hover);
}

/* ==========================================
   CATEGORÍAS ACADÉMICAS
========================================== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.category-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent-blue);
}

.cat-emoji {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
  display: block;
}

.cat-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.cat-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
}

.cat-count {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-accent-gold);
}

/* ==========================================
   REPRODUCTOR Y DETALLE DE VIDEO
========================================== */
.video-layout-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 2.5rem;
}

.video-player-container {
  position: relative;
  aspect-ratio: 16 / 9;
  background-color: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 1.5rem;
}

.youtube-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-action-bar {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.btn-yt-direct {
  background-color: var(--color-youtube);
  color: white;
}

.btn-whatsapp-direct {
  background-color: var(--color-whatsapp);
  color: white;
}

.content-box {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.box-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.box-text p {
  color: var(--color-text-main);
  line-height: 1.7;
  white-space: pre-line;
}

.video-tags-list {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.tag-chip {
  background-color: var(--color-surface-soft);
  color: var(--color-accent-blue);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.tag-chip:hover {
  background-color: var(--color-accent-blue);
  color: white;
}

.transcript-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.transcript-text {
  font-family: inherit;
  font-size: 0.9rem;
  line-height: 1.65;
  white-space: pre-wrap;
  color: var(--color-text-main);
  background-color: var(--color-surface-soft);
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
  max-height: 400px;
  overflow-y: auto;
}

.sidebar-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.tutor-card {
  background: linear-gradient(135deg, #0d2b45, #1e3a5f);
  color: white;
}

.tutor-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tutor-avatar {
  width: 48px;
  height: 48px;
  background-color: var(--color-accent-gold);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.tutor-pitch {
  font-size: 0.9rem;
  color: #e2e8f0;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.related-video-item {
  display: flex;
  gap: 0.85rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
}

.related-thumb {
  width: 90px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 4px;
}

.related-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-views {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* ==========================================
   CATÁLOGO DE VIDEOS Y FILTROS
========================================== */
.catalog-controls {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.search-box-wrapper {
  position: relative;
  flex: 1;
  min-width: 280px;
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-light);
}

.search-input {
  width: 100%;
  padding: 0.85rem 2.75rem 0.85rem 2.75rem;
  font-family: inherit;
  font-size: 0.95rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background-color: var(--color-surface);
  transition: var(--transition);
}

.search-input:focus {
  outline: none;
  border-color: var(--color-accent-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.clear-btn {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-muted);
}

.sort-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.select-input {
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background-color: var(--color-surface);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--color-text-main);
  cursor: pointer;
}

.category-tabs-wrapper {
  margin-bottom: 1.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.category-tabs {
  display: flex;
  gap: 0.5rem;
  white-space: nowrap;
}

.cat-tab {
  padding: 0.5rem 1rem;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: var(--transition);
}

.cat-tab:hover, .cat-tab.active {
  background-color: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.results-info-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.75rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.filter-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #dbeafe;
  color: #1e40af;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.8rem;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 3rem;
}

.page-link {
  padding: 0.5rem 0.9rem;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
}

.page-link:hover, .page-link.active {
  background-color: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

/* ==========================================
   FORMULARIO DE CONTACTO
========================================== */
.contact-form {
  margin-top: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.col-half {
  flex: 1;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background-color: var(--color-surface);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.alert-success {
  background-color: #dcfce7;
  color: #166534;
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid #bbf7d0;
}

.alert-error {
  background-color: #fee2e2;
  color: #991b1b;
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid #fecaca;
}

/* ==========================================
   BOTÓN FLOTANTE DE WHATSAPP
========================================== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: var(--color-whatsapp);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background-color: var(--color-primary-dark);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================
   INFOGRAFÍAS ACADÉMICAS INTERACTIVAS
========================================== */
.infographic-matrix-table {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 2rem 0;
}

.matrix-header {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr;
  background-color: var(--color-primary);
  color: white;
  font-weight: 700;
  text-align: center;
}

.matrix-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr;
  border-bottom: 1px solid var(--color-border);
  align-items: center;
}

.matrix-row:last-child {
  border-bottom: none;
}

.matrix-cell {
  padding: 1rem 1.25rem;
  font-size: 0.92rem;
}

.matrix-cell.col-feat {
  font-weight: 700;
  color: var(--color-primary);
  background-color: var(--color-surface-soft);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.matrix-cell.tag-green { background-color: #ecfdf5; color: #065f46; font-weight: 600; text-align: center; }
.matrix-cell.tag-amber { background-color: #fffbeb; color: #92400e; font-weight: 600; text-align: center; }
.matrix-cell.tag-blue  { background-color: #eff6ff; color: #1e40af; font-weight: 600; text-align: center; }
.matrix-cell.tag-purple { background-color: #faf5ff; color: #6b21a8; font-weight: 600; text-align: center; }

/* Roadmap de Pasos */
.infographic-roadmap-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2rem 0;
}

.roadmap-step {
  flex: 1;
  text-align: center;
  position: relative;
}

.step-badge {
  width: 38px;
  height: 38px;
  background-color: var(--color-primary);
  color: var(--color-accent-gold);
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem auto;
  box-shadow: 0 2px 8px rgba(13, 43, 69, 0.2);
}

.step-icon {
  font-size: 1.75rem;
  color: var(--color-accent-gold);
  margin-bottom: 0.5rem;
}

.roadmap-step h4 {
  font-size: 1.05rem;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
}

.roadmap-step p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  margin: 0;
}

.roadmap-connector {
  color: var(--color-accent-gold);
  font-size: 1.25rem;
  opacity: 0.7;
}

/* Árbol de Decisiones */
.infographic-decision-tree {
  background: white;
  border: 2px solid var(--color-primary-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-lg);
}

.tree-root-question {
  text-align: center;
  border-bottom: 2px dashed #cbd5e1;
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
}

.question-tag {
  display: inline-block;
  background-color: var(--color-accent-gold);
  color: var(--color-primary-dark);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
}

.tree-root-question h3 {
  font-size: 1.35rem;
  color: var(--color-primary);
}

.tree-branches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.tree-branch {
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}

.branch-simple {
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.branch-complex {
  background-color: #eff6ff;
  border: 1px solid #bfdbfe;
}

.branch-pill {
  display: inline-block;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 0.4rem 1.15rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
}

.branch-simple .branch-pill { background-color: #22c55e; color: white; }
.branch-complex .branch-pill { background-color: #3b82f6; color: white; }

.branch-example {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.test-result {
  background: white;
  padding: 1rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.test-result strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.test-result p {
  font-size: 0.85rem;
  margin: 0;
  color: #334155;
}

/* ==========================================
   BLOG & ARTÍCULOS EDUCATIVOS
========================================== */
.blog-stats-pill {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #ffffff;
}

.blog-stats-pill .pill-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-stats-pill .pill-separator {
  color: var(--color-accent-gold);
  font-size: 0.9rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem 2rem;
  margin-top: 1.5rem;
}

.blog-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(13, 43, 69, 0.07);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s ease, border-color 0.28s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 35px rgba(13, 43, 69, 0.12), 0 4px 12px rgba(212, 175, 55, 0.18);
  border-color: var(--color-accent-gold);
}

.blog-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  height: 210px;
  background-color: #081e36;
  border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.03);
}

.blog-card-badges-row {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  right: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.blog-card-category {
  background-color: rgba(13, 43, 69, 0.92);
  backdrop-filter: blur(4px);
  color: var(--color-accent-gold);
  font-weight: 700;
  font-size: 0.72rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 175, 55, 0.4);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.blog-card-infographic-pill {
  background-color: rgba(16, 185, 129, 0.95);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.blog-card-body {
  padding: 1.5rem 1.65rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.blog-card-meta i {
  color: var(--color-accent-gold);
  margin-right: 0.25rem;
}

.blog-card-title {
  font-size: 1.22rem;
  line-height: 1.38;
  margin-bottom: 0.85rem;
  font-weight: 800;
}

.blog-card-title a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}

.blog-card-title a:hover {
  color: var(--color-accent-blue);
}

.blog-card-excerpt {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.58;
  margin-bottom: 1.25rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.blog-card-tag {
  font-size: 0.75rem;
  background-color: #f1f5f9;
  color: #475569;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  font-weight: 500;
  border: 1px solid #e2e8f0;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f1f5f9;
  padding-top: 1.1rem;
  margin-top: auto;
}

.blog-author-mini {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
}

.mini-author-img {
  width: 36px !important;
  height: 36px !important;
  max-width: 36px !important;
  max-height: 36px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 2px solid var(--color-accent-gold) !important;
  flex-shrink: 0 !important;
  display: inline-block !important;
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}

.btn-read-more i {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.btn-read-more:hover {
  color: var(--color-accent-gold);
}

.btn-read-more:hover i {
  transform: translateX(4px);
}

/* ==========================================
   DETALLE DEL ARTÍCULO (BLOG POST)
========================================== */
.post-header-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  font-size: 0.9rem;
  color: var(--color-accent-gold);
  margin-bottom: 0.75rem;
}

.post-header-meta .category-badge {
  background-color: var(--color-accent-gold);
  color: var(--color-primary-dark);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-full);
}

.post-title-main {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.25;
}

.post-feature-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 0 auto 2.5rem auto;
  box-shadow: 0 16px 36px -8px rgba(10, 25, 47, 0.12);
  max-height: 360px;
  max-width: 820px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background-color: #020c1b;
}

.post-feature-image {
  width: 100%;
  height: 100%;
  max-height: 360px;
  display: block;
  object-fit: cover;
}

.post-lead-excerpt {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--color-primary);
  font-weight: 500;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-left: 4px solid #f59e0b;
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  border-right: 1px solid rgba(226, 232, 240, 0.6);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  padding: 1.5rem 1.75rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 2rem;
}

.post-main-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #334155;
}

.post-main-text h2 {
  color: var(--color-primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 0.5rem;
}

.post-main-text h3 {
  color: var(--color-primary-light);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.post-main-text p {
  margin-bottom: 1.25rem;
}

.post-main-text ul, .post-main-text ol {
  margin-bottom: 1.5rem;
  padding-left: 1.75rem;
}

.post-main-text li {
  margin-bottom: 0.5rem;
}

.post-main-text blockquote {
  border-left: 4px solid var(--color-primary);
  background-color: #f1f5f9;
  padding: 1rem 1.5rem;
  font-style: italic;
  margin: 1.5rem 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Infografía Masterclass */
.infographic-masterclass-card {
  background: linear-gradient(135deg, #0d2b45 0%, #1e40af 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-lg);
}

.masterclass-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
}

.masterclass-header i {
  font-size: 2rem;
}

.masterclass-header h3 {
  color: white;
  margin: 0;
  font-size: 1.35rem;
}

.masterclass-modules-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.masterclass-modules-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
}

/* Infografía Pilares de Investigación */
.infographic-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.pillar-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent-gold);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  background-color: #fef3c7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  font-size: 1.35rem;
}

.pillar-card h4 {
  font-size: 1.05rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.pillar-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.45;
}

/* Etiquetas del Post */
.post-tags-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.tag-chip {
  background-color: #f1f5f9;
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
}

/* Caja de Autor de Profe Luisa */
.post-author-box {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
  border: 1px solid #cbd5e1;
  border-left: 5px solid var(--color-accent-gold);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-top: 2rem;
}

.author-box-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-accent-gold);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.author-title {
  display: block;
  font-size: 0.85rem;
  color: var(--color-accent-gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.author-desc {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

/* Barra lateral: Artículos Relacionados */
.related-posts-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-post-link {
  display: block;
  text-decoration: none;
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  background-color: var(--color-surface-soft);
  transition: var(--transition);
  border: 1px solid transparent;
}

.related-post-link:hover {
  background-color: white;
  border-color: var(--color-border);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.rel-category {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-accent-gold);
  margin-bottom: 0.25rem;
}

.related-post-link h4 {
  font-size: 0.9rem;
  color: var(--color-primary);
  line-height: 1.35;
  margin: 0;
}

/* ==========================================
   INFOGRAFÍA 1: DIÁLOGO CÓMIC ACADÉMICO (ORCID)
========================================== */
.infographic-comic-dialog {
  background: white;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-md);
}

.comic-header {
  text-align: center;
  margin-bottom: 2rem;
  border-bottom: 2px dashed #cbd5e1;
  padding-bottom: 1.25rem;
}

.comic-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-primary);
  color: var(--color-accent-gold);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}

.comic-scene {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.comic-character-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.comic-avatar-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #f1f5f9;
  border: 2px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  box-shadow: 0 4px 14px rgba(10, 25, 47, 0.08);
}

.comic-avatar-circle.mentor-circle {
  border-color: #f59e0b;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.25);
  overflow: hidden;
  padding: 0;
}

.comic-luisa-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.char-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.speech-bubble {
  position: relative;
  padding: 1.35rem 1.6rem;
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  line-height: 1.6;
  box-shadow: 0 8px 25px -4px rgba(10, 25, 47, 0.07);
  transition: var(--transition);
}

.bubble-question {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  color: #0f172a;
  border: 1px solid #cbd5e1;
  border-left: 4px solid #3b82f6;
}

.bubble-question p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1e293b;
}

.bubble-answer {
  background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
  color: #78350f;
  border: 1px solid #fde68a;
  border-left: 4px solid #f59e0b;
  text-align: left;
}

.bubble-answer p {
  margin: 0;
  font-size: 0.96rem;
  color: #78350f;
  line-height: 1.65;
}

.comic-connector {
  font-size: 2rem;
  color: var(--color-accent-gold);
  opacity: 0.8;
  flex-shrink: 0;
}

.comic-key-points {
  background-color: #f8fafc;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border-left: 4px solid var(--color-accent-gold);
}

.comic-key-points h4 {
  font-size: 1.05rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.comic-points-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.comic-points-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #334155;
}

/* ==========================================
   INFOGRAFÍA 2: PUENTE METODOLÓGICO
========================================== */
.infographic-bridge-diagram {
  background: linear-gradient(135deg, #0d2b45 0%, #1e3a8a 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-lg);
}

.bridge-header h3 {
  color: white;
  font-size: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

.bridge-flow-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.bridge-node {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}

.node-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  font-size: 1.5rem;
}

.icon-origin {
  background-color: #fef08a;
  color: #854d0e;
}

.icon-dest {
  background-color: #86efac;
  color: #14532d;
}

.node-center-circle {
  width: 110px;
  height: 110px;
  background-color: white;
  color: var(--color-primary-dark);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  border: 4px solid var(--color-accent-gold);
}

.node-center-circle i {
  font-size: 1.75rem;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.node-center-circle h4 {
  font-size: 0.82rem;
  color: var(--color-primary-dark);
  margin: 0;
  line-height: 1.2;
}

.bridge-node h4 {
  color: white;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.bridge-node p {
  color: #cbd5e1;
  font-size: 0.85rem;
  line-height: 1.45;
  margin: 0;
}

.bridge-arrow {
  color: var(--color-accent-gold);
  font-size: 1.75rem;
}

.bridge-pillars-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
}

.bridge-pillar-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: #f1f5f9;
}

/* ==========================================
   INFOGRAFÍA 3: ÁRBOL DE PROMPTS CHATGPT
========================================== */
.infographic-prompts-container {
  background: white;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-md);
}

.prompts-header {
  margin-bottom: 2rem;
  border-bottom: 2px dashed #cbd5e1;
  padding-bottom: 1.25rem;
}

.prompts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.prompt-category-card {
  background-color: #f8fafc;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.prompt-category-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.prompt-cat-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.prompt-cat-title i {
  font-size: 1.35rem;
}

.prompt-cat-title h4 {
  font-size: 1rem;
  color: var(--color-primary);
  margin: 0;
}

.prompt-box {
  background: white;
  border: 1px solid #e2e8f0;
  border-left: 3px solid var(--color-accent-gold);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  flex: 1;
}

.prompt-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.35rem;
  letter-spacing: 0.03em;
}

.prompt-text {
  font-size: 0.88rem;
  color: #1e293b;
  font-style: italic;
  line-height: 1.5;
  margin: 0;
}

/* ==========================================
   4 NUEVAS INFOGRAFÍAS INTERACTIVAS
========================================== */

/* 1. EMBUDO DE BÚSQUEDA EN SCOPUS */
.infographic-scopus-funnel {
  background: linear-gradient(135deg, #091e36 0%, #133961 100%);
  color: #ffffff;
  border-radius: 16px;
  padding: 2.25rem 2rem;
  margin: 2.5rem 0;
  box-shadow: 0 10px 25px rgba(13, 43, 69, 0.15);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
}

.scopus-funnel-header h3 {
  color: #ffffff;
  font-size: 1.45rem;
  margin: 0.6rem 0 1.5rem;
}

.funnel-steps-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.funnel-step-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 12px;
  padding: 1.25rem;
  transition: var(--transition);
}

.funnel-step-card:hover {
  background: rgba(15, 23, 42, 0.85);
  border-color: var(--color-accent-gold);
  transform: translateX(4px);
}

.funnel-step-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0284c7;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.4);
}

.funnel-step-content h4 {
  color: #38bdf8;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.funnel-code {
  display: block;
  background: #020617;
  color: #4ade80;
  font-family: monospace;
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  font-size: 0.9rem;
  margin: 0.4rem 0 0.6rem;
  word-break: break-all;
}

.funnel-tip {
  font-size: 0.88rem;
  color: #e2e8f0;
  margin: 0;
}

/* 2. MATRIZ DE CITAS NORMAS APA 7 */
.infographic-apa7-matrix {
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 16px;
  padding: 2.25rem 2rem;
  margin: 2.5rem 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.apa7-header h3 {
  color: var(--color-primary);
  font-size: 1.45rem;
  margin: 0.6rem 0 1.5rem;
}

.apa7-rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.apa7-rule-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.4rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
}

.apa7-rule-title h4 {
  color: var(--color-primary);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  border-bottom: 2px solid var(--color-accent-gold);
  padding-bottom: 0.4rem;
}

.apa7-rule-format {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.apa7-example-box {
  background: #f1f5f9;
  border-radius: 8px;
  padding: 0.75rem;
  margin-top: 0.6rem;
  border-left: 3px solid var(--color-accent-blue);
}

.example-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-accent-blue);
  display: block;
  margin-bottom: 0.3rem;
}

.example-code {
  margin: 0;
  font-family: monospace;
  font-size: 0.82rem;
  white-space: pre-wrap;
  color: #1e293b;
}

/* 3. PIPELINE DE IA ÉTICA */
.infographic-ai-pipeline {
  background: linear-gradient(135deg, #09182d 0%, #142848 100%);
  color: #ffffff;
  border-radius: 16px;
  padding: 2.25rem 2rem;
  margin: 2.5rem 0;
  border: 1.5px solid rgba(168, 85, 247, 0.4);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.ai-pipeline-header h3 {
  color: #ffffff;
  font-size: 1.45rem;
  margin: 0.6rem 0 1.5rem;
}

.ai-pipeline-stages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.ai-stage-card {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
  transition: var(--transition);
}

.ai-stage-card:hover {
  transform: translateY(-4px);
  border-color: #c084fc;
}

.ai-stage-num {
  position: absolute;
  top: -12px;
  left: 1rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #a855f7;
  color: #ffffff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.ai-stage-tool h4 {
  color: #c084fc;
  font-size: 1.15rem;
  margin: 0.3rem 0 0.2rem;
}

.ai-stage-role {
  font-size: 0.75rem;
  color: #38bdf8;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
}

.ai-stage-action {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.5;
  margin: 0;
}

/* 4. PIRÁMIDE DE CUARTILES */
.infographic-quartiles-pyramid {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 2.25rem 2rem;
  margin: 2.5rem 0;
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
}

.quartiles-header h3 {
  color: var(--color-primary);
  font-size: 1.45rem;
  margin: 0.6rem 0 1.5rem;
}

.quartiles-layers {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quartile-layer-card {
  background: #f8fafc;
  border-radius: 0 10px 10px 0;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: var(--transition);
}

.quartile-layer-card:hover {
  background: #ffffff;
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.quartile-tag {
  color: #ffffff;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.4rem 1rem;
  border-radius: 8px;
  min-width: 170px;
  text-align: center;
  flex-shrink: 0;
}

.quartile-desc {
  margin: 0;
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .comic-scene, .bridge-flow-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .comic-connector, .bridge-arrow {
    transform: rotate(90deg);
  }
  .comic-points-list {
    grid-template-columns: 1fr;
  }
  .prompts-grid {
    grid-template-columns: 1fr;
  }
  .post-author-box {
    flex-direction: column;
    text-align: center;
  }
  .masterclass-modules-list {
    grid-template-columns: 1fr;
  }
  .blog-card-footer {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }
  .btn-read-more {
    width: 100%;
    justify-content: flex-end;
  }
  .video-layout-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .matrix-header, .matrix-row {
    grid-template-columns: 1fr;
  }
  .infographic-roadmap-steps {
    flex-direction: column;
    gap: 1.5rem;
  }
  .roadmap-connector {
    transform: rotate(90deg);
  }
  .tree-branches {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ==========================================================================
   MEDIA KIT OFICIAL & DEMOGRAFÍA - ESTILOS VISUALES
   ========================================================================== */

.media-kit-banner {
  background: linear-gradient(135deg, #0d2b45 0%, #174066 60%, #1e5280 100%);
  color: #ffffff;
  padding: 3.5rem 0;
}

.media-kit-hero-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-top: 1rem;
}

.mk-creator-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 1.75rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  max-width: 380px;
  margin: 0 auto;
}

.mk-creator-avatar {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.mk-avatar-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-accent-gold);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.mk-avatar-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #10b981;
  color: #ffffff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  border: 2px solid #ffffff;
}

.mk-creator-name {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.mk-creator-degree {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--color-accent-gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.mk-creator-bio-short {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
  margin-bottom: 1.25rem;
}

.mk-creator-stats-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.mini-stat {
  text-align: center;
}

.mini-stat strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
}

.mini-stat span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.75);
}

/* KPIs de Alcance */
.mk-kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.mk-kpi-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mk-kpi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent-gold);
}

.mk-kpi-card.highlight-gold-card {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border-color: #fde68a;
}

.mk-kpi-card.highlight-blue-card {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-color: #bfdbfe;
}

.mk-kpi-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(13, 43, 69, 0.06);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.mk-kpi-val {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.mk-kpi-label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text-main);
  margin-bottom: 0.25rem;
}

.mk-kpi-sub {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* Misión y Propuesta */
.mk-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.mk-overview-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.mk-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: #fef3c7;
  color: #b45309;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.mk-overview-card h3 {
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.mk-overview-card p {
  color: var(--color-text-main);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Demografía */
.mk-demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.demo-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem;
}

.demo-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-border);
}

.demo-header h4 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--color-primary);
}

.demo-highlight-stat {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin: 0.5rem 0;
}

.demo-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #eff6ff;
  color: #1e40af;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.demo-gender-split {
  display: flex;
  justify-content: space-around;
  margin: 1rem 0;
}

.gender-col {
  text-align: center;
}

.gender-pct {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
}

.gender-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.gender-bar-wrapper {
  display: flex;
  height: 16px;
  border-radius: 10px;
  overflow: hidden;
  background: #e2e8f0;
}

.gender-bar-segment.bar-male {
  background: #2563eb;
}

.gender-bar-segment.bar-female {
  background: #9333ea;
}

.geo-item {
  margin-bottom: 0.85rem;
}

.geo-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: var(--color-text-main);
}

.progress-bar-bg {
  height: 10px;
  background: #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 6px;
  transition: width 0.5s ease-in-out;
}

/* 8 Ejes de Contenido */
.mk-focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.25rem;
}

.mk-focus-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.mk-focus-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-accent-gold);
  box-shadow: var(--shadow-md);
}

.mk-focus-card .focus-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f1f5f9;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin: 0 auto 0.75rem auto;
}

.mk-focus-card h4 {
  font-size: 1rem;
  color: var(--color-primary);
  margin: 0;
}

/* Oportunidades de Colaboración */
.mk-collab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.mk-collab-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
}

.mk-collab-card:hover {
  border-color: #2563eb;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.collab-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.collab-title {
  font-size: 1.15rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.collab-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Tabla Desglose Redes */
.mk-table-wrapper {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.mk-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

.mk-table th {
  background: #f8fafc;
  color: var(--color-primary);
  font-weight: 700;
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.mk-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}

.mk-table tbody tr:hover {
  background: #f8fafc;
}

.channel-cell {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 1.2rem;
}

.badge-reach {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
}

/* Home Media Kit Teaser */
.home-mk-wrapper {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 3rem;
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: var(--radius-xl);
  padding: 3rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 16px 36px -8px rgba(10, 25, 47, 0.07);
  position: relative;
  overflow: hidden;
}

.home-mk-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hmk-pill {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
}

.hmk-pill:hover {
  border-color: #f59e0b;
  transform: translateY(-1px);
}

/* Home Media Kit Widget Card */
.home-mk-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 20px 40px -10px rgba(10, 25, 47, 0.12);
  max-width: 420px;
  margin: 0 auto;
  position: relative;
  transition: var(--transition);
}

.home-mk-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -10px rgba(10, 25, 47, 0.16);
}

.hmk-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #f1f5f9;
}

.hmk-card-tag {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(10, 25, 47, 0.05);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.hmk-card-date {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  background: #f1f5f9;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  font-weight: 500;
}

.hmk-main-metric {
  text-align: center;
  margin-bottom: 1.5rem;
}

.hmk-reach-val {
  display: block;
  font-size: 2.85rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0a192f 0%, #1e40af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hmk-reach-lbl {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 500;
  margin-top: 0.25rem;
}

.hmk-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  text-align: center;
  background: #f8fafc;
  padding: 1rem 0.75rem;
  border-radius: var(--radius-md);
  border: 1px solid #f1f5f9;
}

.hmk-mini-box .hmk-num {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-primary);
}

.hmk-mini-box .hmk-lbl {
  font-size: 0.72rem;
  color: var(--color-text-muted);
}

.hmk-geo-bar {
  display: flex;
  height: 10px;
  border-radius: 6px;
  overflow: hidden;
  background: #e2e8f0;
  margin-bottom: 0.5rem;
}

.hmk-geo-seg.hmk-america { background: #0d5c75; }
.hmk-geo-seg.hmk-europa { background: #2563eb; }
.hmk-geo-seg.hmk-otros { background: #d4a373; }

.hmk-geo-legend {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.hmk-geo-legend .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 3px;
}

.dot-america { background: #0d5c75; }
.dot-europa { background: #2563eb; }
.dot-otros { background: #d4a373; }

.hmk-link-full {
  display: block;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 6px;
  background: #eff6ff;
  transition: all 0.2s ease;
}

.hmk-link-full:hover {
  background: #dbeafe;
  color: #1d4ed8;
}

@media (max-width: 900px) {
  .media-kit-hero-inner,
  .home-mk-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .media-kit-hero-card,
  .home-mk-widget-col {
    margin-top: 1.5rem;
  }
  .home-mk-highlights {
    justify-content: center;
  }
}

/* ==========================================
   PÁGINA DE ASESORÍAS Y MENTORÍAS
========================================== */
.services-catalog-section {
  padding-top: 3.5rem;
  padding-bottom: 5rem;
  background: var(--color-bg);
}

.services-full-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.service-detail-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 10px 30px -5px rgba(10, 25, 47, 0.06);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(10, 25, 47, 0.12);
  border-color: rgba(245, 158, 11, 0.4);
}

.service-detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #f59e0b 0%, #3b82f6 50%, #10b981 100%);
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 2rem 2.5rem 1.25rem 2.5rem;
  border-bottom: 1px solid #f1f5f9;
}

.service-emoji {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
}

.service-heading {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.25;
  margin-bottom: 0.25rem;
}

.service-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #1d4ed8;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
}

.service-card-body {
  padding: 2rem 2.5rem 2.5rem 2.5rem;
}

.service-lead {
  font-size: 1.12rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.6;
  margin-bottom: 0.85rem;
}

.service-full-text {
  font-size: 0.98rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.service-split-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.service-benefits-col h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-benefits-col h4 i {
  color: #f59e0b;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.5;
}

.benefits-list li i {
  color: #10b981;
  font-size: 0.9rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.service-target-col {
  height: 100%;
}

.target-box {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.target-box h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.target-box h4 i {
  color: #3b82f6;
}

.target-box p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.service-card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
}

.service-card-actions .btn {
  width: 100%;
}

@media (max-width: 900px) {
  .service-split-row {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .service-card-header, .service-card-body {
    padding: 1.5rem;
  }
}

