@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@600;700;800&display=swap");

:root {
  --navy: #07111f;
  --navy-2: #0b1b33;
  --blue: #2563ff;
  --cyan: #00a8ff;
  --white: #ffffff;
  --paper: #f7faff;
  --text: #0b132b;
  --muted: #64748b;
  --line: rgba(11, 19, 43, 0.1);
  --line-light: rgba(255, 255, 255, 0.14);
  --shadow: 0 28px 70px rgba(8, 18, 37, 0.14);
  --radius: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--paper);
  overflow-x: hidden;
  max-width: 100%;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9980;
  background: rgba(7, 17, 31, 0.28);
  backdrop-filter: blur(4px);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
}

p {
  line-height: 1.7;
}

h1,
h2,
h3,
.brand-name,
.btn,
.nav-links,
.eyebrow {
  font-family: "Sora", "Manrope", "Segoe UI", Arial, sans-serif;
}

h1,
h2,
h3 {
  margin-top: 0;
  letter-spacing: -0.05em;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 9990 !important;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(11, 19, 43, 0.08);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(8, 18, 37, 0.1);
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark-wrap {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(37, 99, 255, 0.12);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(8, 18, 37, 0.1);
}

.brand-mark {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand-name {
  color: var(--navy);
  font-size: 1.04rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand-name span {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #334155;
  font-size: 0.88rem;
  font-weight: 750;
}

.nav-links a {
  position: relative;
  white-space: nowrap;
  transition: color 180ms ease, transform 180ms ease;
  -webkit-tap-highlight-color: transparent;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--blue);
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  opacity: 0;
  transition: opacity 180ms ease;
}

.nav-links a.is-active:not(.nav-cta)::after {
  opacity: 1;
}

.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 16px 34px rgba(37, 99, 255, 0.25);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(11, 19, 43, 0.12);
  border-radius: 14px;
  background: #ffffff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--navy);
}

/* BUTTONS */

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 190ms ease, box-shadow 190ms ease, background 190ms ease, border-color 190ms ease, color 190ms ease;
  -webkit-tap-highlight-color: transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 22px 48px rgba(37, 99, 255, 0.32);
}

.btn-primary:hover {
  box-shadow: 0 26px 58px rgba(37, 99, 255, 0.42);
}

.btn-secondary {
  color: #eaf8ff;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary-dark {
  color: var(--navy);
  border-color: rgba(11, 19, 43, 0.12);
  background: #ffffff;
}

.btn-light {
  color: var(--navy);
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
  border: 1px solid rgba(37, 99, 255, 0.16);
  box-shadow:
    0 14px 30px rgba(8, 18, 37, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.btn-light:hover {
  color: var(--blue);
  border-color: rgba(37, 99, 255, 0.3);
  background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
  box-shadow:
    0 18px 38px rgba(8, 18, 37, 0.13),
    0 0 0 4px rgba(37, 99, 255, 0.06);
}

.hero-actions,
.section-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* RIPPLE */

.btn-ripple {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  transform: scale(0);
  background: rgba(255, 255, 255, 0.42);
  animation: btnRipple 650ms ease-out forwards;
  pointer-events: none;
}

@keyframes btnRipple {
  to {
    transform: scale(2.8);
    opacity: 0;
  }
}

/* ICONS */

.line-icon {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 18px;
  background:
    radial-gradient(circle at 28% 20%, rgba(0, 168, 255, 0.55), transparent 2.4rem),
    linear-gradient(145deg, #07111f 0%, #123a73 52%, #00a8ff 135%);
  border: 1px solid rgba(0, 168, 255, 0.28);
  box-shadow:
    0 16px 32px rgba(8, 18, 37, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.line-icon img {
  width: 29px;
  height: 29px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.quick-services article:hover .line-icon,
.support-grid article:hover .line-icon,
.service-row:hover .line-icon,
.interactive-card:hover .line-icon {
  transform: translateY(-3px) scale(1.04);
  border-color: rgba(0, 168, 255, 0.45);
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.26), transparent 2rem),
    linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow:
    0 18px 38px rgba(37, 99, 255, 0.22),
    0 0 0 5px rgba(37, 99, 255, 0.06);
}

/* HOME HERO */

.home-hero {
  min-height: calc(100vh - 78px);
  padding: 78px max(20px, calc((100vw - var(--max)) / 2)) 86px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  align-items: center;
  gap: 56px;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 168, 255, 0.26), transparent 28rem),
    radial-gradient(circle at 84% 16%, rgba(37, 99, 255, 0.24), transparent 32rem),
    linear-gradient(145deg, #07111f 0%, #0b1b33 55%, #07111f 100%);
  position: relative;
  overflow: hidden;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(circle at 50% 18%, #000 0%, transparent 72%);
  pointer-events: none;
}

.home-hero-copy,
.home-hero-visual {
  position: relative;
  z-index: 2;
}

.offer-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  padding: 12px 16px;
  color: #eaf8ff;
  border: 1px solid rgba(0, 168, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  animation: offerPulse 3.4s ease-in-out infinite;
}

@keyframes offerPulse {
  0%,
  100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.14),
      0 0 0 rgba(0, 168, 255, 0);
  }

  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.14),
      0 0 42px rgba(0, 168, 255, 0.14);
  }
}

.plus {
  width: 18px;
  height: 18px;
  position: relative;
  display: inline-block;
  border-radius: 50%;
  background: rgba(0, 168, 255, 0.18);
}

.plus::before,
.plus::after {
  content: "";
  position: absolute;
  inset: 8px 4px auto;
  height: 2px;
  border-radius: 999px;
  background: var(--cyan);
}

.plus::after {
  transform: rotate(90deg);
}

.home-hero h1 {
  max-width: 860px;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: clamp(2.7rem, 5.3vw, 5rem);
  line-height: 0.94;
}

.home-hero p {
  max-width: 690px;
  margin: 0;
  color: #d6e5f6;
  font-size: 1.08rem;
}

.home-hero .hero-actions {
  margin-top: 28px;
}

/* BOTÓN VER SERVICIOS CON SVG */

.home-hero .hero-actions .btn-secondary,
.home-hero .hero-actions .btn-secondary-dark {
  min-width: 178px;
  gap: 8px;
  color: #07111f !important;
  background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.72) !important;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.22),
    0 0 0 5px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(12px);
}

.home-hero .hero-actions .btn-secondary::after,
.home-hero .hero-actions .btn-secondary-dark::after {
  content: "";
  width: 18px;
  height: 18px;
  display: inline-block;
  flex: 0 0 18px;
  background: var(--blue);
  -webkit-mask: url("assets/images/icons/arrow-right.svg") center / contain no-repeat;
  mask: url("assets/images/icons/arrow-right.svg") center / contain no-repeat;
  transition: transform 180ms ease, background 180ms ease;
}

