/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:          #EDF2FF;
  --bg-2:        #F5F8FF;
  --bg-dark:     #0D1729;
  --blue:        #1D6BF3;
  --blue-light:  #5592F5;
  --blue-dark:   #1453C2;
  --green:       #7EC82A;
  --green-dark:  #5DA010;
  --ink:         #0D1729;
  --ink-soft:    #3D4A5C;
  --ink-mute:    #7A8699;
  --white:       #FFFFFF;
  --line:        rgba(29,107,243,0.12);
  --glass:       rgba(255,255,255,0.65);
  --glass-bdr:   rgba(255,255,255,0.85);
  --glass-shd:   0 8px 32px rgba(29,107,243,0.1);
  --sans:        "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --gutter:      1.5rem;
  --container:   1200px;
  --r:           16px;
  --r-lg:        24px;
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  background: var(--bg-2);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.025em; font-weight: 800; }
h2 em, h3 em { font-style: normal; color: var(--blue); }
ul { list-style: none; padding: 0; }
::selection { background: var(--blue); color: white; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.glass {
  background: var(--glass);
  border: 1px solid var(--glass-bdr);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: var(--glass-shd);
  border-radius: var(--r-lg);
}
@supports not (backdrop-filter: blur(1px)) {
  .glass { background: rgba(255,255,255,0.92); }
}

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .5rem 1rem; background: var(--blue); color: white;
  z-index: 9999; border-radius: 8px; font-weight: 600;
  transition: top .2s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   4. Typography helpers
   ============================================================= */
.section-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .75rem;
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); }
.section-sub { font-size: 1.05rem; color: var(--ink-soft); margin-top: .75rem; line-height: 1.7; }

/* =============================================================
   5. Buttons
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background .2s;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
}
.btn:active { transform: scale(.97) !important; }

.btn-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 4px 20px rgba(29,107,243,.3);
}
.btn-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 8px 30px rgba(29,107,243,.4);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-soft);
  border: 1.5px solid rgba(29,107,243,.2);
}
.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: white;
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: var(--blue);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn-white:hover {
  background: #f0f4ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
}

.btn-lg  { padding: .9rem 2rem; font-size: 1rem; border-radius: 12px; }
.btn-xl  { padding: 1.1rem 2.75rem; font-size: 1.05rem; border-radius: 14px; }
.btn-block { width: 100%; }

/* =============================================================
   6. Nav
   ============================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background .35s var(--ease-out), box-shadow .35s var(--ease-out), padding .35s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(245,248,255,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--line);
  padding: .6rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-logo img { height: 90px; width: auto; }
.nav-links {
  display: none;
  gap: 1.75rem;
  margin-left: auto;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding-bottom: 2px;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width .3s var(--ease-out);
  border-radius: 2px;
}
.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { margin-left: auto; }

.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .3s var(--ease-out);
}
.nav-burger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.nav-mobile {
  display: none;
  background: rgba(245,248,255,.97);
  backdrop-filter: blur(20px);
  padding: 1rem var(--gutter) 1.5rem;
  border-top: 1px solid var(--line);
}
.nav-mobile.is-open {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.nav-mobile nav,
.nav-mobile > nav {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.nav-mobile a {
  font-weight: 500;
  color: var(--ink-soft);
  padding: .65rem 0;
  border-bottom: 1px solid var(--line);
  transition: color .2s;
}
.nav-mobile a:hover { color: var(--blue); }
.nav-mobile .btn {
  margin-top: 1rem;
  border-bottom: none;
  text-align: center;
}

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { margin-left: 0; }
  .nav-burger { display: none; }
}

/* Nav en blanco mientras estamos sobre el hero oscuro (sólo páginas con .has-dark-hero).
   Al hacer scroll se añade .is-scrolled y todo vuelve al estilo normal. */
body.has-dark-hero .nav:not(.is-scrolled) .nav-links a {
  color: rgba(255,255,255,.92);
}
body.has-dark-hero .nav:not(.is-scrolled) .nav-links a:hover { color: #fff; }
body.has-dark-hero .nav:not(.is-scrolled) .nav-links a::after {
  background: #fff;
}
body.has-dark-hero .nav:not(.is-scrolled) .nav-logo img {
  filter: brightness(0) invert(1);
  transition: filter .3s var(--ease-out);
}
body.has-dark-hero .nav:not(.is-scrolled) .nav-burger span {
  background: #fff;
}
.nav-logo img { transition: filter .3s var(--ease-out); }

/* =============================================================
   7. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}
.hero-mesh {
  position: absolute;
  inset: -25%;
  z-index: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(29,107,243,.28) 0%, transparent 42%),
    radial-gradient(circle at 82% 72%, rgba(126,200,42,.2) 0%, transparent 42%),
    radial-gradient(circle at 58% 12%, rgba(85,146,245,.22) 0%, transparent 38%),
    radial-gradient(circle at 30% 85%, rgba(29,107,243,.14) 0%, transparent 38%),
    var(--bg);
  filter: blur(55px) saturate(140%);
  animation: meshDrift 22s ease-in-out infinite;
}
@keyframes meshDrift {
  0%,100% { transform: scale(1)    rotate(0deg); }
  33%      { transform: scale(1.08) rotate(60deg); }
  66%      { transform: scale(1.05) rotate(120deg); }
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-block: 3rem 4rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(29,107,243,.1);
  padding: .35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}
.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 1.25rem;
  line-height: 1;
}
.hero-title em {
  display: block;
  font-style: normal;
  color: var(--blue);
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-bottom: 2.75rem;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}
.stat { display: flex; flex-direction: column; gap: .15rem; }
.stat-row { display: flex; align-items: baseline; gap: .1rem; }
.stat-num { font-size: 1.5rem; font-weight: 800; color: var(--ink); line-height: 1; }
.stat-unit { font-size: 1.1rem; font-weight: 700; color: var(--blue); }
.stat-label { font-size: .75rem; color: var(--ink-mute); font-weight: 500; }
.stat-divider { width: 1px; height: 34px; background: var(--line); }

/* Hero visual */
.hero-visual { position: relative; }
.hero-photo-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(29,107,243,.18), 0 4px 16px rgba(0,0,0,.08);
  will-change: transform;
}
.hero-photo {
  width: 100%;
  max-height: 580px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.hero-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.95);
  border-radius: 12px;
  padding: .75rem 1rem;
  display: flex;
  align-items: center;
  gap: .65rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.badge-star { font-size: 1.3rem; color: #F59E0B; }
.hero-badge strong { display: block; font-size: .88rem; color: var(--ink); line-height: 1.3; }
.hero-badge span   { font-size: .74rem; color: var(--ink-mute); }

@media (min-width: 960px) {
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
@media (min-width: 1280px) {
  .hero-inner { grid-template-columns: 55fr 45fr; }
  .hero-photo  { max-height: 640px; }
}

/* =============================================================
   8. Pain strip
   ============================================================= */
.pain-strip {
  background: var(--bg-dark);
  color: white;
  padding: 4rem 0;
}
.pain-strip-label {
  text-align: center;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 2.5rem;
}
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.pain-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r);
  padding: 1.4rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: background .25s var(--ease-out), border-color .25s;
}
.pain-item:hover {
  background: rgba(29,107,243,.18);
  border-color: rgba(29,107,243,.35);
}
.pain-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }
.pain-item p { font-size: .93rem; color: rgba(255,255,255,.75); line-height: 1.65; font-style: italic; }
@media (min-width: 720px) { .pain-grid { grid-template-columns: 1fr 1fr; } }

