/* Corpore Abogados — refresh visual inspirado en layouts editoriales claros */
:root {
  --navy: #14253a;
  --navy-2: #20394c;
  --teal: #3e6672;
  --gold: #b9965d;
  --gold-soft: #e8d9bb;
  --cream: #f7f4ed;
  --paper: #fffdf8;
  --sky: #edf3f4;
  --line: #bdd0d3;
  --ink: #18202a;
  --muted: #65717d;
  --white: #ffffff;
  --sans: "DM Sans", Arial, sans-serif;
  --display: "Italiana", Georgia, serif;
  --shell: min(1280px, calc(100% - 36px));
  --header-h: 116px;
  --radius: 0;
  --ease: cubic-bezier(.2,.75,.2,1);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.65;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
::selection { color: var(--white); background: var(--teal); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px; left: 10px;
  padding: 10px 15px;
  background: var(--white);
  transform: translateY(-180%);
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

.shell { width: var(--shell); margin-inline: auto; }
.section { position: relative; padding: clamp(84px, 10vw, 150px) 0; }
.eyebrow {
  margin: 0 0 15px;
  color: var(--teal);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .21em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin-top: 0;
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.03;
}
h1 { font-size: clamp(3.35rem, 7.5vw, 7.8rem); letter-spacing: -.035em; }
h2 { font-size: clamp(2.65rem, 5vw, 5.25rem); letter-spacing: -.025em; }
h3 { font-size: clamp(1.65rem, 2.8vw, 2.6rem); }
p { margin-top: 0; }
.lead { color: var(--muted); font-size: clamp(1rem, 1.45vw, 1.18rem); }

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border: 1px solid var(--navy);
  border-radius: 0;
  color: var(--white);
  background: var(--navy);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .22s var(--ease), color .22s, background .22s, box-shadow .22s;
}
.btn:hover {
  transform: translateY(-2px);
  color: var(--navy);
  background: var(--gold-soft);
  box-shadow: 0 14px 28px rgba(20,37,58,.14);
}
.btn-small { min-height: 44px; padding: 10px 18px; font-size: .72rem; }
.btn-dark { color: var(--white); background: var(--navy); border-color: var(--navy); }
.btn-full { width: 100%; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(5px); }
.text-link.dark { color: var(--navy); }

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  color: var(--navy);
  transition: box-shadow .25s, backdrop-filter .25s;
}
.utility-bar {
  min-height: 34px;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--navy-2);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.utility-inner {
  display: flex;
  justify-content: flex-end;
  gap: 34px;
}
.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(255,253,248,.96);
}
.site-header::after {
  content: "";
  position: absolute;
  top: 34px;
  right: 0; left: 0;
  height: 82px;
  z-index: -1;
  background: rgba(255,253,248,.96);
  border-bottom: 1px solid rgba(20,37,58,.12);
}
.site-header.is-scrolled {
  box-shadow: 0 12px 36px rgba(20,37,58,.10);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}
.brand img { width: 46px; height: 46px; object-fit: contain; }
.brand span { display: grid; line-height: 1; }
.brand strong { font-size: 1.02rem; letter-spacing: .2em; }
.brand small { margin-top: 6px; font-size: .59rem; letter-spacing: .34em; opacity: .72; }
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(15px, 2vw, 30px);
  font-size: .76rem;
  font-weight: 600;
}
.nav-links > a:not(.btn) {
  position: relative;
  color: var(--teal);
}
.nav-links > a:not(.btn)::after {
  content: "";
  position: absolute;
  right: 0; bottom: -7px; left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s;
}
.nav-links > a:hover::after { transform: scaleX(1); }
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  padding: 10px;
  border: 1px solid var(--navy);
  background: transparent;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: var(--navy);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-h) + 26px) 0 90px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(237,243,244,.68), rgba(255,253,248,0) 38%),
    var(--paper);
}
.hero-stage {
  display: grid;
  grid-template-columns: minmax(360px, .84fr) minmax(0, 1.16fr);
  align-items: center;
  gap: clamp(52px, 8vw, 124px);
}
.hero-visual {
  position: relative;
  min-height: clamp(540px, 68vw, 720px);
}
.hero-panel {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(20,37,58,.24);
}
.hero-panel-tall {
  inset: 0 24% 0 0;
  background: #ded6c8;
}
.hero-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-arch {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  height: 68%;
  overflow: hidden;
  border: 1px solid rgba(20,37,58,.42);
  border-radius: 160px 160px 0 0;
  background: var(--cream);
  box-shadow: 0 28px 60px rgba(20,37,58,.12);
}
.hero-arch img { width: 100%; height: 100%; object-fit: cover; }
.hero-route-label {
  position: absolute;
  top: 5%;
  right: 8%;
  color: var(--teal);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .22em;
  writing-mode: vertical-rl;
}
.hero-copy { max-width: 720px; }
.hero-copy .eyebrow { margin-bottom: 28px; }
.hero-copy h1 { margin-bottom: 28px; }
.hero-title-main { display: block; }
.hero-title-accent {
  display: block;
  margin-top: .04em;
  color: var(--teal);
  font-weight: 400;
}
.hero-lead {
  max-width: 670px;
  margin-bottom: 32px;
  color: #4e5e68;
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-proof {
  display: flex;
  gap: 12px 24px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(20,37,58,.18);
  color: var(--teal);
  font-size: .74rem;
}
.hero-proof span::before {
  content: "○";
  margin-right: 8px;
  color: var(--gold);
}
.hero-line {
  position: absolute;
  right: 0; bottom: -12px; left: 0;
  height: 120px;
  pointer-events: none;
}
.hero-line svg { width: 100%; height: 100%; }
.hero-line path {
  fill: none;
  stroke: rgba(62,102,114,.48);
  stroke-width: 1.2;
}

/* Marquee */
.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-2);
  border-block: 1px solid rgba(255,255,255,.16);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-group {
  display: flex;
  gap: 48px;
  padding: 17px 24px;
  white-space: nowrap;
  font-size: .7rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.marquee-group span::before {
  content: "◇";
  margin-right: 16px;
  color: var(--gold-soft);
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* Intro */
.intro { background: var(--paper); }
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0,.84fr) minmax(0,1.16fr);
  align-items: center;
  gap: clamp(48px, 9vw, 132px);
}
.intro-copy h2 { max-width: 590px; margin-bottom: 28px; }
.intro-copy .lead { max-width: 580px; margin-bottom: 28px; }
.intro-visual {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: var(--sky);
  border: 1px solid rgba(20,37,58,.16);
}
.intro-visual > img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.intro-note {
  position: absolute;
  width: min(78%, 440px);
  padding: 28px 30px;
  background: rgba(255,253,248,.95);
  border: 1px solid rgba(20,37,58,.26);
  box-shadow: 0 22px 54px rgba(20,37,58,.11);
}
.intro-note-a { top: 12%; left: 8%; }
.intro-note-b { right: 7%; bottom: 10%; }
.intro-note > span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
}
.intro-note strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  font-weight: 400;
  line-height: 1.12;
}
.intro-note p { margin-bottom: 0; color: var(--muted); }

