/* ==========================================================================
   VERUM SOURCING — hoja de estilos
   Paleta tomada del logo: azul #09407A, rojo #CD1D20, oro #D7AD4E.
   El verde #1CC121 esta reservado a los botones de WhatsApp.
   ========================================================================== */

/* --- tokens ------------------------------------------------------------- */
:root {
  --blue: #09407A;
  --blue-600: #0B4F94;
  --blue-700: #062F5A;
  --blue-050: #EEF3FA;
  --blue-100: #DCE6F2;

  --red: #CD1D20;
  --red-700: #A01818;
  --red-050: #FDECEA;

  --gold: #D7AD4E;
  --gold-700: #A8853A;
  --gold-050: #FBF4E4;

  --wa: #1CC121;
  --wa-700: #179B1B;

  --dark: #151515;
  --ink: #1A2736;
  --muted: #5B6472;
  --line: #E2E8F0;
  --bg: #FFFFFF;
  --bg-soft: #F7F9FC;

  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 2px rgba(9, 64, 122, .06), 0 8px 24px rgba(9, 64, 122, .08);
  --shadow-lg: 0 2px 4px rgba(9, 64, 122, .08), 0 20px 48px rgba(9, 64, 122, .16);
  --wrap: 1180px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

/* --- reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; }

h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

/* --- utilidades --------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
.section { padding-block: clamp(48px, 8vw, 88px); }
.section--soft { background: var(--bg-soft); }
.center { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--blue); color: #fff; padding: 10px 16px;
  border-radius: var(--radius-sm); font-weight: 700; transition: top .2s;
}
.skip-link:focus { top: 12px; }

.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; color: var(--red);
  margin-bottom: 12px;
}
.section-head { max-width: 62ch; margin-bottom: 40px; }
.section-head.center { margin-inline: auto; }
.section-head p { color: var(--muted); margin-top: 12px; font-size: 1.05rem; }
.section--dark .section-head p, .section--dark .eyebrow { color: #C7D0DD; }
.section--dark h2 { color: #fff; }

/* --- botones ------------------------------------------------------------ */
.btn {
  --btn-bg: var(--blue);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 22px; border: 0; border-radius: var(--radius-sm);
  background: var(--btn-bg); color: var(--btn-fg);
  font-weight: 700; font-size: .95rem; cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s;
  box-shadow: 0 2px 8px rgba(9, 64, 122, .18);
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(9,64,122,.28); }
.btn:active { transform: translateY(0); }
.btn--wa { --btn-bg: var(--wa); box-shadow: 0 2px 10px rgba(28, 193, 33, .35); }
.btn--wa:hover { --btn-bg: var(--wa-700); box-shadow: 0 8px 22px rgba(28,193,33,.4); }
.btn--red { --btn-bg: var(--red); box-shadow: 0 2px 10px rgba(205, 29, 32, .3); }
.btn--gold { --btn-bg: var(--gold); --btn-fg: #241a05; box-shadow: 0 2px 10px rgba(215,173,78,.4); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: #fff;
  border: 2px solid rgba(255,255,255,.5); box-shadow: none;
}
.btn--ghost:hover { --btn-bg: rgba(255,255,255,.12); box-shadow: none; }
.btn--outline { --btn-bg: transparent; --btn-fg: var(--blue); border: 2px solid var(--blue-100); box-shadow: none; }
.btn--outline:hover { --btn-bg: var(--blue-050); box-shadow: none; }
.btn--block { width: 100%; }
.btn--sm { padding: 9px 15px; font-size: .85rem; }
.btn svg { width: 19px; height: 19px; flex: none; }

/* --- barra superior ----------------------------------------------------- */
.topbar {
  background: var(--blue-700); color: #DCE6F2;
  font-size: .82rem; border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 38px; }
.topbar__meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar__meta span { display: inline-flex; align-items: center; gap: 6px; }
.topbar__meta svg { width: 14px; height: 14px; opacity: .8; }
.topbar__tag { color: var(--gold); font-weight: 700; letter-spacing: .04em; }
.topbar a { color: #fff; font-weight: 700; }
.topbar a:hover { color: var(--gold); }

/* --- cabecera ----------------------------------------------------------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; gap: 20px; min-height: 74px; }

.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand:hover { text-decoration: none; }
.brand__mark {
  width: 46px; height: 46px; flex: none;
  border-radius: 10px; object-fit: contain;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name {
  font-size: 1.2rem; font-weight: 900; letter-spacing: -.02em;
  color: var(--blue); text-transform: uppercase;
}
.brand__legal { font-size: .64rem; color: var(--muted); letter-spacing: .05em; text-transform: uppercase; }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 4px; }
.nav__link {
  display: block; padding: 9px 13px; border-radius: var(--radius-sm);
  color: var(--ink); font-weight: 600; font-size: .93rem;
}
.nav__link:hover { background: var(--blue-050); color: var(--blue); text-decoration: none; }
.nav__link[aria-current="page"] { color: var(--blue); background: var(--blue-050); }

.header__cta { margin-left: 8px; }
.nav-toggle {
  display: none; margin-left: auto; width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: var(--blue-050); border: 0; border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle svg { width: 24px; height: 24px; color: var(--blue); }

@media (max-width: 940px) {
  .nav-toggle { display: flex; }
  .header__cta { display: none; }
  .nav {
    position: absolute; inset: 100% 0 auto; margin: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg); padding: 10px 20px 18px;
    display: none;
  }
  .nav.is-open { display: block; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav__link { padding: 12px 14px; font-size: 1rem; }
  .nav__link.btn { margin-top: 10px; justify-content: center; }
}
@media (max-width: 620px) {
  .topbar__tag, .topbar__meta span:nth-child(n+2) { display: none; }
}

/* --- hero --------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 520px at 88% -10%, rgba(215,173,78,.20), transparent 60%),
    linear-gradient(155deg, var(--blue-700) 0%, var(--blue) 46%, #0B4F94 100%);
  color: #fff;
  padding-block: clamp(56px, 9vw, 104px);
}
.hero::after {
  content: ""; position: absolute; right: -140px; bottom: -180px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(205,29,32,.20), transparent 65%);
  pointer-events: none;
}
.hero__grid { position: relative; z-index: 1; display: grid; gap: 44px; align-items: center; }
@media (min-width: 900px) { .hero__grid { grid-template-columns: 1.08fr .92fr; gap: 56px; } }

.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  padding: 7px 15px; border-radius: 999px;
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
.hero__badge svg { width: 15px; height: 15px; color: var(--gold); }
.hero h1 { margin-block: 20px 18px; }
.hero h1 em {
  font-style: normal; color: var(--gold);
  display: block;
}
.hero__lead {
  font-size: clamp(1.02rem, 1.9vw, 1.2rem);
  color: rgba(255,255,255,.9); max-width: 54ch;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 44px; padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.18);
  max-width: 540px;
}
.hero__stat b { display: block; font-size: clamp(1.5rem, 3.4vw, 2.1rem); color: var(--gold); line-height: 1; }
.hero__stat span { font-size: .8rem; color: rgba(255,255,255,.78); }

/* collage de vehiculos del hero */
.hero__showcase { position: relative; }
.hero__card {
  background: #fff; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.hero__card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.hero__body { padding: 18px 20px 20px; }
.hero__body h3 { font-size: 1.08rem; color: var(--blue); }
.hero__body p { font-size: .85rem; color: var(--muted); margin-top: 5px; }
.hero__price {
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line);
}
.hero__price b { font-size: 1.35rem; color: var(--red); font-weight: 900; }
.hero__price span { font-size: .82rem; color: var(--muted); }
.hero__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }

.tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--blue-050); color: var(--blue);
  border-radius: 999px; padding: 4px 11px;
  font-size: .74rem; font-weight: 700;
}
.tag--gold { background: var(--gold-050); color: var(--gold-700); }
.tag--red { background: var(--red-050); color: var(--red-700); }
.tag--ok { background: #E3F2EA; color: #0B6B3A; }
.tag--dot::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: currentColor; flex: none;
}