.home-hero .hero-actions .btn-secondary:hover,
.home-hero .hero-actions .btn-secondary-dark:hover {
  color: var(--blue) !important;
  background: linear-gradient(180deg, #ffffff 0%, #eaf5ff 100%) !important;
  border-color: rgba(0, 168, 255, 0.42) !important;
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.25),
    0 0 0 5px rgba(0, 168, 255, 0.08) !important;
}

.home-hero .hero-actions .btn-secondary:hover::after,
.home-hero .hero-actions .btn-secondary-dark:hover::after {
  transform: translateX(4px);
  background: var(--cyan);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-tags span {
  padding: 8px 12px;
  color: #b8c8da !important;
  border: 1px solid rgba(255, 255, 255, 0.075) !important;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045) !important;
  box-shadow: none !important;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-tags span:hover {
  color: #eaf8ff !important;
  background: rgba(255, 255, 255, 0.075) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}

/* PREVIEW MOCKUP */

.preview-window {
  padding: 18px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.preview-window:hover {
  border-color: rgba(0, 168, 255, 0.24);
}

.preview-top {
  min-height: 40px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px;
  color: #9fb6ce;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 12, 26, 0.44);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #66788f;
}

.window-dots span:first-child {
  background: var(--cyan);
}

.preview-body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  margin-top: 14px;
}

.preview-main,
.preview-side article {
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(9, 21, 41, 0.82);
  border-radius: 20px;
}

.preview-main {
  min-height: 310px;
  padding: 26px;
  background:
    radial-gradient(circle at 22% 15%, rgba(0, 168, 255, 0.22), transparent 14rem),
    rgba(9, 21, 41, 0.9);
}

.preview-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  color: #7ddcff;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.preview-main h2 {
  max-width: 390px;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
  line-height: 1.06;
}

.preview-main p {
  width: 76%;
  height: 12px;
  margin: 0 0 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.preview-buttons {
  display: flex;
  gap: 10px;
}

.preview-buttons i {
  width: 118px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.preview-buttons i:last-child {
  width: 92px;
  background: rgba(255, 255, 255, 0.12);
}

.preview-side {
  display: grid;
  gap: 12px;
}

.preview-side article {
  padding: 18px;
}

.preview-side span {
  display: block;
  color: #9fb6ce;
  font-size: 0.8rem;
}

.preview-side strong {
  display: block;
  margin-top: 6px;
  color: #ffffff;
  font-size: 2rem;
}

.preview-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.preview-flow span {
  min-height: 42px;
  display: grid;
  place-items: center;
  color: #dff6ff;
  border-radius: 14px;
  background: rgba(0, 168, 255, 0.13);
  font-size: 0.8rem;
  font-weight: 800;
  transition:
    transform 220ms ease,
    background 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.preview-flow span.is-flow-active {
  transform: translateY(-3px);
  color: #ffffff;
  background: linear-gradient(135deg, rgba(37, 99, 255, 0.82), rgba(0, 168, 255, 0.82));
  box-shadow: 0 16px 34px rgba(0, 168, 255, 0.18);
}

/* HOME SECTIONS */

.home-intro {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0 34px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: end;
  gap: 48px;
}

.home-intro h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.home-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.quick-services {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 92px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.quick-services article,
.support-grid article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(8, 18, 37, 0.08);
}

.quick-services .line-icon,
.support-grid .line-icon {
  margin-bottom: 22px;
}

.quick-services h3,
.support-grid h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.1rem;
}

.quick-services p,
.support-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* DARK SPLIT SECTIONS */

.split-section,
.decision-section,
.preview-request {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 52px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
  border-radius: 32px;
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 14%, rgba(0, 168, 255, 0.22), transparent 22rem),
    linear-gradient(145deg, #07111f, #0b1b33);
  box-shadow: var(--shadow);
}

.split-content h2,
.decision-section h2,
.preview-request h2 {
  margin-bottom: 16px;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.06;
}

.split-content p,
.decision-section p,
.preview-request p {
  max-width: 620px;
  margin: 0 0 24px;
  color: #c0d2e5;
}

.steps-card,
.decision-grid,
.request-questions {
  display: grid;
  gap: 14px;
}

.steps-card article,
.decision-grid article,
.request-questions article {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.steps-card span,
.request-questions span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: 0 0 58px;
  color: #ffffff;
  border-radius: 18px;
  background:
    radial-gradient(circle at 28% 20%, rgba(0, 168, 255, 0.55), transparent 2.4rem),
    linear-gradient(145deg, #07111f 0%, #123a73 52%, #00a8ff 135%);
  border: 1px solid rgba(0, 168, 255, 0.28);
  box-shadow:
    0 16px 32px rgba(8, 18, 37, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.steps-card article:hover span,
.request-questions article:hover span {
  transform: translateY(-2px) scale(1.04);
  border-color: rgba(0, 168, 255, 0.45);
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.26), transparent 2rem),
    linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow:
    0 18px 38px rgba(37, 99, 255, 0.24),
    0 0 0 5px rgba(37, 99, 255, 0.06);
}

.steps-card strong,
.decision-grid strong {
  color: #ffffff;
  font-family: "Sora", "Manrope", sans-serif;
}

.decision-grid article {
  grid-template-columns: 1fr;
}

.decision-grid span {
  color: #b8c8da;
}

/* FINAL CTA */

.final-cta {
  width: min(var(--max), calc(100% - 40px));
  margin: 92px auto 52px;
  padding: 48px;
  text-align: center;
  border-radius: 32px;
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 168, 255, 0.16), transparent 18rem),
    #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.final-cta h2 {
  max-width: 760px;
  margin: 0 auto 14px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.06;
}

.final-cta p {
  max-width: 620px;
  margin: 0 auto 26px;
  color: var(--muted);
}

.final-cta .section-actions {
  justify-content: center;
  gap: 16px;
}

.final-cta .btn-primary,
.final-cta .btn-light {
  min-width: 210px;
}

/* SERVICES PAGE */

.services-hero,
.contact-hero {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0 70px;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: center;
  gap: 52px;
}

.services-hero h1,
.contact-hero h1 {
  max-width: 850px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(2.5rem, 5vw, 4.65rem);
  line-height: 0.97;
}

.services-hero p,
.contact-hero p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.services-hero .hero-actions,
.contact-hero .hero-actions {
  margin-top: 28px;
}

.services-hero-panel,
.contact-card {
  padding: 30px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 86% 12%, rgba(37, 99, 255, 0.12), transparent 18rem),
    #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.services-hero-panel span,
.contact-card > span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--blue);
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.services-hero-panel h2 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.08;
}

.services-hero-panel p {
  color: var(--muted);
}

.service-list,
.contact-support {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0 92px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.centered-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.06;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.service-row {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 290px;
  align-items: center;
  gap: 24px;
  padding: 26px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(8, 18, 37, 0.08);
}

.service-row h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.18rem;
}