/* Areas */
.areas {
  color: var(--ink);
  background: var(--sky);
  border-block: 1px solid rgba(20,37,58,.12);
}
.section-head {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(280px,.48fr);
  align-items: end;
  gap: 48px;
  margin-bottom: clamp(48px, 7vw, 84px);
}
.section-head h2 { margin-bottom: 0; }
.section-head > p { margin-bottom: 4px; color: var(--muted); }
.section-head.centered {
  display: block;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.section-head.centered p:last-child { max-width: 620px; margin-inline: auto; color: var(--muted); }

.area-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 24px;
}
.area-card {
  position: relative;
  min-height: 590px;
  display: grid;
  grid-template-rows: 1.12fr .88fr;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(20,37,58,.28);
  background: var(--paper);
  text-align: left;
  cursor: pointer;
  transition: transform .28s var(--ease), box-shadow .28s;
}
.area-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 64px rgba(20,37,58,.14);
}
.area-art {
  overflow: hidden;
  background: var(--cream);
  border-bottom: 1px solid rgba(20,37,58,.22);
}
.area-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s var(--ease);
}
.area-card:hover .area-art img { transform: scale(1.035); }
.area-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(28px, 4vw, 44px);
}
.area-body small {
  margin-bottom: 16px;
  color: var(--teal);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.area-body strong {
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: clamp(1.95rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.08;
}
.area-body > span { color: var(--muted); }
.area-body em {
  margin-top: auto;
  padding-top: 22px;
  color: var(--teal);
  font-size: .72rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.area-card-wide {
  grid-column: 1 / -1;
  min-height: 410px;
  grid-template-columns: .82fr 1.18fr;
  grid-template-rows: none;
}
.area-card-wide .area-art { border-right: 1px solid rgba(20,37,58,.22); border-bottom: 0; }

/* Process */
.process {
  overflow: hidden;
  background: var(--paper);
}
.process-pattern {
  position: absolute;
  inset: auto -8% -18% auto;
  width: 46vw;
  aspect-ratio: 1;
  border: 1px solid rgba(62,102,114,.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(62,102,114,.04),
    0 0 0 110px rgba(62,102,114,.035),
    0 0 0 165px rgba(62,102,114,.03);
}
.process-map {
  position: relative;
  margin-top: 70px;
  padding-top: 30px;
}
.process-path {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 220px;
}
.process-path path {
  fill: none;
  stroke: rgba(62,102,114,.58);
  stroke-width: 1.5;
  stroke-dasharray: 7 8;
}
.process-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 22px;
  padding: 0;
  list-style: none;
}
.process-steps li {
  min-height: 290px;
  padding: 28px 26px;
  background: rgba(255,253,248,.95);
  border: 1px solid rgba(20,37,58,.20);
}
.process-steps li:nth-child(even) { transform: translateY(56px); }
.process-steps li > span {
  display: inline-grid;
  width: 42px; height: 42px;
  place-items: center;
  margin-bottom: 34px;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 700;
}
.process-steps strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: 1.72rem;
  font-weight: 400;
  line-height: 1.1;
}
.process-steps p { margin-bottom: 0; color: var(--muted); }
.legal-note {
  max-width: 820px;
  margin: 90px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(20,37,58,.2);
  color: var(--muted);
  font-size: .8rem;
  text-align: center;
}

/* Why */
.why {
  color: var(--ink);
  background: var(--sky);
}
.why-grid {
  display: grid;
  grid-template-columns: minmax(0,.98fr) minmax(0,1.02fr);
  align-items: center;
  gap: clamp(54px, 8vw, 118px);
}
.why-visual {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background: var(--navy-2);
}
.why-visual img { width: 100%; height: 100%; object-fit: cover; }
.why-caption {
  position: absolute;
  right: 26px;
  bottom: 26px;
  padding: 10px 14px;
  color: var(--white);
  background: rgba(20,37,58,.76);
  font-size: .66rem;
  letter-spacing: .18em;
}
.why-copy h2 { margin-bottom: 24px; }
.why-list { margin: 38px 0 42px; border-top: 1px solid rgba(20,37,58,.22); }
.why-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(20,37,58,.22);
}
.why-list article > span {
  color: var(--gold);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .13em;
}
.why-list strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 400;
}
.why-list p { margin-bottom: 0; color: var(--muted); }

