/* ============================================================
   ELETROMUV — Layout / Section Patterns / Responsive
   Breakpoints: 375 · 768 · 1024 · 1440px (Design System V1)
   ============================================================ */

/* ── Section base ────────────────────────────────────────── */
section {
  padding: var(--section-pad-y) var(--section-pad-x);
  position: relative;
}

/* ── Section header pattern ──────────────────────────────── */
.eyebrow {
  font-size: clamp(10px, 1.2vw, 11px);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.sec-title {
  font-size: clamp(24px, 5vw, 46px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 14px;
  /* Prevent ugly word breaks on narrow screens */
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

.sec-sub {
  font-size: clamp(14px, 1.6vw, 16px);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
}

.sec-line {
  width: 44px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 18px;
}

.sec-header {
  margin-bottom: clamp(32px, 5vw, 52px);
}

.sec-header.center {
  text-align: center;
}

.sec-header.center .sec-sub {
  margin: 0 auto;
}

.sec-header.center .sec-line {
  margin-left: auto;
  margin-right: auto;
}

/* ── Shared button styles ────────────────────────────────── */
.btn-p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--orange);
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(255, 73, 0, 0.28);
  /* Touch target compliance */
  min-height: var(--touch-min);
}

.btn-p:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 73, 0, 0.4);
}

/* Disable hover-lift on touch devices to avoid sticky states */
@media (hover: none) {
  .btn-p:hover { transform: none; }
}

.btn-p svg { width: 17px; height: 17px; }

.btn-s {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: background .2s, transform .15s;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* Touch target compliance */
  min-height: var(--touch-min);
}

.btn-s:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-2px);
}

@media (hover: none) {
  .btn-s:hover { transform: none; }
}

.btn-s svg { width: 17px; height: 17px; fill: var(--whatsapp); }

/* ── Mobile: full-width stacked buttons ──────────────────── */
@media (max-width: 480px) {
  .btn-p, .btn-s {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
  }
}
