:root {
  --navy: #273155;
  --navy-soft: #354064;
  --rose: #c79291;
  --rose-pale: #e3c5bf;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c4a;
  --ivory: #ffffff;
  --paper: #ffffff;
  --ink: #181d26;
  --muted: #65676d;
  --line: rgba(39, 49, 85, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p { margin: 0; }

.header {
  align-items: center;
  background: var(--navy);
  display: grid;
  grid-template-columns: 310px 1fr auto;
  height: 96px;
  padding: 0 max(6vw, 32px);
  position: relative;
  z-index: 20;
}
.logo { align-items: center; display: flex; height: 84px; width: 292px; }
.logo img { height: 100%; object-fit: contain; transform: scale(.82); transform-origin: left center; width: 100%; }
.header nav { display: flex; gap: 34px; justify-content: center; }
.header nav a {
  color: rgba(255,255,255,.86);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  padding: 33px 0 30px;
  text-transform: uppercase;
}
.header nav a:hover { color: var(--rose-pale); }
.header-cta {
  background: var(--whatsapp);
  color: #082e1b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
  padding: 18px 23px;
  text-transform: uppercase;
}

.banner {
  background: var(--navy) url("/banner-escritorio.jpg") center 45% / cover no-repeat;
  min-height: 640px;
  overflow: hidden;
  position: relative;
}
.banner-overlay {
  background:
    linear-gradient(90deg, rgba(39, 49, 85, .98) 0%, rgba(39, 49, 85, .92) 43%, rgba(39, 49, 85, .48) 76%, rgba(39, 49, 85, .34) 100%),
    linear-gradient(0deg, rgba(39, 49, 85, .45), transparent 45%);
  inset: 0;
  position: absolute;
}
.banner-content {
  color: white;
  margin: 0 auto;
  max-width: 1280px;
  padding: 92px max(6vw, 32px) 150px;
  position: relative;
  z-index: 2;
}
.kicker {
  color: var(--rose);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
  margin-bottom: 23px;
  text-transform: uppercase;
}
.kicker.light { color: var(--rose-pale); }
.banner h1,
.intro h2,
.about h2,
.process h2,
.commitment h2,
.doubts h2,
.faq h2,
.final-banner h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.035em;
}
.banner h1 {
  font-size: clamp(50px, 5.5vw, 76px);
  line-height: 1.03;
  margin: 0;
  max-width: 720px;
}
.banner h1 em { color: var(--rose-pale); display: block; font-weight: 400; }
.banner-rule { background: var(--rose); height: 2px; margin: 28px 0 22px; width: 46px; }
.banner-copy {
  color: rgba(255,255,255,.74);
  font-family: Georgia, serif;
  font-size: 17px;
  line-height: 1.65;
  max-width: 570px;
}
.banner-actions { display: flex; gap: 14px; margin-top: 31px; }
.button {
  align-items: center;
  display: inline-flex;
  font-size: 10px;
  font-weight: 800;
  justify-content: center;
  letter-spacing: .11em;
  min-height: 50px;
  padding: 0 24px;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-whatsapp { background: var(--whatsapp); color: #082e1b; }
.button-whatsapp:hover { background: #38e57a; }
.button-outline { border: 1px solid rgba(255,255,255,.45); color: white; }
.button-outline:hover { background: white; color: var(--navy); }
.banner-note { color: rgba(255,255,255,.54); font-size: 11px; margin-top: 18px; }

.pathway-wrap {
  margin: -80px auto 0;
  max-width: 1280px;
  padding: 0 max(6vw, 32px);
  position: relative;
  z-index: 4;
}
.pathway-grid { border: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); }
.pathway {
  background: var(--paper);
  border-right: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: 44px 1fr;
  min-height: 220px;
  padding: 34px 30px;
}
.pathway:last-child { border-right: 0; }
.pathway-number {
  align-items: center;
  background: var(--navy);
  color: var(--rose-pale);
  display: flex;
  font-family: Georgia, serif;
  font-size: 14px;
  height: 44px;
  justify-content: center;
  width: 44px;
}
.pathway h2 { color: var(--navy); font-family: Georgia, serif; font-size: 22px; font-weight: 400; margin: 4px 0 10px; }
.pathway p { color: var(--muted); font-size: 12px; line-height: 1.65; }
.short-rule { background: var(--rose); display: block; height: 1px; margin-top: 19px; width: 28px; }

.section { margin: 0 auto; max-width: 1280px; padding: 110px max(6vw, 32px); }
.intro { display: grid; gap: 10vw; grid-template-columns: .88fr 1.12fr; }
.intro h2, .about h2, .commitment h2, .doubts h2, .faq h2 {
  color: var(--navy);
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.08;
  margin: 0;
}
.intro-copy > p:not(.kicker) { color: var(--muted); font-size: 15px; line-height: 1.8; margin-top: 20px; }
.intro-copy .intro-lead { color: var(--ink); font-family: Georgia, serif; font-size: 20px; line-height: 1.65; }
.editorial-link {
  border-bottom: 1px solid var(--rose);
  color: var(--navy);
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  gap: 30px;
  letter-spacing: .08em;
  margin-top: 31px;
  padding-bottom: 9px;
  text-transform: uppercase;
}
.principles { display: grid; grid-template-columns: repeat(2, 1fr); }
.principles article { border-bottom: 1px solid var(--line); min-height: 220px; padding: 18px 30px 30px 0; }
.principles article:nth-child(odd) { border-right: 1px solid var(--line); }
.principles article:nth-child(even) { padding-left: 30px; }
.principles article:nth-child(-n+2) { border-top: 1px solid var(--line); }
.principles span { color: var(--rose); font-family: Georgia, serif; font-size: 18px; }
.principles h3 { color: var(--navy); font-family: Georgia, serif; font-size: 19px; font-weight: 400; margin: 34px 0 9px; }
.principles p { color: var(--muted); font-size: 12px; line-height: 1.65; }

.about {
  align-items: center;
  background: var(--navy);
  box-shadow: 0 0 0 100vmax var(--navy);
  clip-path: inset(0 -100vmax);
  color: white;
  display: grid;
  gap: 10vw;
  grid-template-columns: .9fr 1.1fr;
  padding-top: 70px;
}
.about-photo { height: 690px; position: relative; width: 100%; }
.about-photo > img {
  border: 5px solid #ffffff;
  box-shadow: 0 0 0 1px rgba(199, 146, 145, .78);
  height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
  width: 100%;
}
.photo-caption {
  background: white;
  bottom: 0;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  left: 0;
  padding: 24px 30px;
  position: absolute;
  width: 78%;
}
.photo-caption strong { font-family: Georgia, serif; font-size: 19px; font-weight: 400; }
.photo-caption span { color: var(--rose); font-size: 9px; letter-spacing: .14em; margin-top: 6px; text-transform: uppercase; }
.about .kicker { color: var(--rose-pale); }
.about h2 { color: white; }
.about-copy .about-lead { color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.8; margin-top: 29px; }
.about-copy blockquote {
  border-left: 2px solid var(--rose);
  color: white;
  font-family: Georgia, serif;
  font-size: 22px;
  line-height: 1.55;
  margin: 31px 0;
  padding-left: 23px;
}
.about-facts { border-top: 1px solid rgba(255,255,255,.22); display: grid; grid-template-columns: repeat(3, 1fr); padding-top: 22px; }
.about-facts div { display: flex; flex-direction: column; }
.about-facts strong { color: white; font-family: Georgia, serif; font-size: 17px; font-weight: 400; }
.about-facts span { color: rgba(255,255,255,.58); font-size: 9px; margin-top: 6px; text-transform: uppercase; }

.process { background: white; color: var(--navy); }
.process-inner { padding-bottom: 96px; padding-top: 96px; }
.process-heading { align-items: end; display: grid; gap: 40px; grid-template-columns: .6fr 1fr .8fr; margin-bottom: 54px; }
.process h2 { font-size: clamp(38px, 4vw, 56px); line-height: 1.08; margin: 0; }
.process .kicker { color: var(--rose); }
.process-heading > p:last-child { color: var(--muted); font-size: 13px; line-height: 1.75; }
.process-steps { border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(4, 1fr); }
.process-steps article { border-right: 1px solid var(--line); min-height: 260px; padding: 28px 24px; }
.process-steps article:last-child { border-right: 0; }
.process-steps span { color: var(--rose); font-family: Georgia, serif; font-size: 20px; }
.process-steps h3 { font-family: Georgia, serif; font-size: 19px; font-weight: 400; margin: 40px 0 13px; }
.process-steps p { color: var(--muted); font-size: 12px; line-height: 1.7; }

.commitment {
  background: var(--navy);
  box-shadow: 0 0 0 100vmax var(--navy);
  clip-path: inset(0 -100vmax);
  color: white;
  display: grid;
  gap: 10vw;
  grid-template-columns: .95fr 1.05fr;
}
.commitment .kicker { color: var(--rose-pale); }
.commitment h2 { color: white; }
.commitment-copy > p { color: rgba(255,255,255,.7); font-size: 15px; line-height: 1.85; }
.commitment-quote { background: var(--navy-soft); margin-top: 34px; padding: 34px; position: relative; }
.commitment-quote > span { color: var(--rose); font-family: Georgia, serif; font-size: 52px; left: 28px; line-height: 1; position: absolute; top: 21px; }
.commitment-quote p { color: white; font-family: Georgia, serif; font-size: 21px; line-height: 1.55; padding-left: 34px; }

.doubts { background: white; }
.doubts-grid { display: grid; gap: 9vw; grid-template-columns: .76fr 1.24fr; }
.doubt-list { border-top: 1px solid var(--line); }
.doubt-list article { border-bottom: 1px solid var(--line); display: grid; gap: 35px; grid-template-columns: .7fr 1.3fr; padding: 26px 0; }
.doubt-list h3 { color: var(--navy); font-family: Georgia, serif; font-size: 18px; font-weight: 400; margin: 0; }
.doubt-list p { color: var(--muted); font-size: 12px; line-height: 1.75; }

.faq {
  background: var(--navy);
  box-shadow: 0 0 0 100vmax var(--navy);
  clip-path: inset(0 -100vmax);
  color: white;
  display: grid;
  gap: 9vw;
  grid-template-columns: .75fr 1.25fr;
}
.faq .kicker { color: var(--rose-pale); }
.faq h2 { color: white; }
.faq-list { border-top: 1px solid rgba(255,255,255,.22); }
.faq-list details { border-bottom: 1px solid rgba(255,255,255,.22); }
.faq-list summary {
  align-items: center;
  color: white;
  cursor: pointer;
  display: flex;
  font-family: Georgia, serif;
  font-size: 18px;
  justify-content: space-between;
  list-style: none;
  padding: 24px 0;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--rose); font-family: Arial, sans-serif; font-size: 24px; font-weight: 300; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.75; max-width: 650px; padding: 0 0 25px; }

.final-banner {
  background: white;
  min-height: 460px;
  position: relative;
}
.final-overlay { display: none; }
.final-content { color: var(--navy); margin: 0 auto; max-width: 920px; padding: 100px 32px; position: relative; text-align: center; z-index: 2; }
.final-banner .kicker { color: var(--rose); }
.final-banner h2 { font-size: clamp(42px, 5vw, 66px); line-height: 1.08; margin: 0; }
.final-banner .final-content > p:not(.kicker) { color: var(--muted); line-height: 1.7; margin: 24px auto 30px; max-width: 590px; }

footer {
  align-items: center;
  background: #0a1220;
  color: rgba(255,255,255,.55);
  display: grid;
  font-size: 10px;
  gap: 40px;
  grid-template-columns: 260px 1fr 1fr;
  padding: 40px max(6vw, 32px);
}
footer img { height: 86px; object-fit: contain; transform: scale(.82); transform-origin: left center; width: 280px; }
footer div p + p { margin-top: 7px; }
footer > p { line-height: 1.6; text-align: right; }

@media (max-width: 980px) {
  .header { grid-template-columns: 230px 1fr; }
  .header nav { display: none; }
  .header-cta { justify-self: end; }
  .pathway-grid { grid-template-columns: 1fr; }
  .pathway { border-bottom: 1px solid var(--line); border-right: 0; min-height: auto; }
  .intro, .about, .commitment, .doubts-grid, .faq { grid-template-columns: 1fr; }
  .about-photo { height: 620px; max-width: 560px; }
  .process-heading { align-items: start; grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps article:nth-child(2) { border-right: 0; }
  .process-steps article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  footer { grid-template-columns: 240px 1fr; }
  footer > p { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 620px) {
  body { padding-bottom: 0; }
  .header { height: 72px; padding: 0 18px; }
  .logo { height: 60px; width: 220px; }
  .header-cta { display: none; }
  .banner { min-height: 650px; }
  .banner-content { padding: 74px 22px 150px; }
  .banner h1 { font-size: clamp(40px, 12vw, 47px); }
  .banner-copy { font-size: 16px; }
  .banner-actions { align-items: stretch; flex-direction: column; }
  .pathway-wrap { margin-top: -74px; padding: 0 18px; }
  .pathway { grid-template-columns: 40px 1fr; padding: 28px 22px; }
  .section { padding: 78px 22px; }
  .intro { gap: 60px; }
  .principles { grid-template-columns: 1fr; }
  .principles article, .principles article:nth-child(even) { border-left: 0; border-right: 0; padding: 25px 0; }
  .principles article:nth-child(n+2) { border-top: 0; }
  .principles h3 { margin-top: 18px; }
  .about { gap: 60px; }
  .about-photo { height: 510px; }
  .about-photo > img { border-width: 3px; }
  .about-facts { gap: 20px; grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps article, .process-steps article:nth-child(2) { border-bottom: 1px solid var(--line); border-right: 0; min-height: auto; }
  .doubt-list article { gap: 12px; grid-template-columns: 1fr; }
  .faq { gap: 48px; }
  .faq-list summary { font-size: 17px; gap: 20px; }
  .final-content { padding: 72px 22px; }
  .final-banner h2 { font-size: clamp(38px, 11vw, 46px); }
  .final-banner .button-whatsapp {
    min-height: 52px;
    padding: 0 18px;
    width: min(100%, 330px);
  }
  footer {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 22px;
    justify-content: center;
    padding: 38px 22px 42px;
    text-align: center;
    width: 100%;
  }
  footer img {
    height: 78px;
    margin: 0 auto;
    transform: scale(.82);
    transform-origin: center;
    width: min(280px, 100%);
  }
  footer div,
  footer div p,
  footer > p {
    margin-left: auto;
    margin-right: auto;
    max-width: 320px;
    text-align: center;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
}
