* {
  box-sizing: border-box;
}

:root {
  /* === BRAND_PALETTE_V2 (ver reports/prompt_logo_paleta_cro.md) === */
  --brand: #0d2840;
  --brand-dark: #08192a;
  --brand-soft: #e8eef5;
  --accent: #ee6c4d;
  --accent-dark: #c54a2b;
  --success: #25d366;
  --success-dark: #1da851;
  --danger: #dc2626;
  --warm: #f59e0b;
  --ink: #0d1b2a;
  --ink-2: #3b4a5c;
  --muted: #5d6878;
  --line: #dce4ee;
  --line-soft: #eef2f7;
  --paper: #ffffff;
  --bg: #f4f7fb;
  --bg-elevated: #fafcfd;
  --shadow: 0 14px 36px rgba(13, 40, 64, .12);
  --shadow-card: 0 1px 2px rgba(13, 40, 64, .06), 0 6px 16px rgba(13, 40, 64, .08);
  --shadow-hero: 0 14px 36px rgba(13, 40, 64, .18);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --font-sans: "Inter", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  padding-bottom: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--brand);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.promo-bar {
  background: linear-gradient(90deg, #c56a16, #dc2626);
  color: #fff;
  text-align: center;
  font-size: .86rem;
  font-weight: 700;
  position: sticky;
  top: 0;
  z-index: 25;
  line-height: 1.3;
}

.promo-bar a {
  display: block;
  padding: 8px 14px;
  color: #fff;
  text-decoration: none;
}

.promo-bar a:hover {
  background: rgba(0, 0, 0, .1);
}

.promo-bar .promo-cta {
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 640px) {
  .promo-bar {
    font-size: .76rem;
  }
  .promo-bar a {
    padding: 7px 10px;
  }
}

.site-header {
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 36px;
  z-index: 20;
  backdrop-filter: blur(10px);
}

@media (max-width: 640px) {
  .site-header {
    top: 32px;
  }
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  padding: 10px 0;
  flex-wrap: wrap;
}

.brand {
  font-weight: 800;
  text-decoration: none;
  font-size: 1.2rem;
  color: var(--ink);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.brand img {
  height: 40px;
  width: auto;
  display: block;
}

.brand .brand-text {
  display: none;
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-left: 2px;
}

@media (max-width: 640px) {
  .brand img {
    height: 36px;
  }
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  row-gap: 6px;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: .92rem;
}

.site-nav a:hover {
  color: var(--brand);
}

.site-nav a[hreflang="es"]:not([hreflang][aria-label]),
.site-nav a[hreflang]:not([aria-label]) {
  /* no-op rule kept for legacy */
}

.nav-cta {
  display: inline-flex;
  gap: 8px;
  margin-left: 6px;
  flex-shrink: 0;
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .9rem !important;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .15s ease;
}

.btn-nav svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn-nav.whatsapp {
  background: #16a34a;
  color: #fff !important;
  font-size: .95rem !important;
  padding: 9px 18px;
}

.btn-nav.tel {
  background: var(--brand);
  color: #fff !important;
}

.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .14);
}

.site-nav a[aria-current="page"] {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

@media (max-width: 960px) {
  .btn-nav .btn-label {
    display: none;
  }
  .btn-nav {
    padding: 8px 11px;
  }
}

@media (max-width: 640px) {
  .btn-nav.tel {
    display: none;
  }
  .btn-nav.whatsapp .btn-label {
    display: inline;
  }
  .btn-nav.whatsapp {
    padding: 10px 16px;
    font-size: .95rem !important;
  }
}

.site-nav a[hreflang][aria-label] {
  font-size: .78rem;
  font-weight: 700;
  padding: 2px 6px;
  border: none;
  background: transparent;
  color: var(--muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.site-nav a[hreflang][aria-label]:first-of-type {
  border-left: 1px solid var(--line);
  padding-left: 12px;
  margin-left: 6px;
}

.site-nav a[hreflang][aria-label]:hover,
.site-nav a[hreflang][aria-label]:focus-visible {
  color: var(--brand);
  outline: none;
}

.site-nav a[hreflang="es"][aria-label] {
  color: var(--brand);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(620px, calc(100vh - 72px));
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 17, 31, .88) 0%, rgba(8, 17, 31, .72) 42%, rgba(8, 17, 31, .25) 100%),
    linear-gradient(0deg, rgba(8, 17, 31, .34), rgba(8, 17, 31, .12));
}

.hero .container {
  width: 100%;
  padding-top: 72px;
  padding-bottom: 72px;
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #bfe6df;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  font-size: .86rem;
}

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(2.25rem, 5vw, 4.65rem);
  line-height: 1.02;
}

