/* ═══════════════════════════════════════════════════════════
   CabalinTech — style.css
   Paleta: #0a0e1a (fondo) · #0d1b3e (card) · #1e40af (azul)
           #38bdf8 (acento) · #f8fafc (texto) · #64748b (muted)
═══════════════════════════════════════════════════════════ */

/* ── Reset & base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #0a0e1a;
  --bg2:      #0d1b3e;
  --blue:     #1e40af;
  --accent:   #38bdf8;
  --accent2:  #0ea5e9;
  --text:     #f8fafc;
  --muted:    #94a3b8;
  --border:   rgba(56,189,248,0.15);
  --card-bg:  rgba(13,27,62,0.8);
  --radius:   14px;
  --font-display: 'Exo 2', sans-serif;
  --font-body:    'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  margin-top: 12px;
  max-width: 560px;
}

/* ── Header ────────────────────────────────────────────── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 0;
  transition: background 0.3s, backdrop-filter 0.3s;
}

header.scrolled {
  background: rgba(10,14,26,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 52px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
}

.nav-logo-text span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-portal {
  background: var(--accent);
  color: #0a0e1a;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s, transform 0.1s;
}

.btn-portal:hover {
  background: #7dd3fc;
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56,189,248,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30,64,175,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56,189,248,0.1);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 86px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-headline .line1 { color: var(--text); display: block; }
.hero-headline .line2 {
  display: block;
  background: linear-gradient(135deg, var(--accent) 0%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 540px;
}

.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #0a0e1a;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #7dd3fc;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(56,189,248,0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(56,189,248,0.05);
}

.hero-trust {
  display: flex;
  gap: 28px;
  margin-top: 52px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.trust-item::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}

/* ── Stats ─────────────────────────────────────────────── */
.stats {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  display: block;
}

.stat-suffix {
  font-size: 24px;
  color: var(--accent);
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 500;
}

/* ── Servicios ─────────────────────────────────────────── */
.services {
  padding: 100px 0 80px;
}

.services-header {
  margin-bottom: 52px;
}

.services-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Service card */
.service-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--card-color, var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover {
  border-color: var(--card-color, var(--accent));
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.service-card:hover::after {
  transform: scaleX(1);
}

/* Scan line animation */
.card-scan {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--card-color, var(--accent)), transparent);
  transform: translateY(0);
  opacity: 0;
  pointer-events: none;
}

.service-card:hover .card-scan {
  animation: scanLine 0.5s ease-out forwards;
}

@keyframes scanLine {
  0%   { opacity: 0; transform: translateY(0px); }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(180px); }
}

.card-icon {
  font-size: 36px;
  margin-bottom: 14px;
  line-height: 1;
}

.card-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.card-tagline {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.card-details {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s;
}

.service-card:hover .card-details {
  max-height: 200px;
  opacity: 1;
}

.card-details ul {
  list-style: none;
  margin-bottom: 14px;
}

.card-details ul li {
  font-size: 12px;
  color: var(--muted);
  padding: 3px 0;
  padding-left: 14px;
  position: relative;
}

.card-details ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--card-color, var(--accent));
  font-weight: 700;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--card-color, var(--accent));
  transition: gap 0.2s;
}

.service-card:hover .card-link { gap: 10px; }

/* ── Cómo funciona ─────────────────────────────────────── */
.how {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, transparent, rgba(13,27,62,0.3), transparent);
}

.how-header { margin-bottom: 60px; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(56,189,248,0.3), var(--accent));
}

.step {
  text-align: center;
  padding: 40px 28px;
  position: relative;
}

.step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.step:hover .step-num {
  border-color: var(--accent);
  box-shadow: 0 0 24px rgba(56,189,248,0.2);
}

.step-num span {
  font-family: var(--font-display);
  font-size: 28px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.step-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Portal CTA ────────────────────────────────────────── */
.portal-cta {
  padding: 0 0 100px;
}

.portal-box {
  background: linear-gradient(135deg, rgba(30,64,175,0.3) 0%, rgba(14,165,233,0.15) 100%);
  border: 1px solid rgba(56,189,248,0.3);
  border-radius: 20px;
  padding: 60px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.portal-box::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(56,189,248,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.portal-text h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  margin-bottom: 10px;
}

.portal-text p {
  font-size: 16px;
  color: var(--muted);
  max-width: 420px;
}

.portal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.portal-ot {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

/* ── Galería ───────────────────────────────────────────── */
.gallery {
  padding: 80px 0 100px;
}

.gallery-header { margin-bottom: 40px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border);
  aspect-ratio: 16/10;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover { 
  transform: scale(1.01);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5); 
}

.gallery-item:hover img,
.gallery-item:hover video { transform: scale(1.05); }

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  min-height: 180px;
}

.gallery-placeholder .icon { font-size: 32px; opacity: 0.4; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.open { display: flex; }

.lightbox img,
.lightbox video {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 32px;
  cursor: pointer;
  color: var(--muted);
  background: none;
  border: none;
  line-height: 1;
  transition: color 0.2s;
}

.lightbox-close:hover { color: var(--text); }

/* ── Contacto ──────────────────────────────────────────── */
.contact {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, transparent, rgba(13,27,62,0.2));
}

.contact-header { margin-bottom: 52px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(56,189,248,0.1);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}

.contact-item-value a:hover { color: var(--accent); }

.wa-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.3);
  color: #25d366;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
  width: fit-content;
}

.wa-btn:hover {
  background: rgba(37,211,102,0.2);
  transform: translateX(4px);
}

.map-box {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 340px;
  background: var(--card-bg);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(40%) invert(5%);
}

/* ── Footer ────────────────────────────────────────────── */
footer {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  padding: 52px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text); }

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(56,189,248,0.08);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s;
}

.social-link:hover {
  background: rgba(56,189,248,0.15);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 13px;
  color: var(--muted);
}

.footer-tagline {
  font-size: 12px;
  color: var(--muted);
  opacity: 0.6;
}

/* ── WhatsApp flotante ─────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.wa-float-btn {
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
}

.wa-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

.wa-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.wa-menu.open { display: flex; }

.wa-option {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

.wa-option:hover {
  border-color: #25d366;
  color: #25d366;
}

/* ── Back to top ───────────────────────────────────────── */
.back-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 40px;
  height: 40px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 200;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
  color: var(--muted);
  font-size: 16px;
}

.back-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-top:hover { border-color: var(--accent); color: var(--accent); }

/* ── Animaciones de entrada ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-track { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 68px 0 0 0;
    background: rgba(10,14,26,0.98);
    padding: 32px 24px;
    gap: 24px;
    z-index: 99;
    border-top: 1px solid var(--border);
  }

  .nav-links.mobile-open a { font-size: 18px; color: var(--text); }
  .nav-cta.mobile-open {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    padding: 16px 24px;
    background: rgba(10,14,26,0.98);
    border-top: 1px solid var(--border);
    z-index: 99;
  }

  .nav-cta.mobile-open .btn-portal { width: 100%; text-align: center; padding: 14px; }

  .hero-headline { letter-spacing: -1px; }
  .services-track { grid-template-columns: 1fr 1fr; gap: 12px; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .portal-box { flex-direction: column; padding: 40px 28px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .services-track { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
}

/* Forzar a que todo el contenido interno deje pasar el clic a la tarjeta principal */
.service-card * {
  pointer-events: none;
}

/* IMPORTANTE: Permitir que el enlace real (Ver servicio completo) siga funcionando por sí solo si se clickea directamente */
.service-card .card-link {
  pointer-events: auto;
}