:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-soft: #eef2ff;
  --text: #0f172a;
  --muted: #475569;
  --brand: #2563eb;
  --brand-strong: #1d4ed8;
  --accent: #7c3aed;
  --line: #dbe4f1;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: radial-gradient(circle at 0 0, #e0e7ff 0%, #f8fafc 38%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip; /* evita scroll horizontal por imágenes desbordadas */
}

/* Prevención universal de desbordamiento de imágenes */
img, picture {
  max-width: 100%;
  height: auto;
}

main {
  flex: 1 0 auto;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.home-page .header {
  background: rgba(247, 250, 255, 0.86);
  border-bottom: 1px solid #d8e3f6;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.header .container {
  width: min(1260px, 95%);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}

.logo {
  color: #111827;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.brand span {
  display: none;
}

.logo-img {
  width: 120px;
  height: 34px;
  object-fit: contain;
  display: block;
}

.logo-img[src=''] {
  display: none;
}

.primary-nav {
  display: flex;
  gap: 0.62rem;
}

.primary-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  padding: 0.46rem 0.92rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.primary-nav a:hover {
  color: #1e293b;
  background: #e2e8f0;
}

.primary-nav a.nav-admin-link {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  font-weight: 700;
}

.primary-nav a.nav-admin-link:hover {
  color: #ffffff;
  filter: brightness(0.95);
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  position: relative;
  padding: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.menu-toggle .menu-bar {
  width: 20px;
  height: 2px;
  background: #0f172a;
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.6);
}

.menu-toggle[aria-expanded="true"] .menu-bar:nth-of-type(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-bar:nth-of-type(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-bar:nth-of-type(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 920px) {
  .nav {
    gap: 0;
  }

  .logo-img {
    width: 135px;
    height: 38px;
  }

  .nav-controls {
    justify-content: flex-end;
  }

  .menu-toggle {
    display: flex;
    background: #ffffff;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 0.4rem);
    right: 0;
    width: min(280px, 90vw);
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 0.5rem 0.6rem;
    box-shadow: 0 24px 40px rgba(15, 23, 42, 0.18);
    gap: 0.15rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 15;
  }

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

  .primary-nav a {
    width: 100%;
    padding: 0.55rem 0.9rem;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 0.95rem;
  }

  .primary-nav .nav-lang {
    margin-left: 0;
    padding: 0.45rem 0.5rem 0.3rem;
    border-top: 1px solid rgba(15, 23, 42, 0.07);
    margin-top: 0.2rem;
    justify-content: flex-start;
  }
}

.nav-lang {
  display: inline-flex;
  align-items: center;
  margin-left: 0.3rem;
}

.nav-lang-select {
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #334155;
  border-radius: 999px;
  padding: 0.22rem 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.nav-lang-select:focus {
  outline: 2px solid #bfdbfe;
  outline-offset: 1px;
}

.stealth-admin-link {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.26;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.stealth-admin-link:hover,
.stealth-admin-link:focus-visible {
  opacity: 0.9;
  color: var(--brand-strong);
  text-decoration: underline;
}

.hero {
  padding: 5.4rem 0 4.4rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 10% -20%, #c7d2fe 0%, rgba(199, 210, 254, 0) 48%),
    radial-gradient(circle at 92% 8%, #bfdbfe 0%, rgba(191, 219, 254, 0) 42%),
    linear-gradient(180deg, #f5f8ff 0%, #eef4ff 100%);
  border-bottom: 1px solid #dbe7fb;
}

.hero::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  right: -150px;
  top: -180px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.28) 0%, rgba(37, 99, 235, 0) 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  left: -140px;
  bottom: -220px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.22) 0%, rgba(124, 58, 237, 0) 72%);
  pointer-events: none;
}

.home-page .hero::after,
.home-page .hero::before {
  filter: saturate(115%);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 1.35rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.25rem 0;
}

.home-page .hero-highlight {
  background: linear-gradient(90deg, #2563eb 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy h1 {
  font-size: clamp(2.25rem, 4.8vw, 3.95rem);
  margin: 0 0 0.85rem;
  line-height: 0.98;
  max-width: 14ch;
  letter-spacing: -0.02em;
  color: #0b1220;
}

.hero-blog {
  padding-bottom: 2.8rem;
}

.hero p {
  color: #334155;
  max-width: 58ch;
  margin-top: 0;
  font-size: 1.03rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.1rem 0 0.35rem;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.66rem;
  border-radius: 999px;
  border: 1px solid #c7d2fe;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
  color: #1e293b;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-note {
  margin: 0.9rem 0 0;
  font-size: 0.92rem;
  color: #1e3a8a;
  font-weight: 600;
}

.home-page .hero-signals {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.home-page .hero-signals-wide {
  grid-column: 1 / -1;
  margin-top: 1rem;
}

.home-page .hero-signals article {
  border: 1px solid #cddaf6;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  padding: 0.72rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.home-page .hero-signals h3 {
  margin: 0;
  font-size: 0.85rem;
  color: #0f172a;
}

.home-page .hero-signals p {
  margin: 0.25rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #475569;
}

.kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 0.9rem;
  padding: 0.36rem 0.86rem;
  border: 1px solid #b7c7f5;
  border-radius: 999px;
  color: #312e81;
  background: linear-gradient(180deg, #e9edff 0%, #dfe7ff 100%);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-panel {
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 55%, #1d4ed8 100%);
  color: #eff6ff;
  border: 1px solid #475569;
  border-radius: 20px;
  padding: 1.25rem;
  align-self: start;
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.3);
}

.hero-panel-kicker {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.2rem 0.56rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #bfdbfe;
  border: 1px solid rgba(191, 219, 254, 0.35);
  background: rgba(15, 23, 42, 0.35);
}

.hero-panel h2 {
  margin: 0;
  font-size: 1.18rem;
}

.hero-panel-intro {
  margin: 0.35rem 0 0.8rem;
  color: #cbd5e1;
  font-size: 0.9rem;
}

.hero-stat-primary {
  margin: 0 0 0.7rem;
  padding: 0.82rem;
  border-radius: 14px;
  border: 1px solid #475569;
  background: rgba(15, 23, 42, 0.44);
}

.hero-stat-primary h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 1;
  color: #ddd6fe;
}

.hero-stat-primary p {
  margin: 0.3rem 0 0;
  font-size: 0.84rem;
  color: #cbd5e1;
}

.home-page .hero-method {
  margin: 0 0 0.78rem;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.4rem;
  color: #dbeafe;
  font-size: 0.82rem;
}

.home-page .hero-method li::marker {
  color: #93c5fd;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.hero-stats article {
  padding: 0.7rem;
  border: 1px solid #64748b;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.52);
}

.hero-stats h3 {
  margin: 0;
  font-size: 1.02rem;
  color: #bfdbfe;
}

.hero-stats p {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
  color: #cbd5e1;
}

.btn {
  display: inline-block;
  margin-top: 0.7rem;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  color: #ffffff;
  border: 0;
  border-radius: 12px;
  padding: 0.78rem 1.18rem;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.34);
}

.btn:hover {
  filter: brightness(1.02);
  transform: translateY(-1px);
}

.btn-ghost {
  background: #ffffff;
  color: #1e293b;
  border: 1px solid #cbd5e1;
  box-shadow: none;
}

.btn-ghost:hover {
  background: #f1f5f9;
}

.section {
  padding: 3.2rem 0;
}

.home-page .section {
  position: relative;
  padding: 3.6rem 0;
}

.home-page .section[data-label]::before {
  content: attr(data-label);
  position: absolute;
  left: max(4%, calc((100vw - 1140px) / 2));
  top: 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  opacity: 0.8;
}

.home-page .section[data-label]::after {
  content: '';
  position: absolute;
  left: max(4%, calc((100vw - 1140px) / 2));
  top: 1.65rem;
  width: min(120px, 22vw);
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, #2563eb 0%, rgba(37, 99, 235, 0.08) 100%);
}

.section-tone-a {
  background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
  border-top: 1px solid #e8eef8;
  border-bottom: 1px solid #e8eef8;
}

.section-tone-b {
  background: linear-gradient(180deg, #f4f8ff 0%, #eef5ff 100%);
  border-top: 1px solid #e3ebfb;
  border-bottom: 1px solid #e3ebfb;
}

.section-tone-c {
  background: linear-gradient(180deg, #f3f7ff 0%, #f1f0ff 100%);
  border-top: 1px solid #e6e8fb;
  border-bottom: 1px solid #e6e8fb;
}

.section-tone-d {
  background: linear-gradient(180deg, #f4f9ff 0%, #edf6ff 100%);
  border-top: 1px solid #e5edfb;
  border-bottom: 1px solid #e5edfb;
}

.section-tone-e {
  background: linear-gradient(180deg, #f2f7ff 0%, #edf3ff 100%);
  border-top: 1px solid #e5eaf8;
  border-bottom: 1px solid #e5eaf8;
}

.section-tone-f {
  background: linear-gradient(180deg, #f1f6ff 0%, #edf2ff 100%);
  border-top: 1px solid #e4eaf9;
  border-bottom: 1px solid #e4eaf9;
}

.home-page .section-tone-a,
.home-page .section-tone-b,
.home-page .section-tone-c,
.home-page .section-tone-d,
.home-page .section-tone-e,
.home-page .section-tone-f {
  background-size: 100% 100%;
}

.home-page .section .container {
  position: relative;
}

.home-page #servicios-destacados {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.home-page #servicios-destacados .service-card {
  border-radius: 16px;
  overflow: hidden;
}

.home-page #servicios-destacados .service-image {
  margin-bottom: 0.9rem;
  border: 1px solid #d3def4;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-page #servicios-destacados .service-card:hover .service-image {
  transform: scale(1.025);
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.16);
}

.home-page #blog-destacadas {
  gap: 1.1rem;
}

.home-page #blog-destacadas .blog-card {
  border: 1px solid #d3e0f7;
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-page #blog-destacadas .blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 38px rgba(37, 99, 235, 0.16);
}

.alt {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  letter-spacing: -0.01em;
  color: #0f172a;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 52ch;
}

.home-page .section-head {
  margin-bottom: 1.35rem;
}

.home-page .section-head h2 {
  font-size: clamp(1.5rem, 2.3vw, 2.05rem);
  letter-spacing: -0.02em;
}

.home-page .section-head p {
  color: #334155;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.15rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.12);
}

.home-page .card {
  border: 1px solid #d3e0f7;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-page .card:hover {
  transform: translateY(-6px);
  border-color: #bdd0f3;
  box-shadow: 0 24px 42px rgba(37, 99, 235, 0.18);
}

.home-page .home-updates-grid .card {
  position: relative;
  overflow: hidden;
}

.home-page .home-updates-grid .card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563eb 0%, #7c3aed 100%);
}

.home-page .quick-links {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.35rem;
}

.home-page .quick-links .blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
}