.hero p {
  max-width: 670px;
  font-size: 1.16rem;
}

.hero-points,
.check-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points li,
.trust-item,
.badge {
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border-radius: 8px;
  padding: 8px 11px;
  font-weight: 700;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--brand);
  border-radius: 8px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 800;
  color: var(--brand);
  background: var(--paper);
}

.btn.primary {
  background: var(--brand);
  color: #fff;
}

.btn.secondary {
  border-color: rgba(255, 255, 255, .75);
  color: #fff;
  background: rgba(255, 255, 255, .12);
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: #fff;
}

.section-title {
  max-width: 780px;
  margin-bottom: 26px;
}

.section-title h2,
.cta h2 {
  margin: 0 0 10px;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 1.14;
}

.section-title p,
.card p,
.cta p,
.content-block p,
.faq p {
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

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

.card,
.cta,
.content-block,
.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(23, 32, 51, .06);
}

.card h2,
.card h3,
.content-block h2,
.content-block h3 {
  margin-top: 0;
}

.service-link {
  color: var(--ink);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.service-link:hover,
.service-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(11, 92, 173, .35);
  box-shadow: var(--shadow);
  outline: none;
}

.service-link .more {
  display: inline-block;
  margin-top: 12px;
  color: var(--brand);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 30px;
  align-items: center;
}

.split img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.trust-item {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.steps {
  counter-reset: steps;
}

.steps .card {
  position: relative;
  padding-top: 48px;
}

.steps .card::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  top: 20px;
  left: 24px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--ink);
}

.faq p {
  margin-bottom: 0;
}

.cta {
  margin: 0 auto;
  background: #10233d;
  color: #fff;
}

.cta p,
.cta a {
  color: #fff;
}

.cta .btn {
  color: var(--brand);
}

.cta .btn.primary {
  color: #fff;
}

.breadcrumb {
  padding: 18px 0;
  font-size: .92rem;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--muted);
}

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

.contact-card strong {
  display: block;
  font-size: 1.1rem;
}

.site-footer {
  background: #111827;
  color: #fff;
  padding: 22px 0;
  font-size: .92rem;
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fff;
}

.mobile-cta {
  display: none;
}

@media (max-width: 900px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .grid,
  .grid.two,
  .split,
  .trust-strip,
  .contact-options {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero .container {
    padding-top: 52px;
    padding-bottom: 56px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 74px;
  }

  .container {
    padding: 0 16px;
  }

  .site-nav a {
    font-size: .9rem;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(8, 17, 31, .92), rgba(8, 17, 31, .66));
  }

  .hero h1 {
    font-size: clamp(2rem, 12vw, 3.1rem);
  }

  .hero-points li:nth-child(n+3) {
    display: none;
  }

  .actions .btn {
    width: 100%;
  }

  .section {
    padding: 42px 0;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 8px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, .96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 24px rgba(23, 32, 51, .14);
  }

  .mobile-cta a {
    min-height: 48px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: .92rem;
  }

  .mobile-cta .call {
    background: var(--brand);
    color: #fff;
  }

  .mobile-cta .wa {
    background: #25d366;
    color: #fff;
  }

  .mobile-cta .quote {
    background: #e8f4f2;
    color: var(--accent);
  }
}

.consent-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  background: #10233d;
  color: #fff;
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: 0 16px 40px rgba(8, 17, 31, .35);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  line-height: 1.4;
}

.consent-bar a {
  color: #bfe6df;
  text-decoration: underline;
}

.consent-bar button {
  border: 1px solid rgba(255, 255, 255, .4);
  background: transparent;
  color: #fff;
  border-radius: 8px;
  padding: 8px 14px;
  font-weight: 700;
  cursor: pointer;
}

.consent-bar button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.consent-bar span {
  flex: 1 1 220px;
}

@media (max-width: 640px) {
  .consent-bar {
    left: 8px;
    right: 8px;
    bottom: 80px;
    padding: 12px;
  }
}

.btn.whatsapp {
  background: #25d366;
  border-color: #1da851;
  color: #fff;
  order: -1;
  font-size: 1.05rem;
  padding: 14px 22px;
  min-height: 50px;
  box-shadow: 0 6px 18px rgba(37, 211, 102, .35);
}

.btn.whatsapp:hover,
.btn.whatsapp:focus-visible {
  background: #1da851;
  outline: none;
}

