:root {
  --red: #D81E24;
  --red-dark: #A5151A;
  --red-soft: #FCE7E8;
  --ink: #101A28;
  --navy: #0B1220;
  --text: #16202E;
  --body: #48545F;
  --muted: #5A6674;
  --faint: #7A8694;
  --line: #E6EAF0;
  --line-2: #DDE4EC;
  --bg-soft: #F5F7FA;
  --bg-blue: #EDF2F7;
  --blue: #1B4C9B;
  --header-h: 78px;
  --pad: 24px;
  --max: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: Barlow, system-ui, sans-serif; color: var(--text); background: #fff; -webkit-font-smoothing: antialiased; overflow-x: clip; }
img { display: block; max-width: 100%; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }
h1, h2, h3, h4 { margin: 0; font-family: Archivo, system-ui, sans-serif; }
p { margin: 0; text-wrap: pretty; }
ul { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
[id] { scroll-margin-top: calc(var(--header-h) + 8px); }

.skip { position: absolute; left: 12px; top: -60px; background: var(--ink); color: #fff; padding: 10px 14px; z-index: 100; font-weight: 600; }
.skip:focus { top: 12px; color: #fff; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: 76px 0; }
.section.tight { padding: 56px 0; }
.bg-soft { background: var(--bg-soft); }
.bg-blue { background: var(--bg-blue); }

/* ---------- Type helpers ---------- */
.label { display: flex; align-items: center; gap: 10px; font-family: Archivo, sans-serif; font-size: 11px; letter-spacing: 0.2em; font-weight: 700; color: var(--red); text-transform: uppercase; }
.label::before { content: ""; display: block; width: 22px; height: 2px; background: currentColor; flex: 0 0 auto; }
.label.light { color: #FFD3D4; }
.h2 { margin-top: 14px; font-size: clamp(28px, 3.6vw, 42px); font-weight: 800; line-height: 1.08; letter-spacing: -0.01em; color: var(--ink); text-transform: uppercase; }
.h2 em, .h1 em { font-style: normal; color: var(--red); }
.kicker { font-family: Archivo, sans-serif; font-size: 11px; letter-spacing: 0.16em; font-weight: 600; color: var(--faint); line-height: 1.9; text-transform: uppercase; }
.lead { font-size: 17px; line-height: 1.7; color: var(--body); }
.muted { color: var(--muted); }
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 28px; flex-wrap: wrap; }
.sec-head .kicker { text-align: right; }
.sec-head + * { margin-top: 36px; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px; font-family: Archivo, sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; padding: 16px 26px; min-height: 48px; border: 1px solid transparent; cursor: pointer; transition: background .18s, color .18s, border-color .18s; white-space: nowrap; }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); color: #fff; }
.btn-ghost { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.45); color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--navy); }
.btn-line { background: #fff; border-color: var(--line-2); color: var(--ink); }
.btn-line:hover { border-color: var(--red); color: var(--red); }
.btn-white { background: #fff; color: #96161A; }
.btn-white:hover { background: var(--ink); color: #fff; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-family: Archivo, sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }
.link-arrow span { transition: transform .18s; }
.link-arrow:hover span { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--line); }
.header-in { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: block; flex: 0 0 auto; }
.brand img { width: 150px; height: auto; }
.nav { display: flex; align-items: center; gap: 22px; white-space: nowrap; }
.nav a { font-size: 14.5px; font-weight: 600; color: #26313F; padding: 6px 0; border-bottom: 2px solid transparent; }
.nav a:hover { color: var(--red); }
.nav a[aria-current="page"] { color: var(--red); border-bottom-color: var(--red); }
.header-actions { display: flex; align-items: center; gap: 14px; flex: 0 0 auto; }
.lang { display: flex; border: 1px solid var(--line-2); }
.lang a { font-family: Archivo, sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; padding: 0 12px; min-height: 38px; display: flex; align-items: center; color: var(--muted); background: #fff; }
.lang a[aria-current="true"] { background: var(--ink); color: #fff; }
.lang a:not([aria-current="true"]):hover { color: var(--red); }
.header-cta { font-size: 11.5px; padding: 0 22px; min-height: 46px; letter-spacing: 0.05em; }
.menu-btn { display: none; width: 46px; height: 46px; border: 1px solid var(--line-2); background: #fff; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.menu-btn span { display: block; width: 20px; height: 2px; background: var(--ink); transition: transform .2s, opacity .2s; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; border-top: 1px solid var(--line); padding: 6px var(--pad) 18px; background: #fff; max-height: calc(100dvh - var(--header-h)); overflow-y: auto; }
.mobile-menu a:not(.btn) { display: block; font-size: 16px; font-weight: 600; color: #26313F; padding: 13px 0; border-bottom: 1px solid #F0F3F7; }
.mobile-menu a[aria-current="page"] { color: var(--red); }
.mobile-menu .btn { width: 100%; margin-top: 16px; }
.site-header.open .mobile-menu { display: block; }

/* ---------- Home hero ---------- */
.hero { position: relative; background: var(--navy); min-height: 640px; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-bg, .hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,14,24,0.94) 0%, rgba(8,14,24,0.86) 42%, rgba(8,14,24,0.30) 100%); }
.hero .wrap { position: relative; z-index: 1; width: 100%; padding-top: 88px; padding-bottom: 88px; }
.hero-content { max-width: 680px; }
.eyebrow { font-family: Archivo, sans-serif; font-size: 13px; letter-spacing: 0.22em; color: #B9C4D2; font-weight: 600; line-height: 1.7; text-transform: uppercase; }
.h1 { margin-top: 24px; font-size: clamp(34px, 5.2vw, 62px); font-weight: 800; line-height: 1.02; letter-spacing: -0.02em; color: #fff; text-transform: uppercase; }
.h1 em { color: #E8272D; }
.hero-sub { margin-top: 26px; font-size: 17px; line-height: 1.65; color: #D3DBE5; max-width: 540px; }
.hero-ctas { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-side { position: absolute; right: var(--pad); bottom: 40px; z-index: 1; font-family: Archivo, sans-serif; font-size: 12px; letter-spacing: 0.18em; color: rgba(255,255,255,0.8); line-height: 2; text-align: right; }

/* ---------- Page hero (internal) ---------- */
.page-hero { position: relative; background: var(--navy); color: #fff; overflow: hidden; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,14,24,0.95) 0%, rgba(8,14,24,0.85) 50%, rgba(8,14,24,0.45) 100%); }
.page-hero .wrap { position: relative; z-index: 1; padding-top: 78px; padding-bottom: 78px; }
.page-hero .label { color: #FF8A8E; }
.page-hero h1 { margin-top: 16px; font-size: clamp(32px, 4.6vw, 54px); font-weight: 800; line-height: 1.04; letter-spacing: -0.015em; text-transform: uppercase; max-width: 820px; }
.page-hero h1 em { font-style: normal; color: #E8272D; }
.page-hero p { margin-top: 20px; font-size: 17px; line-height: 1.65; color: #D3DBE5; max-width: 620px; }
.crumbs { font-size: 13px; color: #9AA7B6; margin-bottom: 22px; }
.crumbs a { color: #C9D2DD; }
.crumbs a:hover { color: #fff; }

/* ---------- Stats ---------- */
.stats { background: #fff; border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-top: 32px; padding-bottom: 32px; }
.stat { display: flex; align-items: center; gap: 16px; }
.stat svg { width: 30px; height: 30px; flex: 0 0 auto; }
.stat-num { font-family: Archivo, sans-serif; font-size: 32px; font-weight: 800; line-height: 1; color: var(--ink); }
.stat-num.word { font-size: 22px; line-height: 1.1; }
.stat-txt { font-size: 12px; letter-spacing: 0.08em; color: var(--muted); font-weight: 600; margin-top: 6px; text-transform: uppercase; }

/* Big stat cards (internal pages) */
.num-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.num-card { background: #fff; border: 1px solid var(--line); padding: 26px 22px; border-top: 3px solid var(--red); }
.num-card b { display: block; font-family: Archivo, sans-serif; font-size: 34px; font-weight: 800; color: var(--ink); line-height: 1; }
.num-card b.word { font-size: 22px; line-height: 1.15; }
.num-card span { display: block; margin-top: 10px; font-family: Archivo, sans-serif; font-size: 12px; letter-spacing: 0.1em; font-weight: 700; color: var(--red); text-transform: uppercase; }
.num-card p { margin-top: 10px; font-size: 14.5px; line-height: 1.6; color: var(--muted); }

/* ---------- Cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.sol-card { display: block; background: #fff; border: 1px solid var(--line); overflow: hidden; transition: border-color .18s, transform .18s, box-shadow .18s; }
.sol-card:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: 0 10px 24px rgba(16,26,40,0.08); }
.sol-card .ph { height: 170px; overflow: hidden; }
.sol-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.sol-card:hover .ph img { transform: scale(1.04); }
.sol-card .body { padding: 20px; display: flex; align-items: center; gap: 14px; }
.sol-card .body svg { width: 26px; height: 26px; flex: 0 0 auto; }
.sol-card .body strong { flex: 1; font-family: Archivo, sans-serif; font-size: 16px; font-weight: 700; color: var(--ink); line-height: 1.25; }
.sol-card .body .arr { color: var(--red); font-size: 18px; transition: transform .18s; }
.sol-card:hover .arr { transform: translateX(4px); }

.icon-card { background: #fff; border: 1px solid var(--line); padding: 26px 24px; transition: border-color .18s, box-shadow .18s; }
.icon-card:hover { border-color: #F2B8BA; box-shadow: 0 8px 22px rgba(16,26,40,0.06); }
.icon-card .ic { width: 50px; height: 50px; border-radius: 50%; background: var(--red-soft); display: flex; align-items: center; justify-content: center; }
.icon-card .ic svg { width: 24px; height: 24px; }
.icon-card h3 { margin-top: 18px; font-size: 17px; font-weight: 800; color: var(--ink); letter-spacing: 0.01em; }
.icon-card p { margin-top: 8px; font-size: 15px; line-height: 1.6; color: var(--muted); }
.icon-card ul { margin-top: 12px; display: grid; gap: 6px; }
.icon-card li { font-size: 14.5px; color: #303B48; display: flex; gap: 8px; }
.icon-card li::before { content: "—"; color: var(--red); }

.checks { display: grid; gap: 12px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; line-height: 1.45; color: #303B48; }
.checks li::before { content: "✓"; color: var(--red); font-weight: 700; flex: 0 0 auto; }
.checks.cols { grid-template-columns: repeat(2, 1fr); column-gap: 28px; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips li { font-family: Archivo, sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.04em; color: var(--ink); background: #fff; border: 1px solid var(--line-2); padding: 10px 14px; }
.chips.dark li { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.2); color: #fff; }

/* ---------- Esencia split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.split-text { padding: 72px 48px 72px var(--pad); max-width: calc(var(--max) / 2); margin-left: auto; width: 100%; }
.split-media { position: relative; min-height: 380px; }
.split-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.badge { position: absolute; right: 0; bottom: 0; background: rgba(11,18,32,0.84); padding: 18px 22px; font-family: Archivo, sans-serif; font-size: 11px; letter-spacing: 0.16em; font-weight: 600; color: #fff; line-height: 1.9; text-transform: uppercase; }
.pills { margin-top: 28px; padding-top: 20px; border-top: 1px solid #D6DEE7; font-family: Archivo, sans-serif; font-size: 13px; font-weight: 600; color: #26313F; letter-spacing: 0.02em; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; position: relative; }
.step { text-align: center; position: relative; }
.step .circle { width: 78px; height: 78px; border-radius: 50%; margin: 0 auto; display: flex; align-items: center; justify-content: center; background: var(--red-soft); }
.step .circle svg { width: 28px; height: 28px; }
.step:first-child .circle { background: var(--red); }
.step:first-child .circle svg { stroke: #fff; }
.step .n { margin-top: 20px; font-family: Archivo, sans-serif; font-size: 26px; font-weight: 800; color: var(--ink); }
.step h3 { margin-top: 6px; font-size: 14px; font-weight: 700; letter-spacing: 0.12em; color: var(--red); }
.step p { margin-top: 10px; font-size: 15px; line-height: 1.6; color: var(--muted); }
.step p + p { margin-top: 4px; font-size: 14px; color: var(--faint); }
.steps.arrows .step:not(:last-child)::after { content: "→"; position: absolute; top: 26px; right: -22px; color: var(--red); font-size: 22px; }

/* 8-stage flow */
.flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); background: #fff; }
.flow li { padding: 26px 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.flow li:nth-child(4n) { border-right: 0; }
.flow li:nth-last-child(-n+4) { border-bottom: 0; }
.flow b { display: block; font-family: Archivo, sans-serif; font-size: 13px; letter-spacing: 0.12em; color: var(--red); font-weight: 800; }
.flow h3 { margin-top: 8px; font-size: 17px; font-weight: 800; color: var(--ink); text-transform: uppercase; }
.flow p { margin-top: 8px; font-size: 14.5px; line-height: 1.55; color: var(--muted); }

/* ---------- Sector cards ---------- */
.sector { border: 1px solid var(--line); background: #fff; display: flex; flex-direction: column; transition: border-color .18s, box-shadow .18s; }
.sector:hover { border-color: #F2B8BA; box-shadow: 0 8px 22px rgba(16,26,40,0.06); }
.sector .ph { position: relative; height: 240px; overflow: hidden; }
.sector .ph img { width: 100%; height: 100%; object-fit: cover; }
.sector .tag { position: absolute; top: 0; left: 0; background: #fff; padding: 12px 18px; display: flex; align-items: center; gap: 10px; font-family: Archivo, sans-serif; font-size: 15px; font-weight: 700; letter-spacing: 0.04em; color: var(--ink); }
.sector .tag svg { width: 20px; height: 20px; }
.sector .body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.sector .foot { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.sector .checks { margin-bottom: 22px; }

/* ---------- Suppliers ---------- */
.prov-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.prov-names { display: flex; flex-wrap: wrap; gap: 14px 30px; justify-content: flex-end; margin-top: 14px; }
.prov-names li { font-family: Archivo, sans-serif; font-size: 21px; font-weight: 700; color: var(--ink); }
.prov-right { text-align: right; }
.prov-right .kicker + .kicker { margin-top: 20px; }
.prov-foot { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line-2); }
.logo-wall { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.logo-wall li { background: #fff; border: 1px solid var(--line); min-height: 120px; display: flex; align-items: center; justify-content: center; padding: 20px; font-family: Archivo, sans-serif; font-size: 22px; font-weight: 800; color: var(--ink); letter-spacing: 0.02em; text-align: center; }
.refs { display: flex; gap: 18px; flex-wrap: wrap; }
.refs li { flex: 1 1 200px; background: #fff; border: 1px solid var(--line); padding: 28px; display: flex; align-items: center; justify-content: center; font-family: Archivo, sans-serif; font-size: 28px; font-weight: 800; letter-spacing: 0.04em; color: var(--ink); }

/* ---------- Mission / values ---------- */
.mv { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.mv-card { background: var(--ink); color: #fff; padding: 36px 32px; position: relative; overflow: hidden; }
.mv-card::before { content: ""; position: absolute; left: 0; top: 0; width: 4px; height: 100%; background: var(--red); }
.mv-card h3 { font-size: 14px; letter-spacing: 0.2em; color: #FF8A8E; font-weight: 800; }
.mv-card p { margin-top: 14px; font-size: 17px; line-height: 1.65; color: #E3E8EF; }
.philo { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); }
.philo li { padding: 30px 26px; border-right: 1px solid var(--line); background: #fff; }
.philo li:last-child { border-right: 0; }
.philo h3 { font-size: 22px; font-weight: 800; color: var(--ink); }
.philo li:last-child h3 { color: var(--red); }
.philo p { margin-top: 10px; font-size: 15px; line-height: 1.6; color: var(--muted); }
.quote { font-family: Archivo, sans-serif; font-size: clamp(20px, 2.4vw, 28px); font-weight: 700; line-height: 1.35; color: var(--ink); max-width: 880px; }
.quote em { font-style: normal; color: var(--red); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; background: #7A1418; color: #fff; overflow: hidden; }
.cta-band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(150,22,26,0.93) 0%, rgba(150,22,26,0.74) 55%, rgba(30,10,12,0.55) 100%); }
.cta-band .wrap { position: relative; z-index: 1; padding-top: 72px; padding-bottom: 72px; display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { margin-top: 16px; font-size: clamp(28px, 3.8vw, 46px); font-weight: 800; line-height: 1.08; color: #fff; text-transform: uppercase; }
.cta-band h2 span { color: #FFC9CB; }
.cta-band p.sub { margin-top: 14px; font-size: 16.5px; line-height: 1.6; color: #FFE3E4; max-width: 560px; }
.cta-band .btns { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }
.cta-side { font-family: Archivo, sans-serif; font-size: 11px; letter-spacing: 0.18em; font-weight: 600; color: rgba(255,255,255,0.85); line-height: 2; text-align: right; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.45fr 1fr; gap: 40px; align-items: start; }
.form { background: #fff; border: 1px solid var(--line); padding: 34px; }
.form h2 { font-size: 24px; font-weight: 800; color: var(--ink); text-transform: uppercase; }
.form .intro { margin-top: 8px; color: var(--muted); font-size: 15px; line-height: 1.6; }
.fields { margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: Archivo, sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; color: #26313F; text-transform: uppercase; }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea { width: 100%; border: 1px solid var(--line-2); background: #fff; padding: 13px 14px; font-size: 16px; color: var(--text); border-radius: 0; min-height: 48px; transition: border-color .15s, box-shadow .15s; -webkit-appearance: none; appearance: none; }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%23D81E24' stroke-width='1.8'%3E%3Cpath d='m1 1 5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(16,26,40,0.08); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--red); background: #FFF8F8; }
.field .err { display: none; font-size: 13px; color: var(--red); font-weight: 600; }
.field.invalid .err { display: block; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-foot { margin-top: 22px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form-foot small { color: var(--faint); font-size: 13px; }
.form .btn[disabled] { opacity: .6; cursor: wait; }
.alert { margin-top: 20px; padding: 16px 18px; font-size: 15px; line-height: 1.55; border-left: 4px solid; display: none; }
.alert.show { display: block; }
.alert.ok { background: #EEF8F1; border-color: #1E8E4E; color: #14532D; }
.alert.bad { background: #FFF3F3; border-color: var(--red); color: #7A1418; }
.alert a { font-weight: 700; }
.info-card { background: var(--ink); color: #fff; padding: 32px 30px; }
.info-card h2 { font-size: 20px; font-weight: 800; text-transform: uppercase; }
.info-card .tag { margin-top: 6px; font-size: 12px; letter-spacing: 0.16em; color: #9AA7B6; font-weight: 600; }
.info-row { display: flex; gap: 14px; margin-top: 24px; align-items: flex-start; }
.info-row svg { width: 22px; height: 22px; flex: 0 0 auto; margin-top: 2px; }
.info-row b { display: block; font-family: Archivo, sans-serif; font-size: 11px; letter-spacing: 0.16em; color: #FF8A8E; font-weight: 700; text-transform: uppercase; }
.info-row p, .info-row a { margin-top: 4px; color: #E3E8EF; font-size: 15.5px; line-height: 1.6; }
.info-row a:hover { color: #fff; text-decoration: underline; }
.info-note { margin-top: 18px; background: var(--bg-soft); border: 1px solid var(--line); padding: 22px; }
.info-note h3 { font-size: 15px; font-weight: 800; color: var(--ink); text-transform: uppercase; letter-spacing: 0.04em; }
.info-note p { margin-top: 8px; font-size: 14.5px; line-height: 1.6; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: #fff; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1.2fr 1fr 0.9fr; gap: 28px; align-items: center; padding-top: 38px; padding-bottom: 38px; }
.footer-grid .brand img { width: 170px; }
.f-row { display: flex; gap: 12px; align-items: flex-start; }
.f-row svg { width: 20px; height: 20px; flex: 0 0 auto; margin-top: 2px; }
.f-row p, .f-row a { font-size: 14px; line-height: 1.6; color: var(--body); }
.f-row a:hover { color: var(--red); }
.f-years b { display: block; font-family: Archivo, sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; color: var(--ink); }
.f-years span { display: block; font-size: 11px; letter-spacing: 0.14em; color: var(--faint); font-weight: 600; margin-top: 4px; }
.flag { margin-top: 10px; display: flex; gap: 4px; }
.flag i { width: 22px; height: 5px; background: var(--red); }
.flag i:nth-child(2) { background: var(--line); }
.flag i:nth-child(3) { background: var(--blue); }
.footer-bottom { border-top: 1px solid var(--line); }
.footer-bottom .wrap { padding-top: 16px; padding-bottom: 16px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; align-items: center; }
.footer-bottom p { font-size: 12.5px; color: var(--faint); }
.footer-bottom p a { color: var(--body); font-weight: 600; }
.footer-bottom nav { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom nav a { font-size: 12.5px; color: var(--body); }
.footer-bottom nav a:hover { color: var(--red); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .nav { display: none; }
  .menu-btn { display: flex; }
}
@media (max-width: 1024px) {
  .grid-4, .num-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .flow { grid-template-columns: repeat(2, 1fr); }
  .flow li:nth-child(4n) { border-right: 1px solid var(--line); }
  .flow li:nth-child(2n) { border-right: 0; }
  .flow li:nth-last-child(-n+4) { border-bottom: 1px solid var(--line); }
  .flow li:nth-last-child(-n+2) { border-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  :root { --header-h: 70px; --pad: 16px; }
  .brand img { width: 128px; }
  .header-cta { display: none; }
  .header-actions { gap: 10px; }
  .lang a { min-height: 44px; padding: 0 11px; }
  .menu-btn { width: 44px; height: 44px; }

  .section { padding: 44px 0; }
  .section.tight { padding: 36px 0; }
  .h2 { font-size: 21px; margin-top: 10px; }
  .label { font-size: 10px; }
  .kicker { font-size: 9.5px; letter-spacing: 0.1em; }
  .sec-head { flex-wrap: nowrap; gap: 12px; }
  .sec-head .kicker { max-width: 40%; }
  .sec-head + * { margin-top: 22px; }
  .lead { font-size: 15px; }

  .hero { min-height: calc(100svh - var(--header-h)); }
  .hero .wrap { padding-top: 48px; padding-bottom: 48px; }
  .eyebrow { font-size: 10px; }
  .h1 { font-size: 28px; margin-top: 16px; }
  .hero-sub { font-size: 14.5px; margin-top: 16px; line-height: 1.55; }
  .hero-ctas { margin-top: 24px; flex-wrap: nowrap; gap: 10px; }
  .hero-ctas .btn { padding: 12px 14px; font-size: 10.5px; letter-spacing: 0.05em; min-height: 44px; }
  .hero-side { display: none; }

  .page-hero .wrap { padding-top: 40px; padding-bottom: 40px; }
  .page-hero h1 { font-size: 26px; margin-top: 12px; }
  .page-hero p { font-size: 14.5px; margin-top: 12px; }
  .crumbs { font-size: 12px; margin-bottom: 14px; }

  .stats-grid { gap: 18px 12px; padding-top: 22px; padding-bottom: 22px; }
  .stat { gap: 10px; }
  .stat svg { width: 22px; height: 22px; }
  .stat-num { font-size: 22px; }
  .stat-num.word { font-size: 16px; }
  .stat-txt { font-size: 9.5px; letter-spacing: 0.04em; margin-top: 4px; }

  .grid-3, .grid-2, .grid-4, .num-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .sol-card .ph { height: 84px; }
  .sol-card .body { padding: 10px; gap: 7px; }
  .sol-card .body svg { width: 18px; height: 18px; }
  .sol-card .body strong { font-size: 12px; }
  .sol-card .body .arr { font-size: 14px; }
  .sol-card:hover { transform: none; }

  .num-card { padding: 16px 14px; }
  .num-card b { font-size: 24px; }
  .num-card b.word { font-size: 16px; }
  .num-card span { font-size: 9.5px; letter-spacing: 0.06em; }
  .num-card p { font-size: 12.5px; line-height: 1.45; }

  .icon-card { padding: 16px 14px; }
  .icon-card .ic { width: 38px; height: 38px; }
  .icon-card .ic svg { width: 19px; height: 19px; }
  .icon-card h3 { font-size: 13.5px; margin-top: 12px; }
  .icon-card p { font-size: 12.5px; line-height: 1.45; }
  .icon-card li { font-size: 12.5px; }
  .icon-card ul { gap: 4px; }
  .grid-2.stack { grid-template-columns: 1fr; }

  .split { grid-template-columns: 1.2fr 0.8fr; }
  .split-text { padding: 30px 12px 30px 16px; }
  .split-text .h2 { font-size: 18px; }
  .split-text .lead { font-size: 12.5px; line-height: 1.55; margin-top: 12px !important; }
  .split-text .btn, .split-text .link-arrow { font-size: 10.5px; }
  .pills { font-size: 10.5px; margin-top: 14px; padding-top: 12px; }
  .split-media { min-height: 0; }
  .badge { padding: 8px 10px; font-size: 8px; letter-spacing: 0.1em; line-height: 1.6; }

  .steps { grid-template-columns: 1fr 1fr; gap: 22px 10px; }
  .steps.arrows .step::after { display: none; }
  .step .circle { width: 50px; height: 50px; }
  .step .circle svg { width: 22px; height: 22px; }
  .step .n { font-size: 17px; margin-top: 10px; }
  .step h3 { font-size: 9.5px; letter-spacing: 0.04em; }
  .step p { font-size: 11.5px; line-height: 1.4; margin-top: 6px; }
  .step p + p { font-size: 11px; }

  .flow { grid-template-columns: 1fr 1fr; }
  .flow li { padding: 14px 12px; }
  .flow h3 { font-size: 13px; margin-top: 4px; }
  .flow b { font-size: 10px; }
  .flow p { font-size: 12px; line-height: 1.45; margin-top: 4px; }

  .sector .ph { height: 110px; }
  .sector .tag { padding: 6px 8px; gap: 6px; font-size: 10.5px; }
  .sector .tag svg { width: 14px; height: 14px; }
  .sector .body { padding: 12px 10px; }
  .sector .checks { gap: 7px; margin-bottom: 12px; }
  .sector .checks li { font-size: 11.5px; gap: 6px; line-height: 1.35; }
  .sector .foot { padding-top: 10px; }
  .sector .foot .kicker { font-size: 8px; letter-spacing: 0.06em; }
  .sector .foot .link-arrow { font-size: 10px; }

  .checks li { font-size: 14px; }
  .checks.cols { grid-template-columns: 1fr; }
  .chips { gap: 8px; }
  .chips li { font-size: 11.5px; padding: 8px 10px; }

  .prov-grid { grid-template-columns: 1fr; gap: 22px; }
  .prov-right { text-align: left; }
  .prov-right > .kicker:first-child { display: none; }
  .prov-names { justify-content: flex-start; gap: 6px 22px; margin-top: 10px; }
  .prov-names li { font-size: 15px; }
  .logo-wall { grid-template-columns: 1fr 1fr; gap: 10px; }
  .logo-wall li { min-height: 80px; font-size: 15px; }
  .refs li { padding: 18px; font-size: 20px; flex-basis: 120px; }

  .mv { grid-template-columns: 1fr; gap: 12px; }
  .mv-card { padding: 24px 20px; }
  .mv-card p { font-size: 15px; }
  .philo { grid-template-columns: 1fr; }
  .philo li { border-right: 0; border-bottom: 1px solid var(--line); padding: 20px 18px; }
  .philo li:last-child { border-bottom: 0; }
  .philo h3 { font-size: 18px; }
  .quote { font-size: 18px; }

  .cta-band .wrap { padding-top: 44px; padding-bottom: 44px; flex-direction: column; align-items: flex-start; gap: 0; }
  .cta-band h2 { font-size: 20px; }
  .cta-band p.sub { font-size: 14px; }
  .cta-band .btns { margin-top: 20px; }
  .cta-band .btn { padding: 12px 18px; font-size: 11.5px; }
  .cta-side { display: none; }

  .form { padding: 22px 16px; }
  .fields { grid-template-columns: 1fr; gap: 14px; }
  .form-foot .btn { width: 100%; }
  .info-card { padding: 24px 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 14px; padding-top: 26px; padding-bottom: 26px; }
  .footer-grid .brand img { width: 150px; }
  .f-row p, .f-row a { font-size: 13px; }
  .footer-bottom .wrap { flex-direction: column-reverse; align-items: flex-start; gap: 14px; padding-top: 14px; padding-bottom: 20px; }
  .footer-bottom nav { gap: 6px 14px; }
  .footer-bottom p, .footer-bottom nav a { font-size: 11.5px; }
}

/* ---------- Utilities ---------- */
.cover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sector .tag { max-width: calc(100% - 12px); line-height: 1.25; }
@media (max-width: 760px) {
  .grid-2.stack > .reveal[style*="min-height"] { min-height: 240px !important; }
}

/* Hero + cifras entran juntos en la primera pantalla (escritorio/tablet) */
@media (min-width: 761px) {
  .hero-screen { display: flex; flex-direction: column; min-height: calc(100svh - var(--header-h)); }
  .hero-screen .hero { flex: 1 0 auto; min-height: 0; }
  .hero-screen .hero .wrap { padding-top: clamp(24px, 6vh, 88px); padding-bottom: clamp(24px, 6vh, 88px); }
  .hero-screen .h1 { font-size: clamp(30px, min(5.2vw, 6.6vh), 62px); margin-top: clamp(12px, 2.6vh, 24px); }
  .hero-screen .hero-sub { margin-top: clamp(12px, 2.6vh, 26px); }
  .hero-screen .hero-ctas { margin-top: clamp(16px, 3.4vh, 34px); }
  .hero-screen .stats-grid { padding-top: clamp(14px, 2.8vh, 32px); padding-bottom: clamp(14px, 2.8vh, 32px); }
}

/* WhatsApp flotante */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 60; width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 22px rgba(0,0,0,0.22); transition: transform .18s, box-shadow .18s; }
.wa-float:hover { color: #fff; transform: scale(1.07); box-shadow: 0 10px 26px rgba(0,0,0,0.28); }
.wa-float svg { width: 32px; height: 32px; }
@media (max-width: 760px) {
  .wa-float { right: 14px; bottom: calc(14px + env(safe-area-inset-bottom)); width: 54px; height: 54px; }
  .wa-float svg { width: 29px; height: 29px; }
}

/* 20 años destacado en el hero */
.hero-badge { display: flex; align-items: center; gap: 16px; }
.hero-badge b { font-family: Archivo, sans-serif; font-weight: 800; font-size: clamp(56px, 10vh, 104px); line-height: 0.82; letter-spacing: -0.03em; color: #E8272D; }
.hero-badge span { display: flex; flex-direction: column; gap: 6px; padding-left: 16px; border-left: 2px solid rgba(255,255,255,0.3); }
.hero-badge strong { font-family: Archivo, sans-serif; font-weight: 800; font-size: clamp(17px, 3.1vh, 30px); letter-spacing: 0.05em; color: #fff; text-transform: uppercase; line-height: 1.1; }
.hero-badge small { font-family: Archivo, sans-serif; font-size: 11.5px; letter-spacing: 0.2em; font-weight: 600; color: #B9C4D2; text-transform: uppercase; }
@media (max-width: 760px) {
  .hero-badge { gap: 12px; }
  .hero-badge b { font-size: 46px; }
  .hero-badge span { padding-left: 12px; gap: 4px; }
  .hero-badge strong { font-size: 15px; }
  .hero-badge small { font-size: 8.5px; letter-spacing: 0.12em; }
}

/* ---------- Proceso (Cómo trabajamos) ---------- */
.process-sec { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
.process-sec::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 80% at 100% 0%, rgba(216,30,36,0.22), transparent 60%), radial-gradient(50% 70% at 0% 100%, rgba(27,76,155,0.25), transparent 60%); pointer-events: none; }
.process-sec .wrap { position: relative; }
.process-sec .h2 { color: #fff; }
.process-sec .h2 em { color: #FF3B41; }
.process-sec .label { color: #FF6B70; }
.process-sec .kicker { color: #8C99A8; }
.process { list-style: none; margin: 56px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.process::before { content: ""; position: absolute; left: 44px; right: 44px; top: 43px; height: 2px; background: linear-gradient(90deg, var(--red) 0%, #FF6B70 50%, rgba(255,255,255,0.12) 100%); transform: scaleX(0); transform-origin: left; transition: transform 1.4s cubic-bezier(.2,.7,.2,1) .2s; }
.process.in::before { transform: scaleX(1); }
.p-step { position: relative; display: flex; flex-direction: column; }
.p-num { position: absolute; right: 4px; top: -18px; font-family: Archivo, sans-serif; font-weight: 800; font-size: 112px; line-height: 1; letter-spacing: -0.04em; color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,0.13); pointer-events: none; transition: -webkit-text-stroke-color .3s; }
.p-icon { position: relative; z-index: 1; width: 88px; height: 88px; border-radius: 50%; background: var(--ink); border: 2px solid rgba(255,255,255,0.18); color: #fff; display: flex; align-items: center; justify-content: center; transition: background .3s, border-color .3s, transform .3s; }
.p-icon svg { width: 34px; height: 34px; }
.p-step:first-child .p-icon { background: var(--red); border-color: var(--red); box-shadow: 0 0 0 8px rgba(216,30,36,0.18); }
.p-body { margin-top: 26px; flex: 1; padding: 24px 22px 26px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-top: 3px solid rgba(255,255,255,0.09); backdrop-filter: blur(2px); transition: transform .3s, background .3s, border-color .3s; }
.p-tag { font-family: Archivo, sans-serif; font-size: 11px; letter-spacing: 0.2em; font-weight: 700; color: #FF6B70; text-transform: uppercase; }
.p-body h3 { margin-top: 0; font-size: 19px; font-weight: 800; letter-spacing: 0.04em; color: #fff; }
.p-lead { margin-top: 12px; font-size: 15.5px; line-height: 1.55; color: #D3DBE5; }
.p-sub { margin-top: 10px; padding-top: 12px; border-top: 1px dashed rgba(255,255,255,0.14); font-size: 14px; line-height: 1.55; color: #8C99A8; }
.p-step:hover .p-icon { background: var(--red); border-color: var(--red); transform: translateY(-3px); }
.p-step:hover .p-body { background: rgba(255,255,255,0.07); border-top-color: var(--red); }
.p-step:hover .p-num { -webkit-text-stroke-color: rgba(255,59,65,0.45); }
.process .p-step { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.process.in .p-step { opacity: 1; transform: none; }
.process.in .p-step:nth-child(2) { transition-delay: .15s; }
.process.in .p-step:nth-child(3) { transition-delay: .3s; }
.process.in .p-step:nth-child(4) { transition-delay: .45s; }
.process.reveal { opacity: 1; transform: none; }
.no-js .process .p-step { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .process .p-step { opacity: 1; transform: none; } .process::before { transform: none; } }
@media (max-width: 1024px) {
  .process { grid-template-columns: 1fr 1fr; row-gap: 34px; }
  .process::before { display: none; }
}
@media (max-width: 760px) {
  .process { margin-top: 26px; gap: 22px 10px; }
  .p-num { font-size: 58px; top: -6px; right: 2px; -webkit-text-stroke-width: 1px; }
  .p-icon { width: 52px; height: 52px; }
  .p-icon svg { width: 22px; height: 22px; }
  .p-step:first-child .p-icon { box-shadow: 0 0 0 5px rgba(216,30,36,0.18); }
  .p-body { margin-top: 14px; padding: 14px 12px 16px; }
  .p-tag { font-size: 9px; letter-spacing: 0.12em; }
  .p-body h3 { font-size: 12.5px; margin-top: 0; letter-spacing: 0.02em; }
  .p-lead { font-size: 12px; line-height: 1.45; margin-top: 8px; }
  .p-sub { font-size: 11px; line-height: 1.4; margin-top: 8px; padding-top: 8px; }
}

/* ---------- Bento (Por qué IN DESIGN) ---------- */
.bento-sec { background: #070B12; color: #fff; position: relative; overflow: hidden; }
.bento-sec::before { content: ""; position: absolute; left: 50%; top: -30%; width: 900px; height: 600px; transform: translateX(-50%); background: radial-gradient(closest-side, rgba(216,30,36,0.16), transparent); pointer-events: none; }
.bento-sec .wrap { position: relative; }
.bento-sec .h2 { color: #fff; }
.bento-sec .h2 em { color: #FF3B41; }
.bento-sec .label { color: #FF6B70; }
.bento-sec .kicker { color: #8C99A8; }
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.b-card { position: relative; display: flex; flex-direction: column; overflow: hidden; background: linear-gradient(180deg, #111826 0%, #0C121C 100%); border: 1px solid rgba(255,255,255,0.08); border-radius: 6px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.06); transition: border-color .3s, transform .3s; }
.b-card:hover { border-color: rgba(255,59,65,0.35); }
.b-a { grid-column: span 4; border-top-left-radius: 28px; }
.b-b { grid-column: span 2; border-top-right-radius: 28px; }
.b-c { grid-column: span 2; border-bottom-left-radius: 28px; }
.b-d { grid-column: span 2; }
.b-e { grid-column: span 2; border-bottom-right-radius: 28px; }
.b-visual { position: relative; height: 260px; overflow: hidden; }
.b-visual::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 70px; background: linear-gradient(transparent, #0E1520); pointer-events: none; }
.b-text { padding: 6px 30px 30px; }
.b-eyebrow { font-family: Archivo, sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #FF6B70; }
.b-text h3 { margin-top: 8px; font-size: 22px; font-weight: 800; line-height: 1.2; color: #fff; }
.b-text p:last-child { margin-top: 10px; font-size: 15px; line-height: 1.6; color: #9AA7B6; max-width: 560px; }

/* A: barras */
.b-bars { display: flex; flex-direction: column; justify-content: center; gap: 22px; padding: 28px 30px 40px; }
.b-bar-top { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; }
.b-bar-top span { font-size: 14px; color: #C9D2DD; }
.b-bar-top b { font-family: Archivo, sans-serif; font-size: 26px; font-weight: 800; color: #fff; white-space: nowrap; }
.b-bar-top b i { font-style: normal; }
.b-track { margin-top: 10px; height: 10px; border-radius: 10px; background: rgba(255,255,255,0.07); overflow: hidden; }
.b-fill { height: 100%; width: 0; border-radius: 10px; background: linear-gradient(90deg, #A5151A, #FF3B41); box-shadow: 0 0 18px rgba(255,59,65,0.45); transition: width 1.6s cubic-bezier(.2,.7,.2,1) .2s; }
.b-fill.stripes { background: repeating-linear-gradient(45deg, #D81E24 0 10px, #FF3B41 10px 20px); background-size: 28px 28px; animation: b-stripes 1.2s linear infinite; }
@keyframes b-stripes { to { background-position: 28px 0; } }
.b-a.in .b-fill { width: var(--w); }

/* B: anillo */
.b-ring { display: flex; align-items: center; justify-content: center; }
.b-ring svg { width: 190px; height: 190px; transform: rotate(-90deg); }
.b-ring circle { fill: none; stroke-width: 9; }
.b-ring-bg { stroke: rgba(255,255,255,0.07); }
.b-ring-fg { stroke: #FF3B41; stroke-linecap: round; stroke-dasharray: 327; stroke-dashoffset: 327; filter: drop-shadow(0 0 8px rgba(255,59,65,0.6)); transition: stroke-dashoffset 1.8s cubic-bezier(.2,.7,.2,1) .2s; }
.b-b.in .b-ring-fg { stroke-dashoffset: 0; }
.b-ring-txt { position: absolute; text-align: center; }
.b-ring-txt b { display: block; font-family: Archivo, sans-serif; font-size: 58px; font-weight: 800; line-height: 1; color: #fff; }
.b-ring-txt span { font-family: Archivo, sans-serif; font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: #9AA7B6; }

/* C: órdenes */
.b-orders { display: flex; flex-direction: column; justify-content: center; gap: 10px; padding: 24px 22px 40px; }
.b-order { display: flex; align-items: center; gap: 12px; padding: 12px 14px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); border-radius: 12px; opacity: 0; transform: translateX(40px) scale(.96); transition: opacity .5s ease, transform .6s cubic-bezier(.2,.7,.2,1); transition-delay: calc(var(--i) * .22s + .2s); }
.b-c.in .b-order { opacity: 1; transform: none; }
.b-order:nth-child(2) { margin-left: 10px; }
.b-order:nth-child(3) { margin-left: 20px; }
.b-oc { width: 34px; height: 34px; border-radius: 9px; background: rgba(216,30,36,0.16); color: #FF6B70; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.b-oc svg { width: 18px; height: 18px; }
.b-order div { flex: 1; min-width: 0; }
.b-order b { display: block; font-size: 13.5px; color: #fff; }
.b-order small { display: block; font-size: 12px; color: #8C99A8; }
.b-ok { font-size: 11px; font-weight: 700; color: #4ADE80; background: rgba(74,222,128,0.12); padding: 4px 8px; border-radius: 20px; white-space: nowrap; }

/* D: órbita */
.b-orbit { display: flex; align-items: center; justify-content: center; }
.b-orbit-ring { position: absolute; left: 50%; top: 50%; border: 1px dashed rgba(255,255,255,0.14); border-radius: 50%; transform: translate(-50%, -50%); }
.b-orbit-ring.r1 { width: 130px; height: 130px; }
.b-orbit-ring.r2 { width: 220px; height: 220px; border-style: solid; border-color: rgba(255,255,255,0.06); }
.b-core { position: relative; z-index: 2; width: 74px; height: 74px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 8px rgba(255,255,255,0.05), 0 0 40px rgba(255,59,65,0.45); }
.b-core img { width: 48px; height: 48px; }
.b-spin { position: absolute; left: 50%; top: 50%; width: 220px; height: 220px; margin: -110px 0 0 -110px; animation: b-rot 26s linear infinite; }
@keyframes b-rot { to { transform: rotate(360deg); } }
.b-pill, .b-dot { position: absolute; animation: b-rot 26s linear infinite reverse; }
.b-pill { font-family: Archivo, sans-serif; font-size: 11px; font-weight: 800; letter-spacing: 0.04em; color: #fff; background: #1A2333; border: 1px solid rgba(255,255,255,0.14); padding: 6px 10px; border-radius: 20px; white-space: nowrap; }
.b-pill.p1 { left: 50%; top: -14px; margin-left: -42px; }
.b-pill.p2 { left: -30px; bottom: 30px; }
.b-pill.p3 { right: -36px; bottom: 30px; }
.b-dot { width: 8px; height: 8px; border-radius: 50%; background: #FF3B41; box-shadow: 0 0 10px #FF3B41; }
.b-dot.d1 { left: 24px; top: 40px; }
.b-dot.d2 { right: 30px; top: 50px; background: #6EA0FF; box-shadow: 0 0 10px #6EA0FF; }
.b-dot.d3 { left: 104px; bottom: -4px; }

/* E: checklist */
.b-tasks { display: flex; align-items: center; justify-content: center; padding: 20px 24px 40px; }
.b-tasks ul { width: 100%; max-width: 300px; display: grid; gap: 10px; }
.b-tasks li { display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: 12px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); font-size: 14.5px; font-weight: 600; color: #C9D2DD; transition: background .4s, border-color .4s; transition-delay: calc(var(--i) * .35s + .3s); }
.b-tasks li em { margin-left: auto; font-style: normal; font-size: 11px; font-weight: 700; color: #4ADE80; opacity: 0; transition: opacity .4s; transition-delay: calc(var(--i) * .35s + .5s); }
.b-check { width: 22px; height: 22px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center; color: #fff; flex: 0 0 auto; transition: background .35s, border-color .35s; transition-delay: calc(var(--i) * .35s + .3s); }
.b-check svg { width: 12px; height: 12px; stroke-dasharray: 24; stroke-dashoffset: 24; transition: stroke-dashoffset .35s; transition-delay: calc(var(--i) * .35s + .45s); }
.b-e.in .b-check { background: #D81E24; border-color: #D81E24; }
.b-e.in .b-check svg { stroke-dashoffset: 0; }
.b-e.in li { background: rgba(216,30,36,0.07); border-color: rgba(255,59,65,0.2); color: #fff; }
.b-e.in li em { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .b-spin, .b-pill, .b-dot, .b-fill.stripes { animation: none; }
  .b-fill { width: var(--w); } .b-ring-fg { stroke-dashoffset: 0; } .b-order { opacity: 1; transform: none; }
}
@media (max-width: 1024px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .b-a { grid-column: span 2; border-top-right-radius: 28px; }
  .b-b, .b-c, .b-d, .b-e { grid-column: span 1; }
  .b-b { border-top-right-radius: 6px; }
  .b-c { border-bottom-left-radius: 6px; }
  .b-d { border-bottom-left-radius: 28px; }
}
@media (max-width: 760px) {
  .bento { grid-template-columns: 1fr; gap: 10px; }
  .b-a, .b-b, .b-c, .b-d, .b-e { grid-column: auto; border-radius: 6px; }
  .b-a { border-top-left-radius: 22px; border-top-right-radius: 22px; }
  .b-e { border-bottom-left-radius: 22px; border-bottom-right-radius: 22px; }
  .b-visual { height: 210px; }
  .b-bars { gap: 16px; padding: 20px 18px 34px; }
  .b-bar-top span { font-size: 12.5px; }
  .b-bar-top b { font-size: 20px; }
  .b-text { padding: 4px 18px 22px; }
  .b-text h3 { font-size: 18px; }
  .b-text p:last-child { font-size: 13.5px; }
  .b-ring svg { width: 150px; height: 150px; }
  .b-ring-txt b { font-size: 44px; }
}

/* Bento más aireado (Soluciones) */
.bento { gap: 20px; }
.b-visual { height: 240px; }
.b-text { padding: 4px 32px 34px; }
.b-text h3 { font-size: 21px; max-width: 420px; }
.b-bars { gap: 30px; padding: 36px 36px 46px; }
.b-orders { gap: 14px; padding: 36px 30px 46px; }
.b-order { padding: 14px 16px; }
.b-order:nth-child(2) { margin-left: 18px; }
.b-tasks ul { gap: 12px; max-width: 260px; }
.b-tasks li { justify-content: flex-start; }
@media (max-width: 760px) {
  .bento { gap: 12px; }
  .b-visual { height: 190px; }
  .b-text { padding: 2px 20px 24px; }
  .b-bars { gap: 20px; padding: 26px 20px 36px; }
  .b-orders { padding: 26px 18px 36px; }
}

/* ---------- Gestión (Soluciones): convergencia + lista editorial ---------- */
.gestion-sec { background: var(--bg-soft); }
.g-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 64px; align-items: start; }
.g-intro { position: sticky; top: calc(var(--header-h) + 32px); }
.g-merge { margin-top: 34px; background: var(--ink); border-radius: 4px 28px 4px 4px; padding: 26px 22px; position: relative; overflow: hidden; }
.g-merge::before { content: ""; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px; background: radial-gradient(closest-side, rgba(216,30,36,0.35), transparent); }
.g-merge svg { position: relative; width: 100%; height: auto; display: block; }
.gm-lines path { fill: none; stroke: rgba(255,255,255,0.22); stroke-width: 1.4; stroke-dasharray: 4 7; animation: gm-flow 1.6s linear infinite; animation-delay: var(--d); }
@keyframes gm-flow { to { stroke-dashoffset: -22; } }
.gm-dots circle { fill: #fff; opacity: .85; }
.gm-core { fill: var(--red); }
.gm-halo { fill: rgba(216,30,36,0.25); transform-origin: 298px 100px; animation: gm-pulse 2.2s ease-in-out infinite; }
@keyframes gm-pulse { 50% { transform: scale(1.35); opacity: .35; } }
.g-merge-cap { margin-top: 14px; font-family: Archivo, sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.g-merge-cap b { font-size: 22px; color: var(--ink); }
.g-merge-cap span { color: var(--red); margin: 0 6px; }
.g-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line-2); }
.g-list li { position: relative; display: grid; grid-template-columns: 64px 1fr 48px; gap: 18px; align-items: center; padding: 22px 18px 22px 0; border-bottom: 1px solid var(--line-2); transition: padding .3s, background .3s; }
.g-list li::before { content: ""; position: absolute; left: 0; top: -1px; bottom: -1px; width: 0; background: var(--red); transition: width .3s; }
.g-n { font-family: Archivo, sans-serif; font-size: 34px; font-weight: 800; letter-spacing: -0.02em; color: transparent; -webkit-text-stroke: 1.3px #B8C2CE; transition: -webkit-text-stroke-color .3s, color .3s; }
.g-txt h3 { font-size: 18px; font-weight: 800; color: var(--ink); }
.g-txt p { margin-top: 4px; font-size: 15px; line-height: 1.55; color: var(--muted); }
.g-ic { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; background: #fff; transition: background .3s, border-color .3s, transform .3s; }
.g-ic svg { width: 20px; height: 20px; }
.g-list li:hover { background: #fff; padding-left: 20px; }
.g-list li:hover::before { width: 4px; }
.g-list li:hover .g-n { color: var(--red); -webkit-text-stroke-color: var(--red); }
.g-list li:hover .g-ic { background: var(--red); border-color: var(--red); transform: rotate(-8deg); }
.g-list li:hover .g-ic svg { stroke: #fff; }
@media (prefers-reduced-motion: reduce) { .gm-lines path, .gm-halo { animation: none; } }
@media (max-width: 1024px) {
  .g-grid { grid-template-columns: 1fr; gap: 30px; }
  .g-intro { position: static; }
  .g-merge { max-width: 460px; }
}
@media (max-width: 760px) {
  .g-merge { margin-top: 20px; padding: 18px 16px; }
  .g-merge-cap { font-size: 12px; }
  .g-merge-cap b { font-size: 18px; }
  .g-list li { grid-template-columns: 38px 1fr; gap: 12px; padding: 16px 0; }
  .g-list li:hover { padding-left: 10px; }
  .g-ic { display: none; }
  .g-n { font-size: 22px; }
  .g-txt h3 { font-size: 15px; }
  .g-txt p { font-size: 13px; }
}

/* Bento compacto: una fila de 4, entra en una pantalla */
.bento-sec.section { padding: 56px 0; }
.bento-sec .sec-head + * { margin-top: 28px; }
.bento { grid-template-columns: repeat(4, 1fr); gap: 16px; }
.b-a, .b-b, .b-c, .b-d { grid-column: auto; border-radius: 6px; }
.b-a { border-top-left-radius: 26px; border-bottom-left-radius: 26px; }
.b-d { border-top-right-radius: 26px; border-bottom-right-radius: 26px; }
.b-visual { height: 200px; }
.b-text { padding: 2px 24px 26px; }
.b-text h3 { font-size: 18px; }
.b-bars { gap: 22px; padding: 30px 24px 40px; }
.b-bar-top { flex-direction: column; align-items: flex-start; gap: 2px; }
.b-bar-top span { font-size: 12.5px; order: 2; }
.b-bar-top b { font-size: 28px; line-height: 1; }
.b-track { margin-top: 8px; height: 8px; }
.b-ring svg { width: 150px; height: 150px; }
.b-ring-txt b { font-size: 46px; }
.b-orders { gap: 12px; padding: 34px 20px 44px; }
.b-order { padding: 11px 12px; gap: 10px; }
.b-order:nth-child(2) { margin-left: 14px; }
.b-oc { width: 30px; height: 30px; }
.b-order b { font-size: 12.5px; }
.b-ok { font-size: 10px; padding: 3px 7px; }
.b-orbit-ring.r1 { width: 110px; height: 110px; }
.b-orbit-ring.r2 { width: 180px; height: 180px; }
.b-core { width: 62px; height: 62px; }
.b-core img { width: 40px; height: 40px; }
.b-spin { width: 180px; height: 180px; margin: -90px 0 0 -90px; }
.b-pill { font-size: 10px; padding: 5px 8px; }
.b-pill.p1 { margin-left: -38px; top: -12px; }
.b-pill.p2 { left: -34px; bottom: 26px; }
.b-pill.p3 { right: -40px; bottom: 26px; }
@media (max-width: 1100px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .b-a { border-bottom-left-radius: 6px; }
  .b-b { border-top-right-radius: 26px; }
  .b-c { border-bottom-left-radius: 26px; }
  .b-d { border-top-right-radius: 6px; }
}
@media (max-width: 760px) {
  .bento-sec.section { padding: 40px 0; }
  .bento { grid-template-columns: 1fr 1fr; gap: 10px; }
  .b-a, .b-b, .b-c, .b-d { border-radius: 6px; }
  .b-a { border-top-left-radius: 20px; }
  .b-b { border-top-right-radius: 20px; }
  .b-c { border-bottom-left-radius: 20px; }
  .b-d { border-bottom-right-radius: 20px; }
  .b-visual { height: 150px; }
  .b-visual::after { height: 40px; }
  .b-text { padding: 0 14px 16px; }
  .b-eyebrow { font-size: 9.5px; letter-spacing: 0.08em; }
  .b-text h3 { font-size: 13.5px; }
  .b-bars { gap: 14px; padding: 18px 14px 26px; }
  .b-bar-top b { font-size: 20px; }
  .b-bar-top span { font-size: 10.5px; }
  .b-ring svg { width: 110px; height: 110px; }
  .b-ring-txt b { font-size: 34px; }
  .b-ring-txt span { font-size: 9px; }
  .b-orders { padding: 20px 10px 28px; gap: 8px; }
  .b-order { padding: 8px; gap: 7px; }
  .b-order:nth-child(2) { margin-left: 8px; }
  .b-oc { width: 24px; height: 24px; }
  .b-oc svg { width: 13px; height: 13px; }
  .b-order b { font-size: 10.5px; }
  .b-ok { display: none; }
  .b-orbit { transform: scale(.72); }
}

/* Gestión: lista en 2 columnas para que entre en pantalla */
.gestion-sec.section { padding: 64px 0; }
.g-grid { grid-template-columns: 4fr 8fr; gap: 48px; align-items: center; }
.g-intro { position: static; }
.g-merge { margin-top: 26px; padding: 20px 18px; }
.g-list { display: grid; grid-template-columns: 1fr 1fr; column-gap: 32px; border-top: 0; }
.g-list li { grid-template-columns: 46px 1fr 40px; gap: 14px; padding: 18px 12px 18px 0; border-top: 1px solid var(--line-2); border-bottom: 0; }
.g-list li:nth-last-child(-n+2) { border-bottom: 1px solid var(--line-2); }
.g-n { font-size: 28px; }
.g-txt h3 { font-size: 16px; }
.g-txt p { font-size: 14px; line-height: 1.5; }
.g-ic { width: 38px; height: 38px; }
.g-ic svg { width: 18px; height: 18px; }
@media (max-width: 1024px) { .g-grid { grid-template-columns: 1fr; gap: 26px; } }
@media (max-width: 760px) {
  .gestion-sec.section { padding: 40px 0; }
  .g-list { grid-template-columns: 1fr; }
  .g-list li { grid-template-columns: 34px 1fr; padding: 13px 0; }
  .g-list li:nth-last-child(-n+2) { border-bottom: 0; }
  .g-list li:last-child { border-bottom: 1px solid var(--line-2); }
  .g-merge { max-width: 100%; }
}
@media (max-width: 760px) {
  .g-merge, .g-merge-cap { display: none; }
  .g-grid { gap: 18px; }
  .g-list { grid-template-columns: 1fr 1fr; column-gap: 12px; }
  .g-list li { grid-template-columns: 1fr; gap: 4px; padding: 12px 0; align-items: start; }
  .g-list li:nth-last-child(-n+2) { border-bottom: 1px solid var(--line-2); }
  .g-list li:last-child { border-bottom: 1px solid var(--line-2); }
  .g-n { font-size: 18px; }
  .g-txt h3 { font-size: 13.5px; }
  .g-txt p { font-size: 12px; line-height: 1.4; }
}

/* ---------- Rubros animados ---------- */
.rb { position: relative; overflow: hidden; padding: 0; transition: border-color .35s, box-shadow .35s, transform .35s; }
.rb-body { position: relative; padding: 26px 24px; }
.rb::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%; background: linear-gradient(90deg, var(--red), #FF6B70); transform: scaleX(0); transform-origin: left; transition: transform .45s cubic-bezier(.2,.7,.2,1); z-index: 2; }
.rb::after { content: ""; position: absolute; right: -60px; bottom: -60px; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(closest-side, rgba(216,30,36,0.08), transparent); transform: scale(.4); opacity: 0; transition: transform .5s, opacity .5s; pointer-events: none; }
.rb:hover { transform: translateY(-6px); border-color: #F2B8BA; box-shadow: 0 18px 38px rgba(16,26,40,0.10); }
.rb:hover::before { transform: scaleX(1); }
.rb:hover::after { transform: scale(1.4); opacity: 1; }
.rb .ic { transition: background .35s, transform .45s cubic-bezier(.34,1.56,.64,1); }
.rb .ic svg { transition: stroke .35s; }
.rb:hover .ic { background: var(--red); transform: rotate(-10deg) scale(1.1); }
.rb:hover .ic svg { stroke: #fff; }
.rb h3 { transition: color .3s; }
.rb:hover h3 { color: var(--red); }
.rb li { transition: transform .3s, color .3s; transition-delay: calc(var(--j) * 40ms); }
.rb:hover li { transform: translateX(6px); color: var(--ink); }
.rb-ph { height: 170px; overflow: hidden; }
.rb-ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.rb:hover .rb-ph img { transform: scale(1.07); }
/* entrada escalonada + pop del ícono */
.rb.reveal { opacity: 1; transform: none; transition: border-color .35s, box-shadow .35s, transform .35s; }
.rb.reveal:not(.in) { opacity: 0; }
.rb.reveal.in { animation: rb-in .7s cubic-bezier(.2,.7,.2,1) backwards; animation-delay: calc(var(--i) * 90ms); }
@keyframes rb-in { from { opacity: 0; transform: translateY(28px) scale(.98); } to { opacity: 1; transform: none; } }
.rb.reveal.in .ic { animation: rb-pop .7s cubic-bezier(.34,1.56,.64,1) backwards; animation-delay: calc(var(--i) * 90ms + .25s); }
@keyframes rb-pop { 0% { transform: scale(.4) rotate(-30deg); opacity: 0; } 100% { transform: none; opacity: 1; } }
.rb.reveal.in li { animation: rb-li .5s ease backwards; animation-delay: calc(var(--i) * 90ms + .35s + var(--j) * 60ms); }
@keyframes rb-li { from { opacity: 0; transform: translateX(-10px); } to { opacity: 1; transform: none; } }
.rb.reveal:hover { transform: translateY(-6px); }
@media (hover: none) { .rb:hover { transform: none; } }
@media (prefers-reduced-motion: reduce) { .rb, .rb * { animation: none !important; transition: none !important; } }
@media (max-width: 760px) {
  .rb-body { padding: 16px 14px; }
  .rb-ph { height: 100px; }
}
/* Gestión sin columna izquierda: título arriba y lista a todo el ancho */
.gestion-sec .sec-head + .g-list { margin-top: 30px; }
.gestion-sec .g-list { column-gap: 48px; }
@media (max-width: 760px) { .gestion-sec .sec-head + .g-list { margin-top: 18px; } }
/* Gestión: sin números, ícono a la izquierda */
.g-list li { grid-template-columns: 52px 1fr; gap: 18px; padding: 20px 16px 20px 0; }
.g-ic { width: 52px; height: 52px; background: var(--red-soft); border-color: transparent; }
.g-ic svg { width: 24px; height: 24px; }
.g-list li:hover .g-ic { transform: rotate(-6deg) scale(1.06); }
@media (max-width: 760px) {
  .g-list li { grid-template-columns: 1fr; gap: 8px; padding: 12px 0; }
  .g-ic { display: flex; width: 38px; height: 38px; }
  .g-ic svg { width: 19px; height: 19px; }
}
/* Rubros sin ícono: el título arriba de la tarjeta */
.rb-body h3 { margin-top: 0; }
/* Rubros en una sola grilla: 3 grandes + 4 chicas (escritorio), 2 por fila en celular */
.rb-all { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.rb-all > .rb:nth-child(-n+3) { grid-column: span 4; }
.rb-all > .rb:nth-child(n+4) { grid-column: span 3; }
@media (max-width: 1024px) {
  .rb-all { grid-template-columns: 1fr 1fr; }
  .rb-all > .rb:nth-child(n) { grid-column: auto; }
  .rb-all > .rb:last-child { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .rb-all { gap: 10px; }
  .rb-body:has(ul) > p { display: none; }
  .rb-body h3 { font-size: 13.5px; }
  .rb-body ul { margin-top: 8px; }
  .rb-all > .rb:last-child { display: grid; grid-template-columns: 45% 1fr; }
  .rb-all > .rb:last-child .rb-ph { height: 100%; min-height: 110px; }
}
/* Logos de referencias comerciales */
.refs li { min-height: 170px; padding: 28px; }
.refs li img { height: 110px; width: auto; max-width: 80%; object-fit: contain; transition: transform .3s; }
.refs li:hover img { transform: scale(1.05); }
@media (max-width: 760px) {
  .refs li { min-height: 110px; padding: 16px; }
  .refs li img { height: 70px; }
}

/* ---------- Marcas (Sector privado), minimalista ---------- */
.refs-min { background: #fff; border-top: 1px solid var(--line); }
.refs-min-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.refs-min-logos { display: grid; grid-template-columns: 1fr 1fr; }
.refs-min-logos li { display: flex; align-items: center; justify-content: center; padding: 18px 24px; }
.refs-min-logos li + li { border-left: 1px solid var(--line-2); }
.refs-min-logos img { height: 96px; width: auto; transition: transform .3s; }
.refs-min-logos li:hover img { transform: scale(1.05); }
@media (max-width: 1024px) { .refs-min-grid { grid-template-columns: 1fr; gap: 28px; } }
@media (max-width: 760px) { .refs-min-logos img { height: 64px; } .refs-min-logos li { padding: 8px 12px; } }

/* ---------- Selectores personalizados ---------- */
.cselect { position: relative; }
.cs-native { position: absolute !important; left: 0; bottom: 0; width: 100% !important; height: 1px !important; min-height: 0 !important; opacity: 0; pointer-events: none; padding: 0 !important; border: 0 !important; }
.cs-btn { width: 100%; min-height: 48px; display: flex; align-items: center; text-align: left; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%23D81E24' stroke-width='1.8'%3E%3Cpath d='m1 1 5 5 5-5'/%3E%3C/svg%3E") no-repeat right 16px center; border: 1px solid var(--line-2); padding: 13px 42px 13px 14px; font-size: 16px; color: var(--text); cursor: pointer; transition: border-color .15s, box-shadow .15s; }
.cs-btn.is-ph { color: #8C97A4; }
.cs-btn:hover { border-color: #C3CCD6; }
.cs-btn:focus-visible, .cselect.open .cs-btn { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(16,26,40,0.08); }
.cselect.open .cs-btn { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%23D81E24' stroke-width='1.8'%3E%3Cpath d='m1 7 5-5 5 5'/%3E%3C/svg%3E"); }
.field.invalid .cs-btn { border-color: var(--red); background-color: #FFF8F8; }
.cs-list { position: absolute; left: 0; right: 0; top: calc(100% + 6px); z-index: 30; margin: 0; padding: 6px; list-style: none; background: #fff; border: 1px solid var(--line-2); box-shadow: 0 16px 40px rgba(16,26,40,0.14); max-height: 300px; overflow-y: auto; animation: cs-in .16s ease-out; }
@keyframes cs-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.cs-list li { position: relative; padding: 12px 36px 12px 12px; font-size: 15px; color: #26313F; cursor: pointer; border-left: 3px solid transparent; }
.cs-list li.active { background: var(--bg-soft); border-left-color: var(--red); color: var(--ink); }
.cs-list li[aria-selected="true"] { color: var(--red); font-weight: 700; }
.cs-list li[aria-selected="true"]::after { content: ""; position: absolute; right: 14px; top: 50%; width: 12px; height: 7px; margin-top: -5px; border-left: 2px solid var(--red); border-bottom: 2px solid var(--red); transform: rotate(-45deg); }

/* ---------- Bento con la estética del sitio (claro, bordes finos, rojo de acento) ---------- */
.bento-sec { background: var(--bg-blue); color: var(--text); }
.bento-sec::before { display: none; }
.bento-sec .h2 { color: var(--ink); }
.bento-sec .h2 em { color: var(--red); }
.bento-sec .label { color: var(--red); }
.bento-sec .kicker { color: var(--faint); }
.b-card { background: #fff; border: 1px solid var(--line); border-radius: 0 !important; box-shadow: none; transition: border-color .3s, box-shadow .3s, transform .3s; }
.b-card::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .45s cubic-bezier(.2,.7,.2,1); z-index: 2; }
.b-card:hover { border-color: #F2B8BA; box-shadow: 0 16px 34px rgba(16,26,40,0.08); transform: translateY(-4px); }
.b-card:hover::before { transform: scaleX(1); }
.b-visual::after { display: none; }
.b-visual { border-bottom: 1px solid var(--line); background: #FBFCFD; }
.b-text { padding-top: 22px; }
.b-eyebrow { color: var(--red); }
.b-text h3 { color: var(--ink); }
/* barras */
.b-bar-top span { color: var(--muted); }
.b-bar-top b { color: var(--ink); }
.b-track { background: var(--bg-blue); border-radius: 0; }
.b-fill { background: var(--red); box-shadow: none; border-radius: 0; }
/* anillo */
.b-ring-bg { stroke: var(--bg-blue); }
.b-ring-fg { stroke: var(--red); stroke-linecap: butt; filter: none; }
.b-ring-txt b { color: var(--ink); }
.b-ring-txt span { color: var(--muted); }
/* órdenes */
.b-order { background: #fff; border: 1px solid var(--line-2); border-radius: 0; box-shadow: 0 4px 12px rgba(16,26,40,0.05); }
.b-oc { background: var(--red-soft); color: var(--red); border-radius: 0; }
.b-order b { color: var(--ink); }
.b-ok { color: var(--ink); background: var(--bg-blue); border-radius: 0; }
/* red de proveedores */
.b-orbit-ring { border-color: var(--line-2); }
.b-orbit-ring.r2 { border-color: var(--line); }
.b-core { box-shadow: 0 0 0 1px var(--line-2), 0 8px 20px rgba(16,26,40,0.08); }
.b-pill { color: var(--ink); background: #fff; border: 1px solid var(--line-2); border-radius: 0; box-shadow: 0 4px 10px rgba(16,26,40,0.06); }
@media (hover: none) { .b-card:hover { transform: none; } }
/* Proveedores: 7 nombres, filas centradas */
.logo-wall { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.logo-wall li { flex: 0 0 calc((100% - 48px) / 4); flex-direction: column; gap: 6px; min-height: 120px; }
.logo-wall li b { font-weight: 800; }
.logo-wall li span { font-family: Barlow, sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); }
.logo-wall li { transition: border-color .3s, transform .3s, box-shadow .3s; }
.logo-wall li:hover { border-color: #F2B8BA; transform: translateY(-3px); box-shadow: 0 12px 26px rgba(16,26,40,0.07); }
.prov-names { gap: 10px 26px; max-width: 520px; margin-left: auto; }
.prov-names li { font-size: 18px; }
@media (max-width: 1024px) { .logo-wall li { flex-basis: calc((100% - 16px) / 2); } }
@media (max-width: 760px) {
  .logo-wall { gap: 10px; }
  .logo-wall li { flex-basis: calc((100% - 10px) / 2); min-height: 78px; }
  .logo-wall li span { font-size: 10px; }
  .prov-names { margin-left: 0; gap: 6px 18px; }
  .prov-names li { font-size: 14px; }
}
/* Proveedores: lo que buscamos (tarjetas compactas) */
.pv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pv-card { position: relative; display: flex; gap: 18px; align-items: flex-start; background: #fff; border: 1px solid var(--line); padding: 24px 22px; overflow: hidden; transition: border-color .3s, box-shadow .3s, transform .3s; }
.pv-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--red); transform: scaleY(0); transform-origin: top; transition: transform .4s cubic-bezier(.2,.7,.2,1); }
.pv-ic { flex: 0 0 auto; width: 50px; height: 50px; background: var(--red-soft); display: flex; align-items: center; justify-content: center; transition: background .3s, transform .4s cubic-bezier(.34,1.56,.64,1); }
.pv-ic svg { width: 24px; height: 24px; transition: stroke .3s; }
.pv-card h3 { font-size: 17px; font-weight: 800; color: var(--ink); transition: color .3s; }
.pv-card p { margin-top: 6px; font-size: 14.5px; line-height: 1.5; color: var(--muted); }
.pv-card:hover { border-color: #F2B8BA; box-shadow: 0 14px 30px rgba(16,26,40,0.08); transform: translateY(-3px); }
.pv-card:hover::before { transform: scaleY(1); }
.pv-card:hover .pv-ic { background: var(--red); transform: rotate(-8deg); }
.pv-card:hover .pv-ic svg { stroke: #fff; }
.pv-card:hover h3 { color: var(--red); }
@media (max-width: 1024px) { .pv-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 760px) {
  .pv-grid { gap: 10px; }
  .pv-card { flex-direction: column; gap: 10px; padding: 14px 12px; }
  .pv-ic { width: 38px; height: 38px; }
  .pv-ic svg { width: 19px; height: 19px; }
  .pv-card h3 { font-size: 13.5px; }
  .pv-card p { font-size: 12px; margin-top: 4px; }
}
.pv-grid.cols4 { grid-template-columns: repeat(4, 1fr); }
.pv-grid.cols4 .pv-card { flex-direction: column; gap: 14px; }
@media (max-width: 1024px) { .pv-grid.cols4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 760px) { .pv-grid.cols4 .pv-card { gap: 10px; } }

/* ---------- Diferenciales: service cards ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc { position: relative; overflow: hidden; min-height: 210px; padding: 30px 28px; border-radius: 12px; display: flex; flex-direction: column; box-shadow: 0 1px 2px rgba(16,26,40,0.06); transition: transform .3s ease, box-shadow .3s ease; }
.svc-body { position: relative; z-index: 1; max-width: 72%; }
.svc h3 { font-size: 22px; font-weight: 800; line-height: 1.15; letter-spacing: -0.01em; }
.svc p { margin-top: 10px; font-size: 14.5px; line-height: 1.55; }
.svc-deco { position: absolute; right: -26px; bottom: -26px; width: 150px; height: 150px; transition: transform .45s ease-in-out, opacity .3s; }
.svc-deco svg { width: 100%; height: 100%; }
.svc:hover { transform: scale(1.02); box-shadow: 0 18px 40px rgba(16,26,40,0.14); }
.svc:hover .svc-deco { transform: scale(1.1) rotate(3deg) translateX(10px); }
.svc-white { background: #fff; border: 1px solid var(--line); color: var(--ink); }
.svc-white p { color: var(--muted); }
.svc-white .svc-deco { color: var(--red); opacity: .16; }
.svc-soft { background: #E4EAF1; color: var(--ink); }
.svc-soft p { color: #4A5664; }
.svc-soft .svc-deco { color: var(--ink); opacity: .13; }
.svc-red { background: var(--red); color: #fff; }
.svc-red p { color: rgba(255,255,255,0.86); }
.svc-red .svc-deco { color: #fff; opacity: .26; }
.svc-navy { background: var(--ink); color: #fff; }
.svc-navy p { color: #AEB9C6; }
.svc-navy .svc-deco { color: #FF6B70; opacity: .35; }
.svc:hover .svc-deco { opacity: calc(var(--o, 1) * 1); }
.svc-white:hover .svc-deco { opacity: .28; }
.svc-soft:hover .svc-deco { opacity: .2; }
.svc-red:hover .svc-deco { opacity: .4; }
.svc-navy:hover .svc-deco { opacity: .55; }
@media (hover: none) { .svc:hover { transform: none; } }
@media (max-width: 1024px) { .svc-grid { grid-template-columns: 1fr 1fr; } .svc:last-child { grid-column: 1 / -1; } }
@media (max-width: 760px) {
  .svc-grid { gap: 10px; }
  .svc { min-height: 150px; padding: 18px 16px; border-radius: 10px; }
  .svc-body { max-width: 100%; }
  .svc h3 { font-size: 15px; }
  .svc p { font-size: 12px; margin-top: 6px; }
  .svc-deco { width: 90px; height: 90px; right: -18px; bottom: -18px; }
}

/* ---------- Proveedores en carrusel continuo ---------- */
.marquee { 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); }
.marquee-track { display: flex; width: max-content; animation: marquee 40s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-set { display: flex; gap: 16px; padding-right: 16px; margin: 0; list-style: none; }
.marquee-set li { flex: 0 0 auto; width: 290px; min-height: 130px; background: #fff; border: 1px solid var(--line); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 20px; transition: border-color .3s, box-shadow .3s; }
.marquee-set li b { font-family: Archivo, sans-serif; font-size: 21px; font-weight: 800; letter-spacing: 0.02em; color: var(--ink); text-align: center; }
.marquee-set li span { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); }
.marquee-set li:hover { border-color: #F2B8BA; box-shadow: 0 12px 26px rgba(16,26,40,0.07); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; flex-wrap: wrap; width: auto; } .marquee-set[aria-hidden] { display: none; } .marquee { -webkit-mask-image: none; mask-image: none; } }
@media (max-width: 760px) {
  .marquee-track { animation-duration: 30s; }
  .marquee-set { gap: 10px; padding-right: 10px; }
  .marquee-set li { width: 190px; min-height: 90px; padding: 14px; }
  .marquee-set li b { font-size: 15px; }
  .marquee-set li span { font-size: 10px; }
}

/* ---------- Flujo de 8 etapas: línea de tiempo ---------- */
.tl { list-style: none; margin: 44px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); row-gap: 52px; }
.tl-step { position: relative; padding: 0 22px 0 0; }
.tl-step::before, .tl-step::after { content: ""; position: absolute; top: 31px; left: 72px; right: 8px; height: 2px; }
.tl-step::before { background: var(--line-2); }
.tl-step::after { background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .7s cubic-bezier(.2,.7,.2,1); transition-delay: calc(var(--i) * .18s + .2s); }
.tl-step:nth-child(4n)::before, .tl-step:nth-child(4n)::after { display: none; }
.tl.in .tl-step::after { transform: scaleX(1); }
.tl-node { position: relative; z-index: 1; width: 64px; height: 64px; border-radius: 50%; background: #fff; border: 2px solid var(--red); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 6px #fff; transition: background .3s, transform .4s cubic-bezier(.34,1.56,.64,1); }
.tl-node svg { width: 26px; height: 26px; transition: stroke .3s; }
.tl-step h3 { margin-top: 18px; font-size: 16px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink); transition: color .3s; }
.tl-step p { margin-top: 8px; font-size: 14.5px; line-height: 1.55; color: var(--muted); max-width: 260px; }
.tl-step:hover .tl-node { background: var(--red); transform: scale(1.08); }
.tl-step:hover .tl-node svg { stroke: #fff; }
.tl-step:hover h3 { color: var(--red); }
.tl.reveal { opacity: 1; transform: none; }
.tl .tl-step { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; transition-delay: calc(var(--i) * .12s); }
.tl.in .tl-step { opacity: 1; transform: none; }
.no-js .tl .tl-step { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .tl .tl-step { opacity: 1; transform: none; } .tl-step::after { transform: scaleX(1); } }
@media (max-width: 1024px) { .tl { grid-template-columns: 1fr 1fr; } .tl-step:nth-child(4n)::before, .tl-step:nth-child(4n)::after { display: block; } .tl-step:nth-child(2n)::before, .tl-step:nth-child(2n)::after { display: none; } }
@media (max-width: 760px) {
  .tl { margin-top: 24px; row-gap: 28px; column-gap: 10px; }
  .tl-step { padding-right: 6px; }
  .tl-node { width: 46px; height: 46px; box-shadow: 0 0 0 4px #fff; }
  .tl-node svg { width: 20px; height: 20px; }
  .tl-step::before, .tl-step::after { top: 22px; left: 54px; right: 4px; }
  .tl-step h3 { font-size: 13px; margin-top: 12px; }
  .tl-step p { font-size: 12px; line-height: 1.45; margin-top: 5px; }
}

/* ---------- Toggle de header azul oscuro ---------- */
.brand .logo-dark { display: none; }
.hdr-toggle { position: relative; flex: 0 0 auto; width: 46px; height: 26px; border-radius: 26px; border: 0; padding: 0; background: #DDE4EC; cursor: pointer; transition: background .25s; }
.hdr-toggle .knob { position: absolute; left: 3px; top: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(16,26,40,0.3); transition: transform .25s cubic-bezier(.34,1.3,.64,1); }
.hdr-toggle:hover { background: #C9D2DD; }
.hdr-toggle[aria-checked="true"] { background: var(--red); }
.hdr-toggle[aria-checked="true"] .knob { transform: translateX(20px); }
.site-header, .site-header .nav a, .lang a, .menu-btn, .menu-btn span, .mobile-menu { transition: background-color .3s, color .3s, border-color .3s; }
html.hdr-dark .site-header { background: var(--ink); border-bottom-color: rgba(255,255,255,0.08); }
html.hdr-dark .brand .logo-light { display: none; }
html.hdr-dark .brand .logo-dark { display: block; }
html.hdr-dark .nav a { color: #E3E8EF; }
html.hdr-dark .nav a:hover { color: #FF6B70; }
html.hdr-dark .nav a[aria-current="page"] { color: #FF6B70; border-bottom-color: #FF6B70; }
html.hdr-dark .lang { border-color: rgba(255,255,255,0.22); }
html.hdr-dark .lang a { background: transparent; color: #AEB9C6; }
html.hdr-dark .lang a[aria-current="true"] { background: #fff; color: var(--ink); }
html.hdr-dark .lang a:not([aria-current="true"]):hover { color: #fff; }
html.hdr-dark .menu-btn { background: transparent; border-color: rgba(255,255,255,0.22); }
html.hdr-dark .menu-btn span { background: #fff; }
html.hdr-dark .mobile-menu { background: var(--ink); border-top-color: rgba(255,255,255,0.08); }
html.hdr-dark .mobile-menu a:not(.btn) { color: #E3E8EF; border-bottom-color: rgba(255,255,255,0.08); }
html.hdr-dark .mobile-menu a[aria-current="page"] { color: #FF6B70; }
html.hdr-dark .hdr-toggle:not([aria-checked="true"]) { background: rgba(255,255,255,0.2); }
@media (max-width: 760px) {
  .hdr-toggle { width: 40px; height: 24px; }
  .hdr-toggle .knob { width: 18px; height: 18px; }
  .hdr-toggle[aria-checked="true"] .knob { transform: translateX(16px); }
  .header-actions { gap: 8px; }
}

/* ---------- Header: animaciones y estado compacto ---------- */
.site-header { transition: background-color .3s, border-color .3s, box-shadow .35s; }
.site-header .header-in { transition: height .3s cubic-bezier(.2,.7,.2,1); }
.site-header.scrolled { box-shadow: 0 8px 24px rgba(16,26,40,0.08); }
.site-header.scrolled .header-in { height: calc(var(--header-h) - 12px); }
.site-header.scrolled .brand img { width: 132px; }
html.hdr-dark .site-header.scrolled { box-shadow: 0 8px 26px rgba(0,0,0,0.35); }

.brand img { transition: width .3s cubic-bezier(.2,.7,.2,1), transform .3s, filter .3s; transform-origin: left center; }
.brand:hover img { transform: scale(1.035); }

.nav a { position: relative; border-bottom: 0; padding: 8px 0; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: right; transition: transform .32s cubic-bezier(.2,.7,.2,1); }
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a { transition: color .25s, transform .25s; }
.nav a:hover { transform: translateY(-1px); }
html.hdr-dark .nav a::after { background: #FF6B70; }

.lang a { position: relative; transition: background-color .25s, color .25s; }
.lang a:not([aria-current="true"]):hover { background: var(--bg-soft); }
html.hdr-dark .lang a:not([aria-current="true"]):hover { background: rgba(255,255,255,0.12); }

.header-cta { position: relative; overflow: hidden; }
.header-cta::after { content: ""; position: absolute; top: 0; left: -140%; width: 60%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent); transform: skewX(-18deg); transition: left .55s cubic-bezier(.2,.7,.2,1); }
.header-cta:hover::after { left: 140%; }
.header-cta span[aria-hidden] { transition: transform .3s cubic-bezier(.2,.7,.2,1); }
.header-cta:hover span[aria-hidden] { transform: translateX(4px); }
.header-cta:hover { box-shadow: 0 8px 20px rgba(216,30,36,0.28); }

.menu-btn { transition: background-color .25s, border-color .25s; }
.menu-btn:hover { background: var(--red-soft); border-color: #F2B8BA; }
html.hdr-dark .menu-btn:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.4); }
.mobile-menu a:not(.btn) { transition: color .25s, padding-left .25s; }
.mobile-menu a:not(.btn):hover { color: var(--red); padding-left: 6px; }
@media (prefers-reduced-motion: reduce) { .site-header, .site-header *, .nav a::after, .header-cta::after { transition: none !important; } }

/* ---------- Listas de experiencia (Sector público / privado) ---------- */
.checks.cols { grid-template-columns: repeat(2, 1fr); gap: 12px 20px; }
.checks.cols li { align-items: center; gap: 14px; padding: 14px 16px; background: var(--bg-soft); border: 1px solid transparent; border-left: 3px solid var(--line-2); font-size: 15px; transition: background .28s, border-color .28s, transform .28s; }
.checks.cols li::before { content: "✓"; flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; background: var(--red-soft); color: var(--red); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; transition: background .28s, color .28s; }
.checks.cols li:hover { background: #fff; border-color: var(--line); border-left-color: var(--red); transform: translateX(4px); }
.checks.cols li:hover::before { background: var(--red); color: #fff; }

/* ---------- Tarjetas de cifras / destacados ---------- */
.num-card { position: relative; overflow: hidden; border-top-width: 0; padding-top: 28px; transition: transform .3s, box-shadow .3s, border-color .3s; }
.num-card::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%; background: var(--red); transform-origin: left; transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.num-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(16,26,40,0.09); border-color: #F2B8BA; }
.num-card:hover::before { transform: scaleX(1.0); }
.num-card b.word { transition: color .3s; }
.num-card:hover b.word { color: var(--red); }

/* ---------- Valores / pilares: un poco más atractivos ---------- */
.pv-ic { border-radius: 50%; }
.pv-grid.cols4 .pv-card { padding: 28px 24px; }
.pv-card h3 { position: relative; display: inline-block; padding-bottom: 8px; }
.pv-card h3::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .35s cubic-bezier(.2,.7,.2,1); }
.pv-card:hover h3::after { transform: scaleX(1); }
.pv-card { background-image: linear-gradient(180deg, #fff 0%, #fff 100%); transition: border-color .3s, box-shadow .3s, transform .3s, background-color .3s; }
.pv-card:hover { background-color: #FFFCFC; }
@media (max-width: 760px) {
  .checks.cols { grid-template-columns: 1fr; gap: 8px; }
  .checks.cols li { padding: 10px 12px; font-size: 13px; gap: 10px; }
  .checks.cols li::before { width: 22px; height: 22px; font-size: 11px; }
  .pv-grid.cols4 .pv-card { padding: 16px 14px; }
}
/* Rubro sin foto (Baterías): ocupa el ancho y va al final */
.rb-all > .rb:nth-child(8) { grid-column: span 12; }
.rb-all > .rb:nth-child(8) .rb-body { padding: 26px 24px; }
.rb-all > .rb:nth-child(8).has-ph { display: grid; grid-template-columns: 34% 1fr; align-items: stretch; }
.rb-all > .rb:nth-child(8).has-ph .rb-ph { height: 100%; min-height: 180px; }
@media (max-width: 1024px) { .rb-all > .rb:nth-child(8) { grid-column: 1 / -1; } }

/* ---------- Header estable al cambiar de idioma ---------- */
.header-in .nav { flex: 1 1 auto; justify-content: center; }
.header-cta { min-width: 258px; justify-content: center; }
@media (max-width: 1180px) { .header-cta { min-width: 0; } }

/* ---------- Logo con su fondo blanco en el header oscuro ---------- */
html.hdr-dark .site-header .brand { background: #fff; padding: 7px 12px; border-radius: 6px; }
html.hdr-dark .site-header .brand .logo-light { display: block; }
html.hdr-dark .site-header .brand .logo-dark { display: none; }
@media (max-width: 760px) { html.hdr-dark .site-header .brand { padding: 5px 8px; } }
/* Logos de proveedores en el carrusel */
.marquee-set li img, .marquee-set li .prov-svg { max-width: 82%; max-height: 74px; width: auto; height: auto; object-fit: contain; }
.marquee-set li .prov-svg { width: 200px; height: auto; }
@media (max-width: 760px) {
  .marquee-set li img, .marquee-set li .prov-svg { max-height: 48px; }
  .marquee-set li .prov-svg { width: 130px; }
}
/* Rubros: 4 por fila, todas iguales */
.rb-all { grid-template-columns: repeat(4, 1fr); gap: 18px; }
.rb-all > .rb:nth-child(-n+3), .rb-all > .rb:nth-child(n+4), .rb-all > .rb:nth-child(8) { grid-column: auto; }
.rb-all > .rb:nth-child(8).has-ph { display: block; }
.rb-all > .rb:nth-child(8).has-ph .rb-ph { height: 170px; min-height: 0; }
.rb-all > .rb:nth-child(8) .rb-body { padding: 26px 24px; }
@media (max-width: 1024px) { .rb-all { grid-template-columns: 1fr 1fr; } .rb-all > .rb:last-child { grid-column: auto; } }
@media (max-width: 760px) {
  .rb-all { gap: 10px; }
  .rb-all > .rb:nth-child(8) .rb-body { padding: 16px 14px; }
  .rb-all > .rb:nth-child(8).has-ph .rb-ph { height: 100px; }
}
