/* Jonathan Garcetti — estructura editorial con navegación lateral */

:root {
  --black: #5a3f48;
  --green-950: #624650;
  --green-900: #7c5964;
  --green-700: #9a737d;
  --sage: #eee4d8;
  --cream: #f8eee5;
  --warm-white: #fffaf6;
  --white: #ffffff;
  --ink: #44383c;
  --muted: #786b6e;
  --line: #e4d8d2;
  --rust: #c88173;
  --gold: #d8ba79;
  --side: 270px;
  --shadow: 0 24px 70px rgba(18, 25, 23, 0.15);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--warm-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p,
blockquote,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--green-950);
  line-height: 1.07;
  letter-spacing: -0.035em;
}

h1,
h2,
blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(3.5rem, 7vw, 7.4rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 5vw, 5.1rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

p {
  color: var(--muted);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--green-700);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.74);
}

.section-index {
  color: var(--rust);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  color: var(--white);
  background: var(--black);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

/* Navegación lateral */

.side-panel {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 100;
  width: var(--side);
  display: flex;
  flex-direction: column;
  padding: 34px 28px 28px;
  color: var(--white);
  background: var(--black);
}

.identity {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.pride-flag {
  width: 44px;
  height: 44px;
  display: block;
  flex: 0 0 auto;
  border: 3px solid rgba(255, 255, 255, 0.82);
  border-radius: 5px;
  background:
    linear-gradient(
      to bottom,
      #e85d5d 0 16.66%,
      #ee9b4c 16.66% 33.32%,
      #f1cf5b 33.32% 49.98%,
      #65ad75 49.98% 66.64%,
      #5d8fd5 66.64% 83.3%,
      #8d67b5 83.3% 100%
    );
  box-shadow: 0 8px 20px rgba(75, 48, 57, 0.18);
}

.identity-copy strong,
.identity-copy small {
  display: block;
}

.identity-copy strong {
  color: var(--white);
  line-height: 1.2;
}

.identity-copy small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.69rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.side-nav {
  display: grid;
  gap: 3px;
  margin-top: 64px;
}

.side-nav a {
  display: flex;
  gap: 12px;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.side-nav a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.side-nav a span {
  color: var(--rust);
  font-size: 0.68rem;
  font-weight: 850;
}

.side-contact {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.side-contact a {
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
}

.side-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
}

.page {
  margin-left: var(--side);
}

.mobile-header {
  display: none;
}

/* Portada */

.cover {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--black);
}

.cover-image,
.cover-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cover-image {
  object-fit: cover;
  object-position: 50% 24%;
}

.cover-overlay {
  background:
    linear-gradient(90deg, rgba(18, 25, 23, 0.82) 0%, rgba(18, 25, 23, 0.48) 48%, rgba(18, 25, 23, 0.08) 100%),
    linear-gradient(0deg, rgba(18, 25, 23, 0.52), transparent 45%);
}

.cover-topline {
  position: absolute;
  top: 34px;
  right: 48px;
  left: 48px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cover-content {
  position: relative;
  z-index: 2;
  width: min(850px, calc(100% - 96px));
  padding: 23vh 0 120px;
  margin-left: 7vw;
}

.cover-content > p:not(.eyebrow) {
  max-width: 690px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.17rem;
}

.cover-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cover-primary,
.cover-secondary {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  font-weight: 780;
  text-decoration: none;
}

.cover-primary {
  color: var(--black);
  background: var(--cream);
}

.cover-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.scroll-cue {
  position: absolute;
  right: 48px;
  bottom: 34px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.73rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.scroll-cue i {
  width: 50px;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
}

/* Manifiesto */

.manifesto {
  display: grid;
  grid-template-columns: 70px 1.1fr 0.9fr;
  gap: 48px;
  padding: 130px 7vw;
  background: var(--cream);
}

.manifesto blockquote {
  max-width: 760px;
  margin: 0;
  color: var(--green-950);
  font-size: clamp(2.4rem, 4.8vw, 5rem);
  line-height: 1.12;
}

.manifesto-copy p {
  font-size: 1.05rem;
}

/* Procesos */

.processes {
  padding: 130px 7vw;
  background: var(--warm-white);
}

.chapter-heading {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 48px;
  margin-bottom: 70px;
}

.chapter-heading h2 {
  max-width: 850px;
}

.process-list {
  border-top: 1px solid var(--line);
}

.process-list article {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 30px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.process-number {
  color: var(--rust);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.process-list article > div {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: baseline;
}

.process-list p {
  margin-bottom: 0;
}

/* Definición */

.definition {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 720px;
  background: var(--green-950);
}

.definition-title,
.definition-body {
  padding: 120px 7vw;
}

.definition-title {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.definition-title h2 {
  color: var(--white);
}

.definition-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.definition-body p {
  color: rgba(255, 255, 255, 0.72);
}

.definition-lead {
  color: var(--white) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.25;
}

.definition-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 34px;
}

.definition-body aside {
  margin-top: 40px;
  padding: 22px 0 0 24px;
  color: rgba(255, 255, 255, 0.84);
  border-left: 3px solid var(--gold);
  font-size: 0.92rem;
}

/* Perfil */

.profile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 860px;
  background: var(--white);
}

.profile-gallery {
  position: relative;
  min-height: 860px;
  background: var(--sage);
}

.profile-photo-main {
  position: absolute;
  top: 70px;
  left: 7vw;
  width: 58%;
  aspect-ratio: 0.86;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.profile-photo-main img,
.profile-photo-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-photo-main img {
  object-position: 50% 25%;
}

.profile-photo-secondary {
  position: absolute;
  right: 6vw;
  bottom: 70px;
  width: 45%;
  aspect-ratio: 1.1;
  overflow: hidden;
  border: 10px solid var(--sage);
  box-shadow: var(--shadow);
}

.profile-words {
  position: absolute;
  left: 7vw;
  bottom: 66px;
  display: grid;
  gap: 4px;
}

.profile-words span {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--green-950);
  font-size: 1.35rem;
}

.profile-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px 7vw;
}

.profile-lead {
  color: var(--green-900);
  font-size: 1.24rem;
  font-weight: 560;
}

.profile-data {
  display: grid;
  gap: 15px;
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.profile-data div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
}

.profile-data dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.profile-data dd {
  color: var(--green-950);
  font-weight: 760;
}

/* Encuentros */

.sessions {
  padding: 130px 7vw;
  background: var(--cream);
}

.session-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.session-flow::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: var(--line);
}

.session-flow article {
  position: relative;
  padding-top: 0;
}

.session-flow article > span {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--white);
  background: var(--green-950);
  border-radius: 50%;
  font-weight: 850;
}

.session-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.session-meta div {
  padding: 24px 24px 24px 0;
}

.session-meta span,
.session-meta strong {
  display: block;
}

.session-meta span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.session-meta strong {
  color: var(--green-950);
}

/* Preguntas */

.questions {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
  padding: 130px 7vw;
  background: var(--warm-white);
}

.questions-intro {
  align-self: start;
  position: sticky;
  top: 40px;
}

.questions-list {
  border-top: 1px solid var(--line);
}

.questions-list details {
  border-bottom: 1px solid var(--line);
}

.questions-list summary {
  position: relative;
  padding: 28px 52px 28px 0;
  color: var(--green-950);
  font-weight: 780;
  cursor: pointer;
  list-style: none;
}

.questions-list summary::-webkit-details-marker {
  display: none;
}

.questions-list summary::after {
  content: "+";
  position: absolute;
  top: 17px;
  right: 4px;
  color: var(--rust);
  font-size: 1.9rem;
  font-weight: 300;
}

.questions-list details[open] summary::after {
  content: "−";
}

.questions-list details p {
  margin: -4px 0 26px;
  padding-right: 40px;
}

/* Historia */

.history {
  padding: 130px 7vw;
  background: var(--white);
}

.history-line {
  position: relative;
  max-width: 940px;
  margin-left: 118px;
}

.history-line::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 120px;
  width: 1px;
  background: var(--line);
}

.history-line article {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 46px;
  padding-bottom: 48px;
}

.history-line article::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 114px;
  width: 13px;
  height: 13px;
  background: var(--rust);
  border: 4px solid var(--white);
  border-radius: 50%;
}

