/* baseatic (Premium B2B) */
:root{
  --bg:#fff;
  --surface:#fff;
  --surface-2:#F7F8FA;

  --text:#0B0F14;
  --muted:#5B6776;
  --border:rgba(11,15,20,.12);

  --gold:#C9A44C;
  --gold-2:#E6D29A;
  --ink:#111318;

  --radius-sm:12px;
  --radius-md:18px;

  --container:1160px;
  --pad:20px;

  --shadow-sm:0 10px 30px rgba(2,6,23,.08);
  --shadow-md:0 18px 55px rgba(2,6,23,.14);
}

*,
*::before,
*::after{ box-sizing:border-box; }

html,body{ margin:0; padding:0; }

body{
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }

.container{
  width:min(var(--container), calc(100% - (var(--pad) * 2)));
  margin:0 auto;
}

:focus-visible{
  outline: 2px solid rgba(201,164,76,.6);
  outline-offset: 3px;
  border-radius: 10px;
}

/* =========================================================
GLOBAL — FIX OVERFLOW HORIZONTAL (MÓVIL)
========================================================= */
html, body{
  max-width: 100%;
  overflow-x: hidden;
}