/* =============================================================
   9. Servicios
   ============================================================= */
.servicios {
  padding: 6rem 0;
  background: var(--bg-2);
}
.servicios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.service-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(29,107,243,.14);
}
.service-icon {
  width: 52px; height: 52px;
  background: rgba(29,107,243,.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--ink); }
.service-card > p { color: var(--ink-soft); font-size: .93rem; line-height: 1.7; }
.service-list { display: flex; flex-direction: column; gap: .45rem; margin-top: .4rem; }
.service-list li {
  font-size: .83rem;
  color: var(--ink-mute);
  padding-left: 1.2rem;
  position: relative;
}
.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: .75rem;
  top: .05rem;
}
@media (min-width: 720px) { .servicios-grid { grid-template-columns: repeat(3,1fr); } }

/* =============================================================
   10. Cómo funciona
   ============================================================= */
.como-funciona { padding: 6rem 0; background: var(--bg); }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 3rem;
}
.step {
  padding: 2rem 1.75rem;
  text-align: center;
}
.step-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--blue);
  opacity: .22;
  line-height: 1;
  margin-bottom: .75rem;
  font-variant-numeric: tabular-nums;
}
.step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .6rem; }
.step p   { font-size: .9rem; color: var(--ink-soft); line-height: 1.7; }
.step-arrow {
  display: none;
  justify-content: center;
  align-items: center;
  color: var(--blue);
  opacity: .4;
}
.como-cta { text-align: center; }

@media (min-width: 720px) {
  .steps-grid { grid-template-columns: 1fr auto 1fr auto 1fr; gap: 1rem; }
  .step-arrow { display: flex; }
}

/* =============================================================
   11. Sobre mí
   ============================================================= */
.sobre-mi { padding: 6rem 0; background: var(--bg-2); }
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}
.sobre-visual { position: relative; }
.sobre-photo-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(29,107,243,.14);
}
.sobre-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 20%;
}
.sobre-badge {
  position: absolute;
  bottom: -1.25rem;
  right: -.75rem;
  padding: .9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  z-index: 2;
}
.trust-check {
  width: 34px; height: 34px;
  background: var(--blue);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(29,107,243,.30);
}
.sobre-badge strong { display: block; font-size: .88rem; color: var(--ink); line-height: 1.3; }
.sobre-badge span   { font-size: .74rem; color: var(--ink-mute); }

.sobre-content { padding-top: 1.5rem; }
.sobre-content h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1.5rem; }
.sobre-content h2 em { display: block; }
.sobre-content p  { color: var(--ink-soft); line-height: 1.8; margin-bottom: 1rem; }

.sobre-tags { display: flex; flex-wrap: wrap; gap: .45rem; margin: 1.5rem 0; }
.tag {
  font-size: .76rem;
  font-weight: 600;
  background: rgba(29,107,243,.1);
  color: var(--blue-dark);
  padding: .3rem .8rem;
  border-radius: 20px;
}
.sobre-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .93rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .2s;
}
.contact-link:hover { color: var(--blue); }
.contact-link svg { flex-shrink: 0; opacity: .6; }

@media (min-width: 960px) {
  .sobre-grid { grid-template-columns: 1fr 1.25fr; align-items: center; }
}

/* =============================================================
   12. Precios
   ============================================================= */
.precios { padding: 6rem 0; background: var(--bg); }
.precios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 820px;
  margin-inline: auto;
}
.precio-card {
  padding: 2.5rem;
  border-radius: var(--r-lg);
  position: relative;
}
.precio-featured {
  background: var(--blue);
  border: none;
  color: white;
  box-shadow: 0 16px 48px rgba(29,107,243,.35);
}
.precio-badge-top {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: white;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .28rem .9rem;
  border-radius: 20px;
  white-space: nowrap;
}
.precio-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 1.1rem; }
.precio-featured h3 { color: white; }

