/* reserva.express merchant landing — La ficha */

:root {
  --r-navy: #1e1b4b;
  --r-navy-soft: #312e81;
  --r-hero: #a5b4fc;
  --r-accent: #4f46e5;
  --r-accent-hover: #4338ca;
  --r-mist: #eef2ff;
  --r-mist-2: #e0e7ff;
  --r-paper: #f7f6ff;
  --r-text: #1e293b;
  --r-muted: #4c4a6a;
  --font-display: "Outfit", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

.reserva-body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--r-navy);
  background: var(--r-hero);
  background-image: radial-gradient(ellipse 80% 50% at 50% 0%, rgb(79 70 229 / 22%), transparent 55%);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

.reserva-body a {
  color: inherit;
}

.reserva-page {
  min-height: 100vh;
}

button,
input {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .a-ficha {
    animation: none !important;
    transform: rotate(-1.4deg) !important;
  }
}

.a-flash {
  margin: 0 0 0.4rem;
  padding: 0.75rem 0.85rem;
  background: var(--r-navy);
  color: var(--r-mist);
  font-family: var(--font-display);
  font-weight: 700;
  text-align: center;
  border-radius: 0.65rem;
}

.a-blank {
  width: min(100%, 34rem);
  background: var(--r-paper);
  padding: 1.75rem 1.4rem 1.5rem;
  border-radius: 1.25rem;
  box-shadow: 0 24px 50px -20px rgb(30 27 75 / 28%);
  border: 1px solid rgb(79 70 229 / 12%);
}

.a-blank__brand {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--r-accent);
}

.a-blank h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.65rem;
  letter-spacing: -0.03em;
  color: var(--r-navy);
}

.a-blank__note {
  margin: 0.35rem 0 1.25rem;
  color: var(--r-muted);
  font-size: 0.9375rem;
}

.a-form {
  display: grid;
  gap: 0.85rem;
}

.a-form__errors {
  padding: 0.75rem 0.9rem;
  background: #fdf2f8;
  color: #9a0c5e;
  border-radius: 0.65rem;
  font-size: 0.875rem;
}

.a-form__errors p {
  margin: 0 0 0.35rem;
  font-weight: 700;
}

.a-form__errors ul {
  margin: 0;
  padding-left: 1.1rem;
}

.a-field {
  display: grid;
  gap: 0.3rem;
}

.a-field span:first-child {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--r-navy);
}

.a-field input {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1.5px solid var(--r-mist-2);
  border-radius: 0.65rem;
  background: #fff;
  color: var(--r-text);
}

.a-field input:focus {
  outline: 2px solid var(--r-accent);
  outline-offset: 1px;
  border-color: var(--r-accent);
}

.a-field__row {
  display: flex;
  align-items: stretch;
  gap: 0.35rem;
}

.a-field__row input {
  flex: 1;
  min-width: 0;
}

.a-field__suffix {
  display: grid;
  place-items: center;
  padding: 0 0.7rem;
  background: var(--r-mist);
  color: var(--r-navy-soft);
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 0.65rem;
  white-space: nowrap;
}

.a-eye {
  width: 2.75rem;
  border: 1.5px solid var(--r-mist-2);
  border-radius: 0.65rem;
  background: var(--r-mist);
  color: var(--r-navy);
  cursor: pointer;
}

.a-form__rule {
  margin: 0.5rem 0 0;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--r-accent);
}

.a-form__hint {
  margin: 0.2rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.8rem;
  color: var(--r-muted);
}

.a-check {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  min-height: 2.75rem;
  font-size: 0.875rem;
  color: var(--r-muted);
}

.a-check input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.35rem;
  flex: 0 0 1.15rem;
  accent-color: var(--r-accent);
}

.a-check a {
  color: var(--r-accent);
  font-weight: 600;
}

