/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --brand:     #FF6B00;
  --brand-dk:  #CC5500;
  --brand-lt:  #FFF0E5;
  --cyan:      #4DC8E8;
  --dark:      #111210;
  --body:      #1A1917;
  --muted:     #3D3C39;
  --subtle:    #6B6A66;
  --bg:        #FAFAF7;
  --bg-warm:   #FEF9EE;
  --white:     #FFFFFF;
  --border:    rgba(0,0,0,0.10);
  --border-md: rgba(0,0,0,0.16);
  --green-bg:  #C6E8A8;
  --green-tx:  #1E4D08;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
}

/* ─── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px; line-height: 1.6;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── TIPO ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Inter Tight', sans-serif;
  line-height: 1.1;
  color: var(--body);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; }
h4 { font-size: .95rem; font-weight: 600; }
p  { color: var(--muted); line-height: 1.7; }

/* ─── LAYOUT ──────────────────────────────────────────── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 5rem 0; }
.section-sm { padding: 3.5rem 0; }

/* ─── COMPONENTES COMUNES ─────────────────────────────── */
.pill {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .75rem; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase;
  padding: .35rem .875rem;
  border-radius: 100px;
  background: var(--brand-lt);
  color: var(--brand-dk);
  margin-bottom: 1.25rem;
}
.pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: 'Inter Tight', sans-serif;
  font-size: .95rem; font-weight: 600;
  padding: .875rem 1.75rem;
  border-radius: var(--r-xl);
  border: none; cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--brand); color: #fff;
  box-shadow: 0 4px 20px rgba(255,107,0,.3);
}
.btn-primary:hover { background: var(--brand-dk); box-shadow: 0 6px 28px rgba(255,107,0,.4); }
.btn-ghost-hero {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.2);
}
.btn-ghost-hero:hover { background: rgba(255,255,255,.08); }

.tag {
  display: inline-block; font-size: .72rem; font-weight: 500;
  padding: .2rem .65rem; border-radius: 100px;
}
.tag-green { background: var(--green-bg); color: var(--green-tx); }
.tag-orange { background: #FFD9B3; color: #7A3000; }
.tag-blue   { background: #BDD9F8; color: #0C3D6B; }
.tag-mt { margin-top: .75rem; }

/* ─── NAV ─────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,250,247,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
}
.nav-inner {
  max-width: 1080px; margin: 0 auto; padding: 0 1.5rem;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  position: relative;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-img {
  height: 40px;
  width: auto;
}
.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: .875rem; font-weight: 500; color: var(--muted);
  transition: color .15s;
}
.nav-links a:hover { color: var(--body); }
.nav-cta {
  padding: .5rem 1.25rem;
  font-size: .85rem;
}

/* Hamburguesa — oculta en desktop */
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px; height: 20px; position: relative; padding: 0;
}
.nav-hamburger span {
  display: block; position: absolute; left: 0; width: 100%; height: 2px;
  background: var(--body); border-radius: 2px; transition: .25s;
}
.nav-hamburger span:nth-child(1) { top: 0; }
.nav-hamburger span:nth-child(2) { top: 9px; }
.nav-hamburger span:nth-child(3) { top: 18px; }
.nav-hamburger.is-active span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.nav-hamburger.is-active span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-active span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  background: var(--dark) url('comunidad.png') center center / cover no-repeat;
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(14, 17, 23, 0.65);
  pointer-events: none;
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.hero-eyebrow {
  font-size: .75rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--cyan);
  margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: .5rem;
}
.hero-eyebrow::before { content: ''; width: 24px; height: 1.5px; background: var(--cyan); }
.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero h1 em { font-style: normal; color: var(--brand); }
.hero-sub {
  font-size: 1.05rem; color: #fff; line-height: 1.7;
  margin-bottom: 2rem;
}
.hero-ctas { display: flex; gap: .875rem; flex-wrap: wrap; }
.hero-right {
  display: flex; flex-direction: column; gap: 1rem;
}
.hero-stat-card {
  background: rgba(255,255,255,.06);
  border: 0.5px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
}
.hero-stat-card.accent {
  background: var(--brand);
  border-color: var(--brand);
}
.hsc-val {
  font-family: 'Inter Tight', sans-serif;
  font-size: 2.5rem; font-weight: 800;
  color: #fff; line-height: 1;
  margin-bottom: .25rem;
}
.hsc-val-sm {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.5rem; font-weight: 800;
  color: #fff; line-height: 1;
  margin-bottom: .25rem;
}
.hsc-label {
  font-size: .85rem; color: rgba(255,255,255,.65);
}
.hero-stat-card.accent .hsc-label { color: rgba(255,255,255,.8); }
.hero-stats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: .75rem;
}

