/* ========================================
   BASE — reset + tipografía global
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;600;700&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--f-body);
  font-size: var(--fs-base);
  line-height: 1.55;
  color: var(--c-snow);
  background: var(--c-black);
  background-image:
    radial-gradient(1200px 800px at 80% -10%, rgba(225, 29, 40, 0.12), transparent 60%),
    radial-gradient(900px 700px at -10% 110%, rgba(240, 185, 74, 0.08), transparent 60%),
    linear-gradient(180deg, #050507 0%, #0a0b0e 100%);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--d-fast) var(--ease-out);
}

a:hover {
  color: var(--c-gold);
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

input, select, textarea {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
}

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

p {
  max-width: 70ch;
}

::selection {
  background: var(--c-red);
  color: var(--c-white);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--c-night);
}
::-webkit-scrollbar-thumb {
  background: var(--c-steel);
  border-radius: var(--r-pill);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--c-fog);
}

/* Utilidades */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: var(--sp-9);
  position: relative;
}

@media (max-width: 768px) {
  .section { padding-block: var(--sp-7); }
  .section-title { text-align: center; }
  .section-lead { text-align: center; margin-inline: auto; }
  .eyebrow { display: block; text-align: center; }
}

.eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--sp-3);
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--c-gold);
  vertical-align: middle;
  margin-right: var(--sp-3);
}

.section-title {
  font-size: var(--fs-2xl);
  margin-bottom: var(--sp-4);
}

.section-lead {
  font-size: var(--fs-md);
  color: var(--c-mist);
  max-width: 60ch;
  margin-bottom: var(--sp-7);
}

.text-gold { color: var(--c-gold); }
.text-red { color: var(--c-red); }
.text-mist { color: var(--c-mist); }
.text-snow { color: var(--c-snow); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Body lock cuando hay modal */
body.no-scroll {
  overflow: hidden;
}