/* FAQ */
.faq-section { background: var(--paper); }
.faq-grid {
  display: grid;
  grid-template-columns: minmax(320px,.72fr) minmax(0,1.28fr);
  gap: clamp(48px, 8vw, 110px);
}
.faq-heading { position: sticky; top: calc(var(--header-h) + 32px); align-self: start; }
.faq-heading h2 { margin-bottom: 22px; }
.faq-heading p { color: var(--muted); }
.faq-heading img { width: 100%; max-width: 420px; margin-top: 36px; opacity: .78; }
.faq-list { border-top: 1px solid rgba(20,37,58,.26); }
.faq-item { border-bottom: 1px solid rgba(20,37,58,.26); }
.faq-item button {
  width: 100%;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.faq-item button span {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.15;
}
.faq-item button i {
  display: grid;
  width: 34px; height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--teal);
  border-radius: 50%;
  color: var(--teal);
  font-style: normal;
  transition: transform .25s, color .25s, background .25s;
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s var(--ease);
}
.faq-answer p {
  min-height: 0;
  overflow: hidden;
  margin-bottom: 0;
  color: var(--muted);
}
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer p { padding-bottom: 26px; }
.faq-item.is-open button i {
  transform: rotate(45deg);
  color: var(--white);
  background: var(--teal);
}

/* Form */
.form-section {
  color: var(--ink);
  background: var(--cream);
  border-top: 1px solid rgba(20,37,58,.14);
}
.form-shell {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
  gap: 0;
  border: 1px solid rgba(20,37,58,.25);
  background: var(--paper);
  box-shadow: 0 28px 74px rgba(20,37,58,.12);
}
.form-visual {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-2);
}
.form-visual > img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.form-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,37,58,.08), rgba(20,37,58,.84));
}
.form-visual-copy {
  position: absolute;
  z-index: 1;
  right: 10%; bottom: 9%; left: 10%;
}
.form-visual-copy .eyebrow { color: var(--gold-soft); }
.form-visual-copy h2 { margin-bottom: 20px; }
.form-visual-copy > p { max-width: 520px; color: rgba(255,255,255,.76); }
.form-microproof {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.form-microproof span {
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.34);
  font-size: .68rem;
  letter-spacing: .06em;
}
.lead-form { padding: clamp(34px, 5vw, 68px); background: var(--paper); }
.form-title {
  margin-bottom: 34px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(20,37,58,.2);
}
.form-title span {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.form-title strong {
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
}
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label {
  color: var(--navy);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .06em;
}
.field label span { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid rgba(20,37,58,.24);
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
}
.field textarea { min-height: 126px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--teal);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(62,102,114,.12);
}
.field-error { min-height: 17px; color: #a13131; font-size: .7rem; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #a13131; }
.field-helper { color: var(--muted); font-size: .68rem; }
.checkbox {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  margin: 24px 0 20px;
  color: var(--muted);
  font-size: .72rem;
}
.checkbox input { width: 17px; height: 17px; margin-top: 3px; accent-color: var(--navy); }
.form-note { margin: 15px 0 0; color: var(--muted); font-size: .68rem; text-align: center; }

/* Footer */
.site-footer {
  padding: 92px 0 24px;
  color: var(--white);
  background: var(--navy-2);
  overflow: hidden;
}
.footer-main {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto minmax(260px,.72fr);
  gap: 64px;
  align-items: start;
}
.footer-brand .brand { color: var(--white); }
.footer-brand h2 {
  margin: 48px 0 18px;
  font-size: clamp(2.65rem, 4vw, 4.8rem);
}
.footer-brand p { max-width: 520px; color: rgba(255,255,255,.65); }
.footer-links { display: grid; gap: 14px; padding-top: 58px; }
.footer-links a { color: rgba(255,255,255,.78); font-size: .78rem; }
.footer-links a:hover { color: var(--gold-soft); }
.footer-pattern { align-self: stretch; min-height: 320px; opacity: .85; }
.footer-pattern img { width: 100%; height: 100%; object-fit: cover; }
.privacy-note {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.58);
  font-size: .7rem;
}
.privacy-note strong { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.54);
  font-size: .66rem;
}
.footer-bottom a { color: var(--gold-soft); }

