/* =====================================================================
   BEATWEAR · Base / reset y utilidades comunes
   ===================================================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bw-black);
  color: var(--bw-white);
  font-family: var(--bw-font-body);
  font-weight: var(--bw-w-reg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; }

h1, h2, h3, h4 { font-family: var(--bw-font-display); line-height: 1.05; letter-spacing: -0.02em; }

.wrap { width: 100%; max-width: var(--bw-max); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--bw-font-body);
  font-size: 11px;
  font-weight: var(--bw-w-med);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bw-pink);
}

.section-title { font-size: clamp(28px, 4vw, 44px); font-weight: var(--bw-w-black); text-transform: uppercase; }
.section-title .thin { font-weight: var(--bw-w-light); color: var(--bw-pink); }

/* Botones */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--bw-radius);
  font-weight: var(--bw-w-bold); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  transition: transform var(--bw-ease), background var(--bw-ease), opacity var(--bw-ease);
}
.btn:active { transform: translateY(1px); }
.btn-pink   { background: var(--bw-pink); color: var(--bw-white); }
.btn-pink:hover { box-shadow: var(--bw-shadow-pink); }
.btn-light  { background: var(--bw-white); color: var(--bw-black); }
.btn-light:hover { background: var(--bw-offwhite); }
.btn-ghost  { background: transparent; color: var(--bw-white); border: 1px solid var(--bw-line); }
.btn-ghost:hover { border-color: var(--bw-pink); color: var(--bw-pink); }
.btn-block  { width: 100%; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; }

/* Campos de formulario */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 12px; letter-spacing: 0.05em; color: var(--bw-muted); text-transform: uppercase; }
.input, .select, .textarea {
  background: var(--bw-ink-800); border: 1px solid var(--bw-line); color: var(--bw-white);
  padding: 12px 14px; border-radius: var(--bw-radius); font-size: 14px; width: 100%;
  transition: border-color var(--bw-ease);
}
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--bw-pink); }
.textarea { resize: vertical; min-height: 90px; }

/* Helpers */
.hidden { display: none !important; }
.spinner {
  width: 18px; height: 18px; border: 2px solid rgba(255,255,255,0.25);
  border-top-color: var(--bw-white); border-radius: 50%; animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bw-ink-850); }
::-webkit-scrollbar-thumb { background: var(--bw-ink-600); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--bw-pink); }
