:root {
  --bg: #141210;
  --bg-alt: #1c1815;
  --text-on-dark: #f4efe6;
  --text-muted: #a2968a;
  --accent: #c43a22;
  --ochre: #d9a441;
  --line-dark: #332c26;
  --card-bg: #241f1be6;
  --card-border: #4a4038;
  --font-display: "Archivo Black", "Arial Black", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --content-max: 620px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-on-dark);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 96px 24px 40px;
  min-height: clamp(460px, 304px + 40vw, 880px);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 25%;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--bg) 0%,
    #141210e6 20%,
    #141210b5 45%,
    #141210a3 68%,
    #14121094 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 1100px;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: #c43a2226;
  border: 1px solid #c43a2266;
  border-radius: 2px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #e8a392;
}

.kicker__pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.875rem, 1.7rem + 4.76vw, 6rem);
  line-height: 1.02;
  letter-spacing: -1px;
  text-align: center;
  text-wrap: balance;
}

.lema {
  display: flex;
  align-items: center;
  gap: clamp(10px, 6px + 1.9vw, 18px);
}

.lema__bar {
  width: clamp(22px, 8px + 4.5vw, 48px);
  height: 2px;
  background: var(--ochre);
  flex-shrink: 0;
}

.lema span:not(.lema__bar) {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(0.875rem, 0.6rem + 1.2vw, 1.5rem);
  letter-spacing: clamp(1.6px, 2.5px, 2.5px);
  color: var(--ochre);
  white-space: nowrap;
}

/* ---------- Content ---------- */

.content {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 32px 24px 56px;
  display: flex;
  flex-direction: column;
}

.intro {
  margin: 0 0 8px;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 15px;
  text-align: center;
}

.link-group {
  padding-top: 22px;
}

.link-group__label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 4px;
  margin-bottom: 10px;
}

.link-group__label span:first-child {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: var(--text-muted);
  white-space: nowrap;
}

.rule {
  flex: 1;
  height: 1px;
  background: var(--line-dark);
}

.link-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  margin-bottom: 10px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.link-card:last-child {
  margin-bottom: 0;
}

.link-card:hover {
  border-color: var(--ochre);
  transform: translateY(-1px);
}

.link-card:focus-visible {
  outline: 2px solid var(--ochre);
  outline-offset: 2px;
}

.link-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.link-card__icon svg {
  width: 21px;
  height: 21px;
  fill: #fff;
  stroke: #fff;
}

.link-card__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  flex: 1;
}

.link-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-on-dark);
}

.link-card__subtitle {
  font-size: 13px;
  color: var(--text-muted);
}

.link-card__arrow {
  width: 18px;
  height: 18px;
  stroke: var(--text-muted);
  flex-shrink: 0;
}

/* ---------- Share ---------- */

.share {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-top: 34px;
}

.share__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: var(--text-muted);
}

.share__row {
  display: flex;
  gap: 10px;
  width: 100%;
}

.share__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 10px;
  background: var(--bg-alt);
  border: 1px solid var(--line-dark);
  border-radius: 3px;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-on-dark);
}

.share__btn svg {
  width: 17px;
  height: 17px;
  stroke: var(--text-muted);
  fill: none;
}

.share__btn[data-action="instagram"] svg,
.share__btn[data-action="whatsapp"] svg {
  fill: var(--text-muted);
  stroke: none;
}

.share__btn-label {
  display: none;
}

/* ---------- Footer ---------- */

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 34px 24px 44px;
  background: var(--bg-alt);
  border-top: 1px solid var(--line-dark);
  text-align: center;
}

.footer__lema {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 2px;
  color: var(--ochre);
}

.footer__text {
  margin: 0;
  max-width: 480px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ---------- Toast ---------- */

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 12px);
  background: var(--text-on-dark);
  color: var(--bg);
  padding: 10px 18px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ---------- Desktop ---------- */

@media (min-width: 720px) {
  .hero {
    padding: 0 56px;
  }

  .kicker {
    padding: 7px 14px;
    gap: 10px;
    font-size: 11px;
  }

  .kicker__pulse {
    width: 7px;
    height: 7px;
  }

  .content {
    padding: 44px 0 72px;
  }

  .title {
    white-space: nowrap;
  }

  .share__btn {
    padding: 13px 10px;
  }

  .share__btn-label {
    display: inline;
  }
}