/* Floating CTA */
.whatsapp-fab {
  position: fixed;
  z-index: 90;
  right: 22px; bottom: 22px;
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #1f8f5f;
  box-shadow: 0 16px 34px rgba(0,0,0,.22);
}
.whatsapp-fab::before {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(31,143,95,.44);
  border-radius: 50%;
  animation: pulse 1.9s infinite;
}
.whatsapp-fab svg { width: 30px; fill: currentColor; }
@keyframes pulse {
  0% { transform: scale(.88); opacity: 0; }
  35% { opacity: 1; }
  100% { transform: scale(1.22); opacity: 0; }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Thanks */
.thanks-page {
  min-height: 100svh;
  color: var(--ink);
  background: var(--cream);
}
.thanks-shell {
  width: min(1240px, calc(100% - 36px));
  min-height: calc(100svh - 70px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: stretch;
  background: var(--paper);
  border-inline: 1px solid rgba(20,37,58,.16);
}
.thanks-visual {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-2);
}
.thanks-visual > img { width: 100%; height: 100%; object-fit: cover; }
.thanks-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,37,58,.05), rgba(20,37,58,.82));
}
.thanks-visual-copy {
  position: absolute;
  z-index: 1;
  right: 9%; bottom: 8%; left: 9%;
}
.thanks-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 7vw, 90px);
}
.thanks-copy .brand { margin-bottom: 64px; }
.thanks-copy h1 { margin-bottom: 26px; font-size: clamp(3.1rem, 6vw, 6rem); }
.thanks-copy h1 em { display: block; color: var(--teal); font-style: normal; }
.thanks-copy > p { color: var(--muted); font-size: 1.05rem; }
.thanks-summary {
  display: grid;
  gap: 6px;
  margin: 30px 0;
  padding: 22px 0;
  border-block: 1px solid rgba(20,37,58,.2);
}
.thanks-summary:empty { display: none; }
.thanks-next { display: grid; gap: 8px; color: var(--muted); font-size: .84rem; }
.thanks-next strong { color: var(--ink); }
.thanks-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.thanks-actions .btn-ghost {
  color: var(--navy);
  background: transparent;
  border-color: var(--navy);
}
.thanks-actions .btn-ghost:hover { color: var(--white); background: var(--navy); }
.thanks-legal { margin-top: 30px; font-size: .7rem !important; }
.thanks-footer {
  width: min(1240px, calc(100% - 36px));
  min-height: 70px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255,255,255,.68);
  background: var(--navy-2);
  padding: 0 28px;
  font-size: .72rem;
}
.thanks-footer a { color: var(--gold-soft); }

/* Responsive */
@media (max-width: 1050px) {
  :root { --header-h: 106px; }
  .utility-bar { min-height: 30px; }
  .site-header::after { top: 30px; height: 76px; }
  .nav { min-height: 76px; }
  .nav-links { gap: 16px; }
  .hero-stage { grid-template-columns: .88fr 1.12fr; gap: 46px; }
  .hero-visual { min-height: 580px; }
  .section-head { grid-template-columns: 1fr; align-items: start; }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .process-steps li:nth-child(even) { transform: none; }
  .process-path { display: none; }
  .why-visual { min-height: 580px; }
  .form-shell { grid-template-columns: .84fr 1.16fr; }
  .footer-main { grid-template-columns: 1fr auto; }
  .footer-pattern { display: none; }
}

@media (max-width: 820px) {
  :root { --header-h: 82px; --shell: min(100% - 28px, 680px); }
  .utility-bar { display: none; }
  .site-header::after { top: 0; height: 82px; }
  .nav { min-height: 82px; }
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 82px;
    right: 14px; left: 14px;
    display: grid;
    gap: 0;
    padding: 14px;
    color: var(--navy);
    background: var(--paper);
    border: 1px solid rgba(20,37,58,.2);
    box-shadow: 0 20px 48px rgba(20,37,58,.16);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s, transform .2s, visibility .2s;
  }
  .nav-links.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav-links > a { padding: 14px 12px; border-bottom: 1px solid rgba(20,37,58,.1); }
  .nav-links > a::after { display: none; }
  .nav-links .btn { margin-top: 8px; }
  .hero { padding-top: calc(var(--header-h) + 34px); }
  .hero-stage, .intro-grid, .why-grid, .faq-grid, .form-shell, .thanks-shell {
    grid-template-columns: 1fr;
  }
  .hero-stage { gap: 44px; }
  .hero-copy { order: -1; }
  .hero-visual { min-height: 500px; }
  .intro-visual { min-height: 560px; }
  .area-grid { grid-template-columns: 1fr; }
  .area-card-wide { grid-column: auto; min-height: 590px; grid-template-columns: none; grid-template-rows: 1.12fr .88fr; }
  .area-card-wide .area-art { border-right: 0; border-bottom: 1px solid rgba(20,37,58,.22); }
  .why-visual { min-height: 560px; }
  .faq-heading { position: static; }
  .faq-heading img { max-width: 320px; }
  .form-visual { min-height: 560px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-links { padding-top: 0; }
  .thanks-visual { min-height: 440px; }
}

