/* ═══════════════════════════════
   base.css — Reset y utilidades
   ═══════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--warm-w);
  color: var(--dark);
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 { font-family: var(--font-display); }
a { text-decoration: none; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--copper); border-radius: 3px; }

/* ── Secciones ── */
.section    { padding: 5.5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-cream { background: var(--cream); }
.section-steel { background: var(--steel); color: #fff; }

/* ── Etiqueta de sección ── */
.section-label {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--copper); font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: .75rem;
}
.section-label::before {
  content: ''; display: block; width: 28px; height: 2px; background: var(--copper);
}
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 700;
  line-height: 1.2; margin-bottom: 1rem;
}
.section-sub { font-size: 1rem; color: var(--mid); max-width: 560px; line-height: 1.7; }

/* ── Botones ── */
.btn-primary-hs {
  background: var(--copper); color: #fff; font-weight: 700; font-size: 1rem;
  padding: .85rem 2rem; border-radius: var(--radius-sm); border: none;
  transition: all .25s; display: inline-flex; align-items: center; gap: .5rem;
}
.btn-primary-hs:hover {
  background: var(--copper-d); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(181,113,74,.4); color: #fff;
}
.btn-outline-hs {
  background: transparent; color: #fff; font-weight: 600; font-size: 1rem;
  padding: .85rem 2rem; border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,.35);
  transition: all .25s; display: inline-flex; align-items: center; gap: .5rem;
}
.btn-outline-hs:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }

/* ── Page Header (banner interior de páginas) ── */
.page-header {
  background: linear-gradient(135deg, var(--steel-d), var(--steel));
  padding: 5rem 0 4rem; position: relative; overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-header .badge-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(181,113,74,.25); border: 1px solid rgba(181,113,74,.5);
  color: var(--copper-l); font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .35rem .9rem; border-radius: 20px; margin-bottom: 1rem;
}
.page-header h1 { color: #fff; font-size: clamp(2rem,4vw,3rem); font-weight: 800; }
.page-header p  { color: rgba(255,255,255,.75); font-size: 1.05rem; line-height: 1.7; max-width: 560px; }

/* Breadcrumb */
.breadcrumb-hs { display: flex; align-items: center; gap: .5rem; margin-top: 1.5rem; }
.breadcrumb-hs a  { color: rgba(255,255,255,.55); font-size: .82rem; transition: color .2s; }
.breadcrumb-hs a:hover { color: var(--copper-l); }
.breadcrumb-hs span { color: rgba(255,255,255,.3); font-size: .82rem; }
.breadcrumb-hs .current { color: var(--copper-l); font-size: .82rem; font-weight: 600; }

/* ── Scroll Reveal ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible  { opacity: 1; transform: none; }
.reveal-delay-1  { transition-delay: .1s; }
.reveal-delay-2  { transition-delay: .2s; }
.reveal-delay-3  { transition-delay: .3s; }
.reveal-delay-4  { transition-delay: .4s; }

@media (max-width: 768px) {
  .why-divider { display: none; }
}