.precio-num { display: flex; align-items: flex-end; gap: .2rem; margin-bottom: .7rem; }
.price-big {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--ink);
}
.precio-featured .price-big { color: white; }
.price-meta { display: flex; flex-direction: column; padding-bottom: .4rem; }
.price-currency { font-size: 1.4rem; font-weight: 700; color: var(--ink-soft); line-height: 1; }
.price-period   { font-size: .8rem;  color: var(--ink-mute);  }
.precio-featured .price-currency { color: rgba(255,255,255,.85); }
.precio-featured .price-period   { color: rgba(255,255,255,.6); }

.precio-desc {
  font-size: .85rem;
  color: var(--ink-mute);
  margin-bottom: 1.5rem;
  line-height: 1.55;
}
.precio-featured .precio-desc { color: rgba(255,255,255,.7); }

.precio-list { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 2rem; }
.precio-list li {
  font-size: .88rem;
  color: var(--ink-soft);
  padding-left: 1.4rem;
  position: relative;
}
.precio-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-dark);
  font-weight: 700;
  font-size: .8rem;
  top: .1rem;
}
.precio-featured .precio-list li          { color: rgba(255,255,255,.85); }
.precio-featured .precio-list li::before  { color: #a8e055; }

.precios-note {
  text-align: center;
  font-size: .88rem;
  color: var(--ink-mute);
  margin-top: 2rem;
}
.precios-note a { color: var(--blue); font-weight: 500; }
.precios-note a:hover { text-decoration: underline; }

@media (min-width: 540px) { .precios-grid { grid-template-columns: 1fr 1fr; } }

/* =============================================================
   13. Testimonios
   ============================================================= */
.resenas { padding: 6rem 0; background: var(--bg-2); overflow: hidden; }
.resenas-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  scrollbar-width: none;
}
.resenas-track::-webkit-scrollbar { display: none; }
.resena-card {
  flex: 0 0 min(340px, 85vw);
  scroll-snap-align: start;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.resena-stars { font-size: .95rem; color: #F59E0B; letter-spacing: .06em; }
.resena-card blockquote p {
  font-size: .92rem;
  color: var(--ink-soft);
  line-height: 1.75;
  font-style: italic;
}
.resena-card footer {
  margin-top: auto;
  padding-top: .9rem;
  border-top: 1px solid var(--line);
}
.resena-card footer strong { display: block; font-size: .88rem; color: var(--ink); }
.resena-card footer span   { font-size: .76rem; color: var(--ink-mute); }

.resenas-nav {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.5rem;
}
.resenas-nav button {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  transition: all .25s var(--ease-out);
}
.resenas-nav button.is-active {
  background: var(--blue);
  width: 20px;
  border-radius: 4px;
}

@media (min-width: 960px) {
  .resenas-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
    scroll-snap-type: none;
  }
  .resena-card { flex: none; width: auto; }
  .resenas-nav { display: none; }
}

/* =============================================================
   14. Cobertura
   ============================================================= */
.cobertura { padding: 4rem 0 6rem; background: var(--bg); }
.cobertura-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 2.5rem 2rem;
  align-items: center;
}
.cobertura-content h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 1rem; }
.cobertura-content > p {
  color: var(--ink-soft);
  font-size: .93rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.cobertura-tags { display: flex; flex-wrap: wrap; gap: .45rem; }
.cobertura-tags span {
  font-size: .8rem;
  font-weight: 500;
  background: rgba(29,107,243,.08);
  color: var(--blue-dark);
  padding: .3rem .85rem;
  border-radius: 20px;
  border: 1px solid rgba(29,107,243,.14);
}

/* Pulse animation */
.cobertura-visual { display: flex; align-items: center; justify-content: center; }
.cobertura-pulse {
  position: relative;
  width: 180px; height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pulse-core { position: relative; z-index: 2; }
.pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--blue);
  animation: ringPulse 2.8s ease-out infinite;
}
.pulse-ring.r1 { width: 60px;  height: 60px;  opacity: .55; }
.pulse-ring.r2 { width: 110px; height: 110px; opacity: .3;  animation-delay: .7s; }
.pulse-ring.r3 { width: 165px; height: 165px; opacity: .15; animation-delay: 1.4s; }
@keyframes ringPulse {
  0%   { transform: scale(.75); opacity: .55; }
  100% { transform: scale(1.05); opacity: 0; }
}

@media (min-width: 720px) {
  .cobertura-inner { grid-template-columns: 1fr 1fr; padding: 3rem; }
}

/* =============================================================
   15. CTA final
   ============================================================= */
.cta-final {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
  background: var(--bg);
  text-align: center;
}
.cta-mesh {
  position: absolute;
  inset: -25%;
  z-index: 0;
  background:
    radial-gradient(circle at 25% 40%, rgba(29,107,243,.22) 0%, transparent 50%),
    radial-gradient(circle at 75% 60%, rgba(126,200,42,.16) 0%, transparent 50%);
  filter: blur(65px);
  animation: meshDrift 20s ease-in-out infinite reverse;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin-inline: auto;
}
.cta-inner h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 1rem; }
.cta-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.cta-contact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .4rem .9rem;
  font-size: .9rem;
  color: var(--ink-mute);
}
.cta-contact-row a { color: var(--blue); font-weight: 500; }
.cta-contact-row a:hover { text-decoration: underline; }

/* =============================================================
   16. Footer
   ============================================================= */
