/* === Páginas de tratamiento ===================================
 * Hereda variables y resets de style.css.
 * ============================================================== */

/* Breadcrumb */
.crumb {
  padding: 110px 0 0;
  background: var(--ink);
}
.crumb__list {
  display: flex; flex-wrap: wrap; gap: 8px;
  list-style: none;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
  padding: 24px 0 0;
}
.crumb__list a { color: var(--muted); transition: color var(--t-fast); }
.crumb__list a:hover { color: var(--gold); }
.crumb__list li[aria-current="page"] { color: var(--cream); }
.crumb__sep { color: var(--gold); opacity: .6; }

/* Hero del tratamiento */
.t-hero {
  padding: 56px 0 clamp(60px, 8vw, 110px);
  background:
    radial-gradient(ellipse 50% 60% at 90% 10%, rgba(201, 169, 97, 0.10), transparent 60%),
    var(--ink);
}
.t-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 880px) {
  .t-hero__grid { grid-template-columns: 1fr; }
}
.t-hero__copy h1 {
  font-size: clamp(40px, 6vw, 76px);
  margin: 18px 0 24px;
  line-height: 1;
  letter-spacing: -.02em;
}
.t-hero__copy h1 em { color: var(--gold); font-style: italic; }
.t-hero__lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--cream); opacity: .85;
  margin-bottom: 32px;
  max-width: 50ch;
}
.t-hero__meta {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 22px 0 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}
.t-hero__meta dt {
  font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.t-hero__meta dd {
  font-family: var(--serif); font-style: italic;
  color: var(--cream); font-size: 16px; line-height: 1.3;
}
@media (max-width: 600px) {
  .t-hero__meta { grid-template-columns: 1fr; gap: 14px; padding: 18px 0; }
}
.t-hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 50px 80px -50px rgba(0,0,0,0.7), inset 0 0 0 1px var(--line);
}
.t-hero__visual img { width: 100%; height: 100%; object-fit: cover; }

/* Bloques de contenido */
.t-section {
  padding: clamp(60px, 8vw, 110px) 0;
  background: var(--ink);
}
.t-section--alt { background: var(--ink-2); }
.t-section__head {
  max-width: 720px;
  margin-bottom: 40px;
}
.t-section h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-top: 18px;
}
.t-section h2 em { color: var(--gold); font-style: italic; }
.t-section__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 880px) {
  .t-section__body { grid-template-columns: 1fr; }
}
.t-section p {
  color: var(--cream); opacity: .82;
  font-size: 16px; line-height: 1.7;
  margin-bottom: 14px;
  max-width: 60ch;
}
.t-section ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 14px;
}
.t-section ul li {
  position: relative; padding-left: 22px;
  color: var(--cream); opacity: .9;
  font-size: 15.5px; line-height: 1.55;
}
.t-section ul li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%;
  opacity: .75;
}

/* Pasos numerados */
.t-steps {
  list-style: none;
  counter-reset: step;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
@media (max-width: 760px) { .t-steps { grid-template-columns: 1fr; } }
.t-steps li {
  background: var(--ink);
  padding: 34px 28px;
  counter-increment: step;
}
.t-steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--serif); font-style: italic;
  color: var(--gold); font-size: 14px;
  margin-bottom: 12px;
  letter-spacing: .05em;
}
.t-steps h3 {
  font-size: 19px; margin-bottom: 10px;
  font-weight: 500;
}
.t-steps p {
  color: var(--muted); font-size: 14px; line-height: 1.6;
  margin: 0;
}

/* FAQ */
.t-faq {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--ink);
}
.t-faq details {
  border-bottom: 1px solid var(--line);
}
.t-faq details:last-child { border-bottom: 0; }
.t-faq summary {
  cursor: pointer;
  padding: 22px 26px;
  font-family: var(--serif);
  font-size: 19px;
  color: var(--cream);
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  transition: background var(--t-fast);
}
.t-faq summary::-webkit-details-marker { display: none; }
.t-faq summary::after {
  content: "+";
  color: var(--gold);
  font-family: var(--sans); font-weight: 300; font-size: 24px;
  transition: transform var(--t-fast);
  flex: 0 0 24px; text-align: center;
}
.t-faq details[open] summary { background: var(--ink-3); }
.t-faq details[open] summary::after { transform: rotate(45deg); }
.t-faq__answer {
  padding: 0 26px 22px;
  color: var(--cream); opacity: .82;
  font-size: 15.5px; line-height: 1.7;
}

/* CTA strip */
.t-cta {
  padding: clamp(60px, 8vw, 110px) 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 0%, rgba(201, 169, 97, 0.15), transparent 60%),
    var(--ink);
  text-align: center;
}
.t-cta h2 {
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 18px;
}
.t-cta p {
  color: var(--cream); opacity: .8;
  max-width: 540px; margin: 0 auto 32px;
  font-size: 17px;
}
.t-cta__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Relacionados */
.t-related {
  padding: clamp(60px, 8vw, 110px) 0;
  background: var(--ink-2);
  border-top: 1px solid var(--line);
}
.t-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 880px) { .t-related__grid { grid-template-columns: 1fr; } }
.t-related__card {
  display: block;
  padding: 32px 28px;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.t-related__card:hover { border-color: var(--gold); transform: translateY(-2px); }
.t-related__card .eyebrow { margin-bottom: 14px; }
.t-related__card h3 {
  font-size: 22px; margin-bottom: 10px;
  font-weight: 500;
}
.t-related__card p {
  color: var(--muted); font-size: 14px; line-height: 1.6;
}