@media (max-width: 560px) {
  :root { --shell: min(100% - 22px, 520px); }
  .section { padding: 78px 0; }
  .brand { min-width: 0; }
  .brand img { width: 42px; height: 42px; }
  .brand strong { font-size: .92rem; }
  .hero { min-height: auto; padding-bottom: 62px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-proof { display: grid; }
  .hero-visual { min-height: 410px; }
  .hero-panel-tall { right: 18%; }
  .hero-arch { width: 56%; height: 65%; border-radius: 110px 110px 0 0; }
  .intro-visual { min-height: 520px; }
  .intro-note { width: 84%; padding: 22px; }
  .intro-note-a { top: 7%; left: 5%; }
  .intro-note-b { right: 5%; bottom: 7%; }
  .area-card, .area-card-wide { min-height: 520px; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps li { min-height: auto; }
  .process-steps li:nth-child(even) { transform: none; }
  .why-visual { min-height: 450px; }
  .faq-item button { min-height: 80px; }
  .form-visual { min-height: 470px; }
  .lead-form { padding: 28px 20px; }
  .footer-bottom, .thanks-footer { flex-direction: column; align-items: flex-start; padding-block: 18px; }
  .thanks-shell, .thanks-footer { width: 100%; border: 0; }
  .thanks-copy { padding: 42px 22px 58px; }
  .thanks-copy .brand { margin-bottom: 46px; }
}

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


/* ============================================================
   RONDA VISUAL V2 — fotos, floating y timeline notorio
   ============================================================ */

/* Logo completo a color */
.brand-full {
  width: clamp(190px, 18vw, 250px);
  min-width: 190px;
}
.brand-full img {
  width: 100%;
  height: auto;
  max-height: 62px;
  object-fit: contain;
  object-position: left center;
}
.nav .brand-full {
  filter: drop-shadow(0 6px 15px rgba(20,37,58,.08));
}

/* Hero fotográfico */
.hero {
  background:
    radial-gradient(circle at 88% 12%, rgba(232,217,187,.35), transparent 28%),
    linear-gradient(90deg, rgba(237,243,244,.82), rgba(255,253,248,0) 44%),
    var(--paper);
}
.hero-panel,
.hero-arch {
  isolation: isolate;
  box-shadow: 0 28px 62px rgba(20,37,58,.16);
}
.hero-panel img,
.hero-arch img {
  transform: scale(1.09) translate3d(var(--hero-x, 0px), var(--hero-y, 0px), 0);
  transition: transform .4s ease-out;
}
.photo-wash {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(20,37,58,.02), rgba(20,37,58,.16)),
    linear-gradient(90deg, rgba(232,217,187,.16), transparent 52%);
  mix-blend-mode: multiply;
}
.route-overlay {
  position: absolute;
  z-index: 2;
  inset: auto -18% 11% -10%;
  height: 42%;
  border-top: 2px solid rgba(255,255,255,.78);
  border-radius: 50%;
  transform: rotate(-11deg);
  box-shadow:
    0 -18px 0 -17px rgba(255,255,255,.56),
    0 -36px 0 -35px rgba(255,255,255,.38);
}
.hero-orbit {
  position: absolute;
  z-index: 5;
  display: block;
  width: 18px;
  height: 18px;
  border: 4px solid var(--paper);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(185,150,93,.22), 0 12px 30px rgba(20,37,58,.26);
  animation: orbitFloat 2.8s ease-in-out infinite;
}
.hero-orbit-a { top: 14%; left: 59%; }
.hero-orbit-b { right: 4%; bottom: 18%; animation-delay: -1.3s; }

@keyframes heroMaskA {
  0%,100% { transform: translate3d(0,0,0) rotate(-.25deg); }
  50% { transform: translate3d(0,-16px,0) rotate(.35deg); }
}
@keyframes heroMaskB {
  0%,100% { transform: translate3d(0,0,0) rotate(.35deg); }
  50% { transform: translate3d(0,18px,0) rotate(-.5deg); }
}
@keyframes orbitFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-22px) scale(1.12); }
}
.hero-visual.is-visible .hero-panel-tall {
  animation: heroMaskA 5.1s ease-in-out infinite;
}
.hero-visual.is-visible .hero-arch {
  animation: heroMaskB 4.4s ease-in-out infinite;
}

/* Carrusel sin huecos y más rápido */
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeFast 12s linear infinite;
  will-change: transform;
}
.marquee-group {
  flex: 0 0 auto;
  min-width: max-content;
  gap: 44px;
  padding: 17px 22px;
}
.marquee-group span {
  flex: 0 0 auto;
}
@keyframes marqueeFast {
  to { transform: translate3d(-33.333333%,0,0); }
}

/* Floating global visible */
@keyframes surfaceFloatA {
  0%,100% { transform: translate3d(0,0,0) rotate(0deg); }
  50% { transform: translate3d(0,-13px,0) rotate(.25deg); }
}
@keyframes surfaceFloatB {
  0%,100% { transform: translate3d(0,0,0) rotate(0deg); }
  50% { transform: translate3d(0,15px,0) rotate(-.25deg); }
}
@keyframes iconFloat {
  0%,100% { transform: translateY(0) rotate(0deg) scale(1); }
  50% { transform: translateY(-10px) rotate(6deg) scale(1.08); }
}

.intro-note {
  animation: surfaceFloatA 4.8s ease-in-out infinite;
}
.intro-note-b {
  animation-name: surfaceFloatB;
  animation-delay: -2s;
}
.area-card.reveal { animation: none; }
.area-card.reveal.is-visible {
  animation: surfaceFloatA 5.4s ease-in-out infinite;
}
.area-card:nth-child(2).reveal.is-visible {
  animation-name: surfaceFloatB;
  animation-delay: -1.8s;
}
.area-card:nth-child(3).reveal.is-visible {
  animation-duration: 6.1s;
  animation-delay: -3s;
}
.area-card:hover {
  animation-play-state: paused;
  transform: translateY(-16px) scale(1.01);
}
.area-card .area-art {
  position: relative;
}
.area-card .area-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(20,37,58,.38)),
    linear-gradient(90deg, rgba(232,217,187,.12), transparent);
  pointer-events: none;
}
.area-art img {
  filter: saturate(.88) contrast(1.03);
}
.area-card:hover .area-art img {
  transform: scale(1.09);
  filter: saturate(1.05) contrast(1.03);
}
.area-body small::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 10px 3px 0;
  background: var(--gold);
}

