/* ══════════════════════════════════════════
   CARPINTERÍA 360 – Home Screen
   ══════════════════════════════════════════ */

/* ── Hero Banner ── */
.hero-banner {
  background: linear-gradient(160deg, #1a0800 0%, #2d1200 60%, #1a0800 100%);
  padding: 20px 18px 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.hero-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 20%, rgba(245,130,10,.22), transparent 70%);
}
.hero-banner h1 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 1.5px;
  color: #fff;
  position: relative; z-index: 1;
  line-height: 1.2;
}
.hero-banner p {
  font-size: .67rem;
  color: rgba(255,255,255,.6);
  margin-top: 5px;
  position: relative; z-index: 1;
  letter-spacing: .3px;
}

/* ── Module Grid ── */
.module-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  padding: 14px 14px 4px;
  flex-shrink: 0;
}
.module-btn {
  background: var(--card);
  border: none;
  border-radius: var(--r);
  padding: 14px 6px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform .15s, box-shadow .15s, background .15s;
}
.module-btn:active { transform: scale(.95); box-shadow: none; }
.module-btn.mod-orange { background: var(--orange); }
.module-btn.mod-orange .mod-icon,
.module-btn.mod-orange .mod-label { color: #fff; }
.mod-icon  { font-size: 1.55rem; line-height: 1; }
.mod-label {
  font-size: .58rem;
  font-weight: 700;
  text-align: center;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .3px;
  line-height: 1.25;
}

/* ── Quick stats strip ── */
.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 4px 14px 14px;
}
.qs-item {
  background: var(--card);
  border-radius: var(--r-sm);
  padding: 12px 8px;
  text-align: center;
  box-shadow: var(--shadow);
}
.qs-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--orange);
  line-height: 1;
}
.qs-label { font-size: .58rem; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); margin-top: 3px; }

/* ── Section header ── */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px 8px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 1.5px;
}
.section-link { font-size: .72rem; color: var(--orange); font-weight: 700; }