.home-page .quick-links .blog-link::before {
  content: '↗';
  color: #1d4ed8;
  font-size: 0.86rem;
}

.badge {
  display: inline-block;
  margin-bottom: 0.55rem;
  padding: 0.2rem 0.56rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  background: #dbeafe;
  color: #1d4ed8;
}

.service-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.75rem;
  border: 1px solid var(--line);
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  margin: 0.25rem 0 0.45rem;
  line-height: 1.3;
}

.service-card p {
  color: var(--muted);
  margin: 0;
  flex: 1;
}

.service-card .blog-link {
  margin-top: 1rem;
}

.service-detail-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: center;
}

.service-detail-image {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.service-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.process-list {
  display: grid;
  gap: 0.8rem;
  padding-left: 1.2rem;
  margin: 1rem 0 0;
  color: var(--muted);
}

.home-page .process-list-strong {
  margin-top: 1.1rem;
  padding-left: 0;
  counter-reset: home-steps;
  gap: 0.72rem;
}

.home-page .process-list-strong li {
  list-style: none;
  position: relative;
  padding: 0.9rem 0.95rem 0.9rem 3rem;
  border-radius: 14px;
  border: 1px solid #d2ddf5;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
}

.home-page .process-list-strong li::before {
  counter-increment: home-steps;
  content: counter(home-steps);
  position: absolute;
  left: 0.9rem;
  top: 0.92rem;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
}

.home-page .process-list-strong strong {
  display: block;
  color: #0f172a;
  margin-bottom: 0.2rem;
}

.home-page .process-list-strong span {
  display: block;
  color: #475569;
  font-size: 0.94rem;
}

.process-intro {
  margin: 0.55rem 0 0;
  max-width: 70ch;
  color: #334155;
}

.home-page .section-head-cta {
  padding: 1.1rem;
  border-radius: 18px;
  border: 1px solid #cfdcf6;
  background: linear-gradient(135deg, #ffffff 0%, #f0f6ff 55%, #eef2ff 100%);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.09);
}

.home-page .section-head-cta .btn {
  position: relative;
  overflow: hidden;
}

.home-page .section-head-cta .btn::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -130%;
  width: 70%;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.45) 50%, rgba(255, 255, 255, 0) 100%);
  transition: left 0.45s ease;
}