/* Timeline muy visible */
.process-map {
  overflow: visible;
}
.process-path {
  height: 230px;
  overflow: visible;
}
.timeline-route {
  fill: none;
  stroke: var(--gold);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  filter: drop-shadow(0 7px 12px rgba(185,150,93,.26));
}
.timeline-orb {
  fill: var(--gold);
  stroke: var(--paper);
  stroke-width: 4;
  opacity: 0;
}
.process-map.is-running .timeline-route {
  animation: drawTimeline 2.4s cubic-bezier(.18,.78,.22,1) forwards;
}
.process-map.is-running .timeline-orb {
  animation: orbAppear .45s .35s ease forwards;
}
@keyframes drawTimeline { to { stroke-dashoffset: 0; } }
@keyframes orbAppear { to { opacity: 1; } }

.process-steps li {
  position: relative;
  opacity: 0;
  transform: translateY(48px) scale(.94);
  box-shadow: 0 22px 52px rgba(20,37,58,.08);
}
.process-map.is-running .process-steps li {
  animation: timelineCardIn .75s var(--ease) forwards,
             timelineCardFloat 4.2s 1.2s ease-in-out infinite;
}
.process-map.is-running .process-steps li:nth-child(2) { animation-delay: .25s, 1.45s; }
.process-map.is-running .process-steps li:nth-child(3) { animation-delay: .5s, 1.7s; }
.process-map.is-running .process-steps li:nth-child(4) { animation-delay: .75s, 1.95s; }

@keyframes timelineCardIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes timelineCardFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-11px); }
}
.process-steps li > span {
  position: relative;
  animation: iconFloat 2.7s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(62,102,114,.25);
}
.process-steps li > span::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(62,102,114,.34);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

/* Por qué Corpore: fotografía */
.why-visual {
  isolation: isolate;
  box-shadow: 0 30px 70px rgba(20,37,58,.16);
}
.why-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(20,37,58,.02), rgba(20,37,58,.34));
}
.why-visual img {
  transform: scale(1.04);
  transition: transform 1.1s var(--ease);
}
.why-visual.is-visible img {
  animation: photoBreath 7s ease-in-out infinite;
}
.why-caption { z-index: 3; }
.why-photo-line {
  position: absolute;
  z-index: 2;
  right: -8%;
  bottom: 24%;
  left: -14%;
  height: 34%;
  border-top: 2px solid rgba(255,255,255,.82);
  border-radius: 50%;
  transform: rotate(-9deg);
}
@keyframes photoBreath {
  0%,100% { transform: scale(1.04) translateY(0); }
  50% { transform: scale(1.095) translateY(-8px); }
}
.why-list article {
  transition: background .25s, transform .25s;
}
.why-list article:hover {
  transform: translateX(12px);
  background: rgba(255,255,255,.42);
}
.why-list article > span {
  animation: iconFloat 3s ease-in-out infinite;
}

/* FAQ visual */
.faq-photo {
  position: relative;
  width: min(100%, 420px);
  height: 360px;
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid rgba(20,37,58,.18);
  border-radius: 170px 170px 0 0;
  box-shadow: 0 26px 58px rgba(20,37,58,.13);
  animation: surfaceFloatA 5.2s ease-in-out infinite;
}
.faq-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82);
  transition: transform .8s var(--ease);
}
.faq-photo:hover img { transform: scale(1.08); }
.faq-item button i {
  animation: iconFloat 2.5s ease-in-out infinite;
  box-shadow: 0 8px 24px rgba(62,102,114,.16);
}
.faq-item:nth-child(2) button i { animation-delay: -.7s; }
.faq-item:nth-child(3) button i { animation-delay: -1.4s; }
.faq-item:nth-child(4) button i { animation-delay: -2.1s; }
.faq-item:nth-child(5) button i { animation-delay: -2.8s; }

/* Form con foto en vez del fondo azul */
.form-visual {
  background: #d8d0c1;
  box-shadow: inset -1px 0 rgba(20,37,58,.15);
}
.form-visual > img {
  transform: scale(1.05);
  animation: photoBreath 8s ease-in-out infinite;
}
.form-visual::after {
  background:
    linear-gradient(180deg, rgba(20,37,58,.05) 15%, rgba(20,37,58,.84) 96%),
    linear-gradient(90deg, rgba(20,37,58,.18), transparent 70%);
}
.form-route-line {
  position: absolute;
  z-index: 1;
  top: 14%;
  right: -24%;
  width: 105%;
  height: 52%;
  border-top: 2px solid rgba(255,255,255,.76);
  border-radius: 50%;
  transform: rotate(-18deg);
  box-shadow:
    0 -24px 0 -23px rgba(255,255,255,.48),
    0 -48px 0 -47px rgba(255,255,255,.28);
}
.form-visual-copy {
  z-index: 3;
  padding: 24px;
  background: rgba(20,37,58,.32);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
}
.form-microproof span {
  animation: iconFloat 3s ease-in-out infinite;
  background: rgba(255,255,255,.08);
}
.form-microproof span:nth-child(2) { animation-delay: -.9s; }
.form-microproof span:nth-child(3) { animation-delay: -1.8s; }

/* Botones y detalles más vivos */
.btn {
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  inset: -60% auto -60% -35%;
  width: 26%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.48), transparent);
  transition: left .65s ease;
}
.btn:hover::after { left: 120%; }
.whatsapp-fab {
  animation: surfaceFloatA 2.8s ease-in-out infinite;
}

