/* ═══════════════════════════════════════════════════
   Dra. Helena Azevedo — Dermatologia
   FRAMEUP · frameup.com.br
   ═══════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #050E0C;
  color: #EFF7F5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

:root {
  --bg:    #050E0C;
  --bg2:   #080F0D;
  --bg3:   #0C1A17;
  --teal:  #0D9488;
  --teal-l:#14B8A6;
  --teal-d:#0A7369;
  --text:  #EFF7F5;
  --muted: rgba(239,247,245,0.52);
  --faint: rgba(239,247,245,0.22);
  --border:rgba(13,148,136,0.14);
  --pill:  999px;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--teal-d); border-radius: 2px; }

/* ── BARRA FRAMEUP ────────────────────────────── */
#frameup-bar {
  background: rgba(13,148,136,.07);
  border-bottom: 1px solid var(--border);
  padding: 9px 24px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: .74rem; color: var(--muted);
}
#frameup-bar strong { color: var(--teal-l); }
#frameup-bar a { color: var(--teal-l); text-decoration: none; font-weight: 600; }
#frameup-bar a:hover { text-decoration: underline; }

/* ── NAVBAR ───────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(5,14,12,0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background .4s, backdrop-filter .4s, border-color .4s;
}
#nav.scrolled {
  background: rgba(5,14,12,0.95);
  backdrop-filter: blur(20px);
  border-color: var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 48px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo-med { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); }
.logo-monogram {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(13,148,136,.15); border: 1px solid rgba(13,148,136,.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1rem; color: var(--teal-l); font-weight: 700; flex-shrink: 0;
}
.logo-name { font-weight: 800; font-size: .9rem; }
.logo-sub  { font-size: .67rem; color: var(--teal-l); letter-spacing: .05em; margin-top: 1px; }
.nav-links { display: flex; gap: 36px; }
.nav-links a { font-size: .77rem; font-weight: 500; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.ham { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.ham span { display: block; height: 1.5px; background: var(--text); }
.ham span:nth-child(1), .ham span:nth-child(2) { width: 22px; }
.ham span:nth-child(3) { width: 14px; }
#mob { display: none; position: fixed; inset-x: 0; top: 72px; z-index: 99; background: rgba(5,14,12,.97); padding: 28px 24px; border-bottom: 1px solid var(--border); }
#mob.on { display: block; }
#mob a { display: block; padding: 14px 0; border-bottom: 1px solid var(--border); color: var(--muted); text-decoration: none; font-size: .95rem; }

/* ── BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: var(--pill); font-weight: 700; font-family: inherit;
  cursor: pointer; transition: transform .25s, box-shadow .25s, opacity .2s;
  text-decoration: none; border: none; white-space: nowrap;
}
.btn-teal { background: linear-gradient(135deg, var(--teal), var(--teal-d)); color: #fff; padding: 14px 30px; font-size: .93rem; }
.btn-teal:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(13,148,136,.5); }
.btn-ghost { background: rgba(255,255,255,.06); color: var(--text); border: 1px solid rgba(255,255,255,.1); padding: 14px 30px; font-size: .93rem; }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }
.btn-outline { background: transparent; color: var(--muted); border: 1px solid var(--border); padding: 14px 30px; font-size: .93rem; }
.btn-outline:hover { border-color: rgba(13,148,136,.45); color: var(--text); }
.btn-wpp { background: #25D366; color: #fff; padding: 14px 30px; font-size: .93rem; }
.btn-wpp:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(37,211,102,.35); }
.btn-outline-white { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.25); padding: 14px 30px; font-size: .93rem; }
.btn-outline-white:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.06); }
.btn-sm  { padding: 10px 20px; font-size: .82rem; }
.btn-lg  { padding: 17px 42px; font-size: 1rem; }
.btn-xl  { padding: 19px 48px; font-size: 1.02rem; }

/* ── DOT PULSE ────────────────────────────────── */
.dot-pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--teal-l); animation: blink 2.2s ease-in-out infinite; flex-shrink: 0; }
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:.2; } }

/* ── SECTION LABELS ───────────────────────────── */
.sec-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .67rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--teal-l); margin-bottom: 16px;
}
.sec-title {
  font-size: clamp(2rem, 3.8vw, 3rem); font-weight: 900;
  line-height: 1.1; letter-spacing: -.022em;
}
.sec-title em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic; font-weight: 700; color: var(--teal-l);
  display: inline-block; padding-right: .12em;
}
.sec-desc { color: var(--muted); font-size: .97rem; line-height: 1.8; max-width: 480px; margin-top: 14px; }
.sec-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 64px; }
.sec-header.centered { flex-direction: column; align-items: center; text-align: center; }
.center-text { margin-left: auto; margin-right: auto; }
.section { padding: 112px 48px; }
.wrap { max-width: 1160px; margin: 0 auto; }
.surface { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ── REVEAL ───────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
.fu { animation: fadeUp .75s ease forwards; opacity: 0; }
.d1 { animation-delay: .1s; } .d2 { animation-delay: .28s; } .d3 { animation-delay: .45s; } .d4 { animation-delay: .62s; }

/* ═══ HERO — SPLIT FULL-SCREEN ═══════════════════ */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 48% 1fr;
  position: relative;
}