.home-page .section-head-cta .btn:hover::after {
  left: 130%;
}

.home-page .cta-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.62rem;
}

.blog-grid {
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}

.blog-card {
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.related-card .badge {
  margin-bottom: 0.45rem;
}

.related-posts-grid {
  align-items: stretch;
}

.blog-card img,
.blog-card picture {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--line);
}

.blog-card picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-bottom: none;
}

.post-cover-wrap picture {
  display: block;
  width: 100%;
  height: 100%;
}

.post-cover-wrap picture img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  opacity: 0.92;
}

.blog-card-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 0.42rem;
}

.blog-title {
  margin: 0.25rem 0 0.55rem;
  line-height: 1.3;
}

.blog-excerpt {
  color: var(--muted);
  margin: 0;
  flex: 1;
}

.blog-link {
  margin-top: 0.85rem;
  display: inline-block;
  color: var(--brand-strong);
  text-decoration: none;
  font-weight: 700;
}

.blog-link:hover {
  text-decoration: underline;
}

.contact-form {
  display: grid;
  gap: 0.8rem;
  max-width: 620px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 1rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  align-items: start;
}

.contact-aside {
  display: grid;
  gap: 1rem;
}

.contact-info-card h2 {
  margin: 0.2rem 0 0.5rem;
  line-height: 1.25;
}

.contact-info-card p {
  margin: 0;
  color: var(--muted);
}

.contact-info-list {
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
}

.contact-form-pro {
  max-width: 100%;
  padding: 1.2rem;
  border-radius: 18px;
}

.form-head h2 {
  margin: 0;
}

.form-head p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.form-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  align-items: center;
}