.footer { background: var(--bg-dark); color: rgba(255,255,255,.65); padding: 3.5rem 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand img { filter: brightness(0) invert(1); opacity: .75; margin-bottom: .65rem; }
.footer-brand p    { font-size: .83rem; color: rgba(255,255,255,.4); }
.footer-nav { display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; }
.footer-nav a { font-size: .83rem; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-nav a:hover { color: white; }
.footer-contact { display: flex; flex-direction: column; gap: .5rem; }
.footer-contact a { font-size: .83rem; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-contact a:hover { color: white; }
.footer-bottom { padding: 1.25rem var(--gutter); text-align: center; }
.footer-bottom p { font-size: .76rem; color: rgba(255,255,255,.25); }

@media (min-width: 720px) {
  .footer-inner { grid-template-columns: 2fr 1fr 1fr; align-items: start; }
}

/* =============================================================
   17. Scroll reveals
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
.reveal[data-split] { opacity: 1; transform: none; }
.reveal.is-visible  { opacity: 1; transform: translateY(0); }

/* Stagger siblings */
.servicios-grid .reveal:nth-child(2),
.steps-grid     .step:nth-child(3),
.precios-grid   .reveal:nth-child(2),
.pain-grid      .pain-item:nth-child(2) { transition-delay: .1s; }

.servicios-grid .reveal:nth-child(3),
.steps-grid     .step:nth-child(5),
.pain-grid      .pain-item:nth-child(3) { transition-delay: .2s; }

.pain-grid      .pain-item:nth-child(4) { transition-delay: .3s; }

/* =============================================================
   18. Reduced motion
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-mesh, .cta-mesh { animation: none; }
  .pulse-ring            { animation: none; }
}

/* =============================================================
   19. Cookie Banner
   ============================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9990;
  background: var(--bg-dark);
  color: rgba(255,255,255,.9);
  padding: 1.1rem 1.5rem;
  transform: translateY(100%);
  transition: transform .35s ease;
  box-shadow: 0 -4px 28px rgba(0,0,0,.22);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.cookie-inner p {
  margin: 0;
  font-size: .875rem;
  flex: 1;
  min-width: 220px;
  line-height: 1.55;
}
.cookie-inner a { color: var(--blue-light); text-decoration: underline; }
.cookie-btns { display: flex; gap: .6rem; flex-shrink: 0; flex-wrap: wrap; }
.btn-sm { padding: .45rem .95rem; font-size: .82rem; border-radius: 8px; }

/* =============================================================
   20. Footer legal links
   ============================================================= */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.footer-legal {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color .2s;
}
.footer-legal a:hover { color: rgba(255,255,255,.8); }

/* =============================================================
   21. Legal pages
   ============================================================= */
.legal-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 7.5rem 0 3rem;
  color: white;
}
.legal-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: white;
  margin-bottom: .4rem;
}
.legal-breadcrumb {
  font-size: .85rem;
  opacity: .7;
  margin: 0;
}
.legal-breadcrumb a { color: white; text-decoration: underline; }

.legal-body {
  padding: 3.5rem 0 6rem;
  background: var(--bg-2);
}
.legal-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.legal-section { margin-bottom: 2.75rem; }
.legal-section h2 {
  font-size: 1.15rem;
  color: var(--blue);
  margin-bottom: .65rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--line);
}
.legal-section p,
.legal-section li { font-size: .95rem; color: var(--ink-soft); line-height: 1.7; }
.legal-section ul { padding-left: 1.3rem; margin: .5rem 0; }
.legal-section ul li { margin-bottom: .3rem; }
.legal-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.5rem 2rem;
  margin-bottom: 1rem;
  font-size: .9rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.legal-card strong { color: var(--ink); display: block; margin-bottom: .2rem; }

/* =============================================================
   22. FAQ
   ============================================================= */
.faq {
  padding: var(--section-padding) 0;
  background: var(--bg-2);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.faq-item {
  background: var(--glass);
  border: 1px solid rgba(29,107,243,.1);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: rgba(29,107,243,.35);
  box-shadow: 0 4px 20px rgba(29,107,243,.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  transition: color .2s;
}

.faq-question:hover { color: var(--blue); }

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(29,107,243,.3);
  position: relative;
  transition: background .25s, border-color .25s, transform .35s cubic-bezier(.34,1.56,.64,1);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--ink-soft);
  border-radius: 2px;
  transition: background .25s;
}

/* barra horizontal */
.faq-icon::before {
  width: 10px; height: 1.5px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

/* barra vertical */
.faq-icon::after {
  width: 1.5px; height: 10px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: background .25s, opacity .3s;
}

.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--blue);
  border-color: var(--blue);
  transform: rotate(45deg);
}

.faq-question[aria-expanded="true"] .faq-icon::before,
.faq-question[aria-expanded="true"] .faq-icon::after {
  background: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .42s cubic-bezier(.4,0,.2,1);
}

.faq-answer p {
  padding: 0 1.5rem 1.2rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
  font-size: .95rem;
}

.faq-answer a {
  color: var(--blue);
  text-underline-offset: 3px;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color .2s;
}

.faq-answer a:hover { text-decoration-color: var(--blue); }

@media (max-width: 600px) {
  .faq-question { font-size: .95rem; padding: 1.1rem 1.25rem; }
  .faq-answer p  { padding: 0 1.25rem 1.1rem; }
}

/* =============================================================
   23. Contacto (formulario + alternativas)
   ============================================================= */
.contacto {
  position: relative;
  padding: var(--section-padding) 0;
  background: var(--bg-2);
  overflow: hidden;
}
.contacto .cta-mesh { opacity: .35; }
.contacto .container { position: relative; z-index: 2; }

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .contacto-grid { grid-template-columns: 1.4fr 1fr; gap: 2.5rem; align-items: start; }
}

/* — Formulario — */
.contacto-form-wrap {
  padding: 2.25rem;
  border-radius: var(--r-lg);
  position: relative;
}
@media (max-width: 600px) {
  .contacto-form-wrap { padding: 1.5rem; }
}