.service-row p {
  margin: 0;
  color: var(--muted);
}

.service-row ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-row li {
  position: relative;
  padding-left: 24px;
  color: #425771;
  font-size: 0.9rem;
}

.service-row li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18rem;
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-mask: url("assets/images/icons/check.svg") center / contain no-repeat;
  mask: url("assets/images/icons/check.svg") center / contain no-repeat;
}

/* CONTACT PAGE */

.contact-card {
  display: grid;
  gap: 14px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 168, 255, 0.08), transparent 14rem),
    #ffffff !important;
  border: 1px solid rgba(11, 19, 43, 0.08) !important;
  box-shadow:
    0 22px 54px rgba(8, 18, 37, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

.contact-card > span {
  width: 100%;
  justify-content: center;
  text-align: center;
  margin-bottom: 18px;
}

.contact-card a {
  -webkit-tap-highlight-color: transparent;
}

.contact-channel {
  width: 100%;
  display: grid !important;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 16px;
  text-align: left;
  padding: 18px 18px;
  border-radius: 18px;
  background: #ffffff !important;
  border: 1px solid rgba(37, 99, 255, 0.14) !important;
  box-shadow: 0 10px 24px rgba(8, 18, 37, 0.05);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.contact-channel:hover {
  transform: translateY(-2px);
  background: #f8fbff !important;
  border-color: rgba(37, 99, 255, 0.26) !important;
  box-shadow: 0 16px 34px rgba(8, 18, 37, 0.1);
}

.contact-channel-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
  border: 1px solid rgba(37, 99, 255, 0.12);
  box-shadow:
    0 10px 22px rgba(8, 18, 37, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.contact-channel-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

.contact-channel-text {
  min-width: 0;
}

.contact-channel-text strong {
  display: block;
  color: #07111f !important;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.1;
}

.contact-channel-text small {
  display: block;
  color: #5d6f89 !important;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  word-break: break-word;
}

.preview-request {
  align-items: start;
}

.notice-box {
  display: grid;
  gap: 4px;
  max-width: 580px;
  margin: 0 0 24px;
  padding: 16px 18px;
  border-radius: 18px;
  color: #dff6ff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.notice-box strong {
  color: #ffffff;
}

.request-questions {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.request-questions h3 {
  color: #ffffff;
  font-size: 1.25rem;
}

.request-questions p {
  margin: 0;
  color: #d3e2f1;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* FOOTER */

.footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(11, 19, 43, 0.1);
}

.footer p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: right;
}

/* INTERACTIVE EFFECTS */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 0 18px rgba(0, 168, 255, 0.65);
  pointer-events: none;
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 168, 255, 0.12), transparent 62%);
  pointer-events: none;
  mix-blend-mode: multiply;
  filter: blur(12px);
}

.site-header,
main,
.footer {
  position: relative;
  z-index: 1;
}

.interactive-card {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    filter 220ms ease;
}

.interactive-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background:
    radial-gradient(
      circle at var(--card-x, 50%) var(--card-y, 50%),
      rgba(0, 168, 255, 0.18),
      transparent 34%
    ),
    rgba(7, 17, 31, 0.035);
  transition: opacity 220ms ease;
  pointer-events: none;
}

.interactive-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background: rgba(7, 17, 31, 0.045);
  transition: opacity 220ms ease;
  pointer-events: none;
}

.interactive-card > * {
  position: relative;
  z-index: 1;
}

.interactive-card:hover {
  border-color: rgba(37, 99, 255, 0.28);
  box-shadow: 0 30px 70px rgba(8, 18, 37, 0.16);
}

.interactive-card:hover::before,
.interactive-card:hover::after {
  opacity: 1;
}

.split-section .interactive-card::after,
.decision-section .interactive-card::after,
.preview-request .interactive-card::after,
.preview-window.interactive-card::after {
  background: rgba(0, 0, 0, 0.12);
}

.split-section .interactive-card:hover,
.decision-section .interactive-card:hover,
.preview-request .interactive-card:hover,
.preview-window.interactive-card:hover {
  border-color: rgba(0, 168, 255, 0.28);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.24);
}

.service-row:hover {
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(0, 168, 255, 0.1), transparent 34%),
    #ffffff;
}

.service-row:hover h3,
.quick-services article:hover h3,
.support-grid article:hover h3 {
  color: var(--blue);
}

.contact-card a:hover {
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(0, 168, 255, 0.12), transparent 40%),
    rgba(37, 99, 255, 0.06);
}

.contact-card a:hover strong {
  color: var(--blue);
}

/* REVEAL */

.section-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

/* RESPONSIVE TABLET */

@media (max-width: 1080px) {
  .home-hero,
  .services-hero,
  .contact-hero,
  .home-intro,
  .split-section,
  .decision-section,
  .preview-request {
    grid-template-columns: 1fr;
  }

  .home-hero-visual {
    max-width: 820px;
  }

  .quick-services,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 70px 1fr;
  }

  .service-row ul {
    grid-column: 2;
  }
}

/* MOBILE / ANDROID */

