body.theme-light a { color: var(--green); text-decoration: none; }
body.theme-light a:hover { color: var(--green-dark); }

.home-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 960px;
  margin: 0 auto;
  padding: var(--space-10) var(--space-8) 0;
  flex-wrap: wrap;
  gap: 14px;
}
.home-nav .nav-logo { height: 32px; width: auto; display: block; }
.home-nav .links { display: flex; gap: 26px; flex-wrap: wrap; }
.home-nav .links a { font-size: 14px; font-weight: 500; }

.home-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 20px;
  border-top: 1px solid var(--surface-border);
}
.home-section.hero {
  max-width: 780px;
  padding: 100px 20px 90px;
  text-align: center;
  border-top: none;
}
.home-section.contacto { max-width: 600px; padding: 70px 20px 40px; }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 44px;
  line-height: 1.15;
  margin: 0 0 18px;
}
.hero p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 32px;
}
.hero a.btn-primary { display: inline-block; padding: 13px 26px; font-size: 14.5px; color: #f3f1ea; }

.section-eyebrow {
  font-size: 12.5px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.section-copy {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 28px;
}
#como-trabajamos .section-title { margin-bottom: 28px; }

.posibilidades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}
.posibilidad-card {
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  border-radius: 12px;
  padding: 22px;
}
.posibilidad-card .titulo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.posibilidad-card .desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.55;
}
.posibilidad-card--open {
  grid-column: 1 / -1;
  border-style: dashed;
}

.proceso-stepper { margin-bottom: 56px; }

.proceso-lista { display: flex; flex-direction: column; gap: 12px; }
.proceso-item { display: flex; gap: 14px; align-items: baseline; }
.proceso-item .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--green);
  min-width: 20px;
}
.proceso-item .nombre { font-weight: 600; font-size: 14.5px; color: var(--text-primary); }
.proceso-item .explicacion { font-size: 14.5px; color: var(--text-secondary); }

.contacto-header { text-align: center; margin-bottom: 28px; }
.contacto-header .section-title { margin-bottom: 10px; }
.contacto-header p { font-size: 15px; color: var(--text-secondary); margin: 0; }

#contactoForm { display: flex; flex-direction: column; gap: 16px; }
#contactoForm .field-error {
  font-size: 12px;
  color: var(--terracotta);
  margin-top: 5px;
}

.contacto-success {
  background: rgba(47, 111, 94, .08);
  border: 1px solid rgba(47, 111, 94, .33);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
}
.contacto-success .titulo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--green);
  margin-bottom: 6px;
}
.contacto-success .cuerpo { font-size: 14px; color: var(--text-primary); }

.home-footer {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px;
  border-top: 1px solid var(--surface-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.home-footer .copyright { color: var(--text-tertiary); font-size: 12.5px; }
.home-footer .links { display: flex; gap: 20px; }
.home-footer .links a { font-size: 13.5px; font-weight: 500; }
.home-footer .footer-logo { font-size: 20px; }
