/* ===================================
   PÁGINAS INTERNAS — page.css
   =================================== */

.page-hero {
  background: var(--ink);
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(184,151,74,0.07), transparent);
  pointer-events: none;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.breadcrumb a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span:last-child { color: var(--gold); }
.page-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.page-title em { font-style: italic; color: var(--gold); }
.page-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
  max-width: 540px;
  line-height: 1.75;
  font-weight: 300;
}
.page-content { padding: var(--section-pad) 0; background: var(--cream); }
.page-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 5rem;
  align-items: start;
}
.page-main { max-width: 700px; }
.content-block { margin-bottom: 3.5rem; }
.content-block h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}
.content-block p { color: var(--stone); line-height: 1.85; margin-bottom: 1rem; font-size: 0.98rem; }
.content-block p strong { color: var(--text); font-weight: 500; }
.content-block a { color: var(--gold); font-weight: 500; border-bottom: 1px solid rgba(184,151,74,0.3); transition: border-color var(--transition); }
.content-block a:hover { border-color: var(--gold); }
.content-list { list-style: none; margin: 1rem 0 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; }
.content-list li { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 0.95rem; color: var(--text); line-height: 1.6; padding-left: 0.2rem; }
.content-list li::before { content: '—'; color: var(--gold); flex-shrink: 0; font-weight: 300; margin-top: 0.05rem; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.07); overflow: hidden; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 0; font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; color: var(--ink); cursor: pointer; user-select: none; gap: 1rem; transition: color var(--transition); }
.faq-question:hover { color: var(--gold); }
.faq-icon { font-size: 1.3rem; color: var(--gold); flex-shrink: 0; transition: transform var(--transition); font-weight: 300; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding: 0 0 1.2rem; font-size: 0.92rem; color: var(--stone); line-height: 1.8; }
.page-sidebar { position: sticky; top: 7rem; display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card { background: var(--cream-dark); padding: 2rem; border-radius: var(--radius); border-top: 2px solid var(--gold); }
.sidebar-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; color: var(--ink); margin-bottom: 0.8rem; }
.sidebar-card p { font-size: 0.88rem; color: var(--stone); line-height: 1.7; margin-bottom: 1.5rem; }
.sidebar-card-dark { background: var(--charcoal); border-color: rgba(184,151,74,0.3); }
.sidebar-card-dark h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 1rem; }
.sidebar-links { display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-links a { font-size: 0.88rem; color: rgba(255,255,255,0.55); padding: 0.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); transition: color var(--transition); display: block; }
.sidebar-links a:hover { color: var(--gold); }
.sidebar-alert { background: rgba(184,151,74,0.08); border: 1px solid rgba(184,151,74,0.25); border-radius: var(--radius); padding: 1.2rem; display: flex; gap: 1rem; align-items: flex-start; }
.sidebar-alert-icon { font-size: 1.3rem; flex-shrink: 0; }
.sidebar-alert strong { display: block; font-size: 0.88rem; color: var(--ink); margin-bottom: 0.3rem; font-weight: 500; }
.sidebar-alert p { font-size: 0.82rem; color: var(--stone); line-height: 1.6; margin: 0; }
@media (max-width: 1024px) {
  .page-grid { grid-template-columns: 1fr; gap: 3rem; }
  .page-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
@media (max-width: 640px) { .page-sidebar { grid-template-columns: 1fr; } }