.history-year {
  color: var(--rust);
  font-weight: 850;
}

.history-line p {
  margin-bottom: 0;
}

.history-more {
  max-width: 940px;
  margin: 10px 0 0 118px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.history-more summary {
  padding: 18px 0;
  color: var(--green-950);
  font-weight: 780;
  cursor: pointer;
}

.history-more > div {
  max-width: 760px;
  padding-bottom: 12px;
}

/* Cierre */

.closing {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 80px;
  padding: 110px 7vw;
  background: var(--black);
}

.closing h2 {
  color: var(--white);
}

.closing p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.68);
}

.closing-links {
  display: grid;
  gap: 16px;
}

.closing-whatsapp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  color: var(--black);
  background: var(--cream);
  text-decoration: none;
}

.closing-whatsapp span {
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.closing-whatsapp strong {
  font-size: 1.15rem;
}

.closing-email {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  text-decoration: none;
  font-weight: 720;
}

/* Footer */

.footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 32px 7vw;
  background: var(--cream);
}

.footer > div {
  display: grid;
}

.footer strong {
  color: var(--green-950);
}

.footer span {
  color: var(--muted);
  font-size: 0.8rem;
}

.footer > div:last-child {
  text-align: right;
}

/* WhatsApp flotante */

.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 150;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #247c57;
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(22, 85, 57, 0.26);
}