@media (max-width: 880px) {
  body {
    text-align: center;
    background: #f7faff;
  }

  p {
    line-height: 1.65;
  }

  .eyebrow {
    text-align: center;
  }

  .site-header {
    background: rgba(255, 255, 255, 0.98) !important;
    border-bottom: 1px solid rgba(11, 19, 43, 0.06);
  }

  .nav {
    width: min(100% - 28px, var(--max));
    min-height: 72px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark-wrap {
    width: 44px;
    height: 44px;
    border-radius: 15px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-name {
    font-size: 0.9rem;
    line-height: 1.1;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .nav-links {
    position: fixed !important;
    top: 84px !important;
    left: 16px !important;
    right: 16px !important;
    z-index: 9995 !important;
    display: grid !important;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    padding: 18px !important;
    border-radius: 24px !important;
    border: 1px solid rgba(37, 99, 255, 0.12) !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow:
      0 26px 80px rgba(8, 18, 37, 0.26),
      inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px) scale(0.98);
    transition:
      opacity 180ms ease,
      visibility 180ms ease,
      transform 180ms ease;
  }

  .nav-links.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) scale(1) !important;
  }

  .nav-links a {
    width: 100%;
    min-height: 50px;
    display: grid;
    place-items: center;
    color: var(--navy) !important;
    border-radius: 16px;
    background: #f7fbff;
    border: 1px solid rgba(11, 19, 43, 0.06);
    font-size: 0.96rem;
    font-weight: 800;
    text-align: center;
  }

  .nav-links a.is-active {
    color: var(--blue) !important;
    background: rgba(37, 99, 255, 0.08);
    border-color: rgba(37, 99, 255, 0.14);
  }

  .nav-links a:not(.nav-cta)::after {
    display: none !important;
  }

  .nav-links .nav-cta {
    width: 100%;
    min-height: 54px;
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--blue), var(--cyan)) !important;
    border: none !important;
    box-shadow: 0 16px 34px rgba(37, 99, 255, 0.25);
  }

  body.nav-open main,
  body.nav-open .footer {
    pointer-events: none;
  }

  .home-hero {
    min-height: auto;
    padding: 46px 18px 58px;
    grid-template-columns: 1fr;
    gap: 34px;
    text-align: center;
  }

  .home-hero-copy {
    display: grid;
    justify-items: center;
  }

  .offer-pill {
    max-width: 100%;
    justify-content: center;
    text-align: left;
    border-radius: 18px;
  }

  .home-hero h1 {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2.25rem, 11vw, 3.55rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
  }

  .home-hero p {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
  }

  .home-hero .hero-actions,
  .services-hero .hero-actions,
  .contact-hero .hero-actions {
    width: 100%;
    max-width: 420px;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions .btn,
  .section-actions .btn,
  .home-hero .hero-actions .btn-secondary,
  .home-hero .hero-actions .btn-secondary-dark {
    width: 100%;
    min-width: 100%;
    min-height: 56px;
  }

  .hero-tags {
    justify-content: center;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-tags span {
    font-size: 0.72rem;
  }

  .home-hero-visual {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }

  .preview-window {
    padding: 12px;
    border-radius: 24px;
  }

  .preview-top {
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.62rem;
  }

  .preview-body {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .preview-main {
    min-height: 240px;
    padding: 22px;
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .preview-main h2 {
    max-width: 340px;
    font-size: clamp(1.35rem, 7vw, 2rem);
  }

  .preview-main p {
    width: 78%;
    margin-left: auto;
    margin-right: auto;
  }

  .preview-buttons {
    justify-content: center;
  }

  .preview-side {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .preview-side article {
    padding: 14px 10px;
  }

  .preview-side span {
    font-size: 0.68rem;
  }

  .preview-side strong {
    font-size: 1.35rem;
  }

  .preview-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .preview-flow span {
    min-height: 40px;
  }

  .home-intro,
  .quick-services,
  .split-section,
  .decision-section,
  .preview-request,
  .service-list,
  .contact-support,
  .final-cta,
  .footer,
  .services-hero,
  .contact-hero {
    width: min(100% - 28px, var(--max));
  }

  .home-intro {
    padding: 58px 0 22px;
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .home-intro h2,
  .section-heading h2,
  .split-content h2,
  .decision-section h2,
  .preview-request h2,
  .final-cta h2,
  .services-hero h1,
  .contact-hero h1 {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .home-intro h2,
  .section-heading h2,
  .final-cta h2 {
    font-size: clamp(1.95rem, 9vw, 3rem);
    line-height: 1.08;
  }

  .home-intro p,
  .section-heading p,
  .split-content p,
  .decision-section p,
  .preview-request p,
  .final-cta p,
  .services-hero p,
  .contact-hero p {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .quick-services {
    padding: 24px 0 64px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .quick-services article,
  .support-grid article {
    padding: 26px 22px;
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .quick-services .line-icon,
  .support-grid .line-icon,
  .service-row .line-icon {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 18px;
  }

  .split-section,
  .decision-section,
  .preview-request {
    grid-template-columns: 1fr;
    padding: 30px 22px;
    gap: 28px;
    text-align: center;
    border-radius: 26px;
  }

  .split-content,
  .preview-request-copy {
    display: grid;
    justify-items: center;
  }

  .steps-card,
  .decision-grid,
  .request-questions {
    width: 100%;
  }

  .steps-card article,
  .decision-grid article,
  .request-questions article {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 18px 16px;
  }

  .steps-card span,
  .request-questions span {
    margin: 0 auto 4px;
  }

  .final-cta {
    margin-top: 64px;
    margin-bottom: 38px;
    padding: 34px 20px !important;
    border-radius: 26px;
  }

  .final-cta .section-actions {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    gap: 14px;
  }

  .final-cta .btn-primary,
  .final-cta .btn-light {
    width: 100%;
    min-width: 100%;
  }

  .services-hero,
  .contact-hero {
    padding: 54px 0 44px;
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .services-hero > div:first-child,
  .contact-hero > div:first-child {
    display: grid;
    justify-items: center;
  }

  .services-hero h1,
  .contact-hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.45rem);
    line-height: 1;
  }

  .services-hero-panel,
  .contact-card {
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    padding: 26px 20px;
    text-align: center;
  }

  .services-hero-panel h2 {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .service-list {
    padding: 28px 0 64px;
  }

  .section-heading {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 28px;
    text-align: center;
  }

  .service-row {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 18px;
    padding: 24px 20px;
    margin-bottom: 14px;
    border-radius: 22px;
  }

  .service-row h3,
  .service-row p {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .service-row ul {
    grid-column: auto;
    width: 100%;
    max-width: 360px;
    justify-items: center;
    text-align: center;
    padding-top: 4px;
  }

  .service-row li {
    width: fit-content;
    text-align: left;
  }

  .contact-card {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .contact-card > span {
    justify-content: center;
    text-align: center;
    color: var(--blue);
    letter-spacing: 0.14em;
  }

  .contact-channel {
    width: 100%;
    display: grid !important;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center !important;
    gap: 12px;
    padding: 20px 16px !important;
  }

  .contact-channel-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto;
  }

  .contact-channel-icon img {
    width: 31px;
    height: 31px;
  }

  .contact-channel-text {
    display: grid;
    justify-items: center;
    text-align: center;
    width: 100%;
  }

  .contact-channel-text strong {
    text-align: center;
    font-size: 1rem;
  }

  .contact-channel-text small {
    max-width: 260px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .preview-request {
    align-items: center;
    margin-top: 42px;
    background:
      radial-gradient(circle at 50% 0%, rgba(0, 168, 255, 0.18), transparent 18rem),
      linear-gradient(145deg, #07111f 0%, #0b1b33 58%, #07111f 100%) !important;
    box-shadow: 0 24px 64px rgba(8, 18, 37, 0.18);
  }

  .notice-box {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .request-questions {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    padding: 22px;
  }

  .request-questions h3 {
    text-align: center;
  }

  .contact-support {
    padding: 58px 0 64px;
  }

  .support-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
    padding: 26px 0 34px;
  }

  .footer .brand {
    justify-content: center;
  }

  .footer p {
    max-width: 360px;
    text-align: center;
  }
}

/* ANDROID PEQUEÑO */

@media (max-width: 480px) {
  .nav {
    width: min(100% - 22px, var(--max));
  }

  .brand-name {
    font-size: 0.82rem;
  }

  .brand-mark-wrap {
    width: 42px;
    height: 42px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .home-hero {
    padding: 42px 12px 54px;
  }

  .home-hero h1 {
    font-size: clamp(2.05rem, 12vw, 3.05rem);
  }

  .home-hero p,
  .services-hero p,
  .contact-hero p {
    font-size: 0.96rem;
  }

  .offer-pill {
    padding: 11px 13px;
    font-size: 0.86rem;
  }

  .hero-tags {
    gap: 8px;
  }

  .hero-tags span {
    padding: 8px 10px;
    font-size: 0.72rem;
  }

  .preview-window {
    border-radius: 22px;
  }

  .preview-main {
    min-height: 220px;
    padding: 20px 16px;
  }

  .preview-main h2 {
    font-size: 1.45rem;
  }

  .preview-side {
    grid-template-columns: 1fr;
  }

  .preview-side article {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 12px;
  }

  .preview-side strong {
    margin-top: 0;
    font-size: 1.45rem;
  }

  .home-intro,
  .quick-services,
  .split-section,
  .decision-section,
  .preview-request,
  .service-list,
  .contact-support,
  .final-cta,
  .footer,
  .services-hero,
  .contact-hero {
    width: min(100% - 22px, var(--max));
  }

  .quick-services article,
  .support-grid article,
  .service-row,
  .services-hero-panel,
  .contact-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .split-section,
  .decision-section,
  .preview-request,
  .final-cta {
    padding: 28px 18px;
  }

  .btn {
    min-height: 54px;
    padding: 0 18px;
    font-size: 0.9rem;
  }

  .section-heading h2,
  .home-intro h2,
  .split-content h2,
  .decision-section h2,
  .preview-request h2,
  .final-cta h2 {
    font-size: clamp(1.8rem, 9vw, 2.55rem);
  }

  .contact-card {
    border-radius: 24px;
    padding: 24px 18px !important;
  }

  .contact-channel {
    border-radius: 20px !important;
  }

  .contact-channel-icon {
    width: 56px;
    height: 56px;
  }

  .contact-channel-icon img {
    width: 29px;
    height: 29px;
  }
}

/* PC ALIGNMENT */

@media (min-width: 881px) {
  body {
    text-align: left;
  }

  .home-hero-copy,
  .services-hero > div:first-child,
  .contact-hero > div:first-child {
    text-align: left;
  }

  .home-hero .hero-actions,
  .services-hero .hero-actions,
  .contact-hero .hero-actions {
    justify-content: flex-start;
  }

  .quick-services article,
  .service-row,
  .support-grid article {
    text-align: left;
  }
}

/* REDUCED MOTION */

@media (hover: none) {
  .cursor-glow {
    display: none;
  }

  .interactive-card,
  .interactive-card:hover {
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .section-reveal {
    opacity: 1;
    transform: none;
  }

  .cursor-glow,
  .scroll-progress {
    display: none;
  }

  .offer-pill {
    animation: none;
  }

  .btn-ripple {
    display: none;
  }
}

/* =========================================================
   BOTONES CON ICONO SVG REAL
========================================================= */

.btn-with-icon {
  gap: 10px;
}

.btn-with-icon img {
  width: 18px;
  height: 18px;
  display: block;
  flex: 0 0 18px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(39%) sepia(95%) saturate(2285%) hue-rotate(206deg) brightness(103%) contrast(101%);
  transition: transform 180ms ease, filter 180ms ease;
}

.btn-with-icon:hover img {
  transform: translateX(4px);
  filter: brightness(0) saturate(100%) invert(55%) sepia(92%) saturate(1866%) hue-rotate(164deg) brightness(101%) contrast(101%);
}

/* Apaga cualquier flecha anterior creada por CSS */
.home-hero .hero-actions .btn-secondary::after,
.home-hero .hero-actions .btn-secondary-dark::after {
  display: none !important;
  content: none !important;
}

/* Ajuste específico para "Ver servicios" en el hero */
.home-hero .hero-actions .btn-with-icon {
  min-width: 190px;
}

/* Ajuste para "Conocer servicios" en el CTA final */
.final-cta .btn-with-icon {
  min-width: 220px;
}

@media (max-width: 640px) {
  .home-hero .hero-actions .btn-with-icon,
  .final-cta .btn-with-icon {
    width: 100%;
    min-width: 100%;
  }
}

/* =========================================================
   CHECK SVG PREMIUM EN LISTAS DE SERVICIOS
========================================================= */

.service-row li {
  position: relative;
  padding-left: 32px !important;
  color: #425771;
}

/* Cajita azul */
.service-row li::before {
  content: "" !important;
  position: absolute;
  left: 0;
  top: 0.08rem;

  width: 20px;
  height: 20px;
  border-radius: 7px;

  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.32), transparent 1rem),
    linear-gradient(135deg, var(--blue), var(--cyan));

  box-shadow:
    0 8px 18px rgba(37, 99, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);

  -webkit-mask: none !important;
  mask: none !important;
}

/* Check SVG blanco dentro */
.service-row li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: calc(0.08rem + 4px);

  width: 12px;
  height: 12px;

  background: #ffffff;

  -webkit-mask: url("assets/images/icons/check.svg") center / contain no-repeat;
  mask: url("assets/images/icons/check.svg") center / contain no-repeat;
}

/* Hover sutil */
.service-row:hover li::before {
  box-shadow:
    0 10px 22px rgba(37, 99, 255, 0.26),
    0 0 0 4px rgba(37, 99, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

/* Android: mantiene las listas bonitas y alineadas */
@media (max-width: 880px) {
  .service-row li {
    text-align: left;
    padding-left: 32px !important;
  }

  .service-row li::before {
    top: 0.05rem;
  }

  .service-row li::after {
    top: calc(0.05rem + 4px);
  }
}

/* =========================================================
   CHECK SVG REAL DESDE HTML + BOTONES CON ICONO
========================================================= */

/* Apagar cualquier check anterior creado con ::before / ::after */
.service-row li::before,
.service-row li::after {
  display: none !important;
  content: none !important;
}

.service-row li {
  position: relative;
  padding-left: 0 !important;
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 10px;
  color: #425771;
  font-size: 0.9rem;
}

.check-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  flex: 0 0 22px;
  border-radius: 7px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.34), transparent 1rem),
    linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow:
    0 8px 18px rgba(37, 99, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.check-icon img {
  width: 13px;
  height: 13px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.service-row:hover .check-icon {
  box-shadow:
    0 10px 22px rgba(37, 99, 255, 0.26),
    0 0 0 4px rgba(37, 99, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

/* Botones con flecha SVG real */
.btn-with-icon {
  gap: 10px;
}

.btn-with-icon img {
  width: 18px;
  height: 18px;
  display: block;
  flex: 0 0 18px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(39%) sepia(95%) saturate(2285%) hue-rotate(206deg) brightness(103%) contrast(101%);
  transition: transform 180ms ease, filter 180ms ease;
}

.btn-with-icon:hover img {
  transform: translateX(4px);
  filter: brightness(0) saturate(100%) invert(55%) sepia(92%) saturate(1866%) hue-rotate(164deg) brightness(101%) contrast(101%);
}

/* Apaga cualquier flecha anterior creada por CSS */
.home-hero .hero-actions .btn-secondary::after,
.home-hero .hero-actions .btn-secondary-dark::after {
  display: none !important;
  content: none !important;
}

/* Android */
@media (max-width: 880px) {
  .service-row li {
    width: fit-content;
    grid-template-columns: 22px auto;
    text-align: left;
  }

  .btn-with-icon {
    width: 100%;
  }
}

/* =========================================================
   REFINAMIENTO FINAL CHECKS EN SERVICIOS MOBILE + DESKTOP
========================================================= */

/* Lista más limpia en desktop */
.service-row ul {
  gap: 9px;
}

/* Check SVG real desde HTML */
.service-row li::before,
.service-row li::after {
  display: none !important;
  content: none !important;
}

.service-row li {
  padding-left: 0 !important;
  display: grid;
  grid-template-columns: 19px 1fr;
  align-items: center;
  gap: 10px;
  color: #425771;
  font-size: 0.9rem;
  line-height: 1.35;
}

.check-icon {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  flex: 0 0 19px;
  border-radius: 6px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.32), transparent 0.85rem),
    linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow:
    0 7px 16px rgba(37, 99, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.check-icon img {
  width: 11px;
  height: 11px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.service-row:hover .check-icon {
  box-shadow:
    0 9px 20px rgba(37, 99, 255, 0.23),
    0 0 0 4px rgba(37, 99, 255, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

/* Android: tarjeta centrada, lista centrada como grupo */
@media (max-width: 880px) {
  .service-row {
    text-align: center;
  }

  .service-row ul {
    width: fit-content;
    max-width: 100%;
    margin: 2px auto 0;
    justify-items: start;
    text-align: left;
  }

  .service-row li {
    width: 100%;
    grid-template-columns: 19px auto;
    justify-content: start;
    text-align: left;
    font-size: 0.92rem;
  }

  .check-icon {
    width: 19px;
    height: 19px;
  }

  .check-icon img {
    width: 11px;
    height: 11px;
  }
}

/* Android pequeño */
@media (max-width: 480px) {
  .service-row {
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .service-row h3 {
    margin-top: 2px;
    margin-bottom: 8px;
  }

  .service-row p {
    margin-bottom: 4px;
  }

  .service-row ul {
    gap: 8px;
  }
}

/* =========================================================
   BOTÓN FLOTANTE SUBIR ARRIBA
========================================================= */

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9800;

  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;

  border: 1px solid rgba(0, 168, 255, 0.26);
  border-radius: 18px;

  color: #ffffff;
  background:
    radial-gradient(circle at 28% 20%, rgba(0, 168, 255, 0.55), transparent 2.4rem),
    linear-gradient(145deg, #07111f 0%, #123a73 52%, #00a8ff 135%);

  box-shadow:
    0 18px 42px rgba(8, 18, 37, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);

  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px) scale(0.92);

  transition:
    opacity 180ms ease,
    visibility 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top span {
  display: block;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-1px);
}

.back-to-top:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(0, 168, 255, 0.46);
  box-shadow:
    0 22px 52px rgba(37, 99, 255, 0.26),
    0 0 0 5px rgba(37, 99, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* En Android queda más cómodo para tocar */
@media (max-width: 880px) {
  .back-to-top {
    right: 16px;
    bottom: 18px;
    width: 50px;
    height: 50px;
    border-radius: 17px;
  }
}

/* Android pequeño */
@media (max-width: 480px) {
  .back-to-top {
    right: 14px;
    bottom: 16px;
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .back-to-top span {
    font-size: 1.25rem;
  }
}

/* =========================================================
   FOOTER PREMIUM
========================================================= */

.footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 34px;
  border-top: 1px solid rgba(11, 19, 43, 0.1);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 0.55fr 1fr;
  gap: 42px;
  align-items: start;
}

.footer-brand p {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.footer-column h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-links a {
  width: fit-content;
  color: #52657f;
  font-weight: 750;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover {
  color: var(--blue);
  transform: translateX(3px);
}

.footer-contact a {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  color: #52657f;
  font-size: 0.92rem;
  font-weight: 700;
  word-break: break-word;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-contact a:hover {
  color: var(--blue);
  transform: translateX(3px);
}

.footer-contact span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(37, 99, 255, 0.12);
  box-shadow: 0 8px 18px rgba(8, 18, 37, 0.06);
}

.footer-contact img {
  width: 19px;
  height: 19px;
  object-fit: contain;
  display: block;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(11, 19, 43, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: #7a8aa3;
  font-size: 0.86rem;
}

.footer-bottom a {
  color: var(--blue);
  font-weight: 800;
  font-size: 0.88rem;
}

/* Mobile */
@media (max-width: 880px) {
  .footer {
    width: min(100% - 28px, var(--max));
    padding: 36px 0 30px;
    text-align: center;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    justify-items: center;
  }

  .footer-brand {
    display: grid;
    justify-items: center;
  }

  .footer-brand p {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-column {
    display: grid;
    justify-items: center;
  }

  .footer-links {
    justify-items: center;
  }

  .footer-links a:hover {
    transform: none;
  }

  .footer-contact {
    width: 100%;
    max-width: 360px;
  }

  .footer-contact a {
    grid-template-columns: 34px 1fr;
    text-align: left;
  }

  .footer-contact a:hover {
    transform: none;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

/* =========================================================
   AJUSTE FINAL FOOTER PC + ANDROID
========================================================= */

/* PC: mejor balance de columnas */
@media (min-width: 881px) {
  .footer-main {
    grid-template-columns: minmax(300px, 1.1fr) minmax(150px, 0.45fr) minmax(340px, 1fr) !important;
    gap: 52px !important;
  }

  .footer-brand {
    text-align: left !important;
  }

  .footer-brand p {
    text-align: left !important;
    max-width: 460px !important;
  }

  .footer-contact {
    max-width: 420px;
  }

  .footer-contact a {
    grid-template-columns: 34px minmax(0, 1fr) !important;
    overflow-wrap: anywhere;
  }

  .footer-bottom {
    width: 100%;
  }

  .footer-bottom a {
    white-space: nowrap;
  }
}

/* Android: footer limpio y centrado */
@media (max-width: 880px) {
  .footer-bottom a {
    font-size: 0.92rem !important;
  }

  .footer-contact a {
    max-width: 340px;
  }

  .footer-contact {
    justify-items: center;
  }
}

/* Android pequeño: evita que el botón flotante tape el link del footer */
@media (max-width: 480px) {
  .footer {
    padding-bottom: 76px !important;
  }

  .footer-bottom a {
    max-width: 220px;
    line-height: 1.35;
  }
}

/* =========================================================
   FIX FINAL FOOTER: COPYRIGHT DEBAJO, NO COMO 4TA COLUMNA
========================================================= */

.footer {
  display: block !important;
}

.footer-main {
  width: 100% !important;
}

.footer-bottom {
  width: 100% !important;
  margin-top: 34px !important;
  padding-top: 22px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  border-top: 1px solid rgba(11, 19, 43, 0.08) !important;
}

.footer-bottom p {
  margin: 0 !important;
  max-width: none !important;
  text-align: left !important;
}

.footer-bottom a {
  white-space: nowrap !important;
}

/* PC: columnas del footer mejor balanceadas */
@media (min-width: 881px) {
  .footer-main {
    display: grid !important;
    grid-template-columns: minmax(320px, 1.1fr) minmax(150px, 0.45fr) minmax(360px, 1fr) !important;
    gap: 56px !important;
    align-items: start !important;
  }
}

/* Android: mantener centrado y limpio */
@media (max-width: 880px) {
  .footer {
    display: block !important;
  }

  .footer-main {
    display: grid !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .footer-bottom p {
    text-align: center !important;
  }
}

/* =========================================================
   PULIDO FINAL FOOTER + BOTÓN SUBIR
========================================================= */

/* PC: footer más balanceado */
@media (min-width: 881px) {
  .footer {
    padding-bottom: 38px !important;
  }

  .footer-bottom {
    align-items: center !important;
  }

  .footer-bottom a {
    font-size: 0.9rem !important;
  }
}

/* Android: más aire para que el botón flotante no moleste */
@media (max-width: 880px) {
  .footer {
    padding-bottom: 88px !important;
  }

  .footer-bottom {
    gap: 16px !important;
  }

  .footer-bottom p {
    max-width: 340px !important;
    line-height: 1.55 !important;
  }

  .footer-bottom a {
    font-size: 0.95rem !important;
    font-weight: 850 !important;
  }

  .footer-contact a {
    justify-content: center !important;
  }
}

/* Android pequeño */
@media (max-width: 480px) {
  .footer {
    padding-bottom: 92px !important;
  }

  .footer-contact a {
    font-size: 0.9rem !important;
  }

  .footer-bottom p {
    max-width: 310px !important;
  }
}

/* =========================================================
   PULIDO FINAL INDEX HERO PC + ANDROID
========================================================= */

/* PC: mantiene el hero premium pero un poco más balanceado */
@media (min-width: 881px) {
  .home-hero {
    padding-top: 70px;
    padding-bottom: 78px;
  }

  .home-hero h1 {
    max-width: 760px;
  }

  .home-hero p {
    max-width: 640px;
  }

  .home-hero-visual {
    max-width: 720px;
  }
}

/* Android: menos alto, más cómodo y muestra antes el mockup */
@media (max-width: 880px) {
  .home-hero {
    padding-top: 42px !important;
    padding-bottom: 48px !important;
    gap: 28px !important;
  }

  .home-hero h1 {
    max-width: 390px !important;
    font-size: clamp(2.15rem, 10.4vw, 3.15rem) !important;
    line-height: 0.98 !important;
  }

  .home-hero p {
    max-width: 360px !important;
    font-size: 0.98rem !important;
  }

  .home-hero .hero-actions {
    margin-top: 24px !important;
  }

  .hero-tags {
    margin-top: 20px !important;
  }

  .offer-pill {
    margin-bottom: 18px !important;
  }

  .home-hero-visual {
    margin-top: 4px !important;
  }
}

/* Android pequeño: evita que el título se vea demasiado pesado */
@media (max-width: 480px) {
  .home-hero h1 {
    font-size: clamp(2rem, 10.8vw, 2.95rem) !important;
  }

  .home-hero {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

/* =========================================================
   AJUSTE TITULAR HERO INDEX EN PC
   Más aire entre líneas sin afectar Android
========================================================= */

@media (min-width: 881px) {
  .home-hero h1 {
    line-height: 1.03 !important;
    letter-spacing: -0.04em !important;
    max-width: 780px !important;
  }
}

/* =========================================================
   AJUSTE HERO INDEX PC - MOSTRAR CHIPS EN PRIMERA VISTA
========================================================= */

@media (min-width: 881px) {
  .home-hero {
    min-height: calc(100vh - 78px) !important;
    padding-top: 48px !important;
    padding-bottom: 58px !important;
    align-items: center !important;
  }

  .home-hero-copy {
    transform: translateY(-14px);
  }

  .home-hero-visual {
    transform: translateY(-8px);
  }

  .home-hero h1 {
    max-width: 780px !important;
    font-size: clamp(3.35rem, 4.65vw, 4.8rem) !important;
    line-height: 1.03 !important;
    margin-bottom: 18px !important;
  }

  .home-hero p {
    margin-bottom: 0 !important;
  }

  .home-hero .hero-actions {
    margin-top: 24px !important;
  }

  .hero-tags {
    margin-top: 20px !important;
  }

  .offer-pill {
    margin-bottom: 20px !important;
  }
}

/* Pantallas de laptop más bajitas */
@media (min-width: 881px) and (max-height: 820px) {
  .home-hero {
    padding-top: 34px !important;
    padding-bottom: 44px !important;
  }

  .home-hero-copy {
    transform: translateY(-20px);
  }

  .home-hero h1 {
    font-size: clamp(3.15rem, 4.35vw, 4.55rem) !important;
    line-height: 1.02 !important;
  }

  .home-hero .hero-actions {
    margin-top: 20px !important;
  }

  .hero-tags {
    margin-top: 16px !important;
  }
}

/* =========================================================
   AJUSTE FINAL ICONOS, NÚMEROS Y FLECHAS EN BOTONES
========================================================= */

/* Flecha blanca cuando el botón es azul */
.btn-primary.btn-with-icon img {
  filter: brightness(0) invert(1) !important;
  opacity: 0.95;
}

.btn-primary.btn-with-icon:hover img {
  transform: translateX(4px);
  filter: brightness(0) invert(1) !important;
}

/* Flecha azul en botones claros */
.btn-secondary-dark.btn-with-icon img,
.btn-light.btn-with-icon img,
.btn-secondary.btn-with-icon img {
  filter: brightness(0) saturate(100%) invert(39%) sepia(95%) saturate(2285%) hue-rotate(206deg) brightness(103%) contrast(101%) !important;
}

/* Íconos principales: azul oscuro premium más suave */
.line-icon,
.steps-card span,
.request-questions span {
  background:
    radial-gradient(circle at 28% 20%, rgba(0, 168, 255, 0.42), transparent 2.2rem),
    linear-gradient(145deg, #08213e 0%, #0b4a8f 58%, #139df2 130%) !important;

  border: 1px solid rgba(0, 168, 255, 0.24) !important;

  box-shadow:
    0 14px 30px rgba(8, 18, 37, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.16) !important;
}

/* Íconos SVG blancos */
.line-icon img {
  filter: brightness(0) invert(1) !important;
}

/* Hover más limpio, menos fuerte */
.quick-services article:hover .line-icon,
.support-grid article:hover .line-icon,
.service-row:hover .line-icon,
.steps-card article:hover span,
.request-questions article:hover span {
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.22), transparent 2rem),
    linear-gradient(135deg, var(--blue), var(--cyan)) !important;

  border-color: rgba(0, 168, 255, 0.38) !important;

  box-shadow:
    0 16px 34px rgba(37, 99, 255, 0.2),
    0 0 0 5px rgba(37, 99, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
}

/* Checks un poquito más finos para que no compitan con el icono principal */
.check-icon {
  width: 19px !important;
  height: 19px !important;
  border-radius: 6px !important;
}

.check-icon img {
  width: 11px !important;
  height: 11px !important;
}

/* =========================================================
   AJUSTE FINAL CONTACTO: FLECHA SOLO EN "ENVIAR CORREO"
========================================================= */

/* Botones con icono SVG real */
.btn-with-icon {
  gap: 10px;
}

.btn-with-icon img {
  width: 18px;
  height: 18px;
  display: block;
  flex: 0 0 18px;
  object-fit: contain;
  transition: transform 180ms ease, filter 180ms ease;
}

/* Flecha azul en botones claros */
.btn-secondary-dark.btn-with-icon img,
.btn-light.btn-with-icon img,
.btn-secondary.btn-with-icon img {
  filter: brightness(0) saturate(100%) invert(39%) sepia(95%) saturate(2285%) hue-rotate(206deg) brightness(103%) contrast(101%) !important;
}

/* Flecha blanca solo si algún botón azul usa btn-with-icon */
.btn-primary.btn-with-icon img {
  filter: brightness(0) invert(1) !important;
}

.btn-with-icon:hover img {
  transform: translateX(4px);
}

/* Asegura que botones de Instagram sin img no reciban pseudo-flechas viejas */
.contact-hero .btn-primary::after,
.preview-request .btn-primary::after,
.final-cta .btn-primary::after {
  display: none !important;
  content: none !important;
}

/* Ajuste para que Enviar correo se vea consistente arriba y abajo */
.contact-hero .btn-secondary-dark.btn-with-icon,
.final-cta .btn-light.btn-with-icon {
  min-width: 180px;
}

/* Mobile */
@media (max-width: 880px) {
  .contact-hero .btn-secondary-dark.btn-with-icon,
  .final-cta .btn-light.btn-with-icon {
    width: 100%;
    min-width: 100%;
  }
}

/* =========================================================
   MOCKUP HERO INDEX - DISEÑO PROFESIONAL
========================================================= */

.preview-main p {
  display: none !important;
}

.preview-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.preview-status {
  width: 100%;
  max-width: 310px;
  margin-top: 4px;
  margin-bottom: 18px;
  padding: 14px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 90% 0%, rgba(0, 168, 255, 0.12), transparent 9rem),
    rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.12);
}

.preview-status-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.preview-status-top span {
  color: #9fb6ce;
  font-size: 0.76rem;
  font-weight: 750;
}

.preview-status-top strong {
  color: #7ddcff;
  font-size: 0.74rem;
  font-weight: 900;
}

.preview-progress-bar {
  width: 100%;
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.preview-progress-bar span {
  width: 76%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 0 18px rgba(0, 168, 255, 0.28);
}

.preview-mini-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.preview-mini-actions span {
  min-width: 92px;
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 850;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 12px 26px rgba(37, 99, 255, 0.18);
}

.preview-mini-actions span:last-child {
  color: #dcecff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

/* Mobile */
@media (max-width: 880px) {
  .preview-status {
    margin-left: auto;
    margin-right: auto;
  }

/* =========================================================
   PULIDO MOCKUP INDEX EN MÓVIL
========================================================= */

@media (max-width: 880px) {
  .preview-main {
    min-height: 205px !important;
    padding: 22px 18px !important;
  }

  .preview-main h2 {
    max-width: 310px !important;
    margin-bottom: 18px !important;
    font-size: clamp(1.28rem, 6.2vw, 1.72rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.045em !important;
  }

  .preview-kicker {
    margin-bottom: 14px !important;
    font-size: 0.68rem !important;
  }

  .preview-buttons {
    width: 100%;
    justify-content: center !important;
    gap: 10px !important;
  }

  .preview-buttons i {
    width: 110px !important;
    height: 38px !important;
    box-shadow: 0 12px 26px rgba(37, 99, 255, 0.16);
  }

  .preview-buttons i:last-child {
    width: 84px !important;
    background: rgba(255, 255, 255, 0.13) !important;
  }

  .preview-side article {
    min-height: 58px;
    border-radius: 16px !important;
  }

  .preview-side article span {
    font-size: 0.72rem !important;
  }

  .preview-side article strong {
    font-size: 1.35rem !important;
  }

  .preview-flow span {
    min-height: 38px !important;
    border-radius: 13px !important;
    font-size: 0.76rem !important;
  }
}

@media (max-width: 480px) {
  .preview-main h2 {
    max-width: 280px !important;
    font-size: clamp(1.18rem, 6.4vw, 1.55rem) !important;
    line-height: 1.1 !important;
  }

  .preview-buttons i {
    width: 104px !important;
    height: 36px !important;
  }

  .preview-buttons i:last-child {
    width: 78px !important;
  }
}

  .preview-mini-actions {
    justify-content: center;
  }
}

/* Android pequeño */
@media (max-width: 480px) {
  .preview-status {
    max-width: 280px;
    padding: 13px;
  }

  .preview-mini-actions span {
    min-width: 88px;
    min-height: 36px;
    font-size: 0.74rem;
  }
}

/* =========================================================
   AJUSTE DE SCROLL AL IR A SECCIONES
   Evita que el contenido quede muy pegado al header
========================================================= */

/* Para navegación interna con #id */
html {
  scroll-padding-top: 105px;
}

/* Secciones específicas con ancla */
#vista-previa,
#lista-servicios {
  scroll-margin-top: 105px;
}

/* En Android, un poco más de aire */
@media (max-width: 880px) {
  html {
    scroll-padding-top: 96px;
  }

  #vista-previa,
  #lista-servicios {
    scroll-margin-top: 96px;
  }
}

/* Android pequeño */
@media (max-width: 480px) {
  html {
    scroll-padding-top: 88px;
  }

  #vista-previa,
  #lista-servicios {
    scroll-margin-top: 88px;
  }
}