.form-actions .btn {
  margin-top: 0;
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.pricing-card ul {
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.featured-plan {
  border-color: #93c5fd;
  box-shadow: 0 18px 30px rgba(59, 130, 246, 0.16);
}

label {
  display: grid;
  gap: 0.36rem;
  color: #334155;
  font-weight: 600;
  font-size: 0.94rem;
}

input,
textarea {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 0.68rem;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid #bfdbfe;
  border-color: #60a5fa;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0;
  color: var(--muted);
  background: #ffffff;
}

.home-page .footer {
  background: linear-gradient(180deg, #ffffff 0%, #f4f7ff 100%);
  border-top: 1px solid #d7e2f6;
}

.home-page .footer-meta {
  font-weight: 500;
}

.home-page .footer .legal-links a,
.home-page .footer .link-button {
  color: #1d4ed8;
}

@keyframes home-reveal-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-page .hero-copy,
.home-page .hero-panel,
.home-page .section-head,
.home-page .process-list-strong,
.home-page .section-head-cta {
  animation: home-reveal-up 0.65s ease both;
}

.home-page .hero-panel {
  animation-delay: 0.08s;
}

.home-page #servicios-destacados .card,
.home-page #blog-destacadas .blog-card,
.home-page #ventajas-home .card,
.home-page .home-updates-grid .card {
  animation: home-reveal-up 0.55s ease both;
}

.home-page #servicios-destacados .card:nth-child(2),
.home-page #blog-destacadas .blog-card:nth-child(2),
.home-page #ventajas-home .card:nth-child(2),
.home-page .home-updates-grid .card:nth-child(2) {
  animation-delay: 0.06s;
}

.home-page #servicios-destacados .card:nth-child(3),
.home-page #blog-destacadas .blog-card:nth-child(3),
.home-page #ventajas-home .card:nth-child(3),
.home-page .home-updates-grid .card:nth-child(3) {
  animation-delay: 0.12s;
}

@media (prefers-reduced-motion: reduce) {
  .home-page * {
    animation: none !important;
    transition: none !important;
  }
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.legal-links {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-news {
  min-width: 300px;
}

.footer-news h4 {
  margin: 0 0 0.35rem;
  color: #1f2937;
  font-size: 0.95rem;
}

.footer-posts {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.25rem;
}

.footer-posts li {
  color: var(--muted);
}

.footer-posts a {
  color: var(--brand-strong);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-posts a:hover {
  text-decoration: underline;
}

.legal-links a,
.link-button {
  color: var(--brand-strong);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.legal-links a:hover,
.link-button:hover {
  text-decoration: underline;
}

.link-button {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
}

.legal-content {
  max-width: 100%;
}

.legal-content h2 {
  margin-top: 1.5rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 1rem;
  align-items: start;
}

.legal-aside {
  position: sticky;
  top: 5.6rem;
}

.legal-aside .card p {
  margin: 0.4rem 0;
}

.legal-data {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 0.75rem;
  margin: 0.5rem 0 0;
}

.legal-data dt {
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.legal-data dd {
  margin: 0;
  color: var(--muted);
  word-break: break-word;
}

.legal-links-list {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.check-row {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-weight: 500;
  color: var(--muted);
}

.check-row input[type='checkbox'] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.form-legal-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-feedback {
  margin: 0;
  color: #166534;
  font-weight: 600;
  min-height: 1.4rem;
}

.hero-account {
  padding: 3.6rem 0 2rem;
}

.account-layout {
  display: grid;
  gap: 1rem;
}

.account-auth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.account-auth-grid .contact-form {
  max-width: 100%;
}

.account-sep {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 1rem 0;
}

.social-login-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.social-login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #0f172a;
  border-radius: 12px;
  padding: 0.62rem 0.7rem;
  cursor: pointer;
  font-weight: 700;
}

.social-login-btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.social-login-btn:hover {
  background: #f8fafc;
}

.social-login-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.account-user-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.account-user-head h2 {
  margin: 0;
}

.account-user-head .btn {
  margin-top: 0;
}

.account-summary-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.account-list {
  display: grid;
  gap: 0.65rem;
}

.account-customer-item {
  padding: 0.72rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8fbff;
}

.account-customer-item p {
  margin: 0.2rem 0 0;
  color: var(--muted);
}

.account-table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.account-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.account-table th,
.account-table td {
  padding: 0.56rem 0.62rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
  white-space: nowrap;
}

.account-table th {
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #334155;
  background: #f8fafc;
}

.cookie-banner {
  position: fixed;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 1rem;
  z-index: 60;
  pointer-events: none;
}

.cookie-banner-content {
  width: min(1060px, 100%);
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(248, 250, 252, 0.98) 100%);
  color: #1e293b;
  border: 1px solid #cbd5e1;
  border-left: 4px solid #2563eb;
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
  padding: 1rem 1.05rem;
  pointer-events: auto;
}

.cookie-title {
  margin: 0 0 0.4rem;
  font-weight: 800;
}

.cookie-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.cookie-copy {
  min-width: 0;
}

.cookie-text {
  margin: 0;
  color: #475569;
  font-size: 0.94rem;
}

.cookie-text a {
  color: var(--brand-strong);
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-actions .btn {
  margin-top: 0;
}

.cookie-settings {
  margin-top: 0.95rem;
  border-top: 1px solid #e2e8f0;
  padding-top: 0.85rem;
  display: grid;
  gap: 0.6rem;
}

.cookie-settings-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.post-hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2rem;
  align-items: center;
}

.post-hero-image {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

/* Layout compacto de post — hero 2 col + contenido+sidebar */
.post-hero-compact {
  padding: 1.8rem 0 1.6rem;
  border-bottom: 1px solid var(--line);
}

.post-hero-inner {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.post-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.post-hero-copy h1 {
  margin: 0.4rem 0 0.5rem;
  font-size: clamp(1.35rem, 2.4vw, 1.95rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.post-hero-copy .post-lead {
  font-size: 0.97rem;
  color: #334155;
  margin: 0;
  line-height: 1.55;
  max-width: 60ch;
}

.post-hero-thumb {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(15,23,42,0.12);
  aspect-ratio: 16/9;
}

.post-hero-thumb picture,
.post-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-hero-thumb picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-bottom: none;
}

.post-article-section {
  padding-top: 1.8rem;
}

.post-article-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 2rem;
  align-items: start;
}

.post-article-main {
  min-width: 0;
}

.post-article-side {
  position: sticky;
  top: 5.5rem;
}

.post-keypoints-side {
  padding: 0.9rem 1rem;
  background: linear-gradient(180deg, #f0f6ff 0%, #e9f1ff 100%);
  border: 1px solid #d5e1f9;
  border-radius: 12px;
}

.post-keypoints-list {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.35rem;
  color: #334155;
  font-size: 0.88rem;
  line-height: 1.5;
}

.post-meta-line {
  display: flex;
  gap: 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.7rem;
}

.post-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.post-detail-main-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1rem;
  align-items: start;
}

.post-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.post-side-grid {
  display: grid;
  gap: 1rem;
}

.post-side-grid .process-list {
  margin-top: 0.75rem;
  gap: 0.55rem;
}

.post-side-grid .process-list li {
  line-height: 1.5;
  font-size: 0.95rem;
}

.post-body-card {
  overflow: hidden;
}

.post-body-full {
  width: 100%;
}

.post-rich-content {
  color: #1f2937;
  line-height: 1.62;
  font-size: 0.96rem;
}

.post-rich-content strong {
  color: #0f172a;
  font-weight: 800;
}

.post-rich-content p,
.post-rich-content li {
  color: #334155;
}

.post-rich-content p {
  margin: 0 0 0.7rem;
}

.post-readable-body {
  display: grid;
  gap: 0.5rem;
}

.post-lead {
  font-size: 0.97rem;
  color: #1f2937;
}

.post-section {
  border-top: 1px solid var(--line);
  padding-top: 0.7rem;
}

.post-section h2 {
  margin: 0 0 0.5rem;
  line-height: 1.25;
  font-size: 1.1rem;
  color: #0f172a;
}

.post-step-list {
  margin: 0.3rem 0 0.6rem;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.45rem;
}

.post-figure {
  margin: 0.5rem 0 0.65rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.post-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.post-figure figcaption {
  margin: 0;
  padding: 0.4rem 0.65rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
}

.post-highlights {
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}

.post-highlights h3 {
  margin: 0 0 0.6rem;
  line-height: 1.3;
}

.post-highlights ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.5rem;
}

/* ── Post stats grid (3 cifras impactantes) ── */
.post-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.2rem 0 0.6rem;
}

.post-stat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  text-align: center;
}

.post-stat-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 0.45rem;
  letter-spacing: -0.03em;
}

.post-stat-num small {
  font-size: 1.4rem;
  font-weight: 800;
}

.post-stat-card p {
  font-size: 0.85rem;
  color: #475569;
  margin: 0;
  line-height: 1.45;
}

/* ── Tutorial: paso con texto + imagen al lado ── */
.post-step-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.2rem;
  align-items: start;
  margin: 1rem 0 0.4rem;
}

.post-step-copy {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.post-step-img-wrap {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.post-step-img-wrap picture,
.post-step-img-wrap img {
  display: block;
  width: 100%;
  height: auto;
  border-bottom: none !important;
}

.post-step-img-wrap figcaption {
  padding: 0.4rem 0.65rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.83rem;
}

/* ── Tutorial: galería de capturas de pantalla ── */
.post-screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin: 1rem 0 0.4rem;
}

.post-screenshot {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.post-screenshot picture,
.post-screenshot img {
  display: block;
  width: 100%;
  height: auto;
  border-bottom: none !important;
}

.post-screenshot figcaption {
  padding: 0.35rem 0.55rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

/* ── Tutorial: tarjetas de pasos finales ── */
.post-checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin: 1rem 0 0.4rem;
}

.post-check-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.post-check-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.post-check-card h3 {
  font-size: 0.94rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
}

.post-check-card p {
  font-size: 0.86rem;
  color: #475569;
  margin: 0;
  line-height: 1.5;
}

/* ── Post solutions grid (5 soluciones numeradas) ── */
.post-solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin: 1.2rem 0 0.4rem;
  counter-reset: solution-counter;
}

.post-solution-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.1rem 1.1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
}

.post-solution-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--brand);
  opacity: 0.15;
  line-height: 1;
  letter-spacing: -0.04em;
  flex-shrink: 0;
  align-self: flex-start;
}

.post-solution-card h3 {
  font-size: 0.97rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
}

.post-solution-card p {
  font-size: 0.88rem;
  color: #475569;
  margin: 0;
  line-height: 1.5;
}

.post-solution-note {
  margin-top: 0.25rem !important;
  padding: 0.45rem 0.65rem;
  background: var(--surface-soft, #eef2ff);
  border-radius: 7px;
  font-size: 0.83rem !important;
  color: #334155 !important;
}

/* ── Post pillars grid (ventajas / features) ── */
.post-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1.2rem 0 0.4rem;
}

.post-pillar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.post-pillar-icon {
  margin: 0;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.post-pillar-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-bottom: none !important;
  border-radius: 0;
}

.post-pillar h3 {
  font-size: 0.97rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
}

.post-pillar p {
  font-size: 0.88rem;
  color: #475569;
  margin: 0;
  line-height: 1.5;
}

.post-rich-content.post-layout-backup-soluciones .vc_row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.post-rich-content.post-layout-backup-soluciones .vc_row > [class*='vc_col-sm-12'] {
  grid-column: 1 / -1;
}

.post-rich-content.post-layout-backup-soluciones .vc_row > [class*='vc_col-sm-6'] {
  grid-column: span 1;
}

.post-rich-content.post-layout-backup-soluciones .wpb_text_column {
  margin-bottom: 0.8rem;
}

.post-rich-content.post-layout-backup-soluciones h2,
.post-rich-content.post-layout-backup-soluciones h3 {
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
}

.post-rich-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.post-rich-content a {
  color: inherit;
  text-decoration: none;
  pointer-events: none;
}

.customer-chat {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  width: auto;
}

.customer-chat-toggle {
  width: auto;
  min-width: 56px;
  min-height: 56px;
  margin-top: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.62rem 0.88rem;
}

.customer-chat-toggle-icon {
  font-size: 1.05rem;
  line-height: 1;
}

.customer-chat-toggle-text {
  font-size: 0.9rem;
}

.customer-chat-collapsed .customer-chat-panel {
  display: none;
}

.customer-chat-collapsed .customer-chat-toggle-text {
  display: none;
}

.customer-chat-panel {
  width: min(420px, calc(100vw - 2rem));
  margin-top: 0.7rem;
  padding: 0.9rem;
  background: var(--surface);
}

.customer-chat-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}

.customer-chat-head p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.customer-chat-close {
  margin-top: 0;
  padding: 0.48rem 0.72rem;
  border-radius: 10px;
}

.customer-chat-messages {
  display: grid;
  gap: 0.6rem;
  max-height: 360px;
  overflow: auto;
  padding-right: 0.2rem;
  margin-bottom: 0.75rem;
}

.customer-chat-msg {
  display: flex;
}

.customer-chat-msg-user {
  justify-content: flex-end;
}

.customer-chat-msg-assistant {
  justify-content: flex-start;
}

.customer-chat-bubble {
  margin: 0;
  padding: 0.58rem 0.7rem;
  border-radius: 12px;
  max-width: 92%;
  border: 1px solid var(--line);
}

.customer-chat-msg-user .customer-chat-bubble {
  background: var(--surface-soft);
}

.customer-chat-msg-assistant .customer-chat-bubble {
  background: var(--surface);
}

.customer-chat-form textarea {
  width: 100%;
  min-height: 72px;
  max-height: 200px;
  resize: vertical;
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: 0.6rem 0.66rem;
  font: inherit;
  background: var(--surface);
  color: var(--text);
}

.customer-chat-visitor-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  margin-bottom: 0.52rem;
}

.customer-chat-visitor-row input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: 0.52rem 0.6rem;
  font: inherit;
  background: var(--surface);
  color: var(--text);
}

