/* ============================================================
   PRORIENTE — Contacto
   ============================================================ */

/* HERO */
.ct-hero { padding-bottom: 56px; }
.ct-hero .breadcrumb { align-items: center; }
.ct-hero .bc-spacer { flex: 1; height: 1px; background: var(--line-dark); margin: 0 8px; }
.ct-hero .bc-doc { color: var(--gold); }
.ct-hero h1 em { font-style: italic; font-weight: 400; color: var(--gold); }

.ct-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr;
  gap: 64px;
  align-items: end;
}
.ct-status {
  border: 1px solid var(--line-dark);
  background: linear-gradient(180deg, rgba(244,241,236,0.025), rgba(244,241,236,0));
  padding: 22px 24px;
  position: relative;
}
.ct-status::before {
  content: ""; position: absolute; top: -1px; left: -1px;
  width: 28px; height: 28px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}
.cts-head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10px; letter-spacing: 0.18em;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(244,241,236,0.55);
}
.cts-tick { color: var(--status); }
.cts-list { list-style: none; }
.cts-list li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-dark);
  align-items: baseline;
}
.cts-list li:last-child { border-bottom: 0; }
.cts-list li span.mono { font-size: 9.5px; letter-spacing: 0.18em; color: rgba(244,241,236,0.5); }
.cts-list li strong {
  font-family: var(--display); font-weight: 500;
  font-size: 14px; color: var(--bone); letter-spacing: -0.005em;
}
@media (max-width: 1080px) { .ct-hero-grid { grid-template-columns: 1fr; gap: 40px; } }

/* CANALES */
.canales .amp { color: var(--gold); font-style: italic; font-weight: 400; }
.ch-grid {
  list-style: none;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}
.ch-card {
  padding: 28px 26px;
  border-right: 1px solid var(--line);
  background: var(--bone);
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  transition: background 0.25s ease;
}
.ch-card:last-child { border-right: 0; }
.ch-card:hover { background: var(--bone-2); }
.ch-card:hover .ch-arrow { transform: translateX(6px); color: var(--gold); }
.ch-head { display: flex; justify-content: space-between; align-items: center; }
.ch-num { font-size: 10px; letter-spacing: 0.2em; color: var(--muted); }
.ch-tag {
  font-size: 9.5px; letter-spacing: 0.22em;
  color: var(--gold);
  border: 1px solid rgba(232,184,66,0.45);
  padding: 3px 8px;
}
.ch-card h3 {
  font-family: var(--display); font-weight: 500;
  font-size: 19px; line-height: 1.2; letter-spacing: -0.01em;
  color: var(--navy);
  margin-top: 6px;
}
.ch-card p {
  font-size: 13px; line-height: 1.5;
  color: var(--ink-2);
  flex: 1;
}
.ch-link {
  display: inline-flex; align-items: center; justify-content: space-between;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 12px; letter-spacing: 0.04em;
  color: var(--navy);
  text-decoration: none;
}
.ch-arrow { color: var(--ink-2); transition: transform 0.2s ease, color 0.2s ease; }
.ch-card--ethic { background: var(--navy); color: var(--bone); border-right-color: var(--line-dark); }
.ch-card--ethic:hover { background: var(--navy-2); }
.ch-card--ethic h3 { color: var(--bone); }
.ch-card--ethic p { color: rgba(244,241,236,0.7); }
.ch-card--ethic .ch-link { border-top-color: var(--line-dark); color: var(--gold); }
.ch-card--ethic .ch-num { color: rgba(244,241,236,0.5); }

@media (max-width: 1080px) {
  .ch-grid { grid-template-columns: repeat(2, 1fr); }
  .ch-card { border-bottom: 1px solid var(--line); }
  .ch-card:nth-child(2n) { border-right: 0; }
  .ch-card:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 600px) {
  .ch-grid { grid-template-columns: 1fr; }
  .ch-card { border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .ch-card:last-child { border-bottom: 0; }
  .ch-card--ethic { border-bottom-color: var(--line-dark); }
}

/* FORMULARIO */
.formulario .amp { color: var(--gold); font-style: italic; font-weight: 400; }
.fm-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}

.fm-form {
  border: 1px solid var(--line-dark);
  background: linear-gradient(180deg, rgba(244,241,236,0.03), rgba(244,241,236,0));
  padding: 28px;
  position: relative;
  display: flex; flex-direction: column; gap: 22px;
}
.fm-form::before {
  content: ""; position: absolute; top: -1px; left: -1px;
  width: 32px; height: 32px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}
.fm-doc-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-dark);
  font-size: 10px; letter-spacing: 0.16em;
  color: rgba(244,241,236,0.55);
}
.fm-rev { color: var(--gold); }
.fm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 700px) { .fm-row { grid-template-columns: 1fr; } }

.fm-field { display: flex; flex-direction: column; gap: 8px; }
.fm-label { font-size: 9.5px; letter-spacing: 0.2em; color: var(--gold); }
.fm-field input,
.fm-field textarea {
  font-family: var(--body);
  font-size: 14px;
  background: transparent;
  color: var(--bone);
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  padding: 10px 0;
  transition: border-color 0.2s ease;
  width: 100%;
}
.fm-field input::placeholder,
.fm-field textarea::placeholder { color: rgba(244,241,236,0.35); }
.fm-field input:focus,
.fm-field textarea:focus { outline: none; border-bottom-color: var(--gold); }
.fm-field textarea { resize: vertical; min-height: 96px; line-height: 1.55; }