.contacto-form .field { margin-bottom: 1.25rem; }

.contacto-form label {
  display: block;
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .5rem;
  letter-spacing: -0.005em;
}
.contacto-form label .req      { color: var(--blue); font-weight: 700; }
.contacto-form label .optional { color: var(--ink-mute); font-weight: 400; font-size: .85rem; }

.contacto-form input,
.contacto-form textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: rgba(255,255,255,.85);
  border: 1.5px solid rgba(29,107,243,.18);
  border-radius: 12px;
  padding: .95rem 1rem;
  line-height: 1.45;
  transition: border-color .2s, box-shadow .2s, background .2s;
  -webkit-appearance: none;
  appearance: none;
}
.contacto-form textarea {
  resize: vertical;
  min-height: 110px;
  font-family: inherit;
}
.contacto-form input::placeholder,
.contacto-form textarea::placeholder {
  color: var(--ink-mute);
  opacity: .75;
}
.contacto-form input:focus,
.contacto-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: white;
  box-shadow: 0 0 0 4px rgba(29,107,243,.12);
}
.contacto-form input:invalid:not(:placeholder-shown),
.contacto-form textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(229,62,62,.5);
}

.btn-block { width: 100%; justify-content: center; }

.form-privacy {
  margin-top: 1rem;
  font-size: .78rem;
  color: var(--ink-mute);
  line-height: 1.55;
  text-align: center;
}
.form-privacy a { color: var(--blue); text-decoration: underline; }

/* — Estado de éxito — */
.contacto-success {
  text-align: center;
  padding: 1rem .5rem;
  animation: successIn .5s var(--ease-out);
}
.success-icon { display: inline-flex; margin-bottom: 1rem; }
.contacto-success h3 {
  font-size: 1.4rem;
  margin-bottom: .5rem;
  color: var(--ink);
}
.contacto-success p {
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 380px;
  margin: 0 auto;
}
@keyframes successIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* — Estado de error — */
.contacto-error {
  background: rgba(229,62,62,.08);
  border: 1px solid rgba(229,62,62,.25);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-top: 1rem;
}
.contacto-error p {
  margin: 0;
  font-size: .9rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.contacto-error a { color: var(--blue); text-decoration: underline; }

/* — Aside con alternativas — */
.contacto-aside {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.contacto-aside > h3 {
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: .25rem;
}

.contacto-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(29,107,243,.1);
  border-radius: 14px;
  transition: transform .2s, border-color .2s, box-shadow .2s, background .2s;
  color: var(--ink);
}
.contacto-option:hover {
  transform: translateY(-2px);
  border-color: rgba(29,107,243,.35);
  box-shadow: 0 6px 20px rgba(29,107,243,.1);
  background: white;
}
.contacto-option .option-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(29,107,243,.1);
  color: var(--blue);
  display: grid;
  place-items: center;
}
.contacto-option strong {
  display: block;
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
}
.contacto-option span {
  display: block;
  font-size: .85rem;
  color: var(--ink-mute);
  margin-top: .1rem;
}

.option-cta {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-color: transparent;
  color: white;
}
.option-cta strong, .option-cta span { color: white; }
.option-cta span { opacity: .85; }
.option-cta .option-icon { background: rgba(255,255,255,.18); color: white; }
.option-cta:hover {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  box-shadow: 0 8px 24px rgba(29,107,243,.3);
}

.contacto-horario {
  margin-top: .75rem;
  padding: 1rem 1.15rem;
  background: rgba(125,200,42,.08);
  border-radius: 12px;
  border-left: 3px solid var(--green);
}
.contacto-horario p {
  margin: 0;
  font-size: .88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.contacto-horario strong { color: var(--ink); }

/* =============================================================
   24. Service cards clickable + Ver todos
   ============================================================= */
a.service-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  position: relative;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
a.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(29,107,243,.12);
}
a.service-card:hover .service-link { color: var(--blue-dark); padding-left: .25rem; }

.service-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-weight: 600;
  font-size: .92rem;
  color: var(--blue);
  transition: color .2s, padding-left .25s;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.servicios-all,
.resenas-all {
  text-align: center;
  margin-top: 2.5rem;
}

/* =============================================================
   25. Service detail pages (hub + spokes)
   ============================================================= */

/* Breadcrumb */
.breadcrumb {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  margin-bottom: .75rem;
}
.breadcrumb a { color: rgba(255,255,255,.85); text-decoration: underline; }
.breadcrumb a:hover { color: white; }
.breadcrumb span[aria-current="page"] { color: rgba(255,255,255,.6); }
.breadcrumb .sep { margin: 0 .4rem; opacity: .5; }

/* Service hero */
.service-hero {
  position: relative;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: white;
  padding: 7rem 0 4rem;
  overflow: hidden;
}
.service-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.12), transparent 50%);
  pointer-events: none;
}
.service-hero .container { position: relative; z-index: 2; }
.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .service-hero-grid { grid-template-columns: 1.3fr 1fr; gap: 3rem; }
}
.service-hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  color: white;
  margin-bottom: 1.1rem;
  line-height: 1.1;
}
.service-hero p.service-lead {
  font-size: 1.08rem;
  line-height: 1.55;
  color: rgba(255,255,255,.92);
  margin-bottom: 1.75rem;
  max-width: 560px;
}
.service-hero .service-hero-cta {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.service-hero .btn-white {
  background: white;
  color: var(--blue);
  font-weight: 700;
}
.service-hero .btn-white:hover { background: rgba(255,255,255,.92); }
.service-hero .btn-outline-white {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,.5);
}
.service-hero .btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: white; }