.wa-link {
  color: #1da851;
  font-weight: 800;
  text-decoration: none;
}

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

.wa-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .45);
  z-index: 40;
  line-height: 1;
}

.wa-fab-icon {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
}

.wa-fab-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.wa-fab:hover .wa-fab-icon,
.wa-fab:focus-visible .wa-fab-icon {
  transform: scale(1.05);
  transition: transform .15s ease;
}

.wa-fab:hover,
.wa-fab:focus-visible {
  background: #1da851;
  outline: none;
}

.wa-fab-label {
  position: absolute;
  right: 70px;
  background: #172033;
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease;
}

.wa-fab:hover .wa-fab-label,
.wa-fab:focus-visible .wa-fab-label {
  opacity: 1;
}

@media (max-width: 640px) {
  .wa-fab {
    right: 14px;
    bottom: 84px;
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
  }

  .wa-fab-label {
    display: none;
  }
}

.faq details summary::after {
  content: "+";
  float: right;
  font-size: 1.3rem;
  color: var(--brand);
  font-weight: 800;
  margin-left: 12px;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  margin-top: 10px;
}

.article-hero {
  min-height: min(520px, calc(100vh - 72px));
}

.post-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 0;
  color: #dbeafe;
  font-weight: 700;
}

.post-meta span {
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, .1);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.blog-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  padding: 0;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-card-body {
  padding: 22px;
}

.blog-card-body h2,
.blog-card-body h3 {
  margin-top: 0;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.article-body {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px;
  box-shadow: 0 10px 28px rgba(23, 32, 51, .06);
}

.article-body h2 {
  margin-top: 34px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.18;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body h3 {
  margin-top: 24px;
}

.article-body p,
.article-body li {
  color: var(--muted);
}

.quick-box,
.call-box {
  border-radius: 8px;
  padding: 20px;
  margin: 24px 0;
}

.quick-box {
  background: #eef6ff;
  border: 1px solid #b8d7ff;
}

.call-box {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.quick-box h2,
.quick-box h3,
.call-box h2,
.call-box h3 {
  margin-top: 0;
}

.article-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 16px;
}

.sidebar-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 10px 28px rgba(23, 32, 51, .06);
}

.sidebar-card h2,
.sidebar-card h3 {
  margin-top: 0;
}

.sidebar-card .actions {
  margin-top: 16px;
}

.toc {
  margin: 0;
  padding-left: 18px;
}

.toc li {
  margin: 8px 0;
}

.post-image {
  margin: 26px 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

  .article-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .article-body {
    padding: 22px;
  }
}

/* === Alineación UX (cuerpo izquierda, CTA centrada) === */

.hero-content,
.hero p,
.section-title,
.section-title p,
.content-block,
.content-block p,
.card,
.card p,
.faq,
.faq summary,
.faq p {
  text-align: start;
}

.section-title p,
.content-block p,
.card p,
.faq p {
  max-width: 65ch;
}

.hero h1 {
  max-width: 18ch;
}

.hero p {
  max-width: 56ch;
}

.cta {
  text-align: center;
}

.cta h2,
.cta p {
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}

.cta .actions {
  justify-content: center;
}

@media (max-width: 640px) {
  .cta .actions .btn {
    width: 100%;
  }
}

/* === MOBILE_CRO_PATCH_V1 === */

/* ------ Hero compactado en mobile (≤ 640px) -------------------------- */
@media (max-width: 640px) {
  .hero {
    min-height: auto;
  }
  .hero .container {
    padding-top: 28px;
    padding-bottom: 32px;
  }
  .hero h1 {
    margin-bottom: 12px;
    font-size: clamp(1.85rem, 9vw, 2.6rem);
    line-height: 1.08;
  }
  .hero p {
    font-size: 1rem;
    margin: 0 0 14px;
  }
  .eyebrow {
    font-size: .76rem;
    margin-bottom: 10px;
  }
  .hero .actions {
    margin-top: 16px;
    gap: 10px;
  }
  .hero .actions .btn {
    min-height: 52px;
    font-size: 1rem;
    padding: 12px 16px;
  }
}

/* ------ Trust strip antes del CTA (hero) ----------------------------- */
.trust-strip-hero {
  margin: 14px 0 18px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
}
.trust-strip-hero li {
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border-radius: 999px;
  padding: 5px 11px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .01em;
  backdrop-filter: blur(2px);
}
@media (max-width: 640px) {
  .trust-strip-hero {
    margin: 10px 0 12px;
    gap: 5px 6px;
  }
  .trust-strip-hero li {
    font-size: .78rem;
    padding: 4px 9px;
  }
}

/* ------ Sticky bottom bar a 3 columnas con Foto ---------------------- */
@media (max-width: 640px) {
  .mobile-cta {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
    padding: 8px 10px;
    padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  }
  .mobile-cta a {
    min-height: 50px;
    font-size: .88rem;
    line-height: 1.1;
  }
  .mobile-cta .photo {
    background: #f59e0b;
    color: #fff;
  }
  body {
    padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px));
  }
}

