/* ══════════════════════════════════════════════════════════
   VARIABLES — 8px base grid
══════════════════════════════════════════════════════════ */
:root {
  --gold:       #c89a43;
  --gold-dark:  #a67c2e;
  --gold-pale:  #f7f0e2;
  --black:      #111111;
  --text:       #1a1a1a;
  --gray:       #666666;
  --gray-light: #999999;
  --bg-light:   #f5f5f2;
  --white:      #ffffff;
  --border:     #e8e8e4;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Montserrat', Arial, sans-serif;

  --max-w:  1440px;
  --pad-h:  64px;

  /* spacing scale (8px base) */
  --s1:  8px;
  --s2:  16px;
  --s3:  24px;
  --s4:  32px;
  --s5:  48px;
  --s6:  64px;
  --s7:  80px;
  --s8:  96px;
  --s9:  128px;
}

/* ══════════════════════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img   { display: block; max-width: 100%; }
body  {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
}

/* ══════════════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(.16,1,.3,1), transform 0.75s cubic-bezier(.16,1,.3,1);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.8s cubic-bezier(.16,1,.3,1), transform 0.8s cubic-bezier(.16,1,.3,1);
}
.reveal.visible, .reveal-left.visible { opacity: 1; transform: none; }

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }
.delay-6 { transition-delay: 0.48s; }

/* ══════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s2) 0;
  gap: var(--s4);
}

.logo-link   { display: block; flex-shrink: 0; }
.logo        { height: 112px; width: auto; }
.logo--small { height: 96px; }

.header-nav {
  display: flex;
  align-items: center;
  gap: var(--s5);
}

.nav-link {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gray);
  position: relative;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s cubic-bezier(.16,1,.3,1);
}
.nav-link:hover       { color: var(--black); }
.nav-link:hover::after { width: 100%; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 28px;
}
.burger span {
  display: block;
  height: 1px;
  background: var(--black);
  transition: transform 0.25s, opacity 0.25s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: var(--s1) var(--pad-h) var(--s4);
  border-top: 1px solid var(--border);
  background: var(--white);
}
.mobile-menu.open { display: flex; }

.mobile-link {
  font-size: 0.9rem;
  font-weight: 300;
  text-decoration: none;
  color: var(--text);
  padding: var(--s2) 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
  letter-spacing: 0.04em;
}
.mobile-link:last-child { border-bottom: none; }
.mobile-cta { color: var(--gold); font-weight: 500; letter-spacing: 0.1em; }

/* ══════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px var(--s4);
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
  line-height: 1;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: none; }

.btn-primary  { background: var(--gold);  color: var(--white); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.btn-outline  { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }

.btn-ghost    { background: transparent; color: var(--gray); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--gray); color: var(--black); }

.btn-full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════════════════
   EYEBROW
══════════════════════════════════════════════════════════ */
.eyebrow {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s3);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  padding: var(--s9) 0 var(--s8);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero .eyebrow {
  justify-content: center;
  margin-bottom: var(--s4);
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--black);
  margin-bottom: var(--s5);
}
.hero-title .line       { display: block; font-size: clamp(2.2rem, 4.5vw, 4.2rem); }
.hero-title .line--italic {
  font-style: italic;
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.hero-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s5);
}

.hero-sub {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--black);
  max-width: 520px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  gap: var(--s2);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-deco {
  position: absolute;
  bottom: -10px;
  left: 0; right: 0;
  display: flex;
  justify-content: space-around;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}
.deco-word {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 8vw, 9rem);
  font-weight: 400;
  color: rgba(200,154,67,0.04);
  white-space: nowrap;
  line-height: 1;
}

/* ══════════════════════════════════════════════════════════
   SECTION LAYOUT
══════════════════════════════════════════════════════════ */
.section  { padding: var(--s8) 0; }
.bg-light { background: var(--bg-light); }

.section-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0 var(--s7);
  align-items: start;
}