.customer-chat-actions {
  margin-top: 0.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.65rem;
}

.customer-chat-actions-buttons {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.customer-chat-end {
  padding-inline: 0.66rem;
}

.customer-chat-status {
  color: var(--muted);
  font-size: 0.8rem;
}

.customer-chat-status[data-state='success'] {
  color: var(--brand-strong);
}

.customer-chat-status[data-state='error'] {
  color: var(--accent);
}

.customer-chat-actions .btn {
  margin-top: 0;
}

.customer-chat-honeypot {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .home-page #servicios-destacados {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-detail-hero,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-trust {
    gap: 0.42rem;
  }

  .hero-trust span {
    font-size: 0.74rem;
  }

  .home-page .hero-signals {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .home-page .section[data-label]::before {
    left: 4%;
  }

  .hero-stat-primary h3 {
    font-size: 1.55rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .account-auth-grid,
  .account-summary-grid {
    grid-template-columns: 1fr;
  }

  .social-login-grid {
    grid-template-columns: 1fr;
  }

  .account-user-head {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Hero de posts — colapsa a 1 col al mismo breakpoint que servicios (cubre
     landscape en móvil y tabletas portrait hasta 900px) */
  .post-hero-inner {
    grid-template-columns: 1fr;
  }

  .post-hero-thumb {
    order: -1;
    max-height: 240px;
    aspect-ratio: unset;
  }

  .post-hero-layout,
  .post-detail-grid,
  .post-detail-main-grid {
    grid-template-columns: 1fr;
  }

  .post-overview-grid {
    grid-template-columns: 1fr;
  }

  .post-rich-content.post-layout-backup-soluciones .vc_row {
    grid-template-columns: 1fr;
  }

  .customer-chat {
    right: 0.7rem;
    bottom: 0.8rem;
    width: auto;
  }

  .customer-chat-panel {
    width: min(360px, calc(100vw - 1.4rem));
  }

  .customer-chat-visitor-row {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════
   PRESUPUESTOS — Layout premium
   ══════════════════════════════════════════════════════ */

/* Hero */
.budget-hero {
  background: linear-gradient(135deg, var(--brand-dark, #1e3a5f) 0%, var(--brand, #2563eb) 100%);
  color: #fff;
  padding: 3rem 0 2.5rem;
}

.budget-hero .kicker {
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.15);
  border-color: transparent;
}

.budget-hero h1 {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin: 0.5rem 0 0.75rem;
}

.budget-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 520px;
}

.budget-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.budget-hero-checks {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.budget-hero-checks li {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.9);
}

.budget-hero-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.budget-trust-item {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  text-align: center;
}

.budget-trust-item strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.budget-trust-item span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.3;
  display: block;
  margin-top: 0.2rem;
}

/* Pasos del proceso */
.budget-process-section {
  background: var(--surface-soft, #f8f9fc);
}

.budget-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  position: relative;
}

.budget-steps::before {
  content: '';
  position: absolute;
  top: 2.1rem;
  left: 2.5rem;
  right: 2.5rem;
  height: 2px;
  background: var(--line);
  z-index: 0;
}

.budget-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.2rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  position: relative;
  z-index: 1;
}

.budget-step-num {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--brand, #2563eb);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.budget-step-body strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.3rem;
}

.budget-step-body p {
  font-size: 0.86rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* Lista "qué incluye" en aside */
.budget-include-list {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.budget-include-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.budget-include-icon {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.budget-include-list strong {
  display: block;
  font-size: 0.93rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.budget-include-list p {
  font-size: 0.84rem;
  color: var(--muted);
  margin: 0.15rem 0 0;
  line-height: 1.45;
}

/* FAQ en aside */
.budget-faq-card {
  margin-top: 0;
}

.budget-faq {
  margin: 0.8rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.budget-faq dt {
  font-weight: 700;
  font-size: 0.91rem;
  color: #0f172a;
  line-height: 1.35;
}

.budget-faq dd {
  margin: 0.2rem 0 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Label opcional */
.form-optional {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--muted);
  margin-left: 0.3rem;
}

/* Sección CTA inferior */
.budget-services-hint {
  background: var(--surface-soft, #f8f9fc);
}

.budget-hint-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

/* Responsive */
@media (max-width: 900px) {
  .budget-hero-inner {
    grid-template-columns: 1fr;
  }
  .budget-hero-trust {
    grid-template-columns: repeat(4, 1fr);
  }
  .budget-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .budget-steps::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .budget-hero-trust {
    grid-template-columns: repeat(2, 1fr);
  }
  .budget-steps {
    grid-template-columns: 1fr;
  }
}

/* ── Post services grid (asistencia informática) ── */
.post-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.2rem 0 0.4rem;
}

.post-service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.post-service-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.post-service-card strong {
  font-size: 0.97rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.post-service-card p {
  font-size: 0.88rem;
  color: #475569;
  margin: 0;
  line-height: 1.5;
}

/* ── Post FAQ list (preguntas frecuentes) ── */
.post-faq-list {
  margin: 1rem 0 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.post-faq-list dt {
  font-weight: 700;
  font-size: 0.96rem;
  color: #0f172a;
}

.post-faq-list dd {
  margin: 0.2rem 0 0 1rem;
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .post-hero-inner {
    grid-template-columns: 1fr;
  }

  .post-hero-thumb {
    order: -1;
    max-height: 200px;
    aspect-ratio: unset;
  }

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

  .post-article-side {
    position: static;
  }

  .post-hero-copy h1 {
    font-size: 1.35rem;
  }

  .post-stats-grid {
    grid-template-columns: 1fr;
  }

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

  .post-step-split {
    grid-template-columns: 1fr;
  }

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

  .post-checklist-grid {
    grid-template-columns: 1fr;
  }

  .post-services-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .primary-nav {
    width: min(280px, 90vw);
    flex-wrap: nowrap;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .footer-meta {
    align-items: flex-start;
  }

  .home-page .section-head-cta {
    padding: 0.95rem;
  }

  .home-page .section[data-label]::after {
    width: 84px;
  }

  .home-page .cta-actions {
    width: 100%;
  }

  .home-page .cta-actions .btn {
    width: 100%;
    text-align: center;
  }

  .cookie-top {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: flex-start;
  }

  .cookie-banner {
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.7rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-aside {
    position: static;
  }
}

/* ─────────────────────────────────────────────────────────────
   SERVICE DETAIL — Componentes ricos
───────────────────────────────────────────────────────────── */

/* Hero */
.service-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.service-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-hero-lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 52ch;
}

.service-highlights {
  list-style: none;
  padding: 0;
  margin: 0.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.service-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--text);
  font-size: 0.97rem;
}

.service-highlights li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05em;
}

.service-hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.service-desde {
  font-size: 0.92rem;
  color: var(--muted);
}

.service-desde strong {
  color: var(--text);
  font-weight: 600;
}

.service-hero-media {
  display: flex;
  justify-content: center;
}

/* Stats bar */
.service-stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.6rem 0;
}

.service-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.service-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  border-right: 1px solid var(--line);
}

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

.service-stat-valor {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1.1;
}

.service-stat-label {
  font-size: 0.83rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Includes grid */
.service-includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.service-include-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.18s;
}

.service-include-card:hover {
  box-shadow: 0 6px 24px rgba(37,99,235,0.1);
}

.service-include-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.service-include-card p {
  font-size: 0.91rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* Process steps */
.service-process-steps {
  list-style: none;
  padding: 0;
  counter-reset: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.service-process-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--surface-soft);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5rem;
  text-align: right;
  -webkit-text-stroke: 1.5px var(--brand);
}

.service-process-step strong {
  display: block;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.service-process-step p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* Outcomes grid */
.service-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.service-outcome-card {
  background: var(--surface);
  border-left: 4px solid var(--accent);
  border-radius: 0 12px 12px 0;
  padding: 1.3rem 1.4rem;
  box-shadow: var(--shadow);
}

.service-outcome-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.45rem;
}

.service-outcome-card p {
  font-size: 0.91rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* FAQ accordion */
.service-faq {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 1.4rem;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 0.15s;
}

.faq-item summary:hover {
  background: var(--surface-soft);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--brand);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 1.4rem 1.1rem;
  font-size: 0.91rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
}

/* Visual split (texto izquierda + imagen derecha) */
.service-visual-split {
  background: var(--surface-soft);
}

.service-visual-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.service-visual-copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-visual-frase {
  font-size: 1.22rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
}

.service-visual-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.service-visual-points li {
  font-size: 0.93rem;
  color: var(--muted);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.5;
}

.service-visual-points li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
}

.service-visual-points li strong {
  color: var(--text);
  font-weight: 600;
}

.service-visual-media {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.13);
  border: 1px solid var(--line);
}

.service-visual-img {
  width: 100%;
  display: block;
}

/* CTA section */
.section-cta .service-cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.section-cta .service-cta-inner h2 {
  font-size: 2rem;
  margin: 0.5rem 0 1rem;
}

.section-cta .service-cta-inner p {
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.service-cta-precio {
  font-size: 1.05rem;
  margin-bottom: 1.25rem !important;
}

.service-cta-precio strong {
  color: var(--brand);
  font-weight: 700;
}

/* ── Responsive service detail ───────────────────────────── */
@media (max-width: 900px) {
  .service-hero-inner {
    grid-template-columns: 1fr;
  }

  .service-hero-media {
    order: -1;
  }

  .service-hero-media img {
    max-width: min(300px, 100%);
    max-height: 260px;
    width: auto;
    object-fit: contain;
  }

  .service-visual-inner {
    grid-template-columns: 1fr;
  }

  .service-visual-media {
    order: -1;
    max-height: 320px;
    overflow: hidden;
    border-radius: 12px;
  }

  .service-visual-img {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  .service-includes-grid,
  .service-process-steps,
  .service-outcomes-grid {
    grid-template-columns: 1fr;
  }

  .service-stats-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .home-page #servicios-destacados {
    grid-template-columns: 1fr;
  }

  /* Hero servicio: 1 columna segura en cualquier teléfono portrait */
  .service-hero-inner {
    grid-template-columns: 1fr !important;
  }

  .service-hero-media {
    order: -1;
  }

  .service-hero-media img {
    max-height: 200px;
    max-width: 100%;
    width: auto;
    margin: 0 auto;
    display: block;
    object-fit: contain;
  }

  /* Visual split: imagen compacta en teléfono */
  .service-visual-media {
    max-height: 220px;
  }

  .service-visual-img {
    max-height: 220px;
  }

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

  .service-stat {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .service-stat:last-child {
    border-bottom: none;
  }

  .service-process-step {
    flex-direction: column;
    gap: 0.4rem;
  }

  .step-number {
    font-size: 1.4rem;
    text-align: left;
  }

  .section-cta .service-cta-inner h2 {
    font-size: 1.5rem;
  }
}

/* ── Contacto: hero teal ── */
.contact-hero {
  background: linear-gradient(135deg, #064e3b 0%, #0f766e 100%);
  color: #fff;
  padding: 3rem 0 2.5rem;
}

.contact-hero .kicker {
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.15);
  border-color: transparent;
}

.contact-hero h1 {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin: 0.5rem 0 0.75rem;
}

.contact-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 520px;
}

.contact-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.contact-hero-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.contact-channel-list {
  list-style: none;
  padding: 0;
  margin: 0.9rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-channel-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.93rem;
  color: var(--text-secondary, #475569);
  line-height: 1.4;
}

.contact-channel-icon {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 8px;
  background: var(--brand-soft, #eff6ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ── Mi cuenta: hero indigo ── */
.account-hero-pro {
  background: linear-gradient(135deg, #1e1b4b 0%, #4f46e5 100%);
  color: #fff;
  padding: 3rem 0 2.5rem;
}

.account-hero-pro .kicker {
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.15);
  border-color: transparent;
}

.account-hero-pro h1 {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin: 0.5rem 0 0.75rem;
}

.account-hero-pro p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 520px;
}

.account-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.account-hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.account-hero-benefit {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
  line-height: 1.4;
}

.account-hero-benefit .benefit-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Banda de valor en guest view */
.account-value-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.account-value-item {
  background: var(--surface-soft, #f8f9fc);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem 1rem;
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.account-value-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.account-value-item strong {
  display: block;
  font-size: 0.93rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.2rem;
}

.account-value-item p {
  font-size: 0.84rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
}

/* Responsive contact hero y account hero */
@media (max-width: 900px) {
  .contact-hero-inner,
  .account-hero-inner {
    grid-template-columns: 1fr;
  }

  .contact-hero-trust {
    grid-template-columns: repeat(4, 1fr);
  }

  .account-value-band {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .contact-hero-trust {
    grid-template-columns: repeat(2, 1fr);
  }

  .account-value-band {
    grid-template-columns: 1fr;
  }
}