/* franja de marcas */
.marquee { background: var(--dark); padding-block: 20px; overflow: hidden; }
.marquee__label {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: #8A93A3; text-align: center; margin-bottom: 14px;
}
.marquee__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 12px; }
.marquee__list li {
  border: 1px solid rgba(255,255,255,.14); border-radius: 999px;
  padding: 7px 18px; color: #fff; font-weight: 700; font-size: .9rem;
}

/* --- pasos / como funciona --------------------------------------------- */
.steps { display: grid; gap: 20px; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 26px 26px;
  box-shadow: var(--shadow);
}
.step__num {
  position: absolute; top: -20px; left: 26px;
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--blue); color: var(--gold);
  font-size: 1.15rem; font-weight: 900;
  border: 3px solid var(--bg-soft);
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .95rem; }

/* --- rejilla de servicios ---------------------------------------------- */
.cards { display: grid; gap: 20px; }
@media (min-width: 680px) { .cards--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 680px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1040px) { .cards--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 24px;
  box-shadow: var(--shadow);
}
.card h3 { margin-bottom: 9px; }
.card p { color: var(--muted); font-size: .93rem; }
.card__icon {
  width: 50px; height: 50px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 16px;
  background: var(--blue-050); color: var(--blue);
}
.card__icon svg { width: 25px; height: 25px; }
.card__icon--red { background: var(--red-050); color: var(--red); }
.card__icon--gold { background: var(--gold-050); color: var(--gold-700); }
.card__icon--wa { background: #E3F2EA; color: var(--wa-700); }

.card--feature {
  display: flex; flex-direction: column;
  background: var(--dark); border-color: #1F1F1F; color: #fff;
}
.card--feature h3 { color: #fff; }
.card--feature p { color: #A0A4A8; }
.card--feature .card__icon { background: rgba(255,255,255,.08); color: var(--gold); }
.card--feature .btn { margin-top: auto; align-self: flex-start; }

/* --- catalogo ----------------------------------------------------------- */
.catalog-toolbar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  padding: 16px; margin-bottom: 28px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  padding: 8px 16px; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--blue-100); background: #fff;
  color: var(--ink); font-weight: 700; font-size: .87rem;
  transition: background .15s, color .15s, border-color .15s;
}
.pill:hover { background: var(--blue-050); }
.pill[aria-pressed="true"] { background: var(--blue); border-color: var(--blue); color: #fff; }
.pill b { opacity: .6; font-weight: 700; margin-left: 3px; }

.catalog-toolbar__right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.field-inline { display: flex; align-items: center; gap: 7px; font-size: .85rem; color: var(--muted); }
.field-inline input, .select {
  padding: 8px 11px; border: 1px solid var(--line);
  border-radius: var(--radius-sm); background: #fff; font-size: .88rem;
}
.field-inline input { width: 110px; }
.select { cursor: pointer; }

.vgrid { display: grid; gap: 22px; }
@media (min-width: 560px) { .vgrid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .vgrid { grid-template-columns: repeat(3, 1fr); } }

.vcard {
  display: flex; flex-direction: column; overflow: hidden;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.vcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.vcard__media { position: relative; background: var(--bg-soft); }
.vcard__media img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  transition: transform .4s;
}
.vcard:hover .vcard__media img { transform: scale(1.04); }
.vcard__badges { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; }
.vcard__badges .tag { box-shadow: 0 1px 6px rgba(0,0,0,.18); }
.vcard__body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.vcard__cat {
  font-size: .7rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 5px;
}
.vcard__title { font-size: 1.08rem; margin-bottom: 3px; }
.vcard__variant { font-size: .82rem; color: var(--muted); margin-bottom: 14px; }
.vcard__specs { display: grid; gap: 7px; margin-bottom: 16px; }
.vcard__spec {
  display: flex; gap: 8px; align-items: baseline;
  font-size: .82rem; padding-left: 11px;
  border-left: 3px solid var(--gold);
}
.vcard__spec b { color: var(--muted); font-weight: 600; }
.vcard__spec span { color: var(--ink); font-weight: 700; }
.vcard__price {
  margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 10px;
}
.vcard__price small { display: block; font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; }
.vcard__price b { font-size: 1.22rem; font-weight: 900; color: var(--red); }
.vcard__price em { font-style: normal; font-size: .78rem; color: var(--muted); }

.empty {
  grid-column: 1 / -1; text-align: center; padding: 60px 20px;
  color: var(--muted); background: var(--bg-soft);
  border: 1px dashed var(--line); border-radius: var(--radius);
}
.skeleton { height: 380px; border-radius: var(--radius); background: linear-gradient(100deg, #EFF3F8 30%, #E3EAF3 50%, #EFF3F8 70%); background-size: 220% 100%; animation: sk 1.3s linear infinite; }
@keyframes sk { to { background-position: -120% 0; } }

/* --- detalle de producto ------------------------------------------------ */
.pdetail { padding-block: 34px 64px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: .84rem; color: var(--muted); margin-bottom: 22px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--blue); }

.pgallery { display: grid; gap: 14px; }
.pgallery__main {
  border-radius: var(--radius); overflow: hidden;
  background: var(--bg-soft); border: 1px solid var(--line);
}
.pgallery__main img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.pgallery__thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.pgallery__thumbs button {
  padding: 0; border: 2px solid transparent; border-radius: var(--radius-sm);
  overflow: hidden; background: var(--bg-soft); cursor: pointer; line-height: 0;
}
.pgallery__thumbs button[aria-selected="true"] { border-color: var(--blue); }
.pgallery__thumbs img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.pinfo__head { margin-bottom: 22px; }
.pinfo__head h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
.pinfo__variant { color: var(--muted); margin-top: 7px; }
.pinfo__badges { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.pinfo__desc { color: var(--muted); margin-top: 16px; }

.pbox {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow);
}
.pbox + .pbox { margin-top: 18px; }
.pbox__title {
  font-size: .76rem; font-weight: 800; letter-spacing: .11em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 14px;
}
.quote {
  background: var(--dark); color: #fff; border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-lg);
}
.quote__price { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.quote__price b { font-size: 2.1rem; font-weight: 900; color: var(--gold); line-height: 1; }
.quote__price span { color: #A0A4A8; font-size: .88rem; }
.quote__usd { color: #fff; font-size: 1.02rem; font-weight: 700; margin-top: 4px; }
.quote__note { font-size: .76rem; color: #8A93A3; margin-top: 10px; line-height: 1.5; }
.quote__actions { display: grid; gap: 10px; margin-top: 20px; }
.quote__breakdown { margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.14); font-size: .8rem; }
.quote__breakdown div { display: flex; justify-content: space-between; padding: 3px 0; color: #A0A4A8; }
.quote__breakdown b { color: #fff; font-weight: 700; }

.kv { display: grid; gap: 0; }
.kv div {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: .89rem;
}
.kv div:last-child { border-bottom: 0; }
.kv dt { color: var(--muted); }
.kv dd { font-weight: 700; text-align: right; }

.spec-group + .spec-group { margin-top: 22px; }
.spec-group h4 {
  font-size: .82rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--blue);
  padding-bottom: 8px; margin-bottom: 6px; border-bottom: 2px solid var(--blue-100);
}
.spec-group div {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 12px;
  padding: 7px 0; border-bottom: 1px solid var(--line); font-size: .88rem;
}
.spec-group dt { color: var(--muted); }
.spec-group dd { font-weight: 600; }

.pdetail__grid { display: grid; gap: 30px; }
@media (min-width: 940px) { .pdetail__grid { grid-template-columns: 1.25fr .75fr; align-items: start; } }
.pdetail__aside { position: sticky; top: 96px; }
@media (max-width: 939px) { .pdetail__aside { position: static; } }

/* --- proveedores -------------------------------------------------------- */
.prov {
  display: grid; gap: 26px; align-items: start;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow);
}
@media (min-width: 860px) { .prov { grid-template-columns: 200px 1fr; } }
.prov__logo {
  display: grid; place-items: center; padding: 24px 16px;
  border-radius: var(--radius); background: var(--dark); color: #fff;
}
.prov__logo b { font-size: 1.6rem; font-weight: 900; letter-spacing: -.02em; }
.prov__logo span { font-size: .7rem; color: #8A93A3; letter-spacing: .1em; text-transform: uppercase; }
.prov h3 { font-size: 1.35rem; }
.prov__meta { color: var(--muted); font-size: .88rem; margin-top: 5px; }
.brandlist { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.brandlist li {
  background: var(--blue-050); color: var(--blue);
  border-radius: var(--radius-sm); padding: 9px 17px;
  font-weight: 800; font-size: .9rem;
}
.prov__note {
  margin-top: 20px; padding: 14px 16px; border-radius: var(--radius-sm);
  background: var(--gold-050); border-left: 3px solid var(--gold);
  font-size: .88rem; color: var(--gold-700);
}

/* --- objetivo / mas informacion ---------------------------------------- */
.mission {
  background: var(--dark); color: #fff; border-radius: var(--radius);
  padding: clamp(30px, 5vw, 54px); box-shadow: var(--shadow-lg);
  border-left: 6px solid var(--gold);
}
.mission p { font-size: clamp(1.1rem, 2.4vw, 1.5rem); line-height: 1.5; font-weight: 600; }
.mission cite { display: block; margin-top: 18px; font-style: normal; color: var(--gold); font-weight: 700; font-size: .9rem; }

.audience { display: grid; gap: 14px; }
@media (min-width: 620px) { .audience { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .audience { grid-template-columns: repeat(4, 1fr); } }
.audience li {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 20px; text-align: center; font-weight: 800;
  box-shadow: var(--shadow); display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.audience svg { width: 30px; height: 30px; color: var(--blue); }
.audience small { display: block; font-weight: 500; color: var(--muted); font-size: .82rem; }

.timeline { display: grid; gap: 0; }
.timeline li {
  position: relative; padding: 0 0 30px 34px; border-left: 2px solid var(--blue-100);
}
.timeline li:last-child { border-left-color: transparent; padding-bottom: 0; }
.timeline li::before {
  content: ""; position: absolute; left: -9px; top: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold); border: 3px solid #fff; box-shadow: 0 0 0 1px var(--gold);
}
.timeline h3 { font-size: 1.05rem; margin-bottom: 5px; }
.timeline p { color: var(--muted); font-size: .92rem; }

.cta-band { background: linear-gradient(120deg, var(--blue-700), var(--blue)); color: #fff; }
.cta-band__inner { display: grid; gap: 24px; align-items: center; }
@media (min-width: 800px) { .cta-band__inner { grid-template-columns: 1fr auto; } }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.85); margin-top: 9px; }
.cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* --- formulario --------------------------------------------------------- */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(24px, 4vw, 38px); box-shadow: var(--shadow-lg);
}
.form-grid { display: grid; gap: 16px; }
@media (min-width: 620px) { .form-grid--2 { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-size: .82rem; font-weight: 700; margin-bottom: 6px; }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; font-size: .95rem;
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { min-height: 108px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(9,64,122,.13);
}
.field small { display: block; margin-top: 5px; font-size: .76rem; color: var(--muted); }
.field--full { grid-column: 1 / -1; }
.hp { position: absolute; left: -9999px; }

.form-note {
  display: flex; gap: 10px; align-items: flex-start;
  margin-top: 18px; padding: 14px 16px; border-radius: var(--radius-sm);
  background: var(--blue-050); font-size: .85rem; color: var(--blue-700);
}
.form-note svg { width: 18px; height: 18px; flex: none; margin-top: 2px; }

.alert { margin-top: 18px; padding: 15px 17px; border-radius: var(--radius-sm); font-size: .9rem; }
.alert--ok { background: #E3F2EA; color: #0B6B3A; border-left: 3px solid var(--wa-700); }
.alert--err { background: var(--red-050); color: var(--red-700); border-left: 3px solid var(--red); }
.alert[hidden] { display: none; }

.contact-list { display: grid; gap: 14px; }
.contact-list li {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px 20px; box-shadow: var(--shadow);
}
.contact-list svg { width: 22px; height: 22px; color: var(--blue); flex: none; margin-top: 2px; }
.contact-list b { display: block; font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; }
.contact-list a { font-weight: 700; }
.contact-list p { font-size: .92rem; }

/* --- footer ------------------------------------------------------------- */
.footer { background: var(--dark); color: #A0A4A8; padding-block: 52px 26px; font-size: .9rem; }
.footer__grid { display: grid; gap: 32px; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.footer h4 {
  color: #fff; font-size: .8rem; letter-spacing: .11em;
  text-transform: uppercase; margin-bottom: 14px;
}
.footer a { color: #A0A4A8; }
.footer a:hover { color: #fff; }
.footer__list { display: grid; gap: 8px; }
.footer .brand__name { color: #fff; }
.footer .brand__legal { color: #8A93A3; }
.footer__about { margin-top: 14px; max-width: 42ch; }
.footer__bottom {
  margin-top: 36px; padding-top: 22px; border-top: 1px solid #262626;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: .8rem; color: #6B7280;
}
.footer__wa { display: inline-flex; align-items: center; gap: 8px; color: var(--wa) !important; font-weight: 800; }
.footer__wa svg { width: 18px; height: 18px; }

/* aviso de precio en el catalogo */
.disclaimer {
  margin-top: 26px; padding: 16px 18px; border-radius: var(--radius-sm);
  background: var(--red-050); border-left: 3px solid var(--red);
  font-size: .84rem; color: var(--red-700);
}
.disclaimer b { display: block; margin-bottom: 4px; }

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