.section-aside { padding-top: var(--s1); }

.section-label {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--black);
  margin-bottom: var(--s5);
}
.section-title--large {
  font-size: clamp(2.4rem, 4vw, 3.6rem) !important;
  letter-spacing: -0.025em;
}

/* ══════════════════════════════════════════════════════════
   BULLET LIST
══════════════════════════════════════════════════════════ */
.bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}
.bullet-list li {
  position: relative;
  padding-left: var(--s4);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--black);
}
.bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 10px;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.bullet-list li:hover::before { width: 18px; }
.bullet-list li strong { font-weight: 600; color: var(--black); }

#a-quien .body-text {
  font-size: 1.1rem;
  color: var(--black);
}

/* ══════════════════════════════════════════════════════════
   CARDS
══════════════════════════════════════════════════════════ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.card {
  padding: var(--s5) var(--s5) var(--s5) var(--s4);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(.16,1,.3,1);
}
.card:hover { background: #fdfcf8; }
.card:hover::after { width: 100%; }
.card:last-child:nth-child(odd) { grid-column: span 2; }

.card-num {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  transition: opacity 0.3s;
}
.card:hover .card-num { opacity: 1; }

.card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1.3;
}
.card-text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--black);
}

/* ══════════════════════════════════════════════════════════
   PROCESO
══════════════════════════════════════════════════════════ */
.proceso-section { background: var(--bg-light); }

.proceso-header {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0 var(--s7);
  align-items: end;
  margin-bottom: var(--s7);
}
.proceso-header .section-aside { padding-top: var(--s1); }
.proceso-header .section-title { margin-bottom: 0; }

.proceso-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  position: relative;
  padding-bottom: 52px;
}

/* Flecha desktop — línea horizontal debajo */
.proceso-steps::before {
  content: '';
  position: absolute;
  bottom: 22px;
  left: 0;
  right: 8px;
  height: 1px;
  background: var(--gold);
}
/* Punta de flecha derecha */
.proceso-steps::after {
  content: '';
  position: absolute;
  bottom: 16px;
  right: 0;
  width: 0; height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid var(--gold);
}

.paso {
  padding: var(--s5) var(--s4);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s2);
  transition: background 0.25s;
}
.paso:last-child { border-right: none; }
.paso:hover { background: rgba(200,154,67,0.03); }

.paso-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: var(--s2);
  transition: opacity 0.3s;
}
.paso:hover .paso-num { opacity: 0.65; }

.paso-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.paso-text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--black);
  line-height: 1.75;
}

/* ══════════════════════════════════════════════════════════
   QUOTE BREAK
══════════════════════════════════════════════════════════ */
.quote-break {
  padding: var(--s9) 0;
  text-align: center;
  background: var(--gold-pale);
  position: relative;
  overflow: hidden;
}
.quote-break::before {
  content: '\201C';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 26rem;
  color: rgba(200,154,67,0.07);
  line-height: 1;
  pointer-events: none;
}
.big-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.6rem, 3.2vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--black);
  line-height: 1.45;
  max-width: 860px;
  margin: 0 auto var(--s4);
  position: relative;
}
.big-quote em { color: var(--gold); }
.quote-author {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-light);
  font-style: normal;
}

/* ══════════════════════════════════════════════════════════
   SOBRE MÍ
══════════════════════════════════════════════════════════ */
.sobre-section { overflow: hidden; }

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 780px;
}
.sobre-text { padding-bottom: var(--s2); }
.sobre-text .section-title       { margin-bottom: var(--s4); }
.sobre-text .body-text           { margin-bottom: var(--s2); color: var(--text); }
.sobre-text .body-text:last-of-type { margin-bottom: 0; }

.body-text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--black);
}

.sobre-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s1);
  margin: var(--s4) 0 0;
}
.pill {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-pale);
  border: 1px solid rgba(200,154,67,0.25);
  padding: 6px 14px;
}

.linkedin-btn { margin-top: var(--s4); }

