/* Fluxly 2026 — estilos */
:root {
	--navy: #082b63;
	--navy-dark: #03265b;
	--ink: #092759;
	--text: #2d3f5c;
	--muted: #52627a;
	--orange: #ff510d;
	--orange-dark: #d9420a;
	--blue: #1767ff;
	--green: #19a75b;
	--purple: #8b5bd1;
	--pink: #ca43bf;
	--line: #dfe6ef;
	--line-soft: #edf1f6;
	--soft-blue: #f5f9ff;
	--soft-orange: #fff8f3;
	--radius: 20px;
	--shadow: 0 24px 50px rgba(7, 39, 87, .13);
	--gutter: 80px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif; font-size: 17px; line-height: 1.6; color: var(--ink); background: #fff; -webkit-font-smoothing: antialiased; }
img, svg { max-width: 100%; }
img { height: auto; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: #0f4fd1; }
h1, h2, h3, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 6px; }
[id] { scroll-margin-top: 100px; }
.skip { position: absolute; left: -9999px; top: 8px; z-index: 100; background: #fff; padding: 10px 16px; border-radius: 10px; }
.skip:focus { left: 16px; }

.wrap { max-width: 1440px; margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { max-width: 900px; }

/* Tipografía */
.eyebrow { font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--orange-dark); margin-bottom: 16px; }
.eyebrow-light { color: #ff8a5c; }
.h1 { font-size: clamp(38px, 4.4vw, 62px); line-height: 1.05; font-weight: 800; letter-spacing: -0.03em; color: var(--navy); }
.h1-page { font-size: clamp(34px, 3.9vw, 56px); }
.h2 { font-size: clamp(30px, 3.1vw, 44px); line-height: 1.1; font-weight: 800; letter-spacing: -0.02em; color: var(--navy); }
.h2-light { color: #fff; }
.h3 { font-size: 28px; font-weight: 800; color: var(--navy); margin-bottom: 24px; }
.lead { font-size: 19px; line-height: 1.6; color: var(--muted); margin-top: 16px; max-width: 640px; }
.lead-light { color: #c3d0e6; }

/* Botones */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 58px; padding: 0 30px; border: 0; border-radius: 14px; font-family: inherit; font-size: 18px; font-weight: 800; line-height: 1.2; background: var(--orange); color: #fff; box-shadow: 0 12px 28px rgba(255, 81, 13, .28); cursor: pointer; transition: transform .2s ease, background .2s ease; text-align: center; }
.btn:hover { background: #ec4604; color: #fff; transform: translateY(-2px); }
.btn-sm { min-height: 48px; padding: 0 22px; font-size: 16px; box-shadow: none; }
.btn-block { width: 100%; }
.btn2 { display: inline-flex; align-items: center; justify-content: center; min-height: 58px; padding: 0 26px; border-radius: 14px; font-size: 17px; font-weight: 700; color: var(--navy); border: 1.5px solid #c9d5e6; background: #fff; transition: border-color .2s; }
.btn2:hover { color: var(--navy); border-color: var(--navy); }
.more { font-size: 15px; font-weight: 800; color: var(--blue); }

/* Cabecera */
.site-header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--line-soft); transition: box-shadow .2s; }
.site-header.scrolled { box-shadow: 0 8px 24px rgba(7, 39, 87, .07); }
.header-inner { height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo img { display: block; height: 50px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 34px; font-size: 16px; font-weight: 600; }
.main-nav > a, .drop-toggle { color: var(--ink); }
.main-nav > a:hover, .drop-toggle:hover { color: var(--blue); }
.drop-toggle { display: inline-flex; align-items: center; gap: 6px; background: none; border: 0; padding: 8px 0; font: inherit; cursor: pointer; }
.drop-toggle svg { transition: transform .2s; }
.has-drop { position: relative; }
.has-drop.open .drop-toggle { color: var(--blue); }
.has-drop.open .drop-toggle svg { transform: rotate(180deg); }
.drop { position: absolute; top: calc(100% + 26px); left: -200px; width: 1000px; max-width: calc(100vw - 40px); display: none; grid-template-columns: 3fr 1fr; gap: 28px; padding: 30px; background: #fff; border-radius: 0 0 24px 24px; box-shadow: 0 30px 60px rgba(7, 39, 87, .16); }
.has-drop.open .drop { display: grid; animation: dropin .2s ease; }
@keyframes dropin { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.drop-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; }
.drop-item { display: flex; gap: 14px; padding: 14px; border-radius: 16px; color: var(--ink); }
.drop-item:hover { background: var(--soft-blue); color: var(--ink); }
.drop-item strong { display: block; font-size: 16px; color: var(--navy); }
.drop-item small { font-size: 14px; line-height: 1.45; color: var(--muted); font-weight: 500; }
.drop-cta { background: var(--navy); border-radius: 18px; padding: 24px; display: flex; flex-direction: column; gap: 12px; color: #c3d0e6; font-size: 15px; font-weight: 500; line-height: 1.5; }
.drop-cta-title { font-size: 19px; font-weight: 800; color: #fff; }
.drop-cta .btn { margin-top: auto; }
.drop-all { color: #fff; font-weight: 700; text-align: center; }
.drop-all:hover { color: #fff; text-decoration: underline; }
.header-actions { display: flex; align-items: center; gap: 20px; }
.header-mail { font-size: 15px; font-weight: 600; color: var(--muted); }
.menu-toggle { display: none; width: 48px; height: 48px; border: 0; background: none; padding: 0; align-items: center; justify-content: center; cursor: pointer; }
.menu-toggle .i-close { display: none; }
.nav-cta-mobile { display: none !important; }

/* Iconos */
.ico { width: 52px; height: 52px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; background: #fff; }
.ico-sm { width: 34px; height: 34px; border-radius: 10px; }

/* Hero */
.hero { padding: 88px 0 72px; background: linear-gradient(180deg, var(--soft-blue) 0%, #fff 100%); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 64px; align-items: center; }
.hero-copy .lead { margin-top: 26px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 26px; font-size: 15px; font-weight: 600; color: var(--text); }
.hero-trust li { display: flex; gap: 8px; align-items: center; }
.hero-note { margin-top: 20px; font-size: 15px; font-weight: 600; color: var(--text); }
.hero-visual { position: relative; height: 540px; }
.flow { position: absolute; left: -40px; top: -40px; width: 660px; height: 600px; }
.panel { position: absolute; left: 20px; top: 20px; right: 0; bottom: 40px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 30px 70px rgba(7, 39, 87, .16); padding: 26px; display: flex; flex-direction: column; gap: 12px; }
.panel-top { display: flex; justify-content: space-between; align-items: center; font-size: 13px; font-weight: 700; color: var(--muted); margin-bottom: 6px; }
.dots { display: flex; gap: 8px; }
.dots i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-bottom: 8px; }
.stats div { border-radius: 14px; padding: 16px; }
.stats small { display: block; font-size: 13px; color: var(--muted); font-weight: 600; }
.stats b { font-size: 30px; font-weight: 800; color: var(--navy); line-height: 1.2; }
.panel-title { font-size: 14px; font-weight: 800; color: var(--navy); }
.task { display: flex; gap: 12px; align-items: center; padding: 12px 14px; border: 1px solid var(--line-soft); border-radius: 12px; font-size: 15px; font-weight: 600; line-height: 1.35; }
.task > span:nth-child(2) { flex: 1; }
.task em { font-style: normal; font-size: 13px; font-weight: 700; color: var(--green); }
.badge { position: absolute; left: -24px; bottom: 0; background: var(--navy); color: #fff; border-radius: 18px; padding: 18px 22px; display: flex; gap: 14px; align-items: center; box-shadow: 0 20px 40px rgba(3, 38, 91, .3); }
.badge small { display: block; font-size: 13px; color: #c3d0e6; font-weight: 600; }
.badge b { font-size: 18px; font-weight: 800; }

/* Franja "Trabajamos con" */
.who { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); padding: 28px 0; }
.who-inner { display: flex; align-items: center; gap: 24px; }
.who-inner > p { font-size: 15px; font-weight: 800; color: var(--navy); flex-shrink: 0; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { display: inline-flex; align-items: center; min-height: 44px; padding: 0 18px; border-radius: 999px; border: 1px solid var(--line); font-size: 15px; font-weight: 600; color: var(--ink); background: #fff; }
.chip-accent { background: var(--soft-orange); border-color: #ffd2bd; color: var(--orange-dark); font-weight: 800; }

/* Secciones */
.sec { padding: 104px 0; }
.sec-tight { padding: 72px 0; }
.sec-soft { background: var(--soft-blue); }
.sec-warm { background: var(--soft-orange); }
.sec-navy { background: var(--navy); }
.sec-head { max-width: 780px; margin-bottom: 48px; }
.sec-head-row { max-width: none; display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
.sec-head-row > div { max-width: 780px; }
.sec-head-row .btn2 { flex-shrink: 0; }
.grid-2, .grid-3, .grid-4 { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; color: var(--ink); }
a.card:hover, article.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #c9d5e6; color: var(--ink); }

.pain { background: var(--soft-orange); border: 1px solid #ffe3d4; border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.pain p { font-size: 18px; line-height: 1.45; font-weight: 700; color: var(--navy); }

.svc { padding: 32px; display: flex; flex-direction: column; gap: 16px; }
.svc h3 { font-size: 22px; line-height: 1.25; font-weight: 800; }
.svc h3 a { color: var(--navy); }
.svc > p { font-size: 16px; color: var(--muted); }
.svc .example { font-size: 14px; line-height: 1.5; color: var(--text); background: var(--soft-blue); border-radius: 10px; padding: 10px 12px; }
.svc .more { margin-top: auto; }

.svc-big { padding: 34px; display: flex; flex-direction: column; gap: 16px; border-top: 5px solid var(--blue); }
.svc-big h2 { font-size: 24px; line-height: 1.25; font-weight: 800; color: var(--navy); }
.svc-big p { font-size: 16px; color: var(--muted); }
.svc-big .more { margin-top: auto; }

.checks { display: flex; flex-direction: column; gap: 16px; }
.checks li { display: flex; gap: 10px; align-items: flex-start; font-size: 16px; line-height: 1.5; color: var(--text); }
.checks li svg { flex-shrink: 0; margin-top: 3px; }
.checks-light li { color: #fff; }
.checks-sm { gap: 8px; }
.checks-sm li { font-size: 15px; }

.ba { border-radius: var(--radius); padding: 36px; }
.ba-before { background: #f7f8fa; border: 1px solid var(--line); }
.ba-after { background: var(--navy); }
.ba-label { font-size: 15px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.ba-after .ba-label { color: #ff8a5c; }

.sector { padding: 30px; display: flex; flex-direction: column; gap: 14px; }
.sector .bar { height: 6px; width: 48px; border-radius: 3px; }
.sector h3 { font-size: 21px; line-height: 1.25; font-weight: 800; color: var(--navy); }
.sector p { font-size: 15px; color: var(--muted); }
.sector .more { margin-top: auto; }

.band { margin-top: 22px; display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 30px 36px; border-radius: var(--radius); background: var(--navy); }
.band h3 { font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.band p { font-size: 17px; line-height: 1.55; color: #c3d0e6; }
.band .btn { flex-shrink: 0; }
.band-warm { background: var(--soft-orange); border: 1px solid #ffe3d4; }
.band-warm h3 { color: var(--navy); }
.band-warm p { color: var(--muted); }

.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.steps li { border-top: 3px solid var(--c); padding-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.steps span { font-size: 44px; font-weight: 800; line-height: 1; color: var(--c); }
.steps h3 { font-size: 21px; font-weight: 800; color: var(--navy); }
.steps p { font-size: 16px; color: var(--muted); }
.note { margin-top: 48px; display: flex; gap: 18px; align-items: center; padding: 24px 28px; border-radius: 18px; background: var(--soft-blue); border: 1px solid var(--line); }
.note svg { flex-shrink: 0; }
.note p { font-size: 17px; line-height: 1.5; }

/* Proyectos */
.case { padding: 36px; display: grid; grid-template-columns: 200px minmax(0, 1fr); gap: 32px; align-items: center; }
.phone { width: 200px; height: 380px; border-radius: 32px; background: var(--navy); padding: 10px; box-shadow: 0 24px 50px rgba(7, 39, 87, .25); }
.screen { height: 100%; border-radius: 24px; background: #fff; padding: 18px 14px; display: flex; flex-direction: column; gap: 10px; }
.screen > b { font-size: 15px; font-weight: 800; color: var(--navy); }
.slot { border-radius: 12px; padding: 10px; display: flex; flex-direction: column; line-height: 1.35; }
.slot small { font-size: 11px; color: var(--muted); font-weight: 700; }
.slot strong { font-size: 13px; color: var(--navy); }
.line { display: flex; justify-content: space-between; border-bottom: 1px solid var(--line-soft); padding-bottom: 8px; font-size: 13px; font-weight: 700; color: var(--navy); }
.line em { font-style: normal; color: var(--orange); font-weight: 800; }
.phone-btn { margin-top: auto; height: 38px; border-radius: 10px; color: #fff; font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.case-copy { display: flex; flex-direction: column; gap: 14px; }
.case-tag { font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.case-copy h3 { font-size: 24px; line-height: 1.25; font-weight: 800; color: var(--navy); }
.case-copy > p { font-size: 16px; color: var(--muted); }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 420px minmax(0, 1fr); gap: 80px; }
.faq { border-bottom: 1px solid var(--line); padding: 24px 0; }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 24px; font-size: 20px; font-weight: 700; color: var(--navy); }
.faq summary::-webkit-details-marker { display: none; }
.faq-i { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-i::before, .faq-i::after { content: ''; position: absolute; left: 0; top: 8px; width: 18px; height: 2.5px; border-radius: 2px; background: var(--orange); transition: transform .2s; }
.faq-i::after { transform: rotate(90deg); }
.faq[open] .faq-i::after { transform: rotate(0); }
.faq p { margin-top: 14px; font-size: 17px; line-height: 1.65; color: var(--muted); }

/* Auditoría + formulario */
.audit-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 72px; align-items: start; }
.audit-copy .checks { margin-top: 28px; }
.audit-mail { margin-top: 28px; font-size: 16px; color: #c3d0e6; }
.audit-mail a { color: #fff; font-weight: 800; }
.audit-form { background: #fff; border-radius: 22px; padding: 40px; display: flex; flex-direction: column; gap: 18px; box-shadow: 0 30px 70px rgba(0, 0, 0, .25); }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.audit-form label { display: block; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.audit-form input[type=text], .audit-form input[type=email], .audit-form input[type=tel], .audit-form select, .audit-form textarea { width: 100%; min-height: 52px; border: 1.5px solid #cfd9e7; border-radius: 12px; padding: 12px 16px; font-family: inherit; font-size: 16px; font-weight: 500; line-height: 1.4; color: var(--ink); background: #fff; }
.audit-form textarea { resize: vertical; min-height: 110px; }
.audit-form input:focus, .audit-form select:focus, .audit-form textarea:focus { border-color: var(--blue); outline: none; box-shadow: 0 0 0 3px rgba(23, 103, 255, .15); }
.audit-form .privacy { display: flex; gap: 10px; align-items: flex-start; font-weight: 500; color: var(--muted); line-height: 1.5; margin: 0; }
.audit-form .privacy input { width: 20px; height: 20px; margin: 1px 0 0; flex-shrink: 0; }
.form-note { font-size: 13px; text-align: center; color: var(--muted); }
.form-msg { border-radius: 12px; padding: 14px 16px; font-size: 15px; line-height: 1.5; }
.form-ok { background: #f1fbf5; color: #126b3c; border: 1px solid #bfe8d0; }
.form-err { background: #fff4f0; color: #a3300a; border: 1px solid #ffd2bd; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* Páginas interiores */
.page-hero { padding: 40px 0 88px; background: linear-gradient(180deg, var(--soft-blue) 0%, #fff 100%); }
.page-hero-sm { padding-bottom: 48px; }
.crumbs { font-size: 14px; font-weight: 600; color: var(--muted); margin-bottom: 24px; }
.crumbs a { color: var(--muted); }
.crumbs span { color: var(--navy); }
.gain-card { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 36px; box-shadow: 0 30px 70px rgba(7, 39, 87, .12); }
.gain-title { font-size: 14px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 20px; }
.gain-card .checks li { font-size: 18px; color: var(--navy); }
.inc { padding: 30px; display: flex; gap: 18px; }
.num { width: 44px; height: 44px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 800; flex-shrink: 0; }
.inc h3 { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.inc p { font-size: 16px; color: var(--muted); }
.ex { padding: 30px; border-color: #ffe3d4; }
.ex-who { font-size: 14px; font-weight: 800; margin-bottom: 10px; }
.ex p:last-child { font-size: 17px; color: var(--navy); }
.rel { padding: 22px 24px; display: flex; justify-content: space-between; align-items: center; font-size: 17px; font-weight: 700; color: var(--navy); }
.rel span { color: var(--blue); }
.prose { font-size: 17px; color: var(--text); }
.prose h2, .prose h3 { color: var(--navy); margin: 1.6em 0 .6em; line-height: 1.25; }
.prose p, .prose ul, .prose ol { margin: 0 0 1em; }
.prose ul { list-style: disc; padding-left: 1.3em; }
.prose ol { list-style: decimal; padding-left: 1.3em; }

/* Pie */
.site-footer { background: var(--navy-dark); color: #c3d0e6; padding: 72px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand { display: flex; flex-direction: column; gap: 18px; }
.footer-brand p { font-size: 15px; line-height: 1.6; max-width: 340px; }
.logo-chip { display: inline-flex; align-self: flex-start; background: #fff; border-radius: 12px; padding: 8px 14px; }
.logo-chip img { height: 40px; width: auto; display: block; }
.footer-mail { color: #fff; font-weight: 700; }
.site-footer nav { display: flex; flex-direction: column; }
.site-footer nav a { font-size: 15px; line-height: 2.1; color: #c3d0e6; }
.site-footer nav a:hover { color: #fff; }
.footer-title { font-size: 14px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid #1c3f75; font-size: 14px; color: #8fa3c4; }

/* CTA fijo móvil y cookies */
.sticky-cta { display: none; }
.cookie-notice { position: fixed; left: 20px; bottom: 20px; z-index: 60; max-width: 440px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); padding: 20px; display: flex; gap: 16px; align-items: center; font-size: 14px; line-height: 1.5; color: var(--text); }
.cookie-notice[hidden] { display: none; }
.cookie-notice strong { color: var(--navy); }

/* Animaciones */
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes flow { to { stroke-dashoffset: -240; } }
@keyframes popin { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255, 81, 13, .45); } 70% { box-shadow: 0 0 0 14px rgba(255, 81, 13, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 81, 13, 0); } }
@keyframes shine { from { background-position: 0% 50%; } to { background-position: 200% 50%; } }
.float { animation: floaty 6s ease-in-out infinite; }
.flowline { stroke-dasharray: 8 12; animation: flow 6s linear infinite; }
.pop { opacity: 0; animation: popin .7s ease forwards; }
.d1 { animation-delay: .4s; } .d2 { animation-delay: 1.1s; } .d3 { animation-delay: 1.8s; }
.pulse { animation: pulse 2.4s ease-out infinite; }
.shine { background: linear-gradient(90deg, #ff510d, #ff8a3d, #ca43bf, #ff510d); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; color: transparent; animation: shine 6s linear infinite; }
.js-reveal .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.js-reveal .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.float, .flowline, .pop, .pulse, .shine { animation: none; opacity: 1; }
	.shine { color: var(--orange); background: none; }
	.js-reveal .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1240px) {
	:root { --gutter: 48px; }
	.main-nav { gap: 24px; }
	.header-mail { display: none; }
	.grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px 22px; }
	.faq-grid { grid-template-columns: 1fr; gap: 32px; }
	.drop { left: -120px; }
}
@media (max-width: 1080px) {
	.hero-grid, .audit-grid { grid-template-columns: 1fr; gap: 48px; }
	.hero-visual { height: 520px; max-width: 620px; }
	.grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.grid-2 { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr 1fr; }

	/* Menú móvil */
	.menu-toggle { display: inline-flex; }
	.header-actions { display: none; }
	.main-nav { position: fixed; inset: 88px 0 0 0; background: #fff; flex-direction: column; align-items: stretch; gap: 0; padding: 12px var(--gutter) 32px; overflow-y: auto; transform: translateX(100%); transition: transform .3s ease; visibility: hidden; }
	.nav-open .main-nav { transform: none; visibility: visible; }
	.nav-open { overflow: hidden; }
	.nav-open .menu-toggle .i-open { display: none; }
	.nav-open .menu-toggle .i-close { display: inline; }
	.main-nav > a, .drop-toggle { padding: 16px 0; border-bottom: 1px solid var(--line-soft); font-size: 18px; width: 100%; justify-content: space-between; }
	.drop { position: static; width: auto; max-width: none; box-shadow: none; padding: 8px 0 16px; grid-template-columns: 1fr; border-radius: 0; }
	.drop-grid { grid-template-columns: 1fr; }
	.drop-cta { display: none; }
	.nav-cta-mobile { display: inline-flex !important; margin-top: 24px; color: #fff !important; }
}
@media (max-width: 720px) {
	:root { --gutter: 16px; }
	body { font-size: 16px; }
	.header-inner { height: 68px; }
	.logo img { height: 40px; }
	.main-nav { inset: 68px 0 0 0; }
	[id] { scroll-margin-top: 80px; }
	.sec { padding: 64px 0; }
	.sec-tight { padding: 48px 0; }
	.hero { padding: 40px 0 48px; }
	.page-hero { padding: 20px 0 48px; }
	.sec-head { margin-bottom: 28px; }
	.sec-head-row { flex-direction: column; align-items: flex-start; gap: 20px; }
	.lead { font-size: 17px; }
	.hero-ctas .btn, .hero-ctas .btn2 { width: 100%; }
	.hero-visual { display: none; }
	.who-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
	.chips { flex-wrap: nowrap; overflow-x: auto; width: 100%; padding-bottom: 6px; scrollbar-width: none; }
	.chip { flex-shrink: 0; min-height: 40px; font-size: 14px; }
	.grid-3, .grid-4, .steps { grid-template-columns: 1fr; }
	.pain { padding: 20px; flex-direction: row; align-items: center; }
	.pain .ico { width: 44px; height: 44px; }
	.pain p { font-size: 16px; }
	.svc, .svc-big, .sector, .inc, .ex, .ba, .gain-card { padding: 22px; }
	.band { flex-direction: column; align-items: stretch; padding: 24px; }
	.case { grid-template-columns: 1fr; padding: 22px; }
	.phone { margin: 0 auto; }
	.steps span { font-size: 32px; }
	.note { flex-direction: column; align-items: flex-start; }
	.faq summary { font-size: 17px; }
	.faq p { font-size: 15px; }
	.audit-form { padding: 22px; }
	.form-row { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; gap: 32px; }
	.site-footer { padding-bottom: 110px; }
	.sticky-cta { display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; padding: 12px 16px 16px; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -8px 24px rgba(7, 39, 87, .08); transform: translateY(110%); transition: transform .3s ease; }
	.sticky-cta .btn { width: 100%; min-height: 54px; font-size: 17px; }
	.show-sticky .sticky-cta { transform: none; }
	.nav-open .sticky-cta { display: none; }
	.cookie-notice { left: 12px; right: 12px; bottom: 12px; max-width: none; flex-direction: column; align-items: stretch; }
}

/* Ajuste cabecera: evitar saltos de línea */
.main-nav > a, .drop-toggle, .header-actions .btn { white-space: nowrap; }
@media (max-width: 1480px) { .header-mail { display: none; } .main-nav { gap: 26px; } }