.fm-fieldset { border: 0; padding: 0; }
.fm-radios { display: flex; gap: 0; border: 1px solid var(--line-dark); }
.fm-radios label {
  flex: 1; position: relative;
  border-right: 1px solid var(--line-dark);
}
.fm-radios label:last-child { border-right: 0; }
.fm-radios input { position: absolute; opacity: 0; pointer-events: none; }
.fm-radios span {
  display: block;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.2em;
  text-align: center;
  padding: 13px 8px;
  color: rgba(244,241,236,0.6);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.fm-radios label:hover span { color: var(--bone); background: rgba(244,241,236,0.04); }
.fm-radios input:checked + span {
  background: rgba(232,184,66,0.12);
  color: var(--gold);
  box-shadow: inset 0 -2px 0 var(--gold);
}

.fm-check {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid var(--line-dark);
  font-size: 12px;
  color: rgba(244,241,236,0.7);
  line-height: 1.5;
  cursor: pointer;
}
.fm-check input {
  appearance: none; -webkit-appearance: none;
  width: 16px; height: 16px;
  border: 1px solid var(--line-dark);
  background: transparent;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  position: relative;
}
.fm-check input:checked {
  border-color: var(--gold);
  background: var(--gold);
}
.fm-check input:checked::after {
  content: "✓"; position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 12px; font-weight: 700;
}

.fm-foot {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line-dark);
}
.fm-doc-id { font-size: 9.5px; letter-spacing: 0.18em; color: rgba(244,241,236,0.5); }

.fm-ack[hidden] { display: none; }
.fm-ack {
  margin-top: 8px;
  padding: 16px 18px;
  border: 1px solid var(--gold);
  background: rgba(232,184,66,0.08);
  display: flex; flex-direction: column; gap: 6px;
}
.fm-ack-tag { font-size: 10px; letter-spacing: 0.2em; color: var(--gold); }
.fm-ack p { font-size: 13px; color: var(--bone); line-height: 1.5; }

/* sede aside */
.fma-card {
  border: 1px solid var(--line-dark);
  background: var(--navy-2);
  padding: 0;
  position: sticky; top: 96px;
}
.fma-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line-dark);
  font-size: 10px; letter-spacing: 0.18em;
  color: rgba(244,241,236,0.55);
}
.fma-coord { color: var(--gold); }
.fma-map {
  height: 220px;
  background: var(--navy);
  border-bottom: 1px solid var(--line-dark);
  position: relative;
  overflow: hidden;
}
.fma-map svg { width: 100%; height: 100%; display: block; }
.fma-list { list-style: none; padding: 0; }
.fma-list li {
  padding: 14px 22px;
  border-bottom: 1px solid var(--line-dark);
  display: flex; flex-direction: column; gap: 4px;
}
.fma-list li:last-child { border-bottom: 0; }
.fma-list li span.mono { font-size: 9.5px; letter-spacing: 0.18em; color: rgba(244,241,236,0.5); }
.fma-list li strong {
  font-family: var(--display); font-weight: 500;
  font-size: 14px; color: var(--bone); letter-spacing: -0.005em;
  line-height: 1.35;
}

@media (max-width: 1080px) {
  .fm-grid { grid-template-columns: 1fr; gap: 40px; }
  .fma-card { position: static; }
}

/* LEGAL */
.lg-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.lg-block h3 {
  font-family: var(--display); font-weight: 500;
  font-size: 28px; letter-spacing: -0.015em;
  color: var(--navy);
  margin: 12px 0 24px;
  line-height: 1.15;
}
.lg-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.lg-list > div {
  display: grid; grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.lg-list dt {
  font-family: var(--mono); font-size: 9.5px;
  letter-spacing: 0.18em; color: var(--muted);
  text-transform: uppercase;
}
.lg-list dd {
  font-family: var(--display); font-weight: 500;
  font-size: 14px; color: var(--navy); letter-spacing: -0.005em;
}

.lg-pol { list-style: none; border-top: 1px solid var(--line); }
.lg-pol li {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.lg-pol li span.mono:first-child { font-size: 10px; letter-spacing: 0.18em; color: var(--muted); }
.lg-pol li strong {
  font-family: var(--display); font-weight: 500;
  font-size: 15px; color: var(--navy); letter-spacing: -0.005em;
}
.lg-status {
  font-size: 9.5px; letter-spacing: 0.18em;
  padding: 4px 9px;
  border: 1px solid var(--green);
  color: var(--green);
}
@media (max-width: 900px) {
  .lg-grid { grid-template-columns: 1fr; gap: 40px; }
  .lg-list > div { grid-template-columns: 140px 1fr; }
}
@media (max-width: 540px) {
  .lg-list > div { grid-template-columns: 1fr; gap: 4px; }
  .lg-pol li { grid-template-columns: 40px 1fr; }
  .lg-status { grid-column: 1 / -1; justify-self: start; }
}