.service-hero-image {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  aspect-ratio: 4/3;
}
.service-hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Service body */
.service-body {
  padding: 4rem 0 5rem;
  background: var(--bg-2);
}
.service-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.service-container > section { margin-bottom: 3.5rem; }
.service-container h2 {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  margin-bottom: 1rem;
  color: var(--ink);
}
.service-container h2 em { color: var(--blue); font-style: normal; }
.service-container h3 {
  font-size: 1.15rem;
  margin: 1.5rem 0 .75rem;
  color: var(--ink);
}
.service-container p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.service-container ul:not(.faq-list) {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0 1.5rem;
}
.service-container ul:not(.faq-list) li {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
  padding: .35rem 0 .35rem 1.6rem;
  position: relative;
}
.service-container ul:not(.faq-list) li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: .45rem;
  color: var(--green-dark);
  font-weight: 700;
}

/* Highlight cards inside service body */
.service-callout {
  background: white;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  margin: 1.5rem 0;
}
.service-callout strong { color: var(--ink); }
.service-callout p:last-child { margin-bottom: 0; }

.service-price-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: grid;
  gap: 1rem;
  margin: 1rem 0;
}
.service-price-card .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -.02em;
}
.service-price-card .price small { font-size: 1rem; color: var(--ink-mute); font-weight: 500; margin-left: .25rem; }
.service-price-card ul { margin: .25rem 0 0 0; }

/* Inline testimonial */
.service-quote {
  background: linear-gradient(135deg, rgba(29,107,243,.06), rgba(125,200,42,.04));
  border-radius: var(--r-lg);
  padding: 2rem 2.25rem;
  margin: 2rem 0;
  border: 1px solid var(--line);
}
.service-quote blockquote {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  font-style: italic;
  margin: 0 0 .75rem;
}
.service-quote cite {
  font-style: normal;
  font-weight: 600;
  color: var(--ink-soft);
  font-size: .9rem;
}
.service-quote .stars { color: #fab003; letter-spacing: .15em; font-size: .9rem; margin-bottom: .5rem; }

/* Final CTA on service pages */
.service-cta {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: white;
  padding: 4rem 1.5rem;
  text-align: center;
}
.service-cta h2 {
  color: white;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: .75rem;
}
.service-cta p {
  color: rgba(255,255,255,.85);
  max-width: 540px;
  margin: 0 auto 1.75rem;
  font-size: 1.02rem;
}
.service-cta .btn { margin: .35rem; }

/* Hub page specific */
.hub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 980px;
  margin: 0 auto;
}
@media (min-width: 720px) { .hub-grid { grid-template-columns: 1fr 1fr; } }

.hub-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), border-color .25s;
  text-decoration: none;
  color: inherit;
}
.hub-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(29,107,243,.14);
  border-color: rgba(29,107,243,.3);
}
.hub-card-img {
  aspect-ratio: 16/9;
  background: var(--bg);
  overflow: hidden;
}
.hub-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease-out);
}
.hub-card:hover .hub-card-img img { transform: scale(1.05); }
.hub-card-body {
  padding: 1.5rem 1.75rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.hub-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: .5rem;
  color: var(--ink);
}
.hub-card-body p {
  font-size: .95rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
  flex: 1;
}
.hub-card-body .arrow {
  font-weight: 600;
  color: var(--blue);
  font-size: .92rem;
}
.hub-card:hover .arrow { color: var(--blue-dark); }

/* =============================================================
   26. Reseñas page
   ============================================================= */
.resenas-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: white;
  padding: 7rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.resenas-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.12), transparent 50%);
}
.resenas-hero .container { position: relative; z-index: 2; }
.resenas-hero h1 {
  color: white;
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.resenas-hero h1 em { color: rgba(255,255,255,.85); font-style: normal; }
.resenas-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.92);
  margin-bottom: 2rem;
  max-width: 720px;
  line-height: 1.55;
}
.resenas-hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
}
.hero-stat-num small {
  color: #fab003;
  font-size: 1.5rem;
  margin-left: .25rem;
}
.hero-stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-top: .25rem;
}
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.25);
}

/* Filtros */
.resenas-filtros {
  position: sticky;
  top: 64px;
  z-index: 50;
  background: rgba(245,248,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}
.filtro-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.filtro-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1rem;
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 50px;
  font-size: .87rem;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
}
.filtro-pill:hover {
  border-color: rgba(29,107,243,.4);
  color: var(--ink);
}
.filtro-pill.is-active {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}
.filtro-pill.is-active .pill-count { color: rgba(255,255,255,.85); }
.pill-count {
  font-size: .75rem;
  background: rgba(29,107,243,.1);
  color: var(--blue);
  padding: .1rem .45rem;
  border-radius: 50px;
  font-weight: 600;
  transition: background .2s, color .2s;
}

/* Body grid */
.resenas-body {
  padding: 3rem 0 4rem;
  background: var(--bg-2);
}
.resenas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 720px) { .resenas-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .resenas-grid { grid-template-columns: 1fr 1fr 1fr; } }

.resena-full {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  transition: transform .2s, box-shadow .2s, opacity .3s;
  position: relative;
}
.resena-full:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(29,107,243,.08);
}
.resena-full[hidden] { display: none; }

.resena-header {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: .85rem;
  align-items: center;
}
.resena-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1rem;
}
.resena-header strong {
  display: block;
  font-size: .98rem;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.2;
}
.resena-meta {
  display: block;
  font-size: .78rem;
  color: var(--ink-mute);
  margin-top: .15rem;
  letter-spacing: .03em;
}