/* Mobile */
@media (max-width: 820px) {
  .brand-full { width: 205px; min-width: 0; }
  .brand-full img { max-height: 54px; }
  .process-path {
    display: block;
    position: absolute;
    left: 20px;
    top: 20px;
    width: 120px;
    height: calc(100% - 40px);
    transform: rotate(90deg);
    transform-origin: 0 0;
    opacity: .34;
  }
  .process-steps li {
    opacity: 1;
    transform: none;
  }
  .process-map.is-running .process-steps li {
    animation: timelineCardIn .65s var(--ease) forwards,
               timelineCardFloat 4.2s 1.2s ease-in-out infinite;
  }
}
@media (max-width: 560px) {
  .brand-full { width: 180px; }
  .hero-orbit { width: 14px; height: 14px; }
  .marquee-track { animation-duration: 10s; }
  .faq-photo { height: 300px; }
  .form-visual-copy { right: 6%; left: 6%; padding: 19px; }
}

/* Respeto a preferencias de movimiento */
@media (prefers-reduced-motion: reduce) {
  .hero-panel-tall,
  .hero-arch,
  .hero-orbit,
  .intro-note,
  .area-card,
  .process-steps li,
  .process-steps li > span,
  .why-visual img,
  .why-list article > span,
  .faq-photo,
  .faq-item button i,
  .form-visual > img,
  .form-microproof span,
  .whatsapp-fab {
    animation: none !important;
  }
  .timeline-route { stroke-dashoffset: 0; }
  .timeline-orb { opacity: 1; }
}


/* ============================================================
   CORRECCIONES V3 — logo oficial y fotografías sin cortes
   ============================================================ */

/* Logo correcto del cliente, conservando sus proporciones reales */
.brand-full {
  width: clamp(185px, 17vw, 220px);
  min-width: 185px;
  overflow: visible;
}
.brand-full img {
  width: 100%;
  height: auto;
  max-height: 58px;
  display: block;
  object-fit: contain;
  object-position: left center;
  filter: none;
}

/* La fotografía de “Por qué Corpore” ocupa toda la tarjeta */
.why-visual {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background: #d8dfe1;
}
.why-visual > img {
  position: absolute !important;
  inset: 0 !important;
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  object-fit: cover !important;
  object-position: center 42%;
  transform: scale(1.02);
}
.why-visual.is-visible > img {
  animation: whyPhotoBreath 7s ease-in-out infinite;
}
@keyframes whyPhotoBreath {
  0%,100% { transform: scale(1.02) translate3d(0,0,0); }
  50% { transform: scale(1.07) translate3d(0,-6px,0); }
}

/* FAQ: se elimina la máscara en arco que recortaba la fotografía */
.faq-photo {
  width: min(100%, 440px);
  height: auto !important;
  aspect-ratio: auto !important;
  margin-top: 36px;
  overflow: hidden;
  border-radius: 22px;
  background: #edf1f1;
}
.faq-photo img {
  position: relative;
  display: block;
  width: 100%;
  height: auto !important;
  max-height: none;
  object-fit: contain !important;
  object-position: center;
  transform: none;
}
.faq-photo:hover img {
  transform: scale(1.035);
}

/* Evita que las animaciones eleven las tarjetas fuera de su contenedor */
.faq-photo,
.why-visual {
  will-change: transform;
}
.faq-heading {
  overflow: visible;
}

/* Mobile */
@media (max-width: 820px) {
  .brand-full {
    width: 190px;
    min-width: 170px;
  }
  .brand-full img { max-height: 52px; }
  .why-visual { min-height: 520px; }
}
@media (max-width: 560px) {
  .brand-full {
    width: 165px;
    min-width: 150px;
  }
  .brand-full img { max-height: 46px; }
  .why-visual { min-height: 430px; }
  .faq-photo { border-radius: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .why-visual.is-visible > img {
    animation: none !important;
    transform: scale(1.02);
  }
}


/* ============================================================
   CORRECCIÓN REAL V4 — logo exacto y fotos sin recortes vacíos
   ============================================================ */

/* Navbar: usa el isotipo original incluido en el proyecto; no un logo redibujado */
.nav .brand-official,
.brand-official {
  display: inline-flex !important;
  align-items: center !important;
  gap: 13px !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  overflow: visible !important;
  text-decoration: none !important;
  filter: none !important;
}
.brand-official .brand-symbol {
  flex: 0 0 54px !important;
  width: 54px !important;
  height: 54px !important;
  max-width: 54px !important;
  max-height: 54px !important;
  object-fit: contain !important;
  display: block !important;
  filter: drop-shadow(0 7px 15px rgba(20,37,58,.08)) !important;
}
.brand-official .brand-wordmark {
  display: grid !important;
  align-content: center !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}
.brand-official .brand-wordmark strong {
  color: #173047 !important;
  font-family: "DM Sans", Arial, sans-serif !important;
  font-size: 1.22rem !important;
  font-weight: 700 !important;
  letter-spacing: .23em !important;
}
.brand-official .brand-wordmark small {
  margin-top: 9px !important;
  padding-left: 2px !important;
  color: #6f7c88 !important;
  font-family: "DM Sans", Arial, sans-serif !important;
  font-size: .56rem !important;
  font-weight: 600 !important;
  letter-spacing: .47em !important;
}

/* FAQ: contenedor con altura real; la foto empieza en el borde superior */
.faq-heading .faq-photo {
  position: relative !important;
  width: min(100%, 470px) !important;
  height: 380px !important;
  min-height: 380px !important;
  aspect-ratio: auto !important;
  margin-top: 30px !important;
  overflow: hidden !important;
  border: 1px solid rgba(20,37,58,.16) !important;
  border-radius: 24px !important;
  background: #dfe7e8 !important;
  box-shadow: 0 26px 58px rgba(20,37,58,.13) !important;
  animation: faqPhotoFloatV4 5.2s ease-in-out infinite !important;
  isolation: isolate !important;
}
.faq-heading .faq-photo > img {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: cover !important;
  object-position: center 52% !important;
  transform: scale(1.02) !important;
  transform-origin: center !important;
}
.faq-heading .faq-photo:hover > img {
  transform: scale(1.065) !important;
}
@keyframes faqPhotoFloatV4 {
  0%,100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(0,-12px,0); }
}