/* Avatar circular — todos los tamaños */
.sobre-header {
  display: flex;
  align-items: center;
  gap: var(--s4);
  margin-bottom: var(--s5);
}
.sobre-header .section-title--large { margin-bottom: 0; }

.avatar-wrap {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  overflow: hidden;
  flex-shrink: 0;
}
.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.1) translate(-2%, 0%);
  transform-origin: center center;
}

/* ══════════════════════════════════════════════════════════
   CONTACTO
══════════════════════════════════════════════════════════ */
.contact-section {
  padding: var(--s8) 0 var(--s9);
  background: var(--white);
}
.contact-head {
  text-align: center;
  margin-bottom: var(--s7);
}
.contact-head .eyebrow { justify-content: center; }
.contact-head .section-title { color: var(--black); margin-bottom: var(--s3); }
.contact-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--black);
  line-height: 1.85;
}

.contact-form-wrap {
  max-width: 680px;
  margin: 0 auto;
}
.contact-form { display: flex; flex-direction: column; gap: 0; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 var(--s6);
}

/* Floating label fields */
.form-field {
  position: relative;
  margin-bottom: var(--s6);
}
.form-field input,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--black);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: var(--s2) 0;
  outline: none;
  transition: border-color 0.3s;
  resize: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-field textarea { min-height: 80px; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: transparent; }

.form-field label {
  position: absolute;
  top: var(--s2);
  left: 0;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-light);
  pointer-events: none;
  transition: top 0.25s ease, font-size 0.25s ease, color 0.25s ease;
}
.form-field input:focus ~ label,
.form-field input:not(:placeholder-shown) ~ label,
.form-field textarea:focus ~ label,
.form-field textarea:not(:placeholder-shown) ~ label {
  top: -18px;
  font-size: 0.58rem;
  color: var(--gold);
}
.form-field input:focus,
.form-field textarea:focus { border-bottom-color: var(--gold); }
.form-field::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s cubic-bezier(.16,1,.3,1);
}
.form-field:focus-within::after { width: 100%; }

.form-submit { display: flex; justify-content: center; padding-top: var(--s2); }

.contact-email-direct {
  text-align: center;
  margin-top: var(--s5);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--gray);
}
.contact-email-direct a {
  color: var(--gold-dark);
  text-decoration: none;
  letter-spacing: 0.03em;
}
.contact-email-direct a:hover { text-decoration: underline; }
.btn-send { padding: 18px var(--s7); font-size: 0.72rem; letter-spacing: 0.2em; }

.form-notice {
  padding: var(--s2) var(--s3);
  font-size: 0.85rem;
  margin-bottom: var(--s4);
  line-height: 1.5;
}
.form-notice--success { background: #f0faf4; color: #2d7a4f; border-left: 2px solid #5cc98a; }
.form-notice--error   { background: #fff4f4; color: #b93030; border-left: 2px solid #e88; }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: var(--s6) 0;
  background: var(--white);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--s4);
}
.footer-contact { display: none; }
.footer-copy {
  font-size: 0.7rem;
  font-weight: 300;
  color: #bbb;
  letter-spacing: 0.08em;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — large tablet
══════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  :root { --pad-h: 48px; }
}