/* painel esquerdo */
.hero-left {
  display: flex;
  align-items: center;
  padding: 96px 56px 80px;
  position: relative;
  z-index: 2;
}
.hero-left-inner { max-width: 480px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .67rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--teal-l);
  background: rgba(13,148,136,.1); border: 1px solid rgba(13,148,136,.25);
  padding: 5px 14px; border-radius: var(--pill); margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 5rem); font-weight: 900;
  line-height: 1.03; letter-spacing: -.035em; margin-bottom: 24px;
}
.hero-title em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic; color: var(--teal-l);
  display: inline-block; padding-right: .12em; padding-bottom: .08em;
}
.hero-sub { font-size: 1.02rem; color: var(--muted); line-height: 1.78; max-width: 420px; margin-bottom: 40px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.hero-trust-item { font-size: .78rem; color: var(--faint); display: flex; align-items: center; gap: 7px; }

/* painel direito — foto */
.hero-right { position: relative; overflow: hidden; }
.hero-photo-wrap { position: absolute; inset: 0; }
.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 10%;
  display: block;
  filter: brightness(.88);
}
.hero-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 28%) ,
              linear-gradient(to top, var(--bg) 0%, transparent 40%);
}

/* cartões flutuantes no hero */
.hero-card {
  position: absolute; z-index: 3;
  background: rgba(8,15,13,.9);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(13,148,136,.25);
  border-radius: 16px; padding: 16px 22px;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.hero-card.c1 { bottom: 30%; left: 32px; min-width: 220px; animation: floatCard 5s ease-in-out infinite; }
.hero-card.c2 { bottom: 16%; right: 32px; text-align: center; animation: floatCard 5s ease-in-out infinite; animation-delay: -2.5s; }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hc-label { font-size: .63rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal-l); margin-bottom: 4px; }
.hc-value { font-size: .95rem; font-weight: 800; }
.hc-sub   { font-size: .72rem; color: var(--muted); margin-top: 4px; }
.hc-stat  { font-size: 2.4rem; font-weight: 900; line-height: 1; color: var(--teal-l); }
.hc-stat span { font-size: 1.6rem; }
.hc-stat-label { font-size: .72rem; color: var(--muted); margin-top: 4px; }

/* ═══ FILOSOFIA ════════════════════════════════════ */
.filosofia-sec {
  padding: 100px 48px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.filosofia-inner { max-width: 820px; margin: 0 auto; }
.filosofia-label {
  font-size: .67rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--teal-l); display: block; margin-bottom: 28px;
}
.filosofia-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 3.8vw, 3rem); font-weight: 700;
  line-height: 1.35; color: var(--text); margin-bottom: 28px;
}
.filosofia-quote em { font-style: italic; color: var(--teal-l); }
.filosofia-body { font-size: 1.02rem; color: var(--muted); line-height: 1.82; max-width: 580px; margin: 0 auto; }

/* ═══ NÚMEROS ══════════════════════════════════════ */
.numeros-sec {
  padding: 0 48px 80px;
}
.numeros-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--border); border-radius: 20px; overflow: hidden;
  max-width: 1160px; margin: 0 auto;
}
.numero-item {
  padding: 40px 32px; text-align: center;
  border-right: 1px solid var(--border);
  transition: background .3s;
}
.numero-item:last-child { border-right: none; }
.numero-item:hover { background: rgba(13,148,136,.04); }
.n-value {
  font-size: clamp(2.8rem, 4.5vw, 4rem); font-weight: 900; line-height: 1;
  color: var(--teal-l); margin-bottom: 10px;
}
.n-value span { font-size: .65em; }
.n-label { font-size: .82rem; color: var(--muted); line-height: 1.5; }