.wa-float svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

/* Mobile */

@media (max-width: 1080px) {
  .side-panel {
    display: none;
  }

  .page {
    margin-left: 0;
  }

  .mobile-header {
    position: sticky;
    top: 0;
    z-index: 120;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    background: rgba(250, 248, 243, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
  }

  .mobile-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .mobile-brand .pride-flag {
    width: 38px;
    height: 38px;
    border-width: 2px;
  }

  .mobile-brand strong {
    color: var(--green-950);
  }

  .mobile-menu-button {
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
  }

  .mobile-menu-button i {
    width: 24px;
    height: 2px;
    display: block;
    margin: 6px auto;
    background: var(--black);
  }

  .mobile-nav {
    position: absolute;
    top: 72px;
    right: 14px;
    left: 14px;
    display: none;
    padding: 18px;
    background: var(--warm-white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .mobile-nav.is-open {
    display: grid;
  }

  .mobile-nav a {
    padding: 10px;
    color: var(--green-950);
    font-weight: 720;
    text-decoration: none;
  }

  .cover {
    min-height: calc(100vh - 72px);
  }

  .manifesto,
  .definition,
  .profile,
  .questions,
  .closing {
    grid-template-columns: 1fr;
  }

  .manifesto {
    gap: 26px;
  }

  .definition-title {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .profile-gallery {
    min-height: 720px;
  }

  .questions-intro {
    position: static;
  }

  .history-line,
  .history-more {
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }

  .cover-topline {
    top: 22px;
    right: 18px;
    left: 18px;
  }

  .cover-topline span:last-child {
    display: none;
  }

  .cover-content {
    width: calc(100% - 36px);
    margin-left: 18px;
    padding: 24vh 0 100px;
  }

  .cover-actions {
    flex-direction: column;
  }

  .cover-primary,
  .cover-secondary {
    width: 100%;
  }

  .scroll-cue {
    right: 18px;
    bottom: 20px;
  }

  .manifesto,
  .processes,
  .sessions,
  .questions,
  .history {
    padding: 82px 18px;
  }

  .manifesto,
  .chapter-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process-list article {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .process-list article > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .definition-title,
  .definition-body,
  .profile-copy,
  .closing {
    padding: 78px 18px;
  }

  .definition-columns {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .profile-gallery {
    min-height: 590px;
  }

  .profile-photo-main {
    top: 40px;
    left: 18px;
    width: 70%;
  }

  .profile-photo-secondary {
    right: 18px;
    bottom: 34px;
    width: 53%;
  }

  .profile-words {
    left: 18px;
    bottom: 30px;
  }

  .profile-data div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .session-flow,
  .session-meta {
    grid-template-columns: 1fr;
  }

  .session-flow {
    gap: 34px;
  }

  .session-flow::before {
    display: none;
  }

  .session-meta div {
    border-bottom: 1px solid var(--line);
  }

  .history-line::before {
    left: 18px;
  }

  .history-line article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-left: 48px;
  }

  .history-line article::before {
    left: 12px;
  }

  .closing {
    gap: 42px;
  }

  .closing-whatsapp {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer {
    display: grid;
    padding: 30px 18px;
  }

  .footer > div:last-child {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}


/* ==================================
   Identidad cálida y pastel
   ================================== */

.side-panel {
  background:
    linear-gradient(180deg, #5f424c 0%, #74515d 55%, #563d46 100%);
}

.cover-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(77, 51, 59, 0.86) 0%,
      rgba(93, 61, 70, 0.63) 44%,
      rgba(90, 55, 64, 0.15) 100%
    ),
    linear-gradient(0deg, rgba(71, 46, 54, 0.52), transparent 48%);
}

.cover-primary {
  background: #f8eee5;
}

.manifesto {
  background: #f6e6e1;
}

.processes {
  background: #fffaf6;
}

.definition {
  background: #72515d;
}

.profile-gallery {
  background: #eee4d8;
}

.profile-photo-secondary {
  border-color: #eee4d8;
}

.sessions {
  background: #eee7f1;
}

.questions {
  background: #f8efe8;
}

.history {
  background: #fffaf6;
}

.closing {
  background:
    linear-gradient(135deg, #684954 0%, #513941 100%);
}

.footer {
  background: #f3e7df;
}

.cover::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  width: 190px;
  height: 9px;
  background: linear-gradient(
    to right,
    #e98a8a 0 16.66%,
    #efad74 16.66% 33.32%,
    #e7d278 33.32% 49.98%,
    #9bc69d 49.98% 66.64%,
    #8bb7df 66.64% 83.3%,
    #b49ace 83.3% 100%
  );
}

.cover-image {
  object-position: 50% 34%;
}

.profile-photo-main img {
  object-position: 50% 22%;
}

.profile-photo-secondary img {
  object-position: 50% 42%;
}

@media (max-width: 1080px) {
  .mobile-header {
    background: rgba(255, 250, 246, 0.95);
  }
}

/* =========================================================
   V5 · Paleta celeste pastel, beige arena y azul petróleo
   ========================================================= */

:root {
  --black: #17384d;
  --green-950: #17384d;
  --green-900: #214b65;
  --green-700: #5d7f91;
  --sage: #d8e6eb;
  --cream: #efe0c7;
  --warm-white: #fbfaf7;
  --white: #ffffff;
  --ink: #263842;
  --muted: #66747b;
  --line: #d4d9d8;
  --rust: #c38e63;
  --gold: #d8b76e;
  --shadow: 0 22px 58px rgba(23, 56, 77, 0.13);
}

/* Panel lateral claro y suave */
.side-panel {
  color: var(--ink);
  background:
    linear-gradient(180deg, #d8e7ed 0%, #cbdde5 58%, #bed3dc 100%);
  border-right: 1px solid rgba(23, 56, 77, 0.12);
}

.identity-copy strong {
  color: var(--green-950);
}

.identity-copy small {
  color: rgba(23, 56, 77, 0.62);
}

.side-nav a {
  color: rgba(23, 56, 77, 0.78);
}

.side-nav a:hover {
  color: var(--green-950);
}

.side-nav a span {
  color: #a06f4e;
}

.side-contact {
  border-top-color: rgba(23, 56, 77, 0.16);
}

.side-contact a {
  color: var(--green-950);
}

.side-note {
  color: rgba(23, 56, 77, 0.58);
}

/* Bandera LGBT con borde apto para fondo claro */
.pride-flag {
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 0 0 1px rgba(23, 56, 77, 0.11),
    0 7px 18px rgba(23, 56, 77, 0.14);
}

/* Portada con lectura más cálida y menos oscura */
.cover {
  background: #17384d;
}

.cover-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(23, 56, 77, 0.88) 0%,
      rgba(33, 75, 101, 0.68) 43%,
      rgba(33, 75, 101, 0.14) 100%
    ),
    linear-gradient(
      0deg,
      rgba(23, 56, 77, 0.52),
      transparent 48%
    );
}

.cover::after {
  background: linear-gradient(
    to right,
    #e57373 0 16.66%,
    #ef9f5f 16.66% 33.32%,
    #e5cc63 33.32% 49.98%,
    #89b983 49.98% 66.64%,
    #75a8d4 66.64% 83.3%,
    #9d7fc1 83.3% 100%
  );
}

.cover-primary {
  color: var(--green-950);
  background: #f7f0e4;
}

.cover-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.05);
}

/* Secciones principales */
.manifesto {
  background: #efe0c7;
}

.processes {
  background: #fbfaf7;
}

.definition {
  background: #214b65;
}

.definition-title {
  border-right-color: rgba(255, 255, 255, 0.15);
}

.profile {
  background: #ffffff;
}

.profile-gallery {
  background: #d8e6eb;
}

.profile-photo-secondary {
  border-color: #d8e6eb;
}

.sessions {
  background: #edf3f5;
}

.questions {
  background: #f4e7d3;
}

.history {
  background: #fbfaf7;
}

.closing {
  background:
    linear-gradient(135deg, #214b65 0%, #17384d 100%);
}

.footer {
  background: #d8e6eb;
}

/* Detalles y jerarquías */
.section-index,
.process-number,
.history-year,
.side-nav a span {
  color: #a56f4c;
}

.profile-words span {
  color: var(--green-950);
}

.session-flow article > span {
  background: var(--green-900);
}

.questions-list summary::after {
  color: #a56f4c;
}

.definition-body aside {
  border-left-color: #e2c37d;
}

.closing-whatsapp {
  color: var(--green-950);
  background: #f5ead8;
}

.wa-float {
  background: #277b59;
}

/* Menú móvil */
@media (max-width: 1080px) {
  .mobile-header {
    background: rgba(216, 231, 237, 0.96);
    border-bottom-color: rgba(23, 56, 77, 0.14);
  }

  .mobile-brand strong {
    color: var(--green-950);
  }

  .mobile-menu-button i {
    background: var(--green-950);
  }

  .mobile-nav {
    background: #fbfaf7;
    border-color: var(--line);
  }

  .mobile-nav a {
    color: var(--green-950);
  }
}
.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.instagram-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}
.closing-whatsapp {
  justify-content: center;
  text-align: center;
  border-radius: 18px;
}
.closing-whatsapp {
  min-height: 80px;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 18px;
}