.resena-tag {
  grid-column: 1 / -1;
  display: inline-block;
  width: max-content;
  padding: .2rem .65rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .03em;
  margin-top: .25rem;
}
.tag-general       { background: rgba(122,134,153,.1);  color: var(--ink-soft); }
.tag-soporte       { background: rgba(255,107,107,.1);  color: #c0392b; }
.tag-configuracion { background: rgba(125,200,42,.12);  color: var(--green-dark); }
.tag-clases        { background: rgba(29,107,243,.1);   color: var(--blue); }
.tag-migracion     { background: rgba(155,89,182,.12);  color: #8e44ad; }
.tag-apple-id      { background: rgba(241,196,15,.15);  color: #b7950b; }
.tag-watch         { background: rgba(0,150,136,.12);   color: #00897b; }

.resena-full blockquote {
  margin: 0;
  font-size: .95rem;
  line-height: 1.6;
  color: var(--ink-soft);
  font-style: italic;
  border: none;
  padding: 0;
  text-wrap: pretty;
}

.resenas-source-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: .88rem;
  color: var(--ink-mute);
  line-height: 1.6;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.resenas-source-note strong { color: var(--ink-soft); }

/* Filter transitions */
.resena-full.fade-out {
  opacity: 0;
  transform: scale(.95);
  pointer-events: none;
}

/* =============================================================
   27. Floating WhatsApp button
   ============================================================= */
.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 95;
  box-shadow: 0 6px 22px rgba(37,211,102,.35), 0 2px 8px rgba(0,0,0,.18);
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
  animation: wa-pulse 2.6s ease-out infinite;
  text-decoration: none;
}
.whatsapp-fab svg { width: 32px; height: 32px; display: block; }
.whatsapp-fab:hover,
.whatsapp-fab:focus-visible {
  transform: scale(1.08);
  box-shadow: 0 10px 32px rgba(37,211,102,.5), 0 4px 12px rgba(0,0,0,.2);
  outline: none;
  animation-play-state: paused;
}
.whatsapp-fab:focus-visible {
  box-shadow: 0 10px 32px rgba(37,211,102,.5), 0 0 0 3px rgba(37,211,102,.4);
}
@keyframes wa-pulse {
  0%   { box-shadow: 0 6px 22px rgba(37,211,102,.35), 0 0 0 0 rgba(37,211,102,.55); }
  70%  { box-shadow: 0 6px 22px rgba(37,211,102,.35), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 6px 22px rgba(37,211,102,.35), 0 0 0 0 rgba(37,211,102,0); }
}
@media (max-width: 600px) {
  .whatsapp-fab { right: 16px; bottom: 16px; width: 56px; height: 56px; }
  .whatsapp-fab svg { width: 28px; height: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-fab { animation: none; }
}
@media print {
  .whatsapp-fab { display: none; }
}
/* Hide while cookie banner is showing (banner must be earlier in DOM) */
.cookie-banner.is-visible ~ .whatsapp-fab { opacity: 0; pointer-events: none; }

/* =============================================================
   28. Error 404 page
   ============================================================= */
.error-404 {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0 4rem;
  background: linear-gradient(180deg, #f5f8ff 0%, #ffffff 100%);
}
.error-404-inner {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.error-404-number {
  font-size: clamp(6rem, 18vw, 11rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}
.error-404 h1 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--ink);
  letter-spacing: -.02em;
}
.error-404-lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin: 0 auto 2.5rem;
  max-width: 480px;
  line-height: 1.6;
}
.error-404-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.error-404-suggestions {
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}
.error-404-suggestions p {
  font-size: .9rem;
  color: var(--ink-mute);
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}
.error-404-suggestions ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem 1.5rem;
}
.error-404-suggestions a {
  color: var(--blue);
  font-weight: 500;
  font-size: .95rem;
  transition: color .2s;
}
.error-404-suggestions a:hover { color: var(--blue-dark); text-decoration: underline; }

/* =============================================================
   29. Blog — hub and articles
   ============================================================= */

/* Blog hub cards */
.blog-hub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-top: 2.5rem;
}
@media (min-width: 720px) { .blog-hub-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .blog-hub-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(29,107,243,.12);
}
.blog-card-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eef3fb;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease-out);
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body {
  padding: 1.4rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  gap: .75rem;
  font-size: .8rem;
  color: var(--ink-mute);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.blog-card-meta .dot { opacity: .4; }
.blog-card h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
}
.blog-card p {
  margin: 0;
  font-size: .92rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.blog-card .arrow {
  margin-top: auto;
  color: var(--blue);
  font-weight: 600;
  font-size: .92rem;
}
.blog-card.is-soon {
  opacity: .55;
  pointer-events: none;
}
.blog-card.is-soon .arrow { color: var(--ink-mute); }

/* Category badge over blog card image */
.blog-card-cat {
  display: inline-block;
  background: rgba(29,107,243,.95);
  color: white;
  font-size: .72rem;
  font-weight: 600;
  padding: .35rem .7rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .06em;
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
}
.blog-card-img { position: relative; }

/* === Article page === */
.article-hero {
  padding: 7rem 0 2.5rem;
  background: linear-gradient(180deg, #f5f8ff 0%, #ffffff 100%);
}
.article-hero .breadcrumb {
  font-size: .85rem;
  color: var(--ink-mute);
  margin-bottom: 1.5rem;
}
.article-hero .breadcrumb a { color: var(--ink-soft); transition: color .2s; }
.article-hero .breadcrumb a:hover { color: var(--blue); }
.article-hero .breadcrumb .sep { margin: 0 .4rem; opacity: .5; }

.article-cat {
  display: inline-block;
  background: var(--blue);
  color: white;
  font-size: .72rem;
  font-weight: 600;
  padding: .4rem .85rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1.25rem;
}

.article-title {
  font-size: clamp(1.8rem, 4.5vw, 2.7rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.02em;
  margin: 0 0 1.25rem;
  max-width: 800px;
  color: var(--ink);
}
.article-lead {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 2rem;
  max-width: 720px;
}
.article-meta {
  display: flex;
  gap: 1.25rem;
  font-size: .88rem;
  color: var(--ink-mute);
  flex-wrap: wrap;
  align-items: center;
}
.article-meta .dot { opacity: .5; }
.article-meta strong { color: var(--ink-soft); font-weight: 600; }

.article-featured {
  margin-top: 2.5rem;
  max-width: 920px;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.article-featured img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Article body — optimised for reading */
.article-body {
  padding: 3rem 0 4rem;
}
.article-body .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.article-content {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink);
}
.article-content > * + * { margin-top: 1.25rem; }
.article-content h2 {
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-top: 2.75rem;
  margin-bottom: 1rem;
  scroll-margin-top: 100px;
}
.article-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  margin-top: 2rem;
  margin-bottom: .75rem;
}
.article-content p { margin: 0; }
.article-content a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: rgba(29,107,243,.3);
  text-underline-offset: 3px;
}
.article-content a:hover { text-decoration-color: var(--blue); }
.article-content strong { font-weight: 700; color: var(--ink); }
.article-content ul, .article-content ol {
  padding-left: 1.5rem;
  margin: 0;
}
.article-content ul li, .article-content ol li {
  margin-bottom: .5rem;
  padding-left: .25rem;
}
.article-content ul li::marker { color: var(--blue); }
.article-content blockquote {
  border-left: 4px solid var(--blue);
  background: rgba(29,107,243,.05);
  padding: 1.25rem 1.5rem;
  border-radius: 0 12px 12px 0;
  margin: 1.75rem 0;
  font-style: italic;
  color: var(--ink-soft);
}
.article-content blockquote p { font-size: 1.05rem; line-height: 1.6; }
.article-content code {
  background: #f1f5fb;
  padding: .15rem .4rem;
  border-radius: 5px;
  font-size: .92em;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}
.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  margin: 1.5rem 0;
  display: block;
}
.article-content figcaption {
  font-size: .85rem;
  color: var(--ink-mute);
  text-align: center;
  margin-top: -.75rem;
}

/* Callout box inside articles */
.article-callout {
  background: rgba(29,107,243,.06);
  border: 1px solid rgba(29,107,243,.15);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
}
.article-callout strong { color: var(--blue-dark); }
.article-callout.is-warning {
  background: rgba(245, 158, 11, .08);
  border-color: rgba(245, 158, 11, .25);
}
.article-callout.is-warning strong { color: #b45309; }

/* TOC */
.article-toc {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
}
.article-toc-title {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-mute);
  font-weight: 600;
  margin: 0 0 .75rem;
}
.article-toc ul { list-style: none; padding: 0; margin: 0; }
.article-toc li { margin: .35rem 0; }
.article-toc a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: .95rem;
  transition: color .2s;
}
.article-toc a:hover { color: var(--blue); }