/* ─── PROBLEMA ────────────────────────────────────────── */
.section-problema { background: var(--bg-warm); }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.section-header p { margin-top: .75rem; font-size: 1.05rem; }

.problem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  margin-bottom: 2rem;
}
.problem-card {
  background: var(--white); border: 0.5px solid var(--border);
  border-radius: var(--r-md); padding: 1.5rem;
}
.prob-icon { font-size: 2rem; margin-bottom: .875rem; }
.prob-label { font-size: 1rem; font-weight: 600; color: var(--body); margin-bottom: .4rem; font-family: 'Inter Tight', sans-serif; }
.prob-desc { font-size: .9rem; color: var(--muted); line-height: 1.6; }

.stat-banner {
  background: var(--dark); border-radius: var(--r-lg);
  padding: 1.75rem 2rem;
  display: flex; align-items: center; gap: 1.5rem;
}
.stat-banner-val {
  font-family: 'Inter Tight', sans-serif;
  font-size: 3rem; font-weight: 800;
  color: var(--brand); flex-shrink: 0;
  line-height: 1;
}
.stat-banner-text {
  font-size: .95rem; color: #C8D8E4; line-height: 1.6;
}
.stat-banner-text strong { color: var(--brand); font-weight: 500; }

/* ─── CÓMO FUNCIONA ───────────────────────────────────── */
.how-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.how-card {
  border: 0.5px solid var(--border);
  border-radius: var(--r-md); padding: 1.25rem;
  position: relative; background: var(--white);
  transition: box-shadow .2s, transform .2s;
}
.how-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,.08); }
.how-card.featured {
  border: 2px solid var(--brand);
  background: #FFF8F2;
}
.how-num {
  font-family: 'Inter Tight', sans-serif;
  font-size: 2.5rem; font-weight: 800;
  color: #E8E6E0; line-height: 1; margin-bottom: .5rem;
}
.how-card.featured .how-num { color: #FFCFA3; }
.how-title { font-size: .95rem; font-weight: 600; color: var(--body); margin-bottom: .4rem; font-family: 'Inter Tight', sans-serif; }
.how-desc  { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* ─── DOCUMENTACIÓN expandida ─────────────────────────── */
.doc-expand {
  margin-top: 1.5rem;
  border: 2px solid var(--brand);
  border-radius: var(--r-md); overflow: hidden;
}
.doc-header {
  background: var(--brand); padding: 1rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.doc-header-num  { font-family: 'Inter Tight', sans-serif; font-size: 1.5rem; font-weight: 800; color: rgba(255,255,255,.3); }
.doc-header-text h4 { font-size: 1rem; color: #fff; margin-bottom: .15rem; font-family: 'Inter Tight', sans-serif; }
.doc-header-text p  { font-size: .85rem; color: rgba(255,255,255,.8); margin: 0; }
.doc-body {
  padding: 1.5rem; background: #FFF8F2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.doc-card {
  background: var(--white); border: 0.5px solid var(--border);
  border-radius: var(--r-sm); padding: 1.25rem;
}
.doc-n {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--brand); color: #fff;
  font-size: .8rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .625rem;
}
.doc-name { font-size: .95rem; font-weight: 600; color: var(--body); margin-bottom: .4rem; font-family: 'Inter Tight', sans-serif; }
.doc-desc { font-size: .85rem; color: var(--muted); line-height: 1.65; }
.doc-desc strong { color: var(--body); font-weight: 500; }

.tranq-note {
  margin-top: 1rem; padding: 1rem 1.25rem;
  background: var(--bg-warm); border: 1px solid #DDB97A;
  border-radius: var(--r-sm);
  display: flex; gap: .75rem; align-items: flex-start;
}
.tranq-note p { font-size: .875rem; margin: 0; }
.tranq-note strong { color: var(--body); font-weight: 500; }
.tranq-icon { font-size: 1.25rem; flex-shrink: 0; }

/* ─── QUIÉN PAGA ──────────────────────────────────────── */
.section-quien { background: var(--bg-warm); }
.flow-row {
  display: flex; align-items: center;
  gap: .75rem; margin: 2rem 0; flex-wrap: wrap;
}
.flow-node {
  flex: 1; min-width: 140px;
  background: var(--white); border: 0.5px solid var(--border-md);
  border-radius: var(--r-md); padding: 1rem 1.25rem; text-align: center;
}
.flow-node.dark { background: var(--dark); }
.flow-node .fn-l { font-size: .7rem; color: var(--subtle); margin-bottom: 3px; text-transform: uppercase; letter-spacing: .05em; }
.flow-node.dark .fn-l { color: #8A9BAA; }
.flow-node .fn-n { font-size: .95rem; font-weight: 600; color: var(--body); font-family: 'Inter Tight', sans-serif; }
.flow-node.dark .fn-n { color: #fff; }
.flow-arrow { font-size: 1.25rem; color: var(--brand); flex-shrink: 0; }

.prin-box {
  background: var(--brand); border-radius: var(--r-md);
  padding: 1.25rem 1.75rem; text-align: center;
  color: #fff;
}
.prin-box h3 { color: #fff; font-family: 'Inter Tight', sans-serif; }
.prin-box p { color: rgba(255,255,255,.88); margin: .3rem 0 0; font-size: .9rem; }

.obl-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin-top: 1.5rem;
}
.obl-card {
  background: var(--white); border: 0.5px solid var(--border);
  border-radius: var(--r-sm); padding: 1rem; text-align: center;
}
.obl-card strong { display: block; font-family: 'Inter Tight', sans-serif; font-size: .95rem; color: var(--body); margin-bottom: .25rem; }
.obl-card span { font-size: .85rem; color: var(--muted); }

/* ─── BENEFICIOS ──────────────────────────────────────── */
.ben-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
  margin-bottom: 2rem;
}
.ben-card {
  background: var(--white); border-radius: var(--r-md);
  border: 0.5px solid var(--border); padding: 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
  transition: box-shadow .2s;
}
.ben-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.07); }
.ben-icon {
  width: 44px; height: 44px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.25rem;
}
.bi-o { background: #FFD9B3; }
.bi-t { background: #AAEDD3; }
.bi-b { background: #BDD9F8; }
.bi-g { background: var(--green-bg); }
.ben-title { font-size: 1rem; font-weight: 600; color: var(--body); margin-bottom: .3rem; font-family: 'Inter Tight', sans-serif; }
.ben-desc  { font-size: .875rem; color: var(--muted); line-height: 1.6; }

.stats-strip {
  background: var(--dark); border-radius: var(--r-lg);
  padding: 1.75rem 2.5rem;
  display: flex; gap: 2.5rem; align-items: center; flex-wrap: wrap;
}
.ss-item { text-align: center; }
.ss-val {
  font-family: 'Inter Tight', sans-serif;
  font-size: 2rem; font-weight: 800; color: var(--brand);
  line-height: 1; margin-bottom: .2rem;
}
.ss-label { font-size: .8rem; color: #8A9BAA; }

/* ─── GARANTÍAS ───────────────────────────────────────── */
.section-garantias { background: var(--bg-warm); }
.trust-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem;
  margin-bottom: 2rem;
}
.trust-card {
  border-left: 3px solid var(--brand);
  padding-left: 1.25rem;
}
.tc-t { font-size: .95rem; font-weight: 600; color: var(--body); margin-bottom: .3rem; font-family: 'Inter Tight', sans-serif; }
.tc-d { font-size: .875rem; color: var(--muted); line-height: 1.6; }

.warning-box {
  background: var(--white); border: 1px solid #DDB97A;
  border-radius: var(--r-md); padding: 1.25rem 1.5rem;
}
.warning-box h4 { font-family: 'Inter Tight', sans-serif; color: var(--body); margin-bottom: .5rem; }
.warning-box p  { font-size: .875rem; color: var(--muted); margin-bottom: 1rem; }
.warning-box strong { color: var(--body); font-weight: 500; }
.warning-box ol { font-size: .875rem; color: var(--muted); padding-left: 1.5rem; margin: .75rem 0; }
.warning-box ol li { margin-bottom: .35rem; }

/* ─── CTAs INTERMEDIOS ────────────────────────────────── */
.section-cta-inline {
  text-align: center; padding: 2rem 0 0;
}
.section-cta-inline .btn { font-size: .95rem; padding: .875rem 2rem; }
.cta-inline-text {
  font-size: .9rem; color: var(--muted); margin-bottom: .75rem;
}



/* ─── FORMULARIO / CTA ────────────────────────────────── */
.section-cta { background: var(--dark); }
.cta-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: start;
}
.cta-left h2 { color: #fff; margin-bottom: .875rem; }
.cta-right-title { color: var(--brand); margin-bottom: .875rem; padding-top: 10px; font-family: 'Inter Tight', sans-serif; text-transform: uppercase; text-align: center; }
.cta-left h2 em { font-style: normal; color: var(--brand); }
.cta-left p  { color: #8A9BAA; margin-bottom: 1.5rem; }
.cta-contacts { display: flex; flex-direction: column; gap: .625rem; }
.cta-contact-item {
  display: flex; align-items: center; gap: .75rem;
  font-size: .9rem; color: #C8D8E4;
}
.cta-contact-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand); flex-shrink: 0;
}
.cta-mapa {
  margin-top: 1.25rem; padding: .875rem 1.125rem;
  background: rgba(255,255,255,.07); border-radius: var(--r-sm);
  border: 0.5px solid rgba(255,255,255,.1);
}
.cta-mapa-label { font-size: .7rem; color: #8A9BAA; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .5rem; }
.cta-mapa-desc { font-size: .85rem; color: #8A9BAA; line-height: 1.5; margin: 0 0 .75rem; }
.cta-mapa-desc a { color: var(--cyan); text-decoration: underline; }
.cta-mapa-link { display: block; }
.cta-mapa-img { width: 100%; max-width: 400px; border-radius: var(--r-sm); transition: opacity .2s; }
.cta-mapa-link:hover .cta-mapa-img { opacity: .85; }
.cta-empresa-title { color: #fff; font-size: 1.1rem; font-weight: 600; margin-bottom: .5rem; }
.cta-empresa {
  color: #8A9BAA; font-size: .85rem; margin-top: .5rem;
}

/* Formulario */
.form-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 2rem;
}
.form-card h3 {
  font-family: 'Inter Tight', sans-serif; font-size: 1.15rem;
  color: var(--body); margin-bottom: 1.25rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .875rem; }
.form-group { display: flex; flex-direction: column; gap: .3rem; margin-bottom: .875rem; }
.form-group label { font-size: .8rem; font-weight: 500; color: var(--muted); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: .9rem; color: var(--body);
  padding: .75rem 1rem;
  border: 1.5px solid var(--border-md);
  border-radius: var(--r-sm);
  background: var(--bg);
  outline: none;
  transition: border-color .15s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit {
  width: 100%; justify-content: center;
  font-size: 1rem; padding: 1rem;
}
.form-legal {
  font-size: .72rem; color: var(--subtle);
  margin-top: .625rem; text-align: center; line-height: 1.5;
}
.form-legal a {
  color: var(--subtle);
  text-decoration: underline;
}

/* Checkbox privacidad */
.form-check {
  display: flex; align-items: flex-start; gap: .5rem;
  margin-bottom: .875rem;
}
.form-check input[type="checkbox"] {
  width: auto; margin-top: .2rem; flex-shrink: 0;
  accent-color: var(--brand);
}
.form-check label {
  font-size: .78rem; color: var(--muted); line-height: 1.5;
}
.form-check label a {
  color: var(--muted);
  text-decoration: underline;
}

/* ─── FOOTER ──────────────────────────────────────────── */
footer {
  background: #1A1A2E;
  padding: 0;
}
.footer-grid {
  display: flex; justify-content: space-between; gap: 2rem;
  padding: 2em 3em 3em;
  border-bottom: 1px solid #929292;
}
.footer-col:first-child { flex: 1 1 40%; padding-right: 2rem; }
.footer-col:nth-child(2) { flex: 0 0 20%; }
.footer-col:nth-child(3) { flex: 1 1 30%; }
.footer-logo-img {
  max-width: 200px; height: auto; margin-bottom: .5rem; margin-top: -30px;
}
.footer-desc {
  font-size: .9rem; color: #ccc; line-height: 1.8; margin-top: 1rem;
}
.footer-heading {
  font-family: 'Inter Tight', sans-serif; font-size: 1.1rem;
  color: #fff; font-weight: 600; margin-bottom: .75rem;
}
.footer-nav, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-nav li { padding: 9px 0; }
.footer-nav a { font-size: .9rem; color: #ccc; transition: color .15s; }
.footer-nav a:hover { color: #fff; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: .4rem;
  font-size: .9rem; color: #aaa; margin-bottom: .5rem; line-height: 1.6;
}
.footer-contact-item a { color: #aaa; transition: color .15s; }
.footer-contact-item a:hover { color: #fff; }
.footer-contact-item strong { color: #fff; font-weight: 500; }
.footer-icon {
  width: 15px; height: 15px; color: #E8A53E; flex-shrink: 0; margin-top: 4px;
}
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; padding: 1em 3em;
}
.footer-copy { font-size: .8rem; color: #E8A53E; text-align: end; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  font-size: .8rem; color: #888; transition: color .15s;
}
.footer-links a:hover { color: #E8A53E; }

/* ─── FOOTER RESPONSIVE: TABLET ───────────────────────── */
@media (max-width: 1024px) and (min-width: 769px) {
  .footer-grid {
    display: flex; flex-wrap: wrap; gap: 2rem; padding: 2em 2em 2.5em;
  }
  .footer-col:first-child {
    flex: 0 0 100%; padding-right: 0; text-align: center;
  }
  .footer-col:first-child .footer-logo-img {
    margin-left: auto; margin-right: auto; display: block;
  }
  .footer-col:nth-child(2) { flex: 0 0 45%; }
  .footer-col:nth-child(3) { flex: 0 0 50%; }
  .footer-bottom { padding: 1em 2em; }
}

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-inner    { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-right    { display: none; }
  .problem-grid  { grid-template-columns: 1fr; }
  .how-grid      { grid-template-columns: 1fr 1fr; }
  .doc-body      { grid-template-columns: 1fr; }
  .flow-row      { flex-direction: column; }
  .flow-arrow    { transform: rotate(90deg); }
  .obl-grid      { grid-template-columns: 1fr; }
  .ben-grid      { grid-template-columns: 1fr; }
  .trust-grid    { grid-template-columns: 1fr; }
  .cta-grid      { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row      { grid-template-columns: 1fr; }
  .stats-strip   { gap: 1.5rem; justify-content: center; }
  /* ── FOOTER MÓVIL ── */
  .footer-grid {
    display: flex; flex-direction: column; gap: 2rem;
    padding: 2em 1.25em 2.5em; text-align: center;
  }
  .footer-col:first-child { flex: 0 0 auto; padding-right: 0; }
  .footer-col:nth-child(2) { flex: 0 0 auto; }
  .footer-col:nth-child(3) { flex: 0 0 auto; }
  .footer-logo-img { display: block; margin-left: auto; margin-right: auto; max-width: 180px; }
  .footer-desc { text-align: center; }
  .footer-heading { text-align: center; }
  .footer-contact-item { justify-content: center; }
  .footer-nav { text-align: center; }
  .footer-bottom {
    flex-direction: column; align-items: center; text-align: center;
    gap: 0.75rem; padding: 1em 1.25em;
  }
  .footer-copy { text-align: center; order: 2; }
  .footer-links { flex-direction: column; align-items: center; gap: 0.5rem; order: 1; }
  /* ── NAV MÓVIL: hamburguesa + menú desplegable ── */
  .nav-hamburger { display: block; }
  .nav-links {
    display: none; flex-direction: column; align-items: center;
    position: absolute; top: 64px; left: 0; right: 0;
    background: rgba(250,250,247,.98); backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0; gap: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
  }
  .nav-links.nav-open { display: flex; }
  .nav-links a { font-size: 1rem; }
  .nav-cta { margin-top: .5rem; }
}

/* ─── ANIMACIONES ─────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * {
  animation: fadeUp .6s ease both;
}
.hero-eyebrow { animation-delay: .05s; }
.hero h1      { animation-delay: .15s; }
.hero-sub     { animation-delay: .25s; }
.hero-ctas    { animation-delay: .35s; }