@media (max-width: 1024px) {
  :root { --pad-h: 40px; }

  /* Flecha vertical izquierda en tablet/móvil */
  .proceso-steps {
    grid-template-columns: 1fr;
    border-top: none;
    padding-bottom: 0;
    padding-left: 44px;
  }
  /* Línea vertical */
  .proceso-steps::before {
    bottom: 8px;
    top: 0;
    left: 18px;
    right: auto;
    width: 1px;
    height: auto;
  }
  /* Punta de flecha abajo */
  .proceso-steps::after {
    bottom: 0;
    left: 12px;
    right: auto;
    top: auto;
    transform: none;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 12px solid var(--gold);
    border-bottom: none;
  }
  .paso { border-right: none; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — tablet portrait
══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .contact-section { padding: var(--s7) 0; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — mobile
══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --pad-h: 22px; }

  /* Header */
  .logo        { height: 84px; }
  .logo--small { height: 120px; }
  .header-nav  { display: none; }
  .burger      { display: flex; width: 36px; gap: 7px; margin-right: var(--s2); }
  .burger span { height: 2px; }
  .logo-link   { margin-left: var(--s2); }

  /* Hero */
  .hero { padding: var(--s7) 0 var(--s6); }
  .hero-title .line         { font-size: clamp(2rem, 8.5vw, 2.8rem); }
  .hero-title .line--italic { font-size: clamp(1.8rem, 7.5vw, 2.5rem); }
  .hero-sub     { font-size: 0.9rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-deco    { display: none; }

  /* Sections */
  .section       { padding: var(--s7) 0; }
  .section-grid  { grid-template-columns: 1fr; gap: var(--s2) 0; }
  .section-title { font-size: clamp(1.6rem, 5.5vw, 2rem); text-align: center; }
  .section-title--large { text-align: center; }
  .hero-title    { text-align: center; }

  /* Cards */
  /* Áreas de trabajo — lista numerada en móvil */
  .cards-grid {
    display: flex;
    flex-direction: column;
    border: none;
  }
  .card {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--s3);
    padding: var(--s3) 0;
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid var(--border);
    background: none !important;
  }
  .card:last-child { border-bottom: none; }
  .card::after { display: none; }
  .card-num {
    font-size: 2rem;
    opacity: 1;
    flex-shrink: 0;
    width: 36px;
    text-align: left;
    padding-top: 2px;
  }
  .card-title { font-size: 0.95rem; margin-bottom: 4px; }
  .card-text  { font-size: 0.82rem; }

  /* Proceso */
  .proceso-header { grid-template-columns: 1fr; gap: var(--s2) 0; margin-bottom: var(--s5); }
  .paso           { padding: var(--s4) 0; }

  /* Quote */
  .quote-break { padding: var(--s7) 0; }
  .big-quote   { font-size: clamp(1.4rem, 6vw, 2rem); }

  /* Sections — ocultar label aside en móvil (redundante con el h2) */
  .section-aside { display: none; }

  /* Sobre mobile */
  .sobre-header { gap: var(--s3); }
  .avatar-wrap  { width: 140px; height: 140px; }
  .avatar-img   { transform: scale(1.1) translate(-2%, -5%); }
  .sobre-header .section-title--large {
    font-size: clamp(1.6rem, 6vw, 2.2rem) !important;
    margin-bottom: 0;
    text-align: left;
  }

  /* Proceso — título izquierda en móvil */
  .proceso-header .section-title { text-align: left; }

  /* Contact */
  .contact-section { padding: var(--s7) 0; }
  .contact-head    { margin-bottom: var(--s6); }
  .form-row        { grid-template-columns: 1fr; gap: 0; }
  .btn-send        { width: 100%; justify-content: center; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: center; text-align: center; gap: var(--s2); }
}

@media (max-width: 400px) {
  .hero-title .line         { font-size: 2rem; }
  .hero-title .line--italic { font-size: 1.8rem; }
  .btn { padding: 15px var(--s3); font-size: 0.65rem; }
}

/* ══════════════════════════════════════════════════════════
   READING BAR
══════════════════════════════════════════════════════════ */
.reading-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--gold);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ══════════════════════════════════════════════════════════
   CUSTOM CURSOR
══════════════════════════════════════════════════════════ */
.cursor, .cursor-dot { display: none; }

.has-cursor * { cursor: none !important; }