/* ═══ TRATAMENTOS — lista editorial ════════════════ */
.trat-list { display: flex; flex-direction: column; }
.trat-item {
  display: grid; grid-template-columns: 64px 1fr auto;
  gap: 32px; padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: background .3s, padding .3s;
  cursor: default;
}
.trat-item:first-child { border-top: 1px solid var(--border); }
.trat-item:hover { background: rgba(13,148,136,.025); padding-left: 16px; padding-right: 16px; margin: 0 -16px; }
.trat-num {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1.6rem; font-weight: 700; color: rgba(13,148,136,.35);
  line-height: 1; transition: color .3s;
}
.trat-item:hover .trat-num { color: var(--teal-l); }
.trat-title { font-size: 1.05rem; font-weight: 800; margin-bottom: 6px; }
.trat-desc  { font-size: .85rem; color: var(--muted); line-height: 1.7; max-width: 560px; }
.trat-tag {
  font-size: .65rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--teal-l);
  background: rgba(13,148,136,.1); border: 1px solid rgba(13,148,136,.2);
  padding: 5px 12px; border-radius: var(--pill); white-space: nowrap;
}

/* ═══ JORNADA — TIMELINE ════════════════════════════ */
.jornada-timeline {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; position: relative; margin-top: 64px;
}
.jornada-line {
  position: absolute; top: 28px; left: 40px; right: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(13,148,136,.4) 20%, rgba(13,148,136,.4) 80%, transparent);
  z-index: 0;
}
.jornada-step { padding: 0 20px; text-align: center; position: relative; z-index: 1; }
.js-dot {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid rgba(13,148,136,.4);
  background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1.1rem; font-weight: 700; color: var(--teal-l);
  margin: 0 auto 22px; transition: background .3s, border-color .3s, box-shadow .3s;
}
.jornada-step:hover .js-dot {
  background: rgba(13,148,136,.12);
  border-color: rgba(13,148,136,.7);
  box-shadow: 0 0 20px rgba(13,148,136,.25);
}
.js-title { font-size: .97rem; font-weight: 800; margin-bottom: 10px; }
.js-desc  { font-size: .82rem; color: var(--muted); line-height: 1.7; }

/* ═══ DEPOIMENTOS ══════════════════════════════════ */
.testem-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-top: 64px;
}
.testem-card {
  padding: 36px 32px; border-radius: 20px;
  background: var(--bg3); border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 20px;
  transition: border-color .3s, transform .3s;
}
.testem-card:hover { border-color: rgba(13,148,136,.3); transform: translateY(-4px); }
.testem-stars { color: var(--teal-l); font-size: 1rem; letter-spacing: 2px; }
.testem-text  { font-size: .9rem; color: rgba(239,247,245,.7); line-height: 1.78; font-style: italic; flex: 1; }
.testem-author { display: flex; align-items: center; gap: 12px; }
.testem-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(13,148,136,.15); border: 1px solid rgba(13,148,136,.3);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .95rem; color: var(--teal-l); flex-shrink: 0;
}
.testem-name  { font-size: .88rem; font-weight: 700; }
.testem-trat  { font-size: .73rem; color: var(--teal-l); margin-top: 2px; }

/* ═══ SOBRE — EDITORIAL ════════════════════════════ */
.sobre-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: start; }
.sobre-foto-col { position: relative; }
.sobre-foto-wrap {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(13,148,136,.15);
}
.sobre-foto-wrap img {
  width: 100%; display: block; object-fit: cover;
  object-position: center top; max-height: 580px;
}
.sobre-cred-float {
  position: absolute; bottom: -20px; right: -20px;
  background: rgba(8,15,13,.95);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(13,148,136,.3);
  border-radius: 16px; padding: 18px 24px;
  display: flex; align-items: center; gap: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.scf-item { text-align: center; }
.scf-key  { display: block; font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal-l); margin-bottom: 2px; }
.scf-val  { font-size: 1rem; font-weight: 900; color: var(--text); }
.scf-div  { width: 1px; height: 36px; background: var(--border); }
.sobre-bio { color: var(--muted); font-size: .95rem; line-height: 1.82; margin-top: 14px; }
.sobre-bio strong { color: var(--text); font-weight: 700; }
.sobre-dados { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.sobre-dado { display: flex; gap: 14px; align-items: flex-start; }
.sd-ico { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.sd-title { font-size: .88rem; font-weight: 700; margin-bottom: 3px; }
.sd-info  { font-size: .82rem; color: var(--muted); line-height: 1.55; }

/* ═══ FAQ — DOIS PAINÉIS ════════════════════════════ */
.faq-layout { display: grid; grid-template-columns: 0.6fr 1fr; gap: 80px; align-items: start; }
.faq-left { position: sticky; top: 100px; }
.faq-hint { font-size: .85rem; color: var(--muted); line-height: 1.7; margin-top: 16px; }
.faq-list { }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; color: var(--text);
  font-family: inherit; font-size: .95rem; font-weight: 700; text-align: left;
  padding: 20px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  transition: color .2s;
}
.faq-q:hover { color: var(--teal-l); }
.faq-arrow { width: 17px; height: 17px; flex-shrink: 0; color: var(--faint); transition: transform .3s, color .2s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--teal-l); }
.faq-a { font-size: .87rem; color: var(--muted); line-height: 1.78; padding: 0 0 20px; display: none; }
.faq-item.open .faq-a { display: block; }

