/* EfeMosse — tema claro (blanco + azules + turquesa de marca) */
:root {
  --bg: #f6f9fc;
  --bg-card: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --teal: #14b8a6;
  --teal-strong: #0d9488;
  --teal-soft: #ccfbf1;
  --magenta: #db2777;
  --orange: #f97316;
  --indigo: #6366f1;
  --violet: #8b5cf6;
  --pastel: #e0ecff;
  --pastel-2: #f0f6ff;
  --border: #c7d6ee;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(37, 99, 235, 0.08);
  --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.08);
  --shadow-color: 0 12px 40px rgba(20, 184, 166, 0.18);
  --grad-brand: linear-gradient(135deg, #14b8a6 0%, #2563eb 100%);
  --grad-warm: linear-gradient(135deg, #f97316 0%, #db2777 100%);
  --grad-cool: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", sans-serif;
  --header-h: 4rem;
  /* Altura del header; el JS pisa con medición real (px) al cargar. */
  --header-safe: 58px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  background-image: linear-gradient(180deg, #ffffff 0%, var(--pastel-2) 40%, #f1f5f9 100%);
  line-height: 1.6;
  min-height: 100vh;
}
body.nav-open {
  overflow: hidden;
}
a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  color: var(--accent-hover);
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #fff;
  border-radius: 4px;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Barra país / dominio (.com ⇄ .com.ar), encima del resto del layout */
.locale-switch-bar {
  background: #0f172a;
  color: #e2e8f0;
  font-size: 0.8125rem;
  line-height: 1.4;
}
.locale-switch-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.65rem;
  padding: 0.4rem var(--radius-sm, 10px);
  max-width: 1200px;
  margin-inline: auto;
}
.locale-switch-bar__link {
  color: #67e8f9;
}
.locale-switch-bar__link:hover {
  color: #a5f3fc;
  text-decoration: underline;
}
.locale-switch-bar__sep {
  color: #64748b;
  user-select: none;
}
.locale-switch-bar__quote {
  font-style: italic;
}

.visually-hidden:not(:focus):not(:active) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Fila 1: redes, fecha, contacto (no participa en el flex que rompía el menú) */
.site-masthead {
  background: #fff;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
  line-height: 1.45;
  width: 100%;
  box-sizing: border-box;
}
.site-masthead__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem 0.9rem;
  padding: 0.5rem 1.25rem 0.55rem;
  box-sizing: border-box;
}
.site-masthead__date {
  margin: 0;
  text-align: center;
  font-weight: 600;
  color: var(--text);
}
.site-masthead__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.6rem;
}
.site-masthead__link {
  color: var(--muted);
  text-decoration: none;
  white-space: normal;
  max-width: 100%;
  display: inline-flex;
  align-items: flex-start;
  gap: 0.4rem;
}
.site-masthead__link-ic {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-top: 0.2em;
  color: var(--accent);
  line-height: 0;
}
.site-masthead__link-ic svg {
  display: block;
  width: 100%;
  height: 100%;
}
/* Marca WhatsApp: verde #25D366 (guía de marca) */
.site-masthead__link-ic--wa,
.site-masthead__link--wa .site-masthead__link-ic {
  color: #25d366;
}
@media (min-width: 720px) {
  .site-masthead__link {
    white-space: nowrap;
    align-items: center;
  }
  .site-masthead__link-ic {
    margin-top: 0;
  }
}
.site-masthead__link:hover {
  color: var(--accent);
  text-decoration: underline;
}
.site-masthead__link:hover .site-masthead__link-ic {
  color: var(--accent-hover);
}
.site-masthead__link--wa:hover .site-masthead__link-ic,
.site-masthead__link--wa:hover .site-masthead__link-ic--wa {
  color: #128c7e;
}
.site-masthead__social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}
.site-masthead__ic {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 8px;
  color: #475569;
  background: var(--pastel-2, #f0f6ff);
  text-decoration: none;
  border: 1px solid #e2e8f0;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}
.site-masthead__ic:hover {
  color: var(--accent);
  background: #fff;
  border-color: var(--accent);
  text-decoration: none;
}
.site-masthead__svg {
  display: block;
  flex-shrink: 0;
}
/* Una sola línea: sin saltos; si no entra, scroll horizontal. */
@media (min-width: 800px) {
  .site-masthead {
    font-size: 0.8125rem;
  }
  .site-masthead__inner {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem 0.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .site-masthead__social {
    order: 0;
    flex: 0 0 auto;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }
  .site-masthead__date {
    order: 1;
    flex: 0 0 auto;
    min-width: 0;
    white-space: nowrap;
  }
  .site-masthead__list {
    order: 2;
    flex: 0 1 auto;
    min-width: 0;
    justify-content: flex-end;
    flex-wrap: nowrap;
  }
  .site-masthead__list > li {
    flex-shrink: 0;
  }
}

/**
 * .site-topbar: sticky, columna. Fila 2 = .site-topbar__main: logo + nav en escritorio.
 */
.site-topbar {
  position: sticky;
  top: 0;
  z-index: 300;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(37, 99, 235, 0.06);
  overflow: visible;
}
/* Logo (izq.) + barra de enlaces o menú móvil (dcha.) */
.site-topbar__main {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  padding: 0.5rem 1.25rem 0.6rem;
  gap: 0.75rem 1rem;
  overflow: visible;
}
.site-topbar__main .site-header {
  flex: 0 0 auto;
  display: block;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  min-width: 0;
}
/* Móvil: el nav está fixed y no ocupa cinta; el header debe llenar el ancho para logo | menú. */
@media (max-width: 1023px) {
  .site-topbar__main {
    justify-content: flex-start;
  }
  .site-topbar__main .site-header {
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
  }
  .site-topbar__main .header-inner {
    width: 100%;
    min-width: 0;
  }
}
.site-topbar__main .site-nav {
  /* flex-1 en escritorio: ver bloque @media 1024px del nav */
  min-width: 0;
}
.site-header {
  display: block;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}
.brand span {
  color: var(--accent);
}
.brand:hover {
  text-decoration: none;
  color: var(--text);
}
.brand--has-logo {
  line-height: 0;
  display: flex;
  align-items: center;
}
.brand__logo {
  display: block;
  height: auto;
  max-height: 44px;
  max-width: min(300px, 72vw);
  width: auto;
  object-fit: contain;
}
.brand--has-logo:hover {
  opacity: 0.92;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  padding: 0 10px;
  position: relative;
  z-index: 2010;
  flex-shrink: 0;
}
.nav-toggle__bar {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
}
@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
}

/* Semitono detrás del cajón (tap para cerrar) — solo móvil/tablet. */
.nav-backdrop {
  position: fixed;
  z-index: 1990;
  left: 0;
  right: 0;
  top: var(--header-safe, 58px);
  bottom: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(15, 23, 42, 0.42);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  cursor: pointer;
}
[hidden].nav-backdrop,
.nav-backdrop[hidden] {
  display: none !important;
}
@media (min-width: 1024px) {
  .nav-backdrop {
    display: none !important;
  }
}

.site-nav {
  position: fixed;
  z-index: 2000;
  right: 0;
  top: var(--header-safe, 58px);
  bottom: 0;
  left: auto;
  width: min(22rem, 100vw);
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  box-shadow: -6px 0 28px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  transform: translate3d(100%, 0, 0);
  transition: transform 0.3s ease;
  max-height: calc(100vh - var(--header-safe, 58px));
  max-height: calc(100dvh - var(--header-safe, 58px));
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.site-nav.is-open {
  transform: translate3d(0, 0, 0);
}
.site-nav__scroller {
  flex: 1 1 auto;
  min-height: 0;
  max-height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 0.4rem 1.1rem max(1rem, env(safe-area-inset-bottom, 0px)) 1.1rem;
}
@media (min-width: 1024px) {
  .site-topbar__main .site-nav {
    flex: 1 1 auto;
    min-width: 0;
    overflow: visible;
  }
  .site-nav {
    position: static;
    z-index: auto;
    right: auto;
    top: auto;
    bottom: auto;
    left: auto;
    transform: none;
    width: auto;
    min-width: 0;
    max-width: none;
    max-height: none;
    display: block;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
  }
  .site-nav__scroller {
    display: contents;
    overflow: visible;
    padding: 0;
  }
  /* Sin overflow cortante en ascendientes del .site-nav__sub (position:absolute): si no, no se ve el dropdown. */
  .site-nav__list {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.1rem 0.2rem;
    min-width: min-content;
    max-width: 100%;
  }
  .site-nav__list > li {
    flex-shrink: 0;
  }
  .site-nav a,
  .site-nav button.site-nav__parent-label {
    padding: 0.28rem 0.38rem;
    border-radius: 6px;
  }
  .site-nav a:hover {
    background: var(--pastel-2);
    text-decoration: none;
  }
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
@media (min-width: 1024px) {
  .site-nav__list {
    flex-direction: row;
  }
}
.site-nav a {
  color: var(--text);
  display: block;
  font-size: 0.94rem;
  font-weight: 500;
  padding: 0.5rem 0.35rem;
  text-decoration: none;
  border-radius: 6px;
  font-family: var(--font);
  line-height: 1.35;
}
.site-nav a:hover {
  color: var(--accent);
  text-decoration: none;
  background: var(--pastel-2);
}
/* Escritorio: una sola línea de menú (tipografía compacta) */
@media (min-width: 1024px) {
  .site-nav a {
    font-size: 0.76rem;
    font-weight: 500;
    padding: 0.28rem 0.38rem;
    line-height: 1.25;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: inherit;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
  text-decoration: none;
  line-height: 1.3;
}
.btn:hover {
  text-decoration: none;
}
.btn--primary {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
  box-shadow: 0 2px 12px rgba(37, 99, 235, 0.35);
  border: none;
}
.btn--primary:hover {
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.45);
}
.btn--secondary {
  background: #fff;
  color: var(--accent);
  border-color: #bfdbfe;
}
.btn--secondary:hover {
  background: var(--pastel-2);
  color: var(--accent-hover);
}
.btn--ghost {
  background: #f8fafc;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  background: #f1f5f9;
  color: var(--accent);
}
.btn--outline {
  background: #fff;
  color: var(--accent);
  border: 2px solid #93c5fd;
}
.site-nav .btn.btn--nav {
  background: #eff6ff;
  color: var(--accent) !important;
  font-weight: 600;
  font-size: 0.94rem;
  padding: 0.5rem 0.65rem;
  font-family: var(--font);
  line-height: 1.35;
  border-width: 1px;
  border-color: #bfdbfe;
  border-style: solid;
}
@media (min-width: 1024px) {
  .site-nav .btn.btn--nav {
    font-size: 0.76rem;
    padding: 0.3rem 0.52rem;
    line-height: 1.25;
  }
}
.site-nav .btn.btn--nav:hover {
  background: #dbeafe;
  color: var(--accent-hover) !important;
}
.nav-ic {
  display: inline-block;
  margin-right: 0.2em;
  font-style: normal;
  line-height: 1;
}
.btn--lg {
  padding: 0.75rem 1.2rem;
  font-size: 1rem;
}
.btn--compact {
  padding: 0.45rem 0.75rem;
  font-size: 0.88rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 700;
  margin: 0 0 0.4rem;
}

h1, h2, h3, .h3-anchors {
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(1.75rem, 3.2vw, 2.4rem); margin: 0 0 1rem; }
h2 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); margin: 0 0 0.6rem; }
h3 { font-size: 1.05rem; margin: 0 0 0.5rem; }

.lead { font-size: 1.05rem; color: var(--muted); max-width: 40rem; }
.section-intro, .p-note, .p-notice {
  color: var(--muted);
  max-width: 55rem;
  font-size: 1rem;
}
.section-intro--tight {
  max-width: 40rem;
  font-size: 0.98rem;
  line-height: 1.55;
}
.p-notice { font-size: 0.9rem; margin-top: 1.25rem; padding: 0.75rem 1rem; background: #fffbeb; border: 1px solid #fde68a; border-radius: var(--radius); color: #854d0e; }
.p-note { font-size: 0.92rem; }
.p-note--tight { margin-top: 0.35rem; }
.section { padding: 2.75rem 1.25rem; }
.section--alt { background: #ffffff; box-shadow: inset 0 1px 0 rgba(37, 99, 235, 0.06); }
.wrap-wide { max-width: 1100px; margin: 0 auto; }

/* Home: franjas y texturas (body.is-home) */
body.is-home {
  background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 55%, #f8fafc 100%);
}
body.is-home .home-main {
  background: transparent;
}
.home-band {
  position: relative;
  isolation: isolate;
}
.home-band > .wrap-wide {
  position: relative;
  z-index: 1;
}
.home-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
  background: repeating-linear-gradient(
    135deg,
    transparent 0,
    transparent 18px,
    rgba(15, 23, 42, 0.03) 18px,
    rgba(15, 23, 42, 0.03) 19px
  );
}
.home-band--sky {
  background: linear-gradient(150deg, #f0f9ff 0%, #e0f2fe 38%, #f8fafc 100%);
  box-shadow: inset 0 1px 0 rgba(14, 165, 233, 0.12);
}
.home-band--warm {
  background: linear-gradient(160deg, #fffbeb 0%, #fef3c7 35%, #fff 100%);
  box-shadow: inset 0 1px 0 rgba(245, 158, 11, 0.12);
}
.home-band--mesh {
  background-color: #f1f5f9;
  background-image:
    radial-gradient(ellipse 100% 80% at 0% 0%, rgba(99, 102, 241, 0.12), transparent 55%),
    radial-gradient(ellipse 80% 60% at 100% 100%, rgba(37, 99, 235, 0.1), transparent 50%),
    linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  box-shadow: inset 0 1px 0 rgba(100, 116, 139, 0.1);
}
@media (min-width: 900px) {
  .home-band--sky::before {
    content: "";
    position: absolute;
    z-index: 0;
    right: -4%;
    top: 8%;
    width: min(38%, 320px);
    height: 65%;
    max-height: 360px;
    background: url("https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=800&q=75") center / cover no-repeat;
    border-radius: 20px;
    opacity: 0.2;
    transform: rotate(-2deg);
    pointer-events: none;
  }
  .home-band--mesh::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: -3%;
    bottom: 5%;
    width: min(36%, 300px);
    height: 55%;
    max-height: 300px;
    background: url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=800&q=75") center / cover no-repeat;
    border-radius: 20px;
    opacity: 0.18;
    transform: rotate(2deg);
    pointer-events: none;
  }
  .home-band--warm::before {
    content: "";
    position: absolute;
    z-index: 0;
    right: 0;
    top: 15%;
    width: min(35%, 280px);
    height: 50%;
    max-height: 260px;
    background: url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=800&q=75") center / cover no-repeat;
    border-radius: 20px;
    opacity: 0.16;
    pointer-events: none;
  }
}
.section-footer-links { margin-top: 1rem; font-size: 0.95rem; }
.link-quiet { color: var(--accent); }
.sp-inline { color: #94a3b8; margin: 0 0.35rem; }

/* Hero + video (estilo Hostinger: copy + video protagonista) */
.hero-block { padding-top: 1.5rem; padding-bottom: 2.5rem; }
.hero-block__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 1.75rem;
  align-items: start;
}
@media (min-width: 900px) {
  .hero-block__inner {
    grid-template-columns: 1fr 1.05fr;
    gap: 2rem;
    align-items: center;
  }
}
.hero-video { width: 100%; }
.hero-video__note { font-size: 0.78rem; color: #94a3b8; margin: 0 0 0.5rem; }
.hero-video__note code { background: #f1f5f9; padding: 0.1em 0.3em; border-radius: 4px; }
.hero-video__frame {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0f172a;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
}
.hero-video__frame iframe,
.hero-video__frame video.hero-video__el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.hero-video__frame video.hero-video__el {
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.hero-video__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.25rem;
  background: linear-gradient(145deg, #1e40af, #3b82f6);
  color: #e0e7ff;
}
.hero-video__placeholder p { margin: 0.25rem 0; max-width: 22rem; }
.hero-video__ph-text { font-size: 0.88rem; opacity: 0.95; line-height: 1.45; }
.hero-video__placeholder code { background: rgba(255,255,255,0.15); color: #fff; }
.hero-video__placeholder--animated {
  background: linear-gradient(125deg, #1e3a5f, #3b82f6, #6366f1);
  background-size: 200% 200%;
  animation: heroVideoGradient 10s ease infinite;
}
@keyframes heroVideoGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero-video__ph-title { margin: 0 0 0.5rem; font-size: 1.1rem; color: #fff; }

/* Home: hero vistoso + atajos */
.hero-block--home {
  position: relative;
  padding: 0.5rem 0 2.5rem;
  margin-top: 0.25rem;
  overflow: hidden;
}
.hero-block--home__bg {
  position: absolute;
  inset: -2px -8px 40%;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 80% at 10% 20%, rgba(99, 102, 241, 0.18), transparent 50%),
    radial-gradient(ellipse 70% 60% at 90% 10%, rgba(37, 99, 235, 0.15), transparent 45%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(14, 165, 233, 0.12), transparent 50%),
    linear-gradient(180deg, #f8fbff 0%, var(--bg) 100%);
  pointer-events: none;
  animation: homeBgDrift 18s ease-in-out infinite;
}
@keyframes homeBgDrift {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
  50% { transform: translate(6px, -4px) scale(1.02); opacity: 0.95; }
}
.hero-block--home .hero-block__inner {
  position: relative;
  z-index: 1;
}
.eyebrow--home {
  color: #475569;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 2;
  max-width: 100%;
  line-height: 1.35;
  font-size: clamp(0.68rem, 2.5vw, 0.82rem);
}
@media (max-width: 640px) {
  .eyebrow--home {
    letter-spacing: 0.04em;
  }
}
.lead--home {
  font-size: 1.08rem;
  color: var(--text);
  max-width: 36rem;
  line-height: 1.55;
}
.cursos-bullets {
  margin: 0.5rem 0 1rem;
  padding-left: 1.2rem;
  color: var(--muted);
  max-width: 44rem;
  line-height: 1.55;
}
.cursos-bullets li { margin: 0.35rem 0; }
/* Botonera atajos: 3 columnas × 2 filas (móvil y escritorio) */
.home-quick {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem 0.4rem;
  margin: 0.85rem 0 1rem;
  padding: 0.15rem 0 0.35rem;
  width: 100%;
  max-width: min(36rem, 100%);
  box-sizing: border-box;
  align-items: stretch;
}
.home-quick__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.2rem;
  min-width: 0;
  min-height: 2.85rem;
  padding: 0.48rem 0.3rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: clamp(0.68rem, 1.25vw, 0.9rem);
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
  line-height: 1.2;
  white-space: normal;
  box-sizing: border-box;
}
.home-quick__label {
  display: block;
}
.home-quick__ic {
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  line-height: 1;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .home-quick {
    gap: 0.5rem 0.45rem;
  }
  .home-quick__item {
    min-height: 3.1rem;
    padding: 0.5rem 0.4rem;
    font-size: 0.88rem;
  }
  .home-quick__ic {
    font-size: 1.1rem;
  }
}
.home-quick__item:hover {
  text-decoration: none;
  transform: translateY(-2px);
  border-color: #93c5fd;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.15);
  color: var(--accent);
}
.hero-block--home h1 {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  color: #0f172a;
  margin-bottom: 0.65rem;
}
@supports (-webkit-background-clip: text) {
  .hero-block--home h1 {
    color: transparent;
    background: linear-gradient(120deg, #0f172a 0%, #2563eb 55%, #7c3aed 100%);
    -webkit-background-clip: text;
    background-clip: text;
  }
}
/* Grids y cards */
.grid-2 { display: grid; gap: 1.25rem; margin-top: 1.5rem; }
@media (min-width: 800px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.grid-3 { display: grid; gap: 1rem; margin-top: 1.25rem; }
@media (min-width: 720px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.prose-card, .mini-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow);
}
.prose-card ul, .prose-card p { color: var(--muted); }
.prose-card ul { margin: 0.4rem 0 0; padding-left: 1.2rem; }
.prose-card--home-solo { max-width: 36rem; }
.mini-card h3 { font-size: 0.98rem; }
.mini-card p { font-size: 0.9rem; color: var(--muted); margin: 0; }

/* Planes */
.plan-grid { display: grid; gap: 1rem; margin-top: 1.5rem; }
@media (min-width: 600px) { .plan-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .plan-grid { grid-template-columns: repeat(4, 1fr); } }
.plan-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem; position: relative; box-shadow: var(--shadow); transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s; }
.plan-card:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(15, 23, 42, 0.1); }
.plan-card--featured { border-color: #93c5fd; background: linear-gradient(180deg, #eff6ff 0%, #fff 45%); }
.plan-card .badge { position: absolute; top: 0.6rem; right: 0.6rem; font-size: 0.65rem; text-transform: uppercase; font-weight: 800; background: #3b82f6; color: #fff; padding: 0.2rem 0.45rem; border-radius: 4px; }
.plan-card h3 { margin: 0 0 0.25rem; font-size: 1.05rem; }
.plan-card__price { font-size: 1.4rem; font-weight: 800; color: var(--accent); margin: 0 0 0.5rem; }
.plan-card__price .cur { font-size: 0.75rem; vertical-align: top; }
.plan-card__price .per { font-size: 0.8rem; font-weight: 600; color: var(--muted); }
.plan-card ul { font-size: 0.9rem; color: var(--muted); margin: 0 0 0.9rem; padding-left: 1.1rem; }
.plan-card .btn { width: 100%; margin-top: 0.25rem; }

/* Argentina landings */
.ar-grid { display: grid; gap: 1rem; margin-top: 1.25rem; }
@media (min-width: 800px) { .ar-grid { grid-template-columns: repeat(3, 1fr); } }
.ar-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.1rem 1.2rem; font-size: 0.92rem; }
.ar-card p { color: var(--muted); margin: 0.4rem 0 0; }
.h3-anchors { margin: 1.5rem 0 0.6rem; }
.list-links { list-style: none; padding: 0; margin: 0.5rem 0 0; display: flex; flex-direction: column; gap: 0.4rem; }
.list-links a { color: var(--accent); }
@media (min-width: 700px) {
  .list-links--cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .list-links--stack li { margin: 0; line-height: 1.45; }
  .list-links--stack strong { display: block; margin-bottom: 0.15rem; font-size: 0.95rem; }
  .list-links__sep { color: var(--muted); margin: 0 0.25rem; }
  .list-links__meta { display: block; font-size: 0.85rem; color: var(--muted); margin-top: 0.25rem; }
}

/* CTA */
.cta-band { background: linear-gradient(120deg, #1e3a5f, #2563eb); color: #e2e8f0; padding: 2.5rem 1.25rem; }
.cta-inner { max-width: 1000px; display: grid; gap: 1.25rem; }
@media (min-width: 800px) { .cta-inner { grid-template-columns: 1.2fr 1fr; align-items: center; } }
.cta-band h2 { color: #fff; }
.cta-band p { color: #cbd5e1; margin: 0; }
.cta-actions { display: flex; flex-direction: column; gap: 0.5rem; align-items: flex-start; }
.cta-band .btn--primary { background: #fff; color: #1e3a5f; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.cta-band .btn--primary:hover { background: #f1f5f9; color: #0f172a; }
.cta-band .btn--secondary { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.cta-band .btn--secondary:hover { background: rgba(255,255,255,0.1); color: #fff; }
.cta-band .link-quiet { color: #e0e7ff; }

/* Testimonios */
.testi-head { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem; margin-bottom: 1rem; align-items: flex-end; }
.testi-leave-review {
  margin: 0 0 1.15rem;
  padding: 0.9rem 1.1rem;
  background: linear-gradient(120deg, #eff6ff, #f8fafc);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius);
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--text);
  box-shadow: 0 2px 12px rgba(37, 99, 235, 0.08);
}
.testi-leave-review__link {
  font-weight: 600;
  color: var(--accent);
  word-break: break-all;
}
.testi-leave-review__link:hover {
  text-decoration: underline;
}
.review-badges { color: var(--muted); font-size: 0.9rem; }
.t-slider { position: relative; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; padding: 0.35rem 0; }
.t-slider__track { display: flex; align-items: stretch; transition: transform 0.4s ease; }
.t-slider__slide {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 0.45rem 0.5rem 1rem;
  display: flex;
  min-height: 0;
  align-items: stretch;
}
.t-card {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem;
  width: 100%;
  height: 20.5rem;
  box-sizing: border-box;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.t-card__head {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-height: 0;
  overflow: hidden;
}
.t-card__text {
  color: var(--muted);
  font-size: 0.9rem;
  flex: 1 1 auto;
  min-height: 0;
  line-height: 1.5;
  margin: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.t-card__meta { flex-shrink: 0; margin-top: auto; padding-top: 0.75rem; border-top: 1px solid #e2e8f0; font-size: 0.9rem; }
.t-card__author { font-weight: 700; color: var(--text); }
.stars { color: #f59e0b; }
.t-slider__nav { display: flex; justify-content: center; gap: 0.4rem; margin-top: 0.5rem; }
.t-slider__nav button { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border); background: #fff; color: var(--text); font-size: 1.1rem; cursor: pointer; }
.t-slider__nav button:hover { background: var(--pastel-2); }
.t-dots { display: flex; justify-content: center; gap: 0.3rem; margin-top: 0.4rem; flex-wrap: wrap; }
.t-dots button { width: 7px; height: 7px; border: none; border-radius: 50%; background: #cbd5e1; padding: 0; cursor: pointer; }
.t-dots button[aria-selected="true"] { background: var(--accent); }
@media (max-width: 699px) {
  .t-card { height: 18rem; }
}
.testi-footer { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.9rem; justify-content: center; }
.note-api { text-align: center; font-size: 0.85rem; color: #94a3b8; max-width: 40rem; margin: 0.4rem auto 0; }

[hidden] { display: none !important; }

/* Footer */
.site-footer { background: #fff; border-top: 1px solid var(--border); padding: 2rem 1.25rem; margin-top: 0; }
.footer-grid { display: grid; gap: 1.5rem; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; } }
.footer-title { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: #64748b; margin: 0 0 0.4rem; }
.footer-links { list-style: none; padding: 0; margin: 0; font-size: 0.9rem; }
.footer-links li { margin-bottom: 0.25rem; }
.footer-copy, .footer-legal { font-size: 0.9rem; color: var(--muted); margin: 0.3rem 0; }
.footer-brand { margin: 0; font-size: 1.1rem; }
.footer-sitemap { margin-top: 1.5rem; padding-top: 1.35rem; border-top: 1px solid #e2e8f0; }
.footer-sitemap__title {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin: 0 0 0.75rem;
}
.footer-sitemap__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
  font-size: 0.8rem;
  line-height: 1.45;
}
.footer-sitemap__list a { color: #64748b; }
.footer-sitemap__list a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid #e2e8f0; margin-top: 1.25rem; padding-top: 1rem; font-size: 0.86rem; color: #64748b; }

.error-banner { background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; padding: 0.65rem 0.9rem; border-radius: 8px; font-size: 0.9rem; margin: 0.4rem 0; }
.empty-state { text-align: center; padding: 1.5rem; background: #f8fafc; border: 1px dashed #cbd5e1; border-radius: var(--radius); color: var(--muted); }

code { font-size: 0.88em; background: #f1f5f9; padding: 0.1em 0.35em; border-radius: 3px; color: #334155; }

/* Páginas internas (fichas SEO, SEM, newsletter) + microanimaciones */
body.is-inner {
  background-image: linear-gradient(180deg, #f8fbff 0%, var(--pastel-2) 32%, #eef2f7 100%);
}
.page-main {
  padding-bottom: 2.5rem;
  animation: pageFadeIn 0.55s ease both;
}
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.page-hero {
  position: relative;
  overflow: hidden;
  color: #f1f5f9;
  padding: 2.25rem 1.25rem 2.75rem;
  border-radius: 0 0 var(--radius) var(--radius);
  margin-bottom: 1.5rem;
  background: linear-gradient(130deg, #0f3d8a 0%, #2563eb 45%, #38bdf8 100%);
  box-shadow: 0 20px 50px rgba(15, 61, 138, 0.22);
}
.page-hero--green {
  background: linear-gradient(125deg, #0f3d2e 0%, #0d7a4f 50%, #22c55e 100%);
  box-shadow: 0 20px 50px rgba(13, 122, 79, 0.2);
}
.page-hero--magenta {
  background: linear-gradient(125deg, #4a1d4f 0%, #7c2d6e 45%, #e11d48 100%);
  box-shadow: 0 20px 50px rgba(124, 45, 110, 0.22);
}
.page-hero--pay {
  background: linear-gradient(128deg, #0c4a6e 0%, #0e7490 48%, #22d3ee 100%);
  box-shadow: 0 20px 50px rgba(12, 74, 110, 0.22);
}
.page-hero--domain {
  background: linear-gradient(130deg, #1e1b4b 0%, #4f46e5 50%, #a78bfa 100%);
  box-shadow: 0 20px 50px rgba(30, 27, 75, 0.25);
}

.dominios-cta-banner {
  margin-top: 1.35rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  max-width: 44rem;
}
.dominios-cta-banner__lead {
  margin: 0 0 0.75rem;
  color: #eef2ff;
  font-size: 0.98rem;
  line-height: 1.5;
}
.dominios-cta-banner__btn {
  margin: 0 0 0.5rem;
  display: inline-flex;
}
.dominios-cta-banner__hint {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(241, 245, 249, 0.85);
  line-height: 1.45;
}

.is-dominiospage .dominios-shop-wrap {
  margin-top: 0.75rem;
}
.dominios-shop-card {
  margin: 1rem 0 0;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.dominios-shop-card__chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  background: #e8ecf4;
  border-bottom: 1px solid #cbd5e1;
}
.dominios-shop-card__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #94a3b8;
}
.dominios-shop-card__dot:first-child {
  background: #f97316;
}
.dominios-shop-card__dot:nth-child(2) {
  background: #eab308;
}
.dominios-shop-card__dot:nth-child(3) {
  background: #22c55e;
}
.dominios-shop-card__url {
  flex: 1;
  margin-left: 0.35rem;
  padding: 0.2rem 0.5rem;
  font-family: ui-monospace, monospace;
  font-size: 0.78rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 6px;
  border: 1px solid #cbd5e1;
}
.dominios-shop-card__body {
  padding: 1.2rem 1.25rem 1.35rem;
}
.dom-check-sei-brand {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}
.dom-check-sei-brand__link {
  display: inline-block;
  line-height: 0;
}
.dom-check-sei-brand__logo {
  display: block;
  max-width: min(288px, 100%);
  height: auto;
  max-height: 56px;
  width: auto;
  object-fit: contain;
}
.dom-check-sei-brand__caption {
  margin: 0.55rem 0 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.45;
  max-width: 36rem;
}
.dominios-shop-card__kicker {
  margin: 0 0 0.35rem;
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--text);
}
.dominios-shop-card__text {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}
.dominios-shop-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.dominios-shop-card__form-wrap {
  margin-top: 0.15rem;
}
.dominios-shop-card--checker .domain-search__form {
  margin: 0;
  max-width: 100%;
}
.dominios-shop-card--checker .domain-search__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}
.dominios-shop-card--checker .domain-search__input {
  flex: 1 1 200px;
  min-width: 0;
}
.dominios-shop-card--checker .domain-search__submit {
  flex: 0 0 auto;
  white-space: nowrap;
}

.page-hero--courses {
  background: linear-gradient(125deg, #7c2d12 0%, #c2410c 45%, #fbbf24 100%);
  box-shadow: 0 20px 50px rgba(194, 65, 12, 0.2);
}
.page--pagos .form-pagos-wrap {
  max-width: 46rem;
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
}
.form-pagos-note {
  margin: 0 0 1.5rem;
  line-height: 1.6;
  padding: 0.9rem 1.1rem;
  background: linear-gradient(180deg, #f8fafc, #f1f5f9);
  border-radius: var(--radius);
  border: 1px solid #e2e8f0;
}
.form-pagos {
  background: #fff;
  border: 1px solid #c7d6ee;
  border-radius: 20px;
  padding: 1.5rem 1.35rem 1.85rem;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
}
.form-pagos__fieldset {
  border: none;
  margin: 0 0 1.6rem;
  padding: 0;
  min-inline-size: 0;
}
.form-pagos__fieldset--pay { padding-bottom: 0.5rem; }
.form-pagos__legend {
  display: block;
  width: 100%;
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 0.4rem;
  padding: 0;
  letter-spacing: -0.02em;
  border-bottom: 2px solid #e0e7ff;
  padding-bottom: 0.45rem;
}
.form-pagos__intro {
  margin: 0.45rem 0 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.form-pagos__methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0.15rem;
}
.pay-card--selectable { cursor: pointer; }
.pay-card--info {
  cursor: default;
  background: #f8fafc;
  border-style: dashed;
}
.pay-card--info:hover {
  border-color: var(--border);
  box-shadow: none;
  transform: none;
}
.pay-card {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin: 0;
  padding: 1.05rem 1.1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(165deg, #f8fbff 0%, #fff 50%);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s, transform 0.2s;
}
.pay-card:hover {
  border-color: #93c5fd;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.1);
}
.pay-card.is-selected,
.pay-card:has(.pay-card__radio:checked) {
  border-color: #2563eb;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}
.pay-card__radio {
  flex-shrink: 0;
  width: 1.2rem;
  height: 1.2rem;
  margin: 0.2rem 0 0;
  accent-color: #2563eb;
  cursor: pointer;
}
.pay-card__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.pay-card__head { display: block; }
.pay-card__title { display: block; font-weight: 800; color: var(--text); font-size: 1rem; margin: 0 0 0.3rem; }
.pay-card__desc { display: block; font-size: 0.88rem; color: var(--muted); line-height: 1.5; }
.pay-card__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
}
.pay-card__field { flex: 1 1 12rem; min-width: 0; }
.pay-card__label { display: block; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: #64748b; margin: 0 0 0.3rem; }
.pay-card__img { flex: 0 0 auto; max-width: 7.5rem; width: 100%; height: auto; border-radius: 8px; border: 1px solid #e2e8f0; background: #fff; object-fit: contain; }
.pay-card__brand { flex: 0 0 auto; display: block; }
.pay-card__svg { display: block; max-height: 2.75rem; width: auto; border-radius: 8px; box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12); }
.form-pagos__grid {
  display: grid;
  gap: 0.9rem 1.1rem;
}
@media (min-width: 600px) {
  .form-pagos__grid { grid-template-columns: 1fr 1fr; }
}
.form-pagos__grid--wide { margin-top: 0.4rem; }
.form-pagos__field { display: flex; flex-direction: column; gap: 0.3rem; }
.form-pagos__field--wide { grid-column: 1 / -1; }
.form-pagos__field--full { margin-top: 0.4rem; grid-column: 1 / -1; }
.form-pagos__field label { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.form-pagos__hint { font-size: 0.82rem; color: #64748b; margin: 0; line-height: 1.4; }
.form-pagos__input,
.form-pagos__textarea {
  width: 100%;
  max-width: 100%;
  font: inherit;
  font-size: 0.95rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-pagos__input:focus,
.form-pagos__textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.22);
}
.form-pagos__textarea { min-height: 6.5rem; resize: vertical; }
.form-pagos__recaptcha {
  margin: 0.6rem 0 0.2rem;
  padding: 1rem;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: var(--radius);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.form-pagos__submit { text-align: center; margin: 1.25rem 0 0; }
.form-pagos__submit .btn--lg { min-width: 14rem; padding: 0.8rem 1.5rem; }
.domain-search { margin: 1rem 0; padding: 1.1rem; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); }
.domain-search__form { max-width: 100%; }
.domain-search__label { display: block; font-weight: 600; margin: 0 0 0.4rem; }
.domain-search__row { display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: center; }
.domain-search__input { flex: 1 1 200px; min-width: 0; }
.domain-search__help { font-size: 0.86rem; color: var(--muted); margin: 0.6rem 0 0; }
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(255, 255, 255, 0.2), transparent 55%);
  pointer-events: none;
  animation: heroShine 7s ease-in-out infinite;
}
@keyframes heroShine {
  0%, 100% { opacity: 0.65; }
  50% { opacity: 1; }
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}
.page-hero .eyebrow {
  color: rgba(255, 255, 255, 0.85);
}
.page-hero h1 {
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
  margin: 0 0 0.75rem;
}
.page-hero__lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(241, 245, 249, 0.96);
  max-width: 52rem;
}
.breadcrumbs {
  font-size: 0.86rem;
  margin: 0 0 0.9rem;
}
.breadcrumbs a {
  color: #e0e7ff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
.breadcrumbs a:hover {
  color: #fff;
  border-color: #fff;
}
.breadcrumbs__sep { margin: 0 0.4rem; opacity: 0.6; }
.breadcrumbs__here { color: rgba(255, 255, 255, 0.8); }
.content-article { padding: 0 0 1rem; }
.content-block { margin: 1.75rem 0; }
.content-block h2 { margin-bottom: 0.6rem; }
.content-block p,
.content-block li { color: var(--muted); }
.content-block--highlight {
  background: linear-gradient(180deg, #eff6ff 0%, #fff 100%);
  border: 1px solid #c7d6ee;
  border-radius: var(--radius);
  padding: 1.2rem 1.35rem;
  box-shadow: var(--shadow);
}
.content-split { margin: 1.5rem 0; }
.content-split .prose-card { min-height: 100%; }
.process-steps { margin: 0.5rem 0 0; padding-left: 1.15rem; color: var(--muted); }
.process-steps li { margin-bottom: 0.5rem; }
.process-steps li strong { color: var(--text); }
.price-tier-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}
@media (min-width: 600px) {
  .price-tier-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .price-tier-grid { grid-template-columns: repeat(3, 1fr); }
  .price-tier--wide { grid-column: span 3; }
}
.price-tier {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.price-tier h3 { margin: 0 0 0.4rem; font-size: 1.02rem; }
.price-tier__main {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
  margin: 0 0 0.5rem;
}
.price-tier__main .cur { font-size: 0.7rem; vertical-align: top; }
.price-tier__main .per { font-size: 0.8rem; font-weight: 600; color: var(--muted); }
.price-tier__alt {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.price-tier__alt li { margin: 0.2rem 0; }
.price-tier__hint { font-size: 0.88rem; color: var(--muted); margin: 0.5rem 0 0; line-height: 1.5; }
.price-tier__badge {
  display: inline-block;
  margin: 0 0 0.45rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #0f766e;
  background: #ccfbf1;
  border-radius: 999px;
}
.price-tier__list {
  list-style: disc;
  margin: 0.25rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}
.price-tier__list li {
  margin: 0.3rem 0;
}
.price-tier--featured {
  border: 2px solid var(--accent);
  background: linear-gradient(180deg, #f8fafc 0%, #fff 58%);
}

.nl-compare-intro {
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.85rem;
}
.nl-compare-note {
  font-size: 0.89rem;
  color: var(--muted);
  margin-top: 0.75rem;
}
.nl-table-wrap {
  overflow-x: auto;
  margin: 0.5rem 0 0;
}
.nl-compare-table {
  width: 100%;
  min-width: 320px;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.nl-compare-table th,
.nl-compare-table td {
  padding: 0.65rem 0.85rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
}
.nl-compare-table th {
  background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
  font-weight: 700;
}
.nl-compare-table tr:last-child th,
.nl-compare-table tr:last-child td {
  border-bottom: 0;
}
.nl-hero-banner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  align-items: start;
  margin: 1.25rem 0 1.75rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px dashed #cbd5f5;
  background: linear-gradient(140deg, #fefce8 0%, #fff 45%, #f0fdf4 100%);
}
.nl-hero-banner__img-wrap {
  text-align: center;
}
.nl-hero-banner__img-wrap img {
  max-width: 180px;
  height: auto;
  display: inline-block;
  filter: drop-shadow(0 8px 20px rgba(15, 23, 42, 0.12));
}
@media (min-width: 640px) {
  .nl-hero-banner {
    grid-template-columns: minmax(0, 170px) 1fr;
  }
  .nl-hero-banner__img-wrap img {
    max-width: 150px;
  }
}

.intro-lede {
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--text);
  margin: 0 0 1.25rem;
  max-width: 48rem;
}

/* Hub de videotutoriales YouTube + rejilla con miniaturas */
.yt-hub {
  margin-bottom: 1rem;
}
.yt-hub__cta {
  padding: 1.2rem 1.3rem;
  background: linear-gradient(125deg, #1e1b4b 0%, #4f46e5 45%, #818cf8 100%);
  color: #eef2ff;
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(30, 27, 75, 0.18);
}
.yt-hub__cta-title {
  margin: 0 0 0.45rem;
  font-size: 1.2rem;
  color: #fff;
}
.yt-hub__cta-lead {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.52;
  color: rgba(241, 245, 249, 0.92);
  max-width: 40rem;
}
.yt-hub__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.9rem;
}
.yt-hub__cta .btn--primary {
  background: #f97316;
  border-color: #ea580c;
  color: #fff;
}
.yt-hub__cta .btn--primary:hover {
  filter: brightness(1.06);
}
.yt-hub__cta .btn--secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.36);
}
.yt-hub__cta .btn--ghost {
  background: rgba(15, 23, 42, 0.32);
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.65);
}
.yt-hub__cta .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.92);
}

.content-article--landing .yt-catalog {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-top: 0.35rem;
}

.yt-pl-block {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 38%);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 0.85rem 0.85rem 1rem;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}
.yt-pl-block--solo {
  background: #fff;
}
.yt-pl-block__hdr {
  margin: 0 0 0.65rem;
}
.yt-pl-h {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -0.02em;
  padding: 0.28rem 0.65rem 0.32rem 0.5rem;
  background: linear-gradient(90deg, #e0e7ff 0%, #f1f5f9 100%);
  border-radius: 999px;
  border: 1px solid #c7d2fe;
}
.yt-pl-h__ic {
  display: inline-grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  font-size: 0.55rem;
  color: #fff;
  background: #4f46e5;
  border-radius: 999px;
  line-height: 1;
}

.yt-grid {
  display: grid;
  list-style: none;
  padding: 0;
  margin: 0;
}
.yt-grid--mosaic {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 142px), 1fr));
  gap: 0.65rem 0.7rem;
}
@media (min-width: 900px) {
  .yt-grid--mosaic {
    grid-template-columns: repeat(auto-fill, minmax(156px, 1fr));
    gap: 0.75rem 0.85rem;
  }
}
@media (min-width: 1200px) {
  .yt-grid--mosaic {
    grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  }
}

.yt-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.yt-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.09);
}
.yt-card--compact .yt-card__body {
  padding: 0.45rem 0.5rem 0.55rem;
}
.yt-card--compact .yt-card__title {
  font-size: 0.8rem;
  line-height: 1.38;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.yt-card--compact .yt-card__date {
  font-size: 0.72rem;
}
.yt-card--compact .yt-card__play {
  width: 2.1rem;
  height: 2.1rem;
  font-size: 0.72rem;
  background: rgba(220, 38, 38, 0.78);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}
.yt-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.yt-card__thumb-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0f172a;
  overflow: hidden;
}
.yt-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.28s ease;
}
.yt-card:hover .yt-card__thumb {
  transform: scale(1.04);
}
.yt-card__play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.55);
  color: #fff;
  font-size: 1.1rem;
  display: grid;
  place-items: center;
  line-height: 1;
}
.yt-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.65rem 0.72rem 0.85rem;
}
.yt-card__title {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.42;
  color: var(--text);
}
.yt-card__date {
  font-size: 0.78rem;
  color: var(--muted);
}

@media (max-width: 480px) {
  .nl-compare-table {
    font-size: 0.82rem;
  }
}

.related-pages {
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  padding-top: 1.5rem;
}
.related-pages__h { font-size: 1.05rem; margin: 0 0 0.5rem; }
.related-pages ul { list-style: none; padding: 0; margin: 0; }
.related-pages li { margin: 0.4rem 0; }
.page-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.5rem 0 0; }

.card-lift { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.card-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}
.prose-card,
.mini-card,
.plan-card,
.t-card,
.ar-card,
.price-tier {
  border-radius: var(--radius);
}
.plan-card--featured { border-radius: var(--radius); }
.hero-video__frame { border-radius: 20px; }
@media (min-width: 1000px) { .t-slider__slide { flex: 0 0 33.333%; } }
@media (min-width: 700px) and (max-width: 999px) { .t-slider__slide { flex: 0 0 50%; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .page-main { animation: none; }
  .card-lift { animation: none; }
  .card-lift:hover { transform: none; }
  .plan-card:hover { transform: none; }
  .page-hero::after { animation: none; }
  .t-slider__track { transition: none; }
  .hero-block--home__bg { animation: none; }
  .hero-video__placeholder--animated { background-size: auto; animation: none; }
  .home-quick__item:hover { transform: none; }
  .home-band--sky::before,
  .home-band--mesh::before,
  .home-band--warm::before {
    transform: none;
  }
}

/* Landings (provincia / listados) + nav sub (botonera) */
.page-hero--soft {
  background: linear-gradient(160deg, var(--pastel-2) 0%, #fff 55%, #eef4ff 100%);
  color: var(--text);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
}
.page-hero--soft::after {
  display: none;
}
.page-hero--soft h1 {
  color: var(--text);
  text-shadow: none;
}
.page-hero--soft .page-hero__lead {
  color: var(--muted);
}
.page-hero--soft .page-hero__lead a {
  color: var(--accent);
  border-bottom: 1px solid rgba(37, 99, 235, 0.35);
}
.page-hero--soft .page-hero__lead a:hover {
  color: var(--accent-hover);
  border-color: var(--accent-hover);
}
.page-hero--soft .breadcrumbs a {
  color: var(--accent);
  border-bottom: 1px solid rgba(37, 99, 235, 0.35);
}
.page-hero--soft .breadcrumbs a:hover {
  color: var(--accent-hover);
}
.page-hero--soft .breadcrumbs__here {
  color: var(--muted);
}
.page-hero--soft .eyebrow {
  color: #64748b;
}

.content-article--landing h2 { margin-top: 1.75rem; }
.content-article--landing h2:first-of-type { margin-top: 0.5rem; }
.landing-h1 { font-size: 1.6rem; line-height:1.3; margin: 0 0 0.75rem; }
.lead-strong { font-size: 1.05rem; color: var(--text); }
.landing-list { margin: 0.5rem 0 1.25rem; padding-left: 1.25rem; }
.landing-list li { margin: 0.35rem 0; }
.landing-cta { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.5rem 0; }

.landing-geo-idx { display: flex; flex-direction: column; gap: 1.25rem; }
.landing-geo-idx__block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow);
}
.landing-geo-idx__h2 { margin: 0 0 0.35rem; font-size: 1.15rem; }
.landing-geo-idx__prov { margin: 0 0 0.5rem; }
.landing-geo-idx__loc {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 0.25rem 0.5rem;
  font-size: 0.92rem;
}
.landing-geo-idx__loc li { margin: 0; }
.landing-geo-idx__loc a { padding: 0.2rem 0.45rem; border-radius: 6px; background: var(--pastel-2); }
.landing-geo-idx__loc a:hover { text-decoration: none; background: var(--pastel); }

.landing-letters { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.landing-letters a {
  display: inline-block; padding: 0.4rem 0.65rem; border-radius: 8px;
  background: var(--pastel-2); font-weight: 600;
}
.landing-letters a:hover { text-decoration: none; background: var(--pastel); }
.landing-rubro-list, .landing-video-list {
  list-style: none; padding: 0; margin: 0.5rem 0 0;
  display: flex; flex-direction: column; gap: 0.35rem;
}
.landing-resource-ol { line-height: 1.7; }
.landing-resource-ol li { margin: 0.5rem 0; }
.resource-list-15 { line-height: 1.6; }
.resource-list-15 li { margin: 0.6rem 0; }
.resource-list-15 a { font-weight: 500; }
.resource-list-15__nolink { color: var(--muted); }
.resource-list-15__nolink a { font-weight: 600; }

.video-embed { position: relative; width: 100%; max-width: 900px; margin: 0 auto; aspect-ratio: 16/9; background: #000; border-radius: var(--radius); overflow: hidden; }
.video-embed__frame { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

button.site-nav__parent-label {
  width: 100%;
  max-width: 100%;
  text-align: left;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.35;
  font-family: var(--font);
  color: var(--muted);
  letter-spacing: 0.01em;
  background: transparent;
  border: 0;
  border-radius: 8px;
  padding: 0.55rem 0.4rem 0.55rem 0.35rem;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  box-sizing: border-box;
}
button.site-nav__parent-label .site-nav__parent-text {
  min-width: 0;
  flex: 1 1 auto;
  text-align: left;
  overflow-wrap: anywhere;
}
/* Flecha: solo móvil / tablet. */
button.site-nav__parent-label::after {
  content: "";
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  border-right: 2px solid #94a3b8;
  border-bottom: 2px solid #94a3b8;
  transform: rotate(-45deg);
  flex-shrink: 0;
  margin-right: 0.15rem;
  transition: transform 0.2s ease;
}
@media (min-width: 1024px) {
  button.site-nav__parent-label::after {
    display: none;
  }
  .site-nav__item--parent {
    position: relative;
  }
  button.site-nav__parent-label {
    display: block;
    width: auto;
    max-width: none;
    padding: 0.28rem 0.38rem;
    font-size: 0.76rem;
    color: var(--muted);
    font-weight: 600;
    cursor: default;
    border-radius: 6px;
  }
  .site-nav__sub {
    list-style: none;
    margin: 0;
    padding: 0.4rem 0;
    min-width: 14rem;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 50;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    gap: 0;
  }
  .site-nav__item--parent:hover .site-nav__sub,
  .site-nav__item--parent:focus-within .site-nav__sub,
  .site-nav__item--parent.is-expanded .site-nav__sub {
    display: flex;
  }
  .site-nav__sub a {
    font-size: 0.8rem;
    padding: 0.38rem 0.55rem;
    border-radius: 0;
  }
}
@media (max-width: 1023px) {
  .site-nav__item--parent .site-nav__sub {
    display: none;
    list-style: none;
    margin: 0.2rem 0 0.45rem 0.25rem;
    padding: 0.15rem 0 0.35rem 0.65rem;
    border-left: 2px solid var(--border);
  }
  .site-nav__item--parent.is-expanded .site-nav__sub {
    display: block;
  }
  .site-nav__item--parent.is-expanded .site-nav__parent-label::after {
    transform: rotate(45deg) translate(1px, -2px);
  }
  .site-nav__sub a {
    font-size: 0.94rem;
    font-weight: 500;
    padding: 0.45rem 0.25rem;
  }
  button.site-nav__parent-label:hover,
  button.site-nav__parent-label:focus-visible {
    background: var(--pastel-2);
    outline: none;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: start;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; }
}
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); min-height: 280px; }
.map-embed__frame { display: block; width: 100%; height: 320px; border: 0; }
.label-muted { color: var(--muted); font-size: 0.85rem; margin-right: 0.25rem; }

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto 1.5rem;
  padding: 0 1.25rem;
}
@media (min-width: 800px) {
  .contact-page-grid { grid-template-columns: 1.25fr minmax(17rem, 1fr); align-items: start; }
}

/* Contact page: lateral datos + redes */
.contact-sidebar {
  padding: 1.15rem 1.25rem 1.3rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, #f8fbff 0%, #fff 55%);
}
.contact-sidebar__title {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: -0.02em;
}
.contact-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-info-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.contact-info-item__ic {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-item__ic--muted {
  color: #2563eb;
  background: rgba(37, 99, 235, 0.08);
}
.contact-info-item__ic--wa {
  color: #fff;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}
.contact-info-item__body { min-width: 0; }
.contact-info-item__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  margin-bottom: 0.15rem;
}
.contact-info-item__value {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text);
  text-decoration: none;
  word-break: break-word;
}
a.contact-info-item__value:hover,
a.contact-info-item__value:focus-visible {
  color: #1d4ed8;
  text-decoration: underline;
  outline: none;
}
.contact-info-item__value--static {
  font-weight: 500;
  color: var(--text);
}
.contact-social {
  margin-top: 1.15rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
}
.contact-social__title {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #64748b;
}
.contact-social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-social-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.contact-social-link svg { flex-shrink: 0; }
.contact-social-link__txt { line-height: 1.2; }
.contact-social-link:hover,
.contact-social-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.18);
  filter: brightness(1.05);
  outline: none;
}
.contact-social-link--fb { background: #1877f2; }
.contact-social-link--x { background: #0f172a; }
.contact-social-link--yt { background: #c00; }
@media (min-width: 420px) {
  .contact-social-list {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .contact-social-link { flex: 1 1 auto; min-width: 6.5rem; justify-content: center; }
}

.contact-article { padding-top: 0; }
.form-contact { max-width: 720px; }
.form-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 0.75rem; }
.form-row--3 .form-field { flex: 1 1 12rem; }
.form-field { display: flex; flex-direction: column; gap: 0.2rem; }
.form-field--full { width: 100%; margin-bottom: 0.75rem; }
.form-field__l { font-size: 0.86rem; font-weight: 600; color: var(--muted); }
.form-field input, .form-field textarea {
  font: inherit; padding: 0.5rem 0.65rem; border: 1px solid var(--border);
  border-radius: 8px; background: #fff; color: var(--text);
}
.form-field input:focus, .form-field textarea:focus {
  outline: 2px solid var(--pastel);
  border-color: var(--accent);
}
.g-recaptcha-wrap { margin: 0.75rem 0 1rem; }
.form-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.form-error { color: #b91c1c; background: #fef2f2; border: 1px solid #fecaca; padding: 0.6rem 0.9rem; border-radius: 8px; }
.form-success { color: #14532d; background: #f0fdf4; border: 1px solid #bbf7d0; padding: 0.9rem 1rem; border-radius: 8px; }

/* Canal YouTube: grilla últimos videos + CTA */
.cta-band--after { margin-top: 1.5rem; }
.yt-latest {
  margin: 2rem 0;
  padding: 0;
}
.yt-latest__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.yt-latest__head h2 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.25;
}
.yt-latest__sub { flex-shrink: 0; }
.yt-latest__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}
@media (min-width: 640px) {
  .yt-latest__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
  }
}
.yt-latest__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.yt-latest__thumb-link {
  display: block;
  line-height: 0;
  background: #0f172a;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.yt-latest__thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.22s ease;
}
.yt-latest__card:hover .yt-latest__thumb {
  transform: scale(1.03);
}
.yt-latest__body {
  padding: 0.9rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1 1 auto;
}
.yt-latest__meta {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}
.yt-latest__title {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.35;
  font-weight: 700;
}
.yt-latest__title a {
  color: var(--text);
  text-decoration: none;
}
.yt-latest__title a:hover {
  color: var(--accent);
  text-decoration: underline;
}
.yt-latest__cta {
  margin: auto 0 0;
  padding-top: 0.25rem;
}
.yt-latest__fallback { max-width: 40rem; margin: 1rem 0; text-align: center; }
.yt-latest__footnote {
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 0.82rem;
}

/* Tabla VPS (ficha hosting) */
.content-block--vps { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.table-scroll {
  margin: 1rem 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
}
.vps-plans-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.vps-plans-table th,
.vps-plans-table td {
  padding: 0.65rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.vps-plans-table thead th {
  background: var(--pastel-2);
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}
.vps-plans-table tbody th { font-weight: 600; }
.vps-plans-table tbody tr:hover { background: rgba(37, 99, 235, 0.04); }
.vps-plans-table tbody tr:last-child th,
.vps-plans-table tbody tr:last-child td { border-bottom: 0; }
.btn--table {
  padding: 0.4rem 0.9rem;
  font-size: 0.88rem;
  white-space: nowrap;
}
@media (max-width: 52rem) {
  .vps-plans-table { min-width: 640px; }
}

/* Normas de uso: índice y secciones legales */
.normas-article { max-width: 880px; }
.normas-toc {
  background: var(--pastel-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem 1.1rem;
  margin: 0 0 1.75rem;
}
.normas-toc__title { font-size: 0.95rem; font-weight: 700; margin: 0 0 0.6rem; color: var(--muted); }
.normas-toc__list { margin: 0; padding: 0 0 0 1.1rem; line-height: 1.65; font-size: 0.95rem; }
.normas-toc__list li { margin: 0.3rem 0; }
.normas-block { margin: 0 0 1.5rem; }
.normas-block h2 { font-size: 1.15rem; margin: 0 0 0.6rem; scroll-margin-top: 5.5rem; }
.normas-block p { margin: 0.55rem 0; }
.normas-block ul { margin: 0.4rem 0 0.6rem; padding-left: 1.2rem; }
.normas-block li { margin: 0.35rem 0; }
.normas-updated { font-size: 0.9rem; color: var(--muted); margin: 0 0 1rem; }

/* Pago Mercado Pago — checkout desde web2026 */
.page-hero--mppay .page-hero__lead { max-width: 42rem; }
.mp-pay {
  padding: 0 0 3rem;
}
.mp-pay__notice {
  max-width: 42rem;
  margin: 0 auto 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
}
.mp-pay__notice--ok {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}
.mp-pay__notice--err {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}
.mp-pay__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}
@media (min-width: 840px) {
  .mp-pay__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
  }
}
.mp-pay__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem 1.35rem 1.65rem;
}
.mp-pay__brand {
  margin: 0 0 1rem;
}
.mp-pay__svglogo {
  display: block;
  width: auto;
  max-width: min(260px, 100%);
  height: auto;
  max-height: 52px;
}
.mp-pay__h2 {
  font-size: 1.22rem;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}
.mp-pay__h2--aside {
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
}
.mp-pay__lead {
  margin: 0 0 1.1rem;
  font-size: 0.96rem;
  color: var(--muted);
}
.mp-pay__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mp-pay__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.mp-pay__label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}
.mp-pay__input {
  font: inherit;
  padding: 0.65rem 0.85rem;
  border: 2px solid #94a3b8;
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.mp-pay__input:focus {
  outline: none;
  border-color: #009ee3;
  box-shadow: 0 0 0 3px rgba(0, 158, 227, 0.2);
}
.mp-pay__preview {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text);
}
.mp-pay__preview strong {
  color: var(--accent);
  font-weight: 800;
}
.mp-pay__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.85rem 1.25rem;
  font-size: 1.06rem;
  font-weight: 700;
  background: linear-gradient(180deg, #00aefd 0%, #009ee3 100%);
  color: #fff !important;
  border: 1px solid #0284c7;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0, 158, 227, 0.35);
  cursor: pointer;
  text-decoration: none;
}
.mp-pay__submit:hover {
  filter: brightness(1.06);
}
.mp-pay__submit:focus-visible {
  outline: 2px solid #009ee3;
  outline-offset: 2px;
}
.mp-pay__aside {
  background: linear-gradient(180deg, #f8fafc 0%, var(--pastel-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.2rem 1.45rem;
  font-size: 0.95rem;
}
.mp-pay__benefits {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
  line-height: 1.55;
}
.mp-pay__benefits li {
  margin: 0.45rem 0;
}
.mp-pay__fineprint {
  margin: 0.65rem 0 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.5;
}
.mp-pay__links {
  margin: 1rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--border);
  font-size: 0.9rem;
}
.mp-pay__links a {
  font-weight: 600;
}

/* ============================================================
   Realce visual 2026: color de marca, movimiento y ritmo
   ============================================================ */

/* Botón primario en gradiente teal→azul (más cerca al color del sitio viejo) */
.btn--primary {
  background: linear-gradient(135deg, #14b8a6 0%, #2563eb 100%);
  box-shadow: 0 4px 18px rgba(20, 184, 166, 0.32);
}
.btn--primary:hover {
  box-shadow: 0 6px 22px rgba(20, 184, 166, 0.45);
  filter: brightness(1.04);
}

/* Hero — chip de marca (badge "desde 1999") */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal-soft), #e0f2fe);
  color: var(--teal-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid rgba(20, 184, 166, 0.35);
  box-shadow: 0 2px 10px rgba(20, 184, 166, 0.18);
  margin-bottom: 0.5rem;
}
.hero-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.25);
  animation: pulseDot 2.2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.7; }
}

/* Hero — palabra rotando con efecto deslizante */
.hero-rotator {
  position: relative;
  display: inline-block;
  vertical-align: baseline;
  min-width: 6.5ch;
  text-align: left;
}
.hero-rotator__word {
  display: inline-block;
  background: linear-gradient(120deg, #0d9488 0%, #2563eb 60%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
  animation: rotatorIn 0.55s ease;
}
@keyframes rotatorIn {
  from { opacity: 0; transform: translateY(0.4em); filter: blur(2px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* Hero — blobs decorativos animados */
.hero-block--home__blobs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-block--home__blobs::before,
.hero-block--home__blobs::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  mix-blend-mode: multiply;
}
.hero-block--home__blobs::before {
  width: 320px;
  height: 320px;
  left: -80px;
  top: 20px;
  background: radial-gradient(circle at 30% 30%, #99f6e4, #14b8a6 70%, transparent 75%);
  animation: blobFloatA 14s ease-in-out infinite;
}
.hero-block--home__blobs::after {
  width: 380px;
  height: 380px;
  right: -90px;
  top: 30%;
  background: radial-gradient(circle at 60% 40%, #c7d2fe, #6366f1 65%, transparent 75%);
  animation: blobFloatB 18s ease-in-out infinite;
}
@keyframes blobFloatA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -18px) scale(1.06); }
  66% { transform: translate(-15px, 12px) scale(0.95); }
}
@keyframes blobFloatB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-22px, 18px) scale(1.08); }
}

/* Atajos del hero: chips coloridas */
.home-quick__item {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  position: relative;
  overflow: hidden;
}
.home-quick__item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--grad-brand);
  opacity: 0.85;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.home-quick__item:hover::before { transform: scaleX(1); }
.home-quick__item:nth-child(1)::before { background: linear-gradient(90deg, #14b8a6, #06b6d4); }
.home-quick__item:nth-child(2)::before { background: linear-gradient(90deg, #2563eb, #6366f1); }
.home-quick__item:nth-child(3)::before { background: linear-gradient(90deg, #6366f1, #8b5cf6); }
.home-quick__item:nth-child(4)::before { background: linear-gradient(90deg, #db2777, #f97316); }
.home-quick__item:nth-child(5)::before { background: linear-gradient(90deg, #f97316, #f59e0b); }
.home-quick__item:nth-child(6)::before { background: linear-gradient(90deg, #14b8a6, #2563eb); }
.home-quick__ic {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

/* H2 con subrayado de gradiente (todas las secciones home y fichas internas) */
.section h2,
.content-block h2 {
  position: relative;
  padding-bottom: 0.45rem;
  display: inline-block;
}
.section h2::after,
.content-block h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3.25rem;
  height: 4px;
  border-radius: 2px;
  background: var(--grad-brand);
}
#hosting h2::after { background: linear-gradient(90deg, #14b8a6, #06b6d4); }
#desarrollo h2::after { background: linear-gradient(90deg, #6366f1, #2563eb); }
#dominios h2::after { background: linear-gradient(90deg, #f97316, #f59e0b); }
#email-marketing h2::after { background: linear-gradient(90deg, #db2777, #f97316); }
#visibilidad h2::after { background: linear-gradient(90deg, #14b8a6, #6366f1); }
#cursos h2::after { background: linear-gradient(90deg, #f97316, #db2777); }
#canal h2::after { background: linear-gradient(90deg, #ef4444, #db2777); }

/* ============================================================
   Trío colorido bajo el hero (estilo del sitio viejo)
   ============================================================ */
.feature-trio {
  padding: 1rem 1.25rem 2.5rem;
  margin-top: -0.5rem;
}
.feature-trio__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .feature-trio__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}
.feature-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.4rem 1.6rem;
  border-radius: 18px;
  color: #ecfeff;
  background: linear-gradient(150deg, #0f766e 0%, #14b8a6 60%, #2dd4bf 100%);
  box-shadow: 0 14px 38px rgba(15, 118, 110, 0.28);
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(15, 118, 110, 0.35);
  text-decoration: none;
  color: #ecfeff;
}
.feature-tile::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto auto;
  width: 70%;
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 60%);
  z-index: -1;
}
.feature-tile--blue {
  background: linear-gradient(150deg, #1e3a8a 0%, #2563eb 55%, #3b82f6 100%);
  box-shadow: 0 14px 38px rgba(30, 58, 138, 0.3);
}
.feature-tile--blue:hover { box-shadow: 0 20px 48px rgba(30, 58, 138, 0.38); }
.feature-tile--violet {
  background: linear-gradient(150deg, #6b21a8 0%, #8b5cf6 55%, #c084fc 100%);
  box-shadow: 0 14px 38px rgba(107, 33, 168, 0.3);
}
.feature-tile--violet:hover { box-shadow: 0 20px 48px rgba(107, 33, 168, 0.38); }
.feature-tile__icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  border: 2px solid rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem;
  font-size: 2rem;
  line-height: 1;
  backdrop-filter: blur(2px);
  transition: transform 0.4s ease;
}
.feature-tile:hover .feature-tile__icon {
  transform: rotate(-6deg) scale(1.05);
}
.feature-tile__title {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin: 0 0 0.5rem;
}
.feature-tile__text {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 28rem;
}
.feature-tile__more {
  margin-top: auto;
  font-weight: 700;
  font-size: 0.88rem;
  color: #ffffff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  padding-bottom: 1px;
}
.feature-tile:hover .feature-tile__more {
  border-color: #ffffff;
}

/* ============================================================
   Plan cards: cintas superiores de color por plan + tipografía
   ============================================================ */
.plan-card {
  overflow: hidden;
  padding-top: 0.5rem;
}
.plan-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: var(--grad-brand);
}
#hosting .plan-grid > .plan-card:nth-child(1)::before {
  background: linear-gradient(90deg, #14b8a6, #2dd4bf);
}
#hosting .plan-grid > .plan-card:nth-child(2)::before {
  background: linear-gradient(90deg, #2563eb, #3b82f6);
}
#hosting .plan-grid > .plan-card:nth-child(3)::before {
  background: linear-gradient(90deg, #6366f1, #818cf8);
}
#hosting .plan-grid > .plan-card:nth-child(4)::before {
  background: linear-gradient(90deg, #8b5cf6, #c084fc);
}
.plan-card h3 {
  font-size: 1.1rem;
  margin-top: 0.35rem;
}
.plan-card--featured {
  background: linear-gradient(180deg, #f0fdfa 0%, #ffffff 50%);
  border-color: #5eead4;
  box-shadow: 0 8px 28px rgba(20, 184, 166, 0.18);
}
.plan-card--featured .badge {
  background: linear-gradient(90deg, #0d9488, #14b8a6);
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.35);
}
.plan-card__price {
  background: linear-gradient(120deg, #0f766e 0%, #2563eb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.plan-card__price .per { color: var(--muted); -webkit-text-fill-color: var(--muted); }
.plan-card__price .cur { color: var(--teal-strong); -webkit-text-fill-color: var(--teal-strong); }

/* ============================================================
   CTA final: gradiente con más vida
   ============================================================ */
.cta-band {
  background:
    radial-gradient(ellipse 60% 80% at 0% 0%, rgba(20, 184, 166, 0.45), transparent 60%),
    radial-gradient(ellipse 70% 100% at 100% 100%, rgba(124, 58, 237, 0.4), transparent 65%),
    linear-gradient(120deg, #0f3d8a 0%, #1e3a8a 50%, #1e1b4b 100%);
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08) 0 1px, transparent 1.5px),
    radial-gradient(circle at 70% 80%, rgba(255,255,255,0.08) 0 1px, transparent 1.5px),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.06) 0 1px, transparent 1.5px);
  background-size: 80px 80px, 120px 120px, 60px 60px;
  pointer-events: none;
  opacity: 0.6;
}
.cta-band > .wrap-wide { position: relative; z-index: 1; }

/* ============================================================
   Reveal on scroll (clase utilitaria; fallback sin JS visible)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-block--home__blobs::before,
  .hero-block--home__blobs::after { animation: none; }
  .hero-badge__dot { animation: none; }
  .hero-rotator__word { animation: none; }
}

/* Refuerzos suaves en bandas: tarjetas con elevación sutil */
.prose-card, .mini-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s;
}
.prose-card:hover, .mini-card:hover {
  transform: translateY(-2px);
  border-color: #93c5fd;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}
.mini-card {
  border-top: 3px solid transparent;
  background-image: linear-gradient(#fff, #fff), var(--grad-brand);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
#visibilidad .grid-3 .mini-card:nth-child(1) { background-image: linear-gradient(#fff, #fff), linear-gradient(90deg, #14b8a6, #06b6d4); background-origin: border-box; background-clip: padding-box, border-box; }
#visibilidad .grid-3 .mini-card:nth-child(2) { background-image: linear-gradient(#fff, #fff), linear-gradient(90deg, #2563eb, #6366f1); background-origin: border-box; background-clip: padding-box, border-box; }
#visibilidad .grid-3 .mini-card:nth-child(3) { background-image: linear-gradient(#fff, #fff), linear-gradient(90deg, #f97316, #db2777); background-origin: border-box; background-clip: padding-box, border-box; }

/* ============================================================
   Páginas de recursos: herramientas, formularios, código
   ============================================================ */
.tool-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow);
  margin: 1rem 0 1.5rem;
}
.tool-card__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.tool-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.tool-field label {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
}
.tool-field input[type=text],
.tool-field input[type=tel],
.tool-field input[type=email],
.tool-field input[type=url],
.tool-field select,
.tool-field textarea {
  font: inherit;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  width: 100%;
  max-width: 32rem;
}
.tool-field input:focus,
.tool-field select:focus,
.tool-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}
.tool-field__hint {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
}
.tool-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-top: 0.5rem;
}
.tool-result {
  margin: 1.25rem 0 0;
  padding: 1rem 1.15rem;
  background: linear-gradient(180deg, #f0fdfa 0%, #ecfeff 100%);
  border: 1px solid #5eead4;
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
  box-shadow: 0 4px 18px rgba(20, 184, 166, 0.12);
}
.tool-result h2,
.tool-result h3 { margin-top: 0; }
.tool-result__row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.92rem;
  word-break: break-all;
  margin: 0.35rem 0;
  flex-wrap: wrap;
}
.tool-result__label {
  font-family: var(--font);
  color: var(--accent-hover);
  font-weight: 700;
  font-size: 0.88rem;
}
.tool-result__value {
  background: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  border: 1px solid #99f6e4;
  color: var(--text);
}
.tool-result--ok { background: linear-gradient(180deg, #ecfdf5 0%, #f0fdf4 100%); border-color: #86efac; }
.tool-result--err { background: linear-gradient(180deg, #fef2f2 0%, #fff7ed 100%); border-color: #fecaca; color: #991b1b; }
.tool-code {
  background: #0f172a;
  color: #e2e8f0;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  overflow-x: auto;
  font-size: 0.86rem;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  line-height: 1.5;
  margin: 0.75rem 0 1rem;
  white-space: pre;
  -webkit-overflow-scrolling: touch;
}
.tool-code code { background: transparent; color: inherit; padding: 0; }
.tool-copy {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
}
.tool-copy:hover { background: var(--pastel-2); }
.tool-captcha {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 8px;
  padding: 0.55rem 0.8rem;
  font-size: 0.92rem;
  color: #854d0e;
}
.tool-captcha b { color: #92400e; }
.tool-qr {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.tool-qr img {
  width: 220px;
  height: 220px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 12px;
  padding: 0.5rem;
}
