:root {
  --ink: #201312;
  --muted: #705d57;
  --panel: rgba(255, 255, 255, 0.88);
  --line: rgba(80, 34, 25, 0.13);
  --green: #16a66a;
  --green-dark: #08774a;
  --red: #c71928;
  --red-dark: #8e101c;
  --mint: #fff1d0;
  --gold: #f1b93b;
  --gold-soft: #fff2be;
  --charcoal: #201312;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.18)),
    linear-gradient(135deg, #fff8ed 0%, #fff3da 45%, #eef9f0 100%);
}

.page-is-clickable {
  cursor: pointer;
}

.page-is-clickable .whatsapp-button {
  cursor: pointer;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

.ambient {
  position: fixed;
  z-index: -1;
  pointer-events: none;
  filter: blur(6px);
}

.ambient-one {
  width: 52vw;
  height: 52vw;
  left: -18vw;
  top: -18vw;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(199, 25, 40, 0.24), transparent 66%);
  animation: ambientFloat 13s ease-in-out infinite;
}

.ambient-two {
  width: 46vw;
  height: 46vw;
  right: -15vw;
  bottom: -20vw;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(241, 185, 59, 0.32), transparent 65%);
  animation: ambientFloat 15s ease-in-out infinite reverse;
}

.redirect-shell {
  width: min(1120px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
  align-items: center;
  padding: 34px 0;
}

.brand-panel,
.support-panel {
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 30px 90px rgba(14, 47, 33, 0.16);
  backdrop-filter: blur(22px);
  animation: panelIn 520ms ease both;
}

.brand-panel {
  min-height: 620px;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.brand-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(241, 185, 59, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(199, 25, 40, 0.08), transparent 32%);
}

.brand-lockup {
  width: min(360px, 100%);
  min-height: 96px;
  margin-bottom: 28px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 20px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(142, 16, 28, 0.96), rgba(199, 25, 40, 0.96) 54%, rgba(241, 185, 59, 0.94)),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.24),
    0 18px 42px rgba(142, 16, 28, 0.25);
  position: relative;
  overflow: hidden;
}

.brand-lockup::after {
  content: "";
  position: absolute;
  inset: -80% auto -80% -45%;
  width: 34%;
  transform: rotate(18deg);
  background: rgba(255, 255, 255, 0.24);
  animation: shine 2.9s ease-in-out infinite;
}

.brand-lockup span,
.brand-lockup strong {
  position: relative;
  z-index: 1;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", Arial, sans-serif;
  font-size: clamp(2rem, 5vw, 3.15rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.2);
}

.brand-lockup strong {
  font-size: clamp(1.6rem, 4vw, 2.45rem);
}

.status-line {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(22, 166, 106, 0.22);
  border-radius: 999px;
  color: var(--red-dark);
  background: var(--mint);
  font-size: 0.88rem;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(199, 25, 40, 0.14);
  animation: pulseDot 1.4s ease-in-out infinite;
}

h1 {
  margin: 24px 0 12px;
  font-size: clamp(2.6rem, 8vw, 6rem);
  line-height: 0.9;
  letter-spacing: 0;
  position: relative;
  z-index: 1;
}

.lead {
  width: 100%;
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

.meta-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 30px 0;
  position: relative;
  z-index: 1;
}

.meta-strip span {
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  place-items: center;
  padding: 10px;
  color: #24352f;
  background: linear-gradient(180deg, #fff, #f8fbf9);
  font-size: clamp(0.82rem, 1.8vw, 0.98rem);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(23, 51, 39, 0.06);
}

.whatsapp-button {
  width: min(390px, 100%);
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 8px;
  padding: 16px 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 16px 34px rgba(12, 140, 86, 0.28);
  font-size: 1.05rem;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.whatsapp-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-110%);
  animation: buttonSweep 2.8s ease-in-out infinite;
}

.whatsapp-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(12, 140, 86, 0.34);
  filter: saturate(1.08);
}

.whatsapp-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #fff;
}

.whatsapp-mark svg {
  width: 25px;
  height: 25px;
  fill: var(--green);
}

.redirect-copy {
  min-height: 24px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  position: relative;
  z-index: 1;
}

.redirect-copy strong {
  color: var(--ink);
}

.redirect-meter {
  width: min(390px, 100%);
  height: 6px;
  margin-top: 14px;
  border-radius: 999px;
  background: rgba(13, 119, 74, 0.12);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.redirect-meter span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--green));
  transform-origin: left center;
  animation: meterFill 3s linear forwards;
}

.preview-mode .redirect-meter span {
  animation-play-state: paused;
}

.support-panel {
  border-radius: 8px;
  padding: 18px;
  animation-delay: 90ms;
}

.phone-preview {
  min-height: 430px;
  border-radius: 8px;
  padding: 16px;
  background:
    linear-gradient(rgba(232, 247, 239, 0.88), rgba(232, 247, 239, 0.88)),
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(18, 107, 72, 0.06) 14px 16px);
  border: 1px solid var(--line);
}

.phone-top {
  min-height: 58px;
  margin: -16px -16px 18px;
  padding: 12px 16px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 10px;
  color: #fff;
  background: var(--charcoal);
  border-radius: 8px 8px 0 0;
}

.phone-top span {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--gold));
  position: relative;
}

.phone-top span::after {
  content: "R";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 950;
}

.phone-top strong {
  font-size: 1rem;
}

.phone-top em {
  color: #b7f4d7;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 800;
}

.chat-row {
  width: fit-content;
  max-width: 86%;
  min-height: 42px;
  margin-bottom: 12px;
  border-radius: 8px;
  padding: 12px 14px;
  box-shadow: 0 8px 20px rgba(30, 64, 48, 0.09);
  font-size: 0.98rem;
  line-height: 1.35;
  animation: chatIn 420ms ease both;
}

.incoming {
  background: #fff;
}

.outgoing {
  margin-left: auto;
  background: #d7f8c7;
  animation-delay: 160ms;
}

.support-list {
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

.support-list div {
  min-height: 66px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #fff;
}

dt {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

dd {
  margin: 0;
  font-weight: 900;
}

@media (max-width: 860px) {
  .redirect-shell {
    width: min(100% - 24px, 560px);
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
    padding: 12px 0;
  }

  .brand-panel {
    min-height: auto;
    padding: 24px;
  }

  .brand-lockup {
    min-height: 80px;
    margin-bottom: 22px;
  }

  .meta-strip {
    grid-template-columns: 1fr;
    margin: 24px 0;
  }

  .support-panel {
    padding: 14px;
  }

  .phone-preview {
    min-height: 310px;
  }
}

@media (max-width: 420px) {
  .redirect-shell {
    width: calc(100% - 18px);
  }

  .brand-panel {
    padding: 20px;
  }

  .support-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .whatsapp-button {
    gap: 9px;
    padding-inline: 14px;
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shine {
  0%,
  42% {
    transform: translateX(0) rotate(18deg);
  }

  72%,
  100% {
    transform: translateX(520%) rotate(18deg);
  }
}

@keyframes pulseDot {
  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(199, 25, 40, 0.14);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(199, 25, 40, 0.22);
  }
}

@keyframes buttonSweep {
  0%,
  46% {
    transform: translateX(-110%);
  }

  78%,
  100% {
    transform: translateX(110%);
  }
}

@keyframes meterFill {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes chatIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ambientFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(18px, 12px, 0) scale(1.04);
  }
}