/* Author card */
.article-author {
  max-width: 720px;
  margin: 3.5rem auto 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.article-author-img {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--blue);
}
.article-author-body h4 {
  margin: 0 0 .4rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}
.article-author-body p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* CTA box at end of article */
.article-cta-box {
  max-width: 720px;
  margin: 3rem auto 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: white;
  border-radius: 22px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.article-cta-box::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.15), transparent 50%);
  pointer-events: none;
}
.article-cta-box h3 {
  margin: 0 0 .75rem;
  font-size: 1.4rem;
  font-weight: 700;
  position: relative;
}
.article-cta-box p {
  margin: 0 0 1.5rem;
  color: rgba(255,255,255,.9);
  font-size: 1rem;
  line-height: 1.55;
  position: relative;
}
.article-cta-box .btn { position: relative; }

/* Related articles */
.article-related {
  background: #f5f8ff;
  padding: 4rem 0;
  border-top: 1px solid var(--line);
}
.article-related-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 2.5rem;
  color: var(--ink);
}

/* =============================================================
   30. Precios — videollamada highlight box
   ============================================================= */
.precios-remote {
  margin: 2.5rem auto 1.5rem;
  max-width: 920px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 4px 18px rgba(29,107,243,.07);
}
.precios-remote-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(29,107,243,.12), rgba(29,107,243,.06));
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.precios-remote > div:nth-child(2) { flex: 1; }
.precios-remote strong {
  display: block;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: .25rem;
}
.precios-remote p {
  margin: 0;
  font-size: .92rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.precios-remote .btn { flex-shrink: 0; }
@media (max-width: 720px) {
  .precios-remote {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1.25rem;
  }
}

/* =============================================================
   31. "Por qué En3Clicks" section
   ============================================================= */
.por-que {
  padding: 5rem 0 6rem;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
}
.por-que-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}
@media (min-width: 720px) { .por-que-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .por-que-grid { grid-template-columns: 1fr 1fr 1fr; } }

.por-que-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.75rem;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.por-que-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(29,107,243,.10);
}
.por-que-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(29,107,243,.12), rgba(29,107,243,.04));
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.por-que-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 .55rem;
  color: var(--ink);
  letter-spacing: -.01em;
}
.por-que-card p {
  margin: 0;
  font-size: .94rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.por-que-card a {
  color: var(--blue);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Hub card variant — Videollamada (no photo, gradient bg) */
.hub-card-img-gradient {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hub-card-img-gradient::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.18), transparent 55%);
  pointer-events: none;
}
.hub-card-img-gradient svg { position: relative; z-index: 1; }
.hub-card-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  color: white;
  font-size: .72rem;
  font-weight: 600;
  padding: .35rem .7rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .05em;
  z-index: 2;
}
.hub-card-remote .hub-card-body h3 { color: var(--blue-dark); }
