:root {
  --rojo: #e11d2a;
  --rojo-oscuro: #c4141f;
  --azul: #3b82f6;
  --fondo: #000;
  --superficie: #111114;
  --texto-suave: #a8adb8;
  --titulos: Archivo, "Segoe UI", sans-serif;
  --texto: "IBM Plex Sans", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--fondo);
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--fondo);
  color: #fff;
  font-family: var(--texto);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: var(--titulos);
  font-weight: 600;
  letter-spacing: -0.03em;
}

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

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--rojo);
  color: #fff;
}

input,
select,
textarea,
button {
  font: inherit;
}

.contenedor {
  width: min(100% - 48px, 1280px);
  margin: auto;
}

.boton {
  display: inline-block;
  padding: 15px 26px;
  border: 1px solid var(--rojo);
  border-radius: 2px;
  background: var(--rojo);
  box-shadow: 0 6px 20px rgb(225 29 42 / 32%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  transition: background 300ms ease, transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.boton:hover {
  transform: translateY(-2px);
  background: var(--rojo-oscuro);
  box-shadow: 0 10px 26px rgb(225 29 42 / 55%);
}

.secundario {
  border-color: rgb(255 255 255 / 40%);
  background: rgb(255 255 255 / 5%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: none;
}

.secundario:hover {
  border-color: #fff;
  background: rgb(255 255 255 / 15%);
  box-shadow: none;
}

.cuadricula {
  display: grid;
  gap: 24px;
}

.seccion {
  padding: 110px 0;
}

.seccion h2 {
  max-width: 650px;
  margin: 14px 0 24px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.etiqueta {
  margin: 0;
  color: var(--azul);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .seccion {
    padding: 78px 0;
  }
}