/* ------ Promo bar colapsable tras scroll ----------------------------- */
.promo-bar {
  transition: padding .18s ease, font-size .18s ease;
}
.promo-bar.collapsed a {
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: .72rem;
  letter-spacing: .02em;
}
.promo-bar.collapsed .promo-cta {
  text-decoration: none;
}

/* ------ Tap targets mínimos (idiomas, nav) --------------------------- */
@media (max-width: 640px) {
  .site-nav a[hreflang][aria-label] {
    min-height: 36px;
    min-width: 36px;
    padding: 7px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    margin: 2px 1px;
  }
  .site-nav a[hreflang][aria-label]:first-of-type {
    border-left: 1px solid var(--line);
    margin-left: 4px;
    padding-left: 10px;
  }
  .btn-nav,
  .btn,
  .mobile-cta a {
    min-height: 44px;
  }
}

/* ------ WA FAB visible más arriba para no chocar con bottom bar ----- */
@media (max-width: 640px) {
  .wa-fab {
    bottom: calc(94px + env(safe-area-inset-bottom, 0px));
    right: 12px;
  }
}

/* === FIN MOBILE_CRO_PATCH_V1 === */


/* === MOBILE_CRO_PATCH_V2 === */
/* Logo más grande + idiomas en single row sin wrap */

@media (max-width: 900px) {
  .brand img { height: 38px; }
  .urgency-badge { font-size: .62rem; padding: 2px 7px; }
}

@media (max-width: 640px) {
  .brand img { height: 36px; }
  .urgency-badge {
    font-size: .6rem;
    padding: 2px 6px;
    margin-left: 0;
  }
  /* Compactar idiomas: chips pequeños en single row con scroll horizontal */
  .site-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
    padding-bottom: 4px;
  }
  .site-nav::-webkit-scrollbar { display: none; }
  .site-nav > a:not(.btn-nav):not([hreflang][aria-label]) {
    flex-shrink: 0;
    font-size: .82rem;
    padding: 4px 2px;
  }
  .site-nav a[hreflang][aria-label] {
    min-height: 30px;
    min-width: 30px;
    padding: 4px 7px;
    font-size: .7rem;
    border-radius: 6px;
    margin: 0 1px;
    flex-shrink: 0;
  }
  .site-nav a[hreflang][aria-label]:first-of-type {
    border-left: 1px solid var(--line);
    margin-left: 6px;
    padding-left: 7px;
  }
  .nav-cta {
    flex-shrink: 0;
    margin-left: auto;
  }
}

@media (max-width: 420px) {
  .site-nav > a:not(.btn-nav):not([hreflang][aria-label]) {
    font-size: .78rem;
  }
  .site-nav a[hreflang][aria-label] {
    min-height: 28px;
    min-width: 28px;
    font-size: .66rem;
    padding: 3px 6px;
  }
}

/* === FIN MOBILE_CRO_PATCH_V2 === */

/* === INDUSTRIAL_SECTION_V1 === */
.industrial-section {
  background: var(--brand);
  color: #fff;
}
.industrial-section .section-title h2 { color: #fff; }
.industrial-section .section-title p { color: #d8e0ea; }
.industrial-section .eyebrow { color: var(--accent); }
.industrial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.industrial-card {
  background: var(--paper);
  color: var(--ink);
  border: none;
  border-radius: var(--radius-md);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease;
}
.industrial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(13, 40, 64, .25);
}
.industrial-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.industrial-card-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.industrial-card-body h3 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--brand);
}
.industrial-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.5;
  flex: 1;
}
.industrial-card-body .btn.whatsapp {
  margin-top: 10px;
  width: 100%;
  font-size: .95rem;
  padding: 11px 14px;
  min-height: 46px;
}
@media (max-width: 900px) {
  .industrial-grid { grid-template-columns: 1fr; gap: 14px; }
  .industrial-card img { aspect-ratio: 16 / 10; }
}
/* === FIN INDUSTRIAL_SECTION_V1 === */