/* Por qué Corpore: elimina por completo el bloque azul debajo de la foto */
.why .why-grid {
  align-items: stretch !important;
}
.why .why-visual {
  position: relative !important;
  width: 100% !important;
  height: 760px !important;
  min-height: 760px !important;
  overflow: hidden !important;
  border-radius: 0 !important;
  background: #dfe7e8 !important;
  box-shadow: 0 30px 70px rgba(20,37,58,.16) !important;
  isolation: isolate !important;
}
.why .why-visual > img {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: cover !important;
  object-position: 50% 50% !important;
  transform: scale(1.035) !important;
}
.why .why-visual.is-visible > img {
  animation: whyPhotoFillV4 7s ease-in-out infinite !important;
}
@keyframes whyPhotoFillV4 {
  0%,100% { transform: scale(1.035) translate3d(0,0,0); }
  50% { transform: scale(1.085) translate3d(0,-7px,0); }
}
.why .why-visual::after {
  z-index: 1 !important;
  background: linear-gradient(180deg, rgba(20,37,58,.02), rgba(20,37,58,.36)) !important;
}
.why .why-photo-line,
.why .why-caption {
  z-index: 2 !important;
}

/* Responsive */
@media (max-width: 980px) {
  .brand-official .brand-symbol {
    flex-basis: 48px !important;
    width: 48px !important;
    height: 48px !important;
  }
  .brand-official .brand-wordmark strong { font-size: 1.06rem !important; }
  .why .why-visual {
    height: 590px !important;
    min-height: 590px !important;
  }
}
@media (max-width: 560px) {
  .brand-official { gap: 9px !important; }
  .brand-official .brand-symbol {
    flex-basis: 40px !important;
    width: 40px !important;
    height: 40px !important;
  }
  .brand-official .brand-wordmark strong {
    font-size: .88rem !important;
    letter-spacing: .18em !important;
  }
  .brand-official .brand-wordmark small {
    margin-top: 6px !important;
    font-size: .45rem !important;
    letter-spacing: .34em !important;
  }
  .faq-heading .faq-photo {
    height: 310px !important;
    min-height: 310px !important;
    border-radius: 18px !important;
  }
  .why .why-visual {
    height: 470px !important;
    min-height: 470px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-heading .faq-photo,
  .why .why-visual.is-visible > img {
    animation: none !important;
  }
}

/* Logo Corpore Abogados — reemplazo visual solicitado */
.brand .corpore-logo,
.brand-official .corpore-logo {
  display: block !important;
  width: auto !important;
  height: 64px !important;
  max-width: none !important;
  max-height: 64px !important;
  object-fit: contain !important;
  filter: none !important;
}

.footer-brand .corpore-logo-footer {
  height: 118px !important;
  max-height: 118px !important;
}

@media (max-width: 560px) {
  .nav .corpore-logo,
  .thanks-copy .corpore-logo {
    height: 56px !important;
    max-height: 56px !important;
  }

  .footer-brand .corpore-logo-footer {
    height: 104px !important;
    max-height: 104px !important;
  }
}


/* ============================================================
   AJUSTES CORPORE — contenido legal y responsividad
   ============================================================ */
.area-card-wide { grid-template-columns: .72fr 1.28fr; }
.area-card-wide .area-body { padding: clamp(28px, 3vw, 42px); }
.area-body .area-intro { margin-bottom: 18px; }
.area-body .area-examples {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 9px 24px;
  width: 100%;
  margin-bottom: 20px;
  color: var(--ink);
}
.area-body .area-examples > span {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.42;
}
.area-body .area-examples > span::before {
  content: "○";
  position: absolute;
  left: 0;
  top: .02em;
  color: var(--gold);
}
.area-body .area-investment {
  width: 100%;
  padding-top: 16px;
  border-top: 1px solid rgba(20,37,58,.14);
  color: var(--navy);
  font-size: .9rem;
}
.area-body .area-investment strong {
  display: inline;
  margin: 0;
  font-family: var(--sans);
  font-size: inherit;
  font-weight: 700;
  line-height: inherit;
}
.process-steps-six {
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: 14px;
}
.process-steps-six li { min-height: 230px; padding: 24px 20px; }
.process-steps-six li:nth-child(even) { transform: translateY(42px); }
.process-steps-six strong { font-size: clamp(1.2rem, 1.55vw, 1.55rem); }
@media (max-width: 1050px) {
  .process-steps-six { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .process-steps-six li:nth-child(even) { transform: none; }
}
@media (max-width: 820px) {
  .area-card-wide { grid-template-columns: none; }
  .area-body .area-examples { grid-template-columns: 1fr; }
  .process-steps-six { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 560px) {
  .process-steps-six { grid-template-columns: 1fr; }
  .process-steps-six li { min-height: auto; }
}
.process-map.is-running .process-steps-six li:nth-child(5) { animation-delay: 1s, 2.2s; }
.process-map.is-running .process-steps-six li:nth-child(6) { animation-delay: 1.25s, 2.45s; }