/* ═══ CTA IMERSIVO ══════════════════════════════════ */
.cta-sec {
  min-height: 70vh;
  background: linear-gradient(135deg, #020D0B 0%, #061A16 40%, #0A1F1B 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 100px 48px;
  border-top: 1px solid var(--border);
}
.cta-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 70% at 50% 0%, rgba(13,148,136,.12), transparent 65%);
}
.cta-content { position: relative; z-index: 1; text-align: center; max-width: 680px; }
.cta-label { margin-bottom: 24px; color: var(--teal-l); }
.cta-title {
  font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900;
  line-height: 1.08; margin-bottom: 18px;
}
.cta-title em {
  font-family: 'Playfair Display', serif; font-style: italic;
  color: var(--teal-l); display: inline-block; padding-right: .12em; padding-bottom: .1em;
}
.cta-sub { font-size: 1.02rem; color: var(--muted); line-height: 1.78; margin-bottom: 44px; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-endereco { margin-top: 28px; font-size: .76rem; color: var(--faint); }

/* ═══ FOOTER ════════════════════════════════════════ */
footer { padding: 40px 48px 28px; border-top: 1px solid var(--border); }
.foot-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px; padding-bottom: 24px; border-bottom: 1px solid var(--border);
}
.foot-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem; }
.foot-crm  { font-size: .71rem; color: var(--faint); margin-top: 3px; }
.foot-links { display: flex; gap: 28px; }
.foot-links a { font-size: .77rem; color: var(--faint); text-decoration: none; transition: color .2s; }
.foot-links a:hover { color: var(--teal-l); }
.foot-right { text-align: right; }
.foot-copy  { font-size: .75rem; color: var(--faint); }
.foot-by    { font-size: .73rem; color: var(--faint); margin-top: 4px; }
.foot-by a  { color: var(--teal-l); text-decoration: none; font-weight: 600; }

/* ═══ WPP FLOAT ════════════════════════════════════ */
#wpp {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.4); text-decoration: none;
  transition: transform .3s, box-shadow .3s;
}
#wpp:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.5); }
.wpp-ring { position: absolute; inset: 0; border-radius: 50%; background: #25D366; animation: wppRing 2.5s ease-out infinite; }
@keyframes wppRing { 0% { transform:scale(1); opacity:.5; } 100% { transform:scale(1.85); opacity:0; } }

/* ═══ RESPONSIVE ════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-inner { padding: 0 24px; }
  .section { padding: 80px 24px; }
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 100px 24px 48px; }
  .hero-right { height: 50vw; min-height: 320px; }
  .filosofia-sec, .numeros-sec { padding-left: 24px; padding-right: 24px; }
  .numeros-grid { grid-template-columns: 1fr 1fr; }
  .numero-item:nth-child(2) { border-right: none; }
  .numero-item:nth-child(3),
  .numero-item:nth-child(4) { border-top: 1px solid var(--border); }
  .trat-item { grid-template-columns: 48px 1fr; gap: 20px; }
  .trat-tag  { display: none; }
  .jornada-timeline { grid-template-columns: 1fr 1fr; gap: 32px; }
  .jornada-line { display: none; }
  .testem-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
  .sobre-cred-float { position: static; margin-top: 16px; width: fit-content; }
  .faq-layout { grid-template-columns: 1fr; gap: 48px; }
  .faq-left { position: static; }
  .nav-links, #nav-cta { display: none; }
  .ham { display: flex; }
  footer { padding: 36px 24px 24px; }
  .foot-inner { flex-direction: column; align-items: flex-start; }
  .foot-right { text-align: left; }
  .cta-sec { padding: 80px 24px; }
  .sec-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 2.6rem; }
  .numeros-grid { grid-template-columns: 1fr 1fr; }
  .jornada-timeline { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* ── Demo disclaimer ─────────────────────────────── */
.demo-disclaimer {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 14px 24px;
  text-align: center;
}
.demo-disclaimer p {
  font-size: .72rem;
  color: rgba(255,255,255,.28);
  line-height: 1.65;
  max-width: 900px;
  margin: 0 auto;
}
.demo-disclaimer strong {
  color: rgba(255,255,255,.45);
  font-weight: 600;
}