.a-submit {
  margin-top: 0.35rem;
  width: 100%;
  padding: 0.95rem 1.25rem;
  border: none;
  border-radius: 0.75rem;
  background: var(--r-accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.a-submit:hover {
  background: var(--r-accent-hover);
  transform: translateY(-1px);
}

.a-submit:focus-visible {
  outline: 2px solid var(--r-navy);
  outline-offset: 2px;
}

.a-blank__fine {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  color: var(--r-muted);
  text-align: center;
}

.a-blank__fine a {
  color: var(--r-accent);
  font-weight: 700;
}

.a-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.25rem 0.55rem;
}

.a-brand {
  display: block;
  line-height: 0;
}

.a-brand__logo {
  display: block;
  width: 168px;
  height: 2.3rem;
  object-fit: cover;
  object-position: center;
}

.a-top__join {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.65rem 1.1rem;
  background: var(--r-accent);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 0.65rem;
  white-space: nowrap;
}

.reserva-body a.a-top__join {
  color: #fff;
}

.a-top__join:hover {
  background: var(--r-accent-hover);
}

.a-main {
  padding: 0 1.25rem 3rem;
}

.a-stage {
  display: grid;
  gap: 2rem;
  align-items: center;
  max-width: 68rem;
  margin: 0 auto;
  padding: 1.5rem 0 2.5rem;
}

@media (width >= 880px) {
  .a-stage {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    min-height: 72vh;
  }
}

.a-kicker {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--r-navy-soft);
}

.a-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 7vw, 4.1rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--r-navy);
}

.a-lede {
  margin: 1.1rem 0 0;
  max-width: 34rem;
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--r-navy-soft);
}

.a-stamp {
  margin: 1.1rem 0 0;
  display: inline-block;
  padding: 0.35rem 0.7rem;
  background: var(--r-navy);
  color: var(--r-mist);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 999px;
}

.a-ficha {
  position: relative;
  width: min(100%, 22rem);
  margin: 0 auto;
  background: var(--r-paper);
  border-radius: 1.4rem;
  padding: 1.6rem 1.4rem 1.25rem;
  box-shadow: 0 28px 60px -18px rgb(30 27 75 / 40%);
  transform: rotate(-1.4deg);
}

.a-ficha__bind {
  display: flex;
  justify-content: center;
  gap: 2.4rem;
  margin: -2.15rem 0 0.85rem;
}

.a-ficha__bind span {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: var(--r-hero);
  box-shadow:
    inset 0 0 0 3px var(--r-navy),
    0 0 0 4px var(--r-paper);
}

.is-printing .a-ficha {
  animation: a-settle 0.9s var(--ease-out-expo) both;
}

@keyframes a-settle {
  from {
    opacity: 0;
    transform: translateY(1.25rem) rotate(-1.4deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotate(-1.4deg);
  }
}

.a-ficha__label {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--r-accent);
}

.a-ficha__when {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: var(--r-muted);
}

.a-ficha__time {
  margin: 0.15rem 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.1rem;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--r-navy);
}

.a-ficha__biz {
  margin: 0.35rem 0 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--r-accent);
}

.a-ficha__meta {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
}

.a-ficha__meta dt {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--r-muted);
}

.a-ficha__meta dd {
  margin: 0.15rem 0 0;
  font-weight: 600;
  color: var(--r-navy);
}

.a-ficha__paid {
  margin: 1.1rem 0 0;
  padding: 0.55rem 0.75rem;
  background: var(--r-accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  text-align: center;
  border-radius: 0.65rem;
}

.a-ficha__url {
  margin: 0.7rem 0 0;
  font-size: 0.75rem;
  text-align: center;
  color: var(--r-muted);
  word-break: break-all;
}

.a-signup {
  display: flex;
  justify-content: center;
  padding: 0.5rem 0 3rem;
}

.a-feats {
  max-width: 68rem;
  margin: 0 auto;
  padding: 0 0 2rem;
}

.a-feats h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  letter-spacing: -0.03em;
}

.a-feats__lede {
  margin: 0.5rem 0 1.5rem;
  color: var(--r-navy-soft);
  max-width: 36rem;
}

.a-cabinas {
  display: grid;
  gap: 0.85rem;
}

@media (width >= 720px) {
  .a-cabinas {
    grid-template-columns: 1fr 1fr;
  }
}

.a-cabinas article {
  background: var(--r-paper);
  padding: 1.15rem 1.2rem 1.2rem;
  border-radius: 1rem;
}

.a-cabinas__tag {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--r-accent);
}

.a-cabinas h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--r-navy);
}

.a-cabinas p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--r-muted);
}

.a-cabinas a {
  color: var(--r-accent);
  font-weight: 700;
}

.a-foot {
  padding: 1.5rem 1.25rem 2rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--r-navy-soft);
}

.a-foot nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.4rem;
}

.a-foot a {
  color: var(--r-navy);
  font-weight: 600;
}

@media (width <= 480px) {
  .a-brand__logo {
    width: 140px;
    height: 1.9rem;
  }

  .a-top__join {
    padding: 0.55rem 0.8rem;
    font-size: 0.8rem;
  }
}
