:root {
  --rojo-1: #ff2d6a;
  --rojo-2: #c4124f;
  --rojo-3: #4a0a29;
  --crema: #fff1e9;
  --tinta: #240712;
  --oro: #f4b942;
  --radius: 14px;
  --sombra: 0 18px 40px -12px rgba(36, 7, 18, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Work Sans", "Segoe UI", system-ui, sans-serif;
  color: var(--tinta);
  background: var(--crema);
  line-height: 1.5;
}

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

.contenedor {
  width: min(920px, 100% - 3rem);
  margin-inline: auto;
}

/* ---------- HERO ---------- */

.hero {
  position: relative;
  overflow: hidden;
  color: var(--crema);
  background:
    radial-gradient(120% 90% at 25% 0%, rgba(255, 68, 122, 0.55), transparent 60%),
    linear-gradient(200deg, var(--rojo-1) 0%, var(--rojo-2) 45%, var(--rojo-3) 100%);
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(4rem, 10vw, 7rem);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    100deg,
    transparent 0 120px,
    rgba(255, 255, 255, 0.04) 120px 122px
  );
}

.hero__marcas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: center;
  font-family: "Anton", "Arial Narrow", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  opacity: 0.9;
  margin-bottom: 2.5rem;
}

.hero__marcas span::after {
  content: "×";
  margin-left: 1.5rem;
  opacity: 0.6;
}
.hero__marcas span:last-child::after {
  content: "";
}

.hero__kicker {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  margin: 0 0 0.4rem;
  opacity: 0.95;
}

.hero__titulo {
  font-family: "Anton", "Arial Narrow", sans-serif;
  text-transform: uppercase;
  font-size: clamp(3.2rem, 12vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  margin: 0 0 1rem;
}

.hero__fecha {
  font-family: "Anton", "Arial Narrow", sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 4vw, 2.1rem);
  margin: 0 0 2rem;
  color: var(--oro);
}

.hero__badge {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
  border: 2px solid rgba(255, 241, 233, 0.75);
  border-radius: 10px;
  padding: 0.7rem 1.1rem;
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  line-height: 1.05;
}
.hero__badge small {
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.03em;
  font-size: 0.75rem;
  opacity: 0.85;
}
.hero__badge strong {
  font-size: 1.3rem;
}

/* ---------- SECCIONES ---------- */

.seccion {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.seccion--alt {
  background: #fff;
}

.seccion__titulo {
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--rojo-3);
  margin: 0 0 0.6rem;
}

.seccion__intro {
  max-width: 60ch;
  color: #5a3a45;
  margin: 0 0 2.2rem;
}

.bases {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  padding: 0;
  margin: 0;
  list-style: none;
}

.bases li {
  background: var(--crema);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(74, 10, 41, 0.12);
}

.bases li strong {
  display: block;
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--rojo-2);
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}

/* ---------- FORMULARIO ---------- */

.form-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--sombra);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  border: 1px solid rgba(74, 10, 41, 0.1);
}

.form-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.campo {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.campo label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rojo-3);
}

.campo input {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border-radius: 8px;
  border: 1.5px solid #e3cdd3;
  background: var(--crema);
  color: var(--tinta);
}

.campo input:focus {
  outline: none;
  border-color: var(--rojo-2);
  box-shadow: 0 0 0 3px rgba(196, 18, 79, 0.15);
}

.campo--ancho {
  grid-column: 1 / -1;
}

/* honeypot: oculto para humanos, visible para bots que ignoran CSS */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 1rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn--primario {
  background: var(--rojo-2);
  color: var(--crema);
  margin-top: 1.4rem;
}

.btn--primario:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -8px rgba(196, 18, 79, 0.55);
}

.btn--primario:disabled {
  opacity: 0.65;
  cursor: progress;
}

.btn--oro {
  background: var(--oro);
  color: var(--rojo-3);
}

.btn--oro:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -8px rgba(244, 185, 66, 0.6);
}

.btn--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.form-estado {
  min-height: 1.4em;
  margin-top: 0.9rem;
  font-weight: 600;
}
.form-estado--ok {
  color: #1a7a3d;
}
.form-estado--error {
  color: #b3123c;
}

.bloque-pago {
  text-align: center;
  padding: 1rem 0 0;
}

.bloque-pago p {
  color: #5a3a45;
  margin-bottom: 1.1rem;
}

.bloque-pago small {
  display: block;
  margin-top: 0.7rem;
  color: #8a6672;
}

/* ---------- FOOTER ---------- */

.footer {
  background: var(--rojo-3);
  color: var(--crema);
  padding: 2rem 0;
  text-align: center;
  font-size: 0.9rem;
}

.footer a {
  color: var(--oro);
}
