
:root {
  --black:#050506;
  --ink:#101114;
  --dark:#111216;
  --muted:#666b74;
  --text:#111216;
  --soft:#f5f4ef;
  --paper:#ffffff;
  --line:#dedbd3;
  --gold:#c6a35b;
  --gold2:#e7c779;
  --green:#25D366;
  --radius:22px;
  --max:1180px;
}
* { box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  margin:0;
  min-width:1180px;
  background:#f7f6f1;
  color:var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing:-.025em;
}
a { color:inherit; text-decoration:none; }
img { display:block; max-width:100%; }
.container { width:1180px; margin:0 auto; }
.topbar {
  background:#050506;
  color:#d8d8dc;
  font-size:13px;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.topbar .container {
  height:38px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.topbar strong { color:#fff; }
.header {
  background:#fff;
  border-bottom:1px solid #e3e0d8;
  position:sticky;
  top:0;
  z-index:20;
}
.header .container {
  height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}
.logo{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:190px;
}
.logo img { height:50px; width:auto; object-fit:contain; }
.brand-mark span{
  display:flex;
  flex-direction:column;
  line-height:.9;
  text-transform:uppercase;
  color:#111216;
  letter-spacing:.08em;
}
.brand-mark strong{font-size:20px;font-weight:900;}
.brand-mark em{font-size:12px;font-style:normal;font-weight:900;letter-spacing:.22em;}
.nav {
  display:flex;
  align-items:center;
  gap:4px;
}
.nav a {
  padding:11px 13px;
  border-radius:999px;
  font-size:14px;
  font-weight:800;
  color:#202126;
}
.nav a:hover { background:#f0eee8; }
.header-actions {
  display:flex;
  gap:10px;
  align-items:center;
}
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid #d8d3c7;
  font-weight:900;
  font-size:14px;
  letter-spacing:-.02em;
}
.btn.black { background:#050506; color:#fff; border-color:#050506; }
.btn.gold { background:linear-gradient(135deg,#efd88b,#c6a35b); color:#090909; border:0; }
.btn.green { background:#25D366; color:#06220d; border:0; }
.hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(198,163,91,.22), transparent 34rem),
    linear-gradient(135deg,#0b0c0f,#17130b 56%,#080809);
  color:#fff;
  padding:74px 0 66px;
}
.hero-grid {
  display:grid;
  grid-template-columns: 1.03fr .97fr;
  gap:48px;
  align-items:center;
}
.eyebrow {
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:rgba(198,163,91,.14);
  border:1px solid rgba(231,199,121,.38);
  color:#f1d990;
  border-radius:999px;
  padding:9px 13px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.09em;
  font-size:12px;
}
.eyebrow:before {
  content:"";
  width:8px; height:8px;
  border-radius:50%;
  background:#f1d990;
}
h1 {
  margin:20px 0 18px;
  font-size:70px;
  line-height:.96;
  letter-spacing:-.075em;
}
h1 span { color:#f1d990; }
.lead {
  font-size:21px;
  line-height:1.48;
  color:#e5e6ea;
  margin:0;
  max-width:650px;
}
.hero-actions {
  display:flex;
  gap:12px;
  margin-top:28px;
  flex-wrap:wrap;
}
.trust-strip {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  margin-top:28px;
}
.trust-item {
  border:1px solid rgba(255,255,255,.15);
  background:rgba(255,255,255,.07);
  border-radius:18px;
  padding:16px;
}
.trust-item b {
  display:block;
  font-size:15px;
  margin-bottom:5px;
}
.trust-item span {
  display:block;
  color:#c9cbd3;
  font-size:13px;
  line-height:1.35;
}
.photo-frame {
  position:relative;
  height:610px;
  overflow:hidden;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 28px 90px rgba(0,0,0,.5);
  background:#0d0d0f;
}
.photo-frame img {
  width:100%;
  height:100%;
  object-fit:cover;
}
.photo-frame:after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.03),rgba(0,0,0,.62));
}
.photo-panel {
  position:absolute;
  left:22px;
  right:22px;
  bottom:22px;
  z-index:2;
  background:rgba(5,5,6,.78);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(18px);
  border-radius:22px;
  padding:22px;
}
.photo-panel img {
  height:34px;
  width:auto;
  margin-bottom:14px;
  object-fit:contain;
}
.photo-panel h3 {
  margin:0 0 8px;
  font-size:24px;
  letter-spacing:-.045em;
}
.photo-panel p {
  margin:0;
  color:#d5d7df;
  line-height:1.45;
}
.section {
  padding:74px 0;
  border-bottom:1px solid #e1ded5;
  background:#fff;
}
.section.soft { background:#f7f6f1; }
.section.dark {
  background:#0b0c0e;
  color:#fff;
  border-bottom:0;
}
.section-head {
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:44px;
  align-items:end;
  margin-bottom:34px;
}
.kicker {
  color:#9f7d33;
  font-size:12px;
  letter-spacing:.14em;
  font-weight:950;
  text-transform:uppercase;
  margin-bottom:10px;
}
.section.dark .kicker { color:#f1d990; }
h2 {
  margin:0;
  font-size:48px;
  line-height:1.02;
  letter-spacing:-.065em;
}
.section-head p, .body-copy {
  margin:0;
  color:#5f646e;
  font-size:18px;
  line-height:1.62;
}
.section.dark .section-head p,
.section.dark .body-copy { color:#cfd2da; }
.grid {
  display:grid;
  gap:18px;
}
.grid.three { grid-template-columns:repeat(3,1fr); }
.grid.four { grid-template-columns:repeat(4,1fr); }
.grid.two { grid-template-columns:repeat(2,1fr); }
.card {
  border:1px solid #e1ded5;
  background:#fff;
  border-radius:22px;
  padding:24px;
  box-shadow:0 16px 40px rgba(16,17,20,.06);
}
.section.dark .card {
  background:rgba(255,255,255,.055);
  border-color:rgba(255,255,255,.12);
  box-shadow:none;
}
.num {
  width:42px; height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  background:#111216;
  color:#fff;
  font-weight:950;
  margin-bottom:18px;
}
.section.dark .num {
  background:#fff;
  color:#0b0c0e;
}
.card h3 {
  margin:0 0 10px;
  font-size:24px;
  line-height:1.05;
  letter-spacing:-.045em;
}
.card p {
  color:#666b74;
  margin:0;
  line-height:1.55;
  font-size:15.5px;
}
.section.dark .card p { color:#c7cbd5; }
.checks {
  list-style:none;
  padding:0;
  margin:17px 0 0;
  display:grid;
  gap:8px;
}
.checks li {
  position:relative;
  padding-left:22px;
  line-height:1.42;
  font-size:15px;
}
.checks li:before {
  content:"";
  position:absolute;
  left:0; top:.45em;
  width:9px; height:9px;
  border-radius:50%;
  background:#c6a35b;
}
.flow {
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:12px;
}
.flow-step {
  background:#fff;
  border:1px solid #e1ded5;
  border-radius:18px;
  padding:20px 18px;
}
.flow-step b {
  color:#c6a35b;
  font-size:26px;
  display:block;
  margin-bottom:18px;
}
.flow-step h3 {
  font-size:17px;
  margin:0 0 8px;
}
.flow-step p {
  color:#666b74;
  font-size:14px;
  line-height:1.45;
  margin:0;
}
.split {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:center;
}
.feature-photo {
  height:520px;
  border-radius:26px;
  overflow:hidden;
  border:1px solid #ddd8cc;
  box-shadow:0 24px 70px rgba(16,17,20,.14);
}
.feature-photo img {
  width:100%;
  height:100%;
  object-fit:cover;
}
.table {
  border:1px solid #dedbd3;
  border-radius:24px;
  overflow:hidden;
  background:#fff;
}
.row {
  display:grid;
  grid-template-columns:.75fr 1.25fr 1fr;
  border-bottom:1px solid #e8e5dd;
}
.row:last-child { border-bottom:0; }
.row div {
  padding:17px 18px;
  font-size:15px;
  line-height:1.35;
}
.row div:first-child { font-weight:900; }
.row.head {
  background:#111216;
  color:#fff;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:12px;
}
.cta-band {
  background:linear-gradient(135deg,#0b0c0e,#1d1a12);
  border:1px solid rgba(198,163,91,.35);
  border-radius:28px;
  color:#fff;
  padding:34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}
.cta-band h2 { font-size:42px; }
.cta-band p {
  margin:9px 0 0;
  color:#d5d7df;
  font-size:17px;
  line-height:1.5;
}
.form-wrap {
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:30px;
  align-items:start;
}
.form-box {
  background:#111216;
  color:#fff;
  border-radius:28px;
  padding:30px;
  box-shadow:0 26px 80px rgba(0,0,0,.18);
}
.form-box h2 {
  font-size:40px;
  margin-bottom:10px;
}
.form-box p { color:#d3d5dc; }
.form-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.form-grid .full { grid-column:1/-1; }
label {
  display:block;
  font-size:12px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:#e7c779;
  margin-bottom:7px;
}
input, select, textarea {
  width:100%;
  border:1px solid rgba(255,255,255,.18);
  background:#fff;
  color:#111216;
  border-radius:13px;
  padding:13px 14px;
  font:inherit;
}
textarea { min-height:112px; resize:vertical; }
.footer {
  background:#050506;
  color:#fff;
  padding:44px 0 28px;
}
.footer-grid {
  display:grid;
  grid-template-columns:1.2fr repeat(3,1fr);
  gap:28px;
}
.footer img { height:42px; margin-bottom:15px; }
.footer p, .footer li, .footer a {
  color:#c7cbd5;
  font-size:14px;
  line-height:1.55;
}
.footer ul { list-style:none; padding:0; margin:0; display:grid; gap:8px; }
.footer h3 {
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.12em;
  margin:0 0 14px;
}
.copy {
  margin-top:30px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.12);
  color:#9da3af;
  font-size:13px;
  display:flex;
  justify-content:space-between;
}

.trust-strip.refined {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
}
.trust-strip.refined .trust-item {
  min-height: 154px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  border-color: rgba(255,255,255,.16);
}
.trust-strip.refined .trust-item b {
  font-size: 19px;
  line-height: 1.12;
  letter-spacing: -.035em;
}
.trust-strip.refined .trust-item span {
  font-size: 14.5px;
  line-height: 1.45;
}


.solution-grid .card {
  min-height: 350px;
}
.logistics-note {
  margin-top: 24px;
  border: 1px solid #e0d7c2;
  background: linear-gradient(135deg, #fffaf0, #f5efe2);
  border-radius: 24px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
}
.logistics-note h3 {
  margin: 0 0 8px;
  font-size: 26px;
  letter-spacing: -.045em;
}
.logistics-note p {
  margin: 0;
  color: #4f535b;
  font-size: 17px;
  line-height: 1.55;
}



/* WordPress and Blog templates */
.admin-bar .header{top:32px}
.um-blog-hero{background:radial-gradient(circle at 78% 18%,rgba(198,163,91,.22),transparent 34rem),linear-gradient(135deg,#0b0c0f,#17130b 56%,#080809);color:#fff;padding:74px 0 66px}
.um-blog-hero h1{margin:20px 0 18px;font-size:68px;line-height:.96;letter-spacing:-.075em;max-width:930px}
.um-blog-hero p{font-size:21px;line-height:1.5;color:#e5e6ea;max-width:820px}
.um-post-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.um-post-card{border:1px solid #e1ded5;background:#fff;border-radius:22px;padding:26px;box-shadow:0 16px 40px rgba(16,17,20,.06);display:flex;flex-direction:column}
.um-post-card .tag{display:inline-block;color:#9f7d33;font-size:11px;letter-spacing:.14em;font-weight:950;text-transform:uppercase;margin-bottom:12px}
.um-post-card h2{font-size:27px;line-height:1.08;margin:0 0 12px}
.um-post-card p{color:#666b74;line-height:1.58;margin:0 0 18px}
.um-post-card .read{font-weight:900;margin-top:auto}
.um-article{max-width:900px;margin:0 auto}
.um-article h1{font-size:58px;line-height:1;letter-spacing:-.065em}
.um-article h2{margin-top:38px;font-size:38px}.um-article h3{font-size:25px;margin:28px 0 10px}
.um-article p,.um-article li{color:#5f646e;font-size:18px;line-height:1.72}.um-article ul{display:grid;gap:10px}
.um-meta{color:#8a8e96;font-size:14px;margin:14px 0 28px}.um-pagination{display:flex;gap:12px;justify-content:center;margin-top:40px}
.um-empty{border:1px solid #e1ded5;border-radius:22px;padding:28px;background:#fff}


/* =========================================================
   RESPONSIVE / MOBILE
   Mantiene intacto el diseño de escritorio.
   ========================================================= */

.mobile-menu-toggle {
  display:none;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  padding:0;
  border:1px solid #d8d3c7;
  border-radius:999px;
  background:#fff;
  cursor:pointer;
  flex:0 0 auto;
}
.mobile-menu-toggle span,
.mobile-menu-toggle span::before,
.mobile-menu-toggle span::after {
  display:block;
  width:18px;
  height:2px;
  background:#111216;
  border-radius:999px;
  transition:transform .2s ease, opacity .2s ease;
}
.mobile-menu-toggle span {
  position:relative;
}
.mobile-menu-toggle span::before,
.mobile-menu-toggle span::after {
  content:"";
  position:absolute;
  left:0;
}
.mobile-menu-toggle span::before { top:-6px; }
.mobile-menu-toggle span::after { top:6px; }

.mobile-menu-toggle.is-open span { background:transparent; }
.mobile-menu-toggle.is-open span::before { transform:translateY(6px) rotate(45deg); }
.mobile-menu-toggle.is-open span::after { transform:translateY(-6px) rotate(-45deg); }

@media (max-width: 1100px) {
  body { min-width:0; }
  .container {
    width:auto;
    max-width:1180px;
    margin:0 auto;
    padding-left:24px;
    padding-right:24px;
  }
  .header .container { gap:16px; }
  .nav a { padding:10px 9px; font-size:13px; }
  .header-actions .btn:first-child { display:none; }
  h1 { font-size:58px; }
  .hero-grid { gap:32px; }
  .trust-strip { grid-template-columns:repeat(2,1fr); }
  .photo-frame { height:560px; }
  .grid.four { grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 860px) {
  body { min-width:0; overflow-x:hidden; }
  .container {
    width:100%;
    max-width:none;
    padding-left:20px;
    padding-right:20px;
  }

  .topbar { display:none; }

  .header {
    position:sticky;
    top:0;
  }
  .header .container {
    min-height:72px;
    height:auto;
    flex-wrap:nowrap;
    gap:12px;
  }
  .logo {
    min-width:0;
    flex:1;
  }
  .logo img { height:43px; }
  .brand-mark strong { font-size:18px; }
  .brand-mark em { font-size:10px; }

  .mobile-menu-toggle { display:inline-flex; }

  .nav {
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    padding:14px 20px 20px;
    flex-direction:column;
    align-items:stretch;
    gap:4px;
    background:#fff;
    border-top:1px solid #ece9e2;
    border-bottom:1px solid #dedbd3;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
  }
  .nav.is-open { display:flex; }
  .nav a {
    width:100%;
    padding:13px 14px;
    border-radius:12px;
    font-size:15px;
  }
  .nav a:hover { background:#f4f2ec; }

  .header-actions {
    flex:0 0 auto;
  }
  .header-actions .btn:first-child { display:none; }
  .header-actions .btn.black {
    min-height:42px;
    padding:10px 15px;
    font-size:13px;
  }

  .hero {
    padding:54px 0 44px;
  }
  .hero-grid,
  .section-head,
  .split,
  .form-wrap,
  .cta-band {
    grid-template-columns:1fr;
  }
  .hero-grid { gap:30px; }
  h1 {
    margin-top:18px;
    font-size:48px;
    line-height:.98;
  }
  .lead {
    font-size:18px;
    line-height:1.55;
  }
  .hero-actions {
    display:grid;
    grid-template-columns:1fr;
  }
  .hero-actions .btn {
    width:100%;
  }
  .trust-strip {
    grid-template-columns:1fr 1fr;
  }
  .photo-frame {
    height:440px;
    border-radius:22px;
  }
  .photo-panel {
    left:14px;
    right:14px;
    bottom:14px;
    padding:17px;
  }
  .photo-panel h3 { font-size:20px; }

  .section { padding:58px 0; }
  .section-head {
    gap:16px;
    margin-bottom:26px;
  }
  h2 { font-size:39px; }
  .section-head p,
  .body-copy { font-size:17px; }

  .grid.three,
  .grid.four,
  .solution-grid,
  .flow,
  .um-post-grid {
    grid-template-columns:1fr;
  }
  .card { padding:22px; }
  .card h3 { font-size:23px; }

  .flow { gap:10px; }
  .flow-step { min-height:0; }

  .feature-photo { min-height:340px; }

  .table-wrap {
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
  }
  table { min-width:720px; }

  .notice,
  .coverage,
  .cta-band {
    padding:24px;
    border-radius:22px;
  }

  .form-wrap {
    gap:24px;
  }
  .form-grid {
    grid-template-columns:1fr;
  }
  .form-grid .full { grid-column:auto; }

  .footer .container,
  .footer-grid {
    grid-template-columns:1fr;
  }
  .footer-grid { gap:28px; }

  .um-blog-hero h1,
  .um-article h1 {
    font-size:45px;
  }
  .um-blog-hero,
  .um-article-hero {
    padding:54px 0;
  }
}

@media (max-width: 520px) {
  .container {
    padding-left:16px;
    padding-right:16px;
  }

  .header .container { min-height:68px; }
  .logo img { height:39px; }
  .brand-mark strong { font-size:17px; }
  .brand-mark em { font-size:9px; }

  .header-actions .btn.black {
    padding:9px 12px;
    font-size:12px;
  }

  .hero { padding-top:42px; }
  .eyebrow {
    font-size:10px;
    line-height:1.3;
    border-radius:16px;
  }
  h1 {
    font-size:40px;
    letter-spacing:-.065em;
  }
  .lead { font-size:17px; }

  .trust-strip {
    grid-template-columns:1fr;
  }
  .trust-item { padding:14px; }

  .photo-frame { height:390px; }
  .photo-panel p { font-size:14px; }

  .section { padding:48px 0; }
  h2 { font-size:34px; }
  .card { border-radius:18px; }

  .btn {
    min-height:46px;
    padding:12px 15px;
  }

  .notice,
  .coverage,
  .cta-band { padding:20px; }

  .um-blog-hero h1,
  .um-article h1 {
    font-size:38px;
  }
  .um-post-card {
    border-radius:18px;
  }
}



/* Centro de Recursos */
.um-resource-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.um-resource-card{
  border:1px solid #e1ded5;
  background:#fff;
  border-radius:22px;
  padding:24px;
  box-shadow:0 14px 34px rgba(16,17,20,.05);
}
.um-resource-card span{
  color:#9f7d33;
  font-size:11px;
  letter-spacing:.13em;
  font-weight:950;
  text-transform:uppercase;
}
.um-resource-card h3{
  margin:14px 0 10px;
  font-size:25px;
  line-height:1.05;
  letter-spacing:-.045em;
}
.um-resource-card p{
  margin:0;
  color:#5f646e;
  line-height:1.58;
}
.um-post-card__meta{
  color:#9f7d33;
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:900;
  margin-bottom:12px;
}
.um-read-more{
  display:inline-block;
  margin-top:auto;
  padding-top:18px;
  font-weight:900;
}
.um-post-card{
  display:flex;
  flex-direction:column;
}
.um-post-card--starter{
  min-height:245px;
}
@media(max-width:1024px){
  .um-resource-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:720px){
  .um-resource-grid{grid-template-columns:1fr}
  .um-resource-card{padding:20px;border-radius:18px}
  .um-resource-card h3{font-size:22px}
}



/* =========================================================
   MOBILE FIX V1.2.1
   Corrige desbordamiento horizontal y reglas anuladas.
   No modifica escritorio.
   ========================================================= */

html,
body {
  max-width:100%;
}

.hero-grid > *,
.grid > *,
.trust-strip > *,
.split > *,
.form-wrap > *,
.section-head > * {
  min-width:0;
}

@media (max-width: 1100px) {
  html,
  body {
    width:100%;
    max-width:100%;
    min-width:0 !important;
    overflow-x:clip !important;
  }

  body > * {
    max-width:100%;
  }

  .container {
    width:100% !important;
    max-width:100% !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }

  .hero,
  .section,
  .header,
  .footer,
  .topbar {
    width:100%;
    max-width:100%;
  }

  .hero-grid {
    grid-template-columns:minmax(0,1fr) !important;
  }

  .trust-strip.refined {
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }

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

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

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

  .photo-frame {
    width:100%;
    max-width:100%;
  }
}

@media (max-width: 860px) {
  html,
  body {
    overflow-x:hidden !important;
  }

  .header .container {
    width:100% !important;
    max-width:100% !important;
  }

  .logo {
    min-width:0 !important;
    max-width:160px;
  }

  .logo img {
    flex:0 0 auto;
  }

  .brand-mark span {
    min-width:0;
  }

  .header-actions {
    min-width:0;
  }

  .header-actions .btn.black {
    white-space:nowrap;
  }

  .hero {
    width:100%;
    overflow:hidden;
  }

  .hero-grid {
    display:grid !important;
    grid-template-columns:minmax(0,1fr) !important;
    width:100%;
  }

  .hero-grid > div {
    width:100%;
    max-width:100%;
    min-width:0;
  }

  .eyebrow {
    max-width:100%;
    white-space:normal;
    line-height:1.35;
  }

  h1,
  .lead {
    max-width:100%;
    overflow-wrap:anywhere;
  }

  .hero-actions {
    width:100%;
  }

  .hero-actions .btn {
    width:100% !important;
    max-width:100%;
    margin:0;
    white-space:normal;
    text-align:center;
  }

  .trust-strip.refined {
    width:100%;
    grid-template-columns:minmax(0,1fr) !important;
  }

  .trust-strip.refined .trust-item {
    width:100%;
    max-width:100%;
    min-width:0;
  }

  .photo-frame {
    width:100%;
    max-width:100%;
    margin:0;
  }

  .grid.three,
  .grid.four,
  .solution-grid,
  .flow,
  .um-post-grid,
  .um-resource-grid {
    width:100%;
    grid-template-columns:minmax(0,1fr) !important;
  }

  .card,
  .flow-step,
  .um-post-card,
  .um-resource-card {
    width:100%;
    max-width:100%;
    min-width:0;
  }

  .split,
  .form-wrap,
  .section-head,
  .cta-band {
    width:100%;
    grid-template-columns:minmax(0,1fr) !important;
  }

  .logistics-note {
    width:100%;
    max-width:100%;
    grid-template-columns:minmax(0,1fr) !important;
  }

  .logistics-note .btn,
  .cta-band .btn {
    width:100%;
    max-width:100%;
    text-align:center;
  }

  .form-box,
  .form-grid,
  .form-grid > div {
    width:100%;
    max-width:100%;
    min-width:0;
  }

  input,
  select,
  textarea {
    max-width:100%;
  }

  .footer,
  .footer .container,
  .footer-grid {
    width:100%;
    max-width:100%;
  }
}

@media (max-width: 520px) {
  .header .container {
    padding-left:14px !important;
    padding-right:14px !important;
  }

  .logo {
    max-width:145px;
    gap:8px;
  }

  .logo img {
    height:38px;
  }

  .mobile-menu-toggle {
    width:42px;
    height:42px;
  }

  .header-actions .btn.black {
    min-height:42px;
    padding:9px 13px;
    font-size:12px;
  }

  .hero .container {
    padding-left:18px !important;
    padding-right:18px !important;
  }

  h1 {
    font-size:38px !important;
    line-height:1.02 !important;
  }

  .lead {
    font-size:16px !important;
  }

  .photo-frame {
    height:380px;
  }

  .photo-panel {
    left:12px;
    right:12px;
    bottom:12px;
    padding:15px;
  }

  .photo-panel h3 {
    font-size:18px;
  }

  .photo-panel p {
    font-size:13px;
  }

  .section .container {
    padding-left:18px !important;
    padding-right:18px !important;
  }

  .card {
    padding:22px;
  }

  .card h3 {
    font-size:24px;
  }

  .form-box {
    padding:20px;
  }

  .form-box .btn {
    width:100%;
  }

  .form-box > div[style*="display:flex"] {
    display:grid !important;
    grid-template-columns:1fr !important;
    width:100%;
  }
}


/* V1.2.2 — Menú móvil y formulario funcional */
.um-form-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:16px;
}
.um-form-actions .btn{
  width:100%;
}
.um-form-status{
  margin-top:10px;
  min-height:22px;
  color:#b33a2c;
  font-weight:700;
  font-size:14px;
}

@media(max-width:860px){
  .header .container{
    justify-content:flex-start;
  }
  .mobile-menu-toggle{
    order:1;
    flex:0 0 auto;
  }
  .logo{
    order:2;
    flex:1 1 auto;
  }
  .header-actions{
    order:3;
    margin-left:auto;
  }
  .nav{
    order:4;
  }
}

@media(max-width:520px){
  .um-form-actions{
    grid-template-columns:1fr;
  }
}


/* V1.2.3 — WhatsApp destacado y Centro de Recursos premium */
.btn.whatsapp-cta,.header-actions .btn.black{display:inline-flex;align-items:center;gap:9px}
.wa-button-icon{width:22px;height:22px;flex:0 0 auto}.header-actions .wa-button-icon{width:19px;height:19px}
.um-whatsapp-float{position:fixed;right:22px;bottom:22px;z-index:999;display:flex;align-items:center;gap:10px;padding:14px 18px;border-radius:999px;background:#22c963;color:#07150d;font-weight:950;box-shadow:0 16px 42px rgba(16,180,86,.38);border:2px solid rgba(255,255,255,.85);animation:um-wa-pulse 2.6s infinite}.um-whatsapp-float img{width:27px;height:27px}.um-whatsapp-float:hover{transform:translateY(-2px);background:#2ade72}@keyframes um-wa-pulse{0%,100%{box-shadow:0 16px 42px rgba(16,180,86,.38)}50%{box-shadow:0 16px 48px rgba(16,180,86,.58),0 0 0 8px rgba(34,201,99,.12)}}
.um-blog-hero--premium{padding:92px 0;background:radial-gradient(circle at 78% 18%,rgba(222,184,91,.30),transparent 34rem),linear-gradient(135deg,#08090b,#17130b 62%,#070809)}.um-blog-hero--premium h1{max-width:940px}.um-blog-search{max-width:720px;margin-top:28px}.um-blog-search form{display:flex;gap:10px;background:#fff;border-radius:999px;padding:7px;box-shadow:0 18px 50px rgba(0,0,0,.28)}.um-blog-search label{flex:1}.um-blog-search input[type=search]{width:100%;border:0;background:transparent;padding:14px 18px;font:inherit;outline:0}.um-blog-search input[type=submit]{border:0;border-radius:999px;background:#d7b45e;font-weight:900;padding:0 24px;cursor:pointer}
.um-topic-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.um-topic-card{padding:26px;border:1px solid #dedbd2;border-radius:24px;background:#fff}.um-topic-card b{display:grid;place-items:center;width:48px;height:48px;border-radius:15px;background:#101116;color:#fff;font-size:17px}.um-topic-card h3{font-size:25px;letter-spacing:-.045em;margin:18px 0 10px}.um-topic-card p{color:#626872;line-height:1.58;margin:0}.um-post-card--premium{min-height:280px;transition:.2s}.um-post-card--premium:hover{transform:translateY(-4px);box-shadow:0 22px 55px rgba(16,17,20,.12)}
.um-brand-toolbar{margin-bottom:22px}.um-brand-toolbar input{width:min(100%,420px);padding:14px 18px;border:1px solid #d8d4cb;border-radius:999px;background:#fff;font:inherit}.um-brand-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:12px}.um-brand-card{min-height:125px;padding:16px 12px;border:1px solid #dedbd2;border-radius:20px;background:#fff;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:12px;text-align:center;transition:.2s}.um-brand-card:hover{transform:translateY(-3px);border-color:#c9a654;box-shadow:0 16px 34px rgba(16,17,20,.09)}.um-brand-card img{width:100%;height:54px;object-fit:contain}.um-brand-card span{font-size:13px;font-weight:850}.um-brand-card[hidden]{display:none}
@media(max-width:1100px){.um-brand-grid{grid-template-columns:repeat(4,1fr)}.um-topic-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:720px){.um-blog-hero--premium{padding:58px 0}.um-blog-search form{border-radius:20px;display:grid}.um-blog-search input[type=submit]{min-height:46px}.um-topic-grid{grid-template-columns:1fr}.um-brand-grid{grid-template-columns:repeat(3,1fr)}.um-brand-card{min-height:110px;padding:12px 8px}.um-brand-card img{height:44px}.um-whatsapp-float{right:14px;bottom:14px;padding:13px}.um-whatsapp-float span{display:none}.um-whatsapp-float img{width:30px;height:30px}}
@media(max-width:420px){.um-brand-grid{grid-template-columns:repeat(2,1fr)}}



/* V1.2.4 — Centro de Recursos, búsqueda y carrusel de marcas */
.um-resource-search-form{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:8px;
  padding:7px;
  background:#fff;
  border-radius:999px;
  box-shadow:0 18px 50px rgba(0,0,0,.28);
}
.um-resource-search-form input[type=search]{
  width:100%;
  min-width:0;
  padding:14px 18px;
  border:0;
  outline:0;
  background:transparent;
  font:inherit;
  color:#111216;
}
.um-resource-search-form button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-width:132px;
  padding:0 20px;
  border:0;
  border-radius:999px;
  background:#111216;
  color:#fff;
  font:inherit;
  font-weight:900;
  cursor:pointer;
}
.um-resource-search-form button span{
  font-size:23px;
  line-height:1;
}
.um-search-page-form{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:12px;
  margin-bottom:34px;
}
.um-search-page-form input{
  width:100%;
  padding:15px 18px;
  border:1px solid #d8d4cb;
  border-radius:16px;
  background:#fff;
  font:inherit;
}
.um-empty{
  grid-column:1/-1;
  padding:32px;
  border:1px solid #dedbd2;
  border-radius:22px;
  background:#fff;
}
.um-brands-carousel-section{
  overflow:hidden;
  padding-bottom:78px;
}
.um-brand-carousel{
  width:100%;
  overflow:hidden;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent);
}
.um-brand-track{
  display:flex;
  width:max-content;
  animation:um-brand-scroll 58s linear infinite;
}
.um-brand-carousel:hover .um-brand-track{
  animation-play-state:paused;
}
.um-brand-group{
  display:flex;
  gap:14px;
  padding-right:14px;
}
.um-brand-slide{
  flex:0 0 164px;
  min-height:116px;
  padding:15px;
  border:1px solid #dedbd2;
  border-radius:20px;
  background:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  box-shadow:0 12px 26px rgba(16,17,20,.05);
}
.um-brand-slide img{
  width:100%;
  height:48px;
  object-fit:contain;
}
.um-brand-slide span{
  color:#111216;
  font-size:13px;
  font-weight:850;
  text-align:center;
}
.um-brand-slide:hover{
  border-color:#c8a351;
  transform:translateY(-2px);
}
@keyframes um-brand-scroll{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}
@media(max-width:720px){
  .um-resource-search-form,
  .um-search-page-form{
    grid-template-columns:1fr;
    border-radius:20px;
  }
  .um-resource-search-form button{
    min-height:48px;
  }
  .um-brand-slide{
    flex-basis:132px;
    min-height:102px;
    padding:12px;
  }
  .um-brand-slide img{
    height:40px;
  }
  .um-brand-track{
    animation-duration:42s;
  }
}
@media(prefers-reduced-motion:reduce){
  .um-brand-track{
    animation:none;
  }
  .um-brand-carousel{
    overflow-x:auto;
    mask-image:none;
    -webkit-mask-image:none;
  }
}



/* V1.2.5 — Contenido orientado a intención de búsqueda */
.um-article-next-step{
  margin-top:54px;
  padding:28px;
  border:1px solid #ded8c9;
  border-radius:24px;
  background:linear-gradient(135deg,#faf6ea,#f2ead8);
}
.um-article-next-step h2{
  margin:0 0 10px;
  font-size:32px;
}
.um-article-next-step p{
  margin:0;
}
.um-article .entry-content h2,
.um-article-content h2{
  margin-top:42px;
  font-size:34px;
  line-height:1.12;
}
.um-article .entry-content h3,
.um-article-content h3{
  margin-top:28px;
  font-size:24px;
  line-height:1.2;
}
.um-article .entry-content p,
.um-article-content p,
.um-article .entry-content li,
.um-article-content li{
  font-size:18px;
  line-height:1.72;
}
@media(max-width:720px){
  .um-article-next-step{
    padding:22px;
    margin-top:38px;
  }
  .um-article-next-step h2{
    font-size:27px;
  }
  .um-article .entry-content h2,
  .um-article-content h2{
    font-size:29px;
  }
  .um-article .entry-content h3,
  .um-article-content h3{
    font-size:22px;
  }
}



/* V1.2.6 — WhatsApp global y cabecera móvil fija */
.um-whatsapp-float{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:9999;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:58px;
  padding:0 20px;
  border-radius:999px;
  background:#25D366;
  color:#07140b;
  font-weight:950;
  box-shadow:0 16px 40px rgba(0,0,0,.28);
  transition:transform .18s ease, box-shadow .18s ease;
}
.um-whatsapp-float:hover{
  transform:translateY(-3px) scale(1.02);
  box-shadow:0 20px 46px rgba(0,0,0,.34);
}
.um-whatsapp-float svg{
  width:27px;
  height:27px;
  flex:0 0 auto;
}
.um-whatsapp-float span{
  white-space:nowrap;
}

@media(max-width:860px){
  .header{
    position:sticky !important;
    top:0;
    z-index:10000;
    width:100%;
  }
  body.admin-bar .header{
    top:46px;
  }
  .um-whatsapp-float{
    right:14px;
    bottom:16px;
    min-width:58px;
    width:58px;
    height:58px;
    padding:0;
    border-radius:50%;
  }
  .um-whatsapp-float span{
    display:none;
  }
  .um-whatsapp-float svg{
    width:30px;
    height:30px;
  }
}

@media(min-width:783px) and (max-width:860px){
  body.admin-bar .header{
    top:32px;
  }
}

@media(max-width:520px){
  .um-whatsapp-float{
    right:12px;
    bottom:12px;
    width:56px;
    min-width:56px;
    height:56px;
  }
}

/* V1.2.6.1 — Corrección definitiva global móvil */
@media(max-width:860px){
  body{
    padding-top:72px !important;
  }
  body.admin-bar{
    padding-top:118px !important;
  }
  .header{
    position:fixed !important;
    top:0 !important;
    left:0 !important;
    right:0 !important;
    width:100% !important;
    z-index:99999 !important;
    transform:none !important;
  }
  body.admin-bar .header{
    top:46px !important;
  }
  .um-whatsapp-float{
    display:flex !important;
    position:fixed !important;
    right:14px !important;
    bottom:16px !important;
    z-index:100000 !important;
    visibility:visible !important;
    opacity:1 !important;
  }
}
@media(min-width:783px) and (max-width:860px){
  body.admin-bar{padding-top:104px !important;}
  body.admin-bar .header{top:32px !important;}
}


/* V1.2.7 — Carrusel de marcas no interactivo en portada */
.um-brand-slide{cursor:default;pointer-events:none;}
.um-brand-slide:hover{transform:none;border-color:#dedbd2;}



/* =========================================================
   UNIÓN MOTORS V2.0 — CENTRO DE RECURSOS
   ========================================================= */
.um-breadcrumbs{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
  margin-bottom:24px;
  color:#6b7078;
  font-size:14px;
}
.um-breadcrumbs a{font-weight:800}
.um-article-image{
  margin:28px 0;
  border-radius:24px;
  overflow:hidden;
}
.um-article-image img{
  width:100%;
  height:auto;
}
.um-related{
  margin-top:60px;
  padding-top:42px;
  border-top:1px solid #dedbd2;
}
.um-related>h2{
  font-size:36px;
  margin-bottom:24px;
}
.um-archive-title{
  font-size:clamp(42px,5vw,64px);
  line-height:1;
  letter-spacing:-.06em;
  margin:12px 0 0;
}
.um-resource-card{
  display:flex;
  flex-direction:column;
  min-height:250px;
}
.um-resource-card .um-read-more{
  margin-top:auto;
}
.um-post-card{
  min-height:260px;
}
.um-empty{
  grid-column:1/-1;
  padding:30px;
  border:1px solid #dedbd2;
  border-radius:22px;
  background:#fff;
}
.entry-content{
  max-width:840px;
}
.entry-content h2{
  margin-top:44px;
  font-size:36px;
  line-height:1.15;
}
.entry-content h3{
  margin-top:30px;
  font-size:25px;
  line-height:1.2;
}
.entry-content p,
.entry-content li{
  font-size:18px;
  line-height:1.75;
  color:#555b64;
}
.entry-content ul,
.entry-content ol{
  padding-left:24px;
}
.navigation.pagination{
  margin-top:36px;
}
.nav-links{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.page-numbers{
  display:inline-flex;
  min-width:42px;
  height:42px;
  align-items:center;
  justify-content:center;
  border:1px solid #dedbd2;
  border-radius:12px;
  background:#fff;
  font-weight:800;
}
.page-numbers.current{
  background:#111216;
  color:#fff;
  border-color:#111216;
}
@media(max-width:720px){
  .um-related{margin-top:42px;padding-top:32px}
  .um-related>h2{font-size:30px}
  .um-archive-title{font-size:39px}
  .entry-content h2{font-size:30px}
  .entry-content h3{font-size:23px}
  .entry-content p,.entry-content li{font-size:17px}
}



/* =========================================================
   UNIÓN MOTORS V3.0
   ========================================================= */
.um-whatsapp-float{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:99999;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:58px;
  padding:0 20px;
  border-radius:999px;
  background:#25D366;
  color:#07140b;
  font-weight:950;
  box-shadow:0 16px 40px rgba(0,0,0,.28);
}
.um-whatsapp-float img{
  width:28px;
  height:28px;
}
.um-resource-card{
  transition:transform .18s ease, box-shadow .18s ease;
}
.um-resource-card:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 48px rgba(16,17,20,.10);
}
.um-article-next-step{
  margin-top:54px;
  padding:30px;
  border:1px solid #ded8c9;
  border-radius:24px;
  background:linear-gradient(135deg,#faf6ea,#f2ead8);
}
.um-article-next-step h2{
  margin-top:0;
}
@media(max-width:860px){
  body{
    padding-top:72px;
  }
  .header{
    position:fixed !important;
    top:0;
    left:0;
    right:0;
    z-index:100000;
  }
  body.admin-bar .header{
    top:46px;
  }
  .um-whatsapp-float{
    right:14px;
    bottom:14px;
    width:58px;
    min-width:58px;
    height:58px;
    padding:0;
    border-radius:50%;
  }
  .um-whatsapp-float span{
    display:none;
  }
}
@media(min-width:783px) and (max-width:860px){
  body.admin-bar .header{
    top:32px;
  }
}



/* =========================================================
   UNIÓN MOTORS V4.0 — ARQUITECTURA ESCALABLE
   ========================================================= */
.um-taxonomy-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.um-taxonomy-links a{
  display:inline-flex;
  padding:9px 12px;
  border:1px solid #dedbd2;
  border-radius:999px;
  background:#fff;
  font-size:14px;
  font-weight:850;
}
.um-archive-title{
  max-width:900px;
}
.post-type-archive .um-post-card,
.tax-um_marca .um-post-card,
.tax-um_sistema .um-post-card,
.tax-um_intencion .um-post-card{
  min-height:240px;
}
@media(max-width:720px){
  .um-taxonomy-links{gap:8px}
  .um-taxonomy-links a{font-size:13px}
}


/* V4.0.4 — CTA negro visible en escritorio y móvil */
.header-actions .btn.black,
.header .btn.black{
  display:inline-flex;
  background:#050506;
  color:#fff;
  border-color:#050506;
}

@media(max-width:860px){
  .header-actions{
    display:flex !important;
    align-items:center;
    margin-left:auto;
    flex:0 0 auto;
  }

  .header-actions .btn.black{
    display:inline-flex !important;
    min-height:42px;
    padding:10px 14px;
    font-size:12px;
    white-space:nowrap;
  }
}

@media(max-width:520px){
  .header-actions .btn.black{
    min-height:40px;
    padding:9px 11px;
    font-size:11px;
  }
}


/* V4.0.5 — Carrusel de marcas global */
.um-brands-carousel-section{
  width:100%;
  overflow:hidden;
}
.um-brand-slide{
  cursor:default;
  pointer-events:none;
  user-select:none;
}
.um-brand-slide:hover{
  transform:none;
  border-color:#dedbd2;
}