.has-cursor .cursor {
  display: block;
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid rgba(200,154,67,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  margin: -18px 0 0 -18px;
  transition: transform 0.12s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s;
}
.has-cursor .cursor.cursor--hover {
  width: 52px; height: 52px;
  margin: -26px 0 0 -26px;
  border-color: var(--gold);
  background: rgba(200,154,67,0.05);
}
.has-cursor .cursor-dot {
  display: block;
  position: fixed;
  top: 0; left: 0;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  margin: -2.5px 0 0 -2.5px;
}

/* ══════════════════════════════════════════════════════════
   HERO WORD REVEAL
══════════════════════════════════════════════════════════ */
.word-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(.16,1,.3,1), transform 0.6s cubic-bezier(.16,1,.3,1);
}
.word-reveal.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════════════
   SECTION DIVIDER
══════════════════════════════════════════════════════════ */
.section-divider {
  display: flex;
  align-items: center;
  gap: var(--s4);
  padding: var(--s3) var(--pad-h);
  max-width: var(--max-w);
  margin: 0 auto;
}
.divider-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.divider-logo {
  height: 32px;
  width: auto;
  opacity: 0.2;
  filter: grayscale(1);
}

/* ══════════════════════════════════════════════════════════
   ¿POR QUÉ YO?
══════════════════════════════════════════════════════════ */
.porque-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s3);
}

.porque-card {
  padding: var(--s5) var(--s4);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s cubic-bezier(.16,1,.3,1);
}
.porque-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(.16,1,.3,1);
}
.porque-card:hover { border-color: transparent; transform: translateY(-4px); }
.porque-card:hover::before { transform: scaleX(1); }

.porque-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  color: var(--gold);
  transition: background 0.3s, border-color 0.3s;
}
.porque-card:hover .porque-icon { background: var(--gold-pale); border-color: rgba(200,154,67,0.3); }

.porque-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1.3;
}
.porque-text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--black);
  line-height: 1.75;
}

/* ══════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════ */
.faq-section { background: var(--bg-light); }

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  padding: var(--s4) 0;
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  font-weight: 400;
  color: var(--black);
  font-family: var(--font-heading);
  transition: color 0.2s;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--gold); }

.faq-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 1px;
  transition: transform 0.35s cubic-bezier(.16,1,.3,1), opacity 0.3s;
}
.faq-icon::before { width: 14px; height: 1px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-icon::after  { width: 1px; height: 14px; top: 50%; left: 50%; transform: translate(-50%,-50%); }

details[open] .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }

.faq-answer {
  font-size: 1rem;
  font-weight: 300;
  color: var(--black);
  line-height: 1.85;
  padding: 0 var(--s6) var(--s5) 0;
  max-width: 680px;
}

/* ══════════════════════════════════════════════════════════
   FORM VALIDATION STATES
══════════════════════════════════════════════════════════ */
.field-error {
  display: block;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #c0392b;
  margin-top: 6px;
  min-height: 16px;
}
.form-field input.is-error,
.form-field textarea.is-error { border-bottom-color: #c0392b; }
.form-field input.is-valid,
.form-field textarea.is-valid { border-bottom-color: #27ae60; }

/* ══════════════════════════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: var(--s4);
  right: var(--s4);
  width: 44px; height: 44px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s, border-color 0.2s, visibility 0.3s;
  z-index: 100;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.back-to-top:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════
   FOOTER EMAIL
══════════════════════════════════════════════════════════ */
.footer-contact { display: flex; align-items: center; }
.footer-email {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--gray);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.footer-email:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — nuevas secciones
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .porque-grid { grid-template-columns: 1fr 1fr; }
  .porque-card:last-child { grid-column: span 2; max-width: 480px; }
}

@media (max-width: 768px) {
  .porque-grid { grid-template-columns: 1fr; }
  .porque-card:last-child { grid-column: auto; max-width: 100%; }
  .porque-card:hover { transform: none; }
  .faq-answer { padding-right: 0; }
  .back-to-top { bottom: var(--s3); right: var(--s3); }
  .section-divider { padding: var(--s3) var(--pad-h); }
}

/* ══════════════════════════════════════════════════════════
   REDUCED MOTION
══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
