/* Landing pública — prefijo futzoe-landing */

:root {
  --futzoe-landing-accent: #696cff;
  --futzoe-landing-green: #16a34a;
  --futzoe-landing-green-soft: #dcfce7;
  --futzoe-landing-gold: #ca8a04;
  --futzoe-landing-gold-soft: #fef9c3;
  --futzoe-landing-violet-soft: #ede9fe;
  --futzoe-landing-max-width: 28rem;
  --bs-primary: #696cff;
  --bs-primary-rgb: 105, 108, 255;
  --bs-body-font-family: "Inter", system-ui, -apple-system, sans-serif;
}

.futzoe-landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--bs-body-font-family);
  background:
    radial-gradient(circle at 100% 0%, rgba(105, 108, 255, 0.18) 0%, transparent 52%),
    radial-gradient(circle at 0% 100%, rgba(34, 197, 94, 0.16) 0%, transparent 48%),
    linear-gradient(180deg, #eefbf3 0%, #f4f2ff 55%, #fff 100%);
}

.futzoe-landing__main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem 2rem;
}

.futzoe-landing__card {
  width: 100%;
  max-width: var(--futzoe-landing-max-width);
  border: 1px solid rgba(105, 108, 255, 0.12);
  border-radius: 1rem;
  box-shadow: 0 0.5rem 2rem rgba(67, 89, 113, 0.1);
  background:
    linear-gradient(
      90deg,
      var(--futzoe-landing-green) 0%,
      var(--futzoe-landing-accent) 50%,
      var(--futzoe-landing-gold) 100%
    ) top / 100% 0.25rem no-repeat,
    rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
}

.futzoe-landing__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
}

.futzoe-landing__brand-mark {
  color: var(--futzoe-landing-accent);
  flex-shrink: 0;
}

.futzoe-landing__brand-name {
  font-size: 1.375rem;
  font-weight: 600;
  color: #434a54;
  letter-spacing: -0.02em;
}

.futzoe-landing__card h1 {
  color: #2f3349;
}

.futzoe-landing__tagline {
  color: #697a8d;
}

.futzoe-landing__steps li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.875rem;
  color: #566a7f;
  font-size: 0.9375rem;
  line-height: 1.45;
}

.futzoe-landing__steps li:last-child {
  margin-bottom: 0;
}

.futzoe-landing__step-icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 600;
}

.futzoe-landing__steps li:nth-child(1) .futzoe-landing__step-icon {
  background: var(--futzoe-landing-violet-soft);
  color: var(--futzoe-landing-accent);
}

.futzoe-landing__steps li:nth-child(2) .futzoe-landing__step-icon {
  background: var(--futzoe-landing-green-soft);
  color: var(--futzoe-landing-green);
}

.futzoe-landing__steps li:nth-child(3) .futzoe-landing__step-icon {
  background: var(--futzoe-landing-gold-soft);
  color: var(--futzoe-landing-gold);
}

.futzoe-landing__note {
  color: #8a96a3;
  line-height: 1.5;
  padding-inline-start: 0.75rem;
  border-inline-start: 2px solid rgba(105, 108, 255, 0.25);
}

.futzoe-landing__actions .btn-primary,
.futzoe-landing__actions .futzoe-landing__btn-primary {
  border: 0;
  color: #fff;
  background: #2f3349;
  box-shadow: none;
}

.futzoe-landing__actions .btn-primary:hover,
.futzoe-landing__actions .btn-primary:focus,
.futzoe-landing__actions .futzoe-landing__btn-primary:hover,
.futzoe-landing__actions .futzoe-landing__btn-primary:focus {
  color: #fff;
  background: #232635;
  box-shadow: none;
}

.futzoe-landing__actions .btn-outline-secondary {
  color: #566a7f;
  border-color: #d9dee3;
  background: #fff;
}

.futzoe-landing__actions .btn-outline-secondary:hover,
.futzoe-landing__actions .btn-outline-secondary:focus {
  color: #2f3349;
  border-color: #2f3349;
  background: #fff;
}

.futzoe-landing__actions .btn {
  min-height: 2.75rem;
}

.futzoe-landing__footer {
  padding: 1rem;
  text-align: center;
  font-size: 0.8125rem;
  color: #7c8798;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
}

.futzoe-landing__footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.375rem 0.5rem;
}

.futzoe-landing__footer-links a {
  color: #566a7f;
  text-decoration: none;
}

.futzoe-landing__footer-links a:hover,
.futzoe-landing__footer-links a:focus {
  color: #2f3349;
  text-decoration: underline;
}

/* Páginas legales (/terminos, /privacidad) */

.futzoe-legal__main {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 1.5rem 1rem 2rem;
}

.futzoe-legal__article {
  width: 100%;
  max-width: 40rem;
  background: #fff;
  border: 1px solid rgba(var(--bs-border-color-rgb, 219, 218, 222), 0.85);
  border-radius: 1rem;
  padding: 1.25rem 1.25rem 1.5rem;
  box-shadow: 0 0.125rem 0.75rem rgba(67, 89, 113, 0.08);
}

.futzoe-legal__back {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: #566a7f;
  text-decoration: none;
}

.futzoe-legal__back:hover,
.futzoe-legal__back:focus {
  color: #2f3349;
  text-decoration: underline;
}

.futzoe-legal__title {
  font-weight: 600;
  color: #2f3349;
}

.futzoe-legal__section {
  padding-top: 1rem;
  border-top: 1px solid rgba(var(--bs-border-color-rgb, 219, 218, 222), 0.6);
}

.futzoe-legal__section:first-of-type {
  border-top: 0;
  padding-top: 0.5rem;
}

.futzoe-legal__section-title {
  font-weight: 600;
  margin-bottom: 0.375rem;
  color: #434a54;
}

.futzoe-legal__section-body {
  color: #697a8d;
  line-height: 1.55;
}

.futzoe-legal__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem 0.625rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(var(--bs-border-color-rgb, 219, 218, 222), 0.6);
  font-size: 0.8125rem;
}

.futzoe-legal__footer a {
  color: #566a7f;
  text-decoration: none;
}

.futzoe-legal__footer a:hover,
.futzoe-legal__footer a:focus {
  color: #2f3349;
  text-decoration: underline;
}

@media (min-width: 576px) {
  .futzoe-landing__main {
    padding: 2.5rem 1.5rem;
  }

  .futzoe-legal__article {
    padding: 1.5rem 1.75rem 1.75rem;
  }
}
