@font-face {
  font-family: "Creato Display";
  src: url("https://imersaoianegocios.anderlan.ai/_next/static/media/CreatoDisplay_Regular-s.p.2uwpzgxwh_5dd.woff2")
    format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Creato Display";
  src: url("https://imersaoianegocios.anderlan.ai/_next/static/media/CreatoDisplay_Medium-s.p.0b9nxa9-m2-bd.woff2")
    format("woff2");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Creato Display";
  src: url("https://imersaoianegocios.anderlan.ai/_next/static/media/CreatoDisplay_Bold-s.p.2vadymzu1zofi.woff2")
    format("woff2");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Creato Display";
  src: url("https://imersaoianegocios.anderlan.ai/_next/static/media/CreatoDisplay_ExtraBold-s.p.2bkm0z292q3ye.woff2")
    format("woff2");
  font-weight: 800;
  font-display: swap;
}

:root {
  --paper: #f5f0e7;
  --paper-light: #fff9ef;
  --ink: #090807;
  --graphite: #24201c;
  --copper: #d95525;
  --copper-dark: #b8431a;
  --orange: #f27a3d;
  --green: #6f8e68;
  --cream: #fff0d5;
  --line: rgba(9, 8, 7, 0.18);
  --muted: rgba(9, 8, 7, 0.62);
  --shadow: 7px 7px 0 #090807;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 13% 9%, rgba(242, 122, 61, 0.12), transparent 27rem),
    var(--paper);
  color: var(--ink);
  font-family: "Creato Display", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 50;
  left: 1rem;
  top: 0;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--paper-light);
  padding: 0.75rem 1rem;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(1rem);
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
  padding: 0 4vw;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 240, 231, 0.94);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--ink);
  background: var(--copper);
  color: var(--paper-light);
  font-weight: 800;
}

.brand > span:last-child {
  display: grid;
  line-height: 1.1;
}

.brand strong {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
}

.brand small {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.header-actions,
.hero-actions,
.form-badges,
.message-status,
.question-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.status-chip,
.form-badges span,
.tag,
.question-meta span {
  border: 1px solid var(--ink);
  background: var(--cream);
  padding: 0.35rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.copy-all-button,
.primary-action,
.secondary-action,
.filter,
.copy-message {
  min-height: 42px;
  border: 1px solid var(--ink);
  background: transparent;
  padding: 0.65rem 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 140ms ease,
    box-shadow 140ms ease,
    background-color 140ms ease;
}

.copy-all-button,
.primary-action {
  background: var(--ink);
  color: var(--paper-light);
}

.copy-all-button:hover,
.primary-action:hover,
.secondary-action:hover,
.filter:hover,
.copy-message:hover {
  transform: translate(-2px, -2px);
  box-shadow: 3px 3px 0 var(--copper);
}

main {
  overflow: hidden;
}

.hero,
.facts,
.flow-section,
.timeline-section,
.form-section,
.decisions,
footer {
  width: min(var(--max), calc(100% - 8vw));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
  min-height: 720px;
  padding: 5.5rem 0;
}

.eyebrow,
.section-heading > p,
.message-header p,
.form-rules > p {
  margin: 0 0 1rem;
  color: var(--copper-dark);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 1.5rem;
  font-size: clamp(3.8rem, 8vw, 7.8rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 2rem;
  color: var(--graphite);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  margin: 0;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  inset: -1.5rem 1.5rem 1.5rem -1.5rem;
  border: 1px solid var(--ink);
  background: var(--orange);
  content: "";
}

.hero-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-visual figcaption {
  position: absolute;
  right: -1px;
  bottom: -1px;
  display: grid;
  max-width: 80%;
  border: 1px solid var(--ink);
  background: var(--paper-light);
  padding: 0.85rem 1rem;
}

.hero-visual figcaption span {
  color: var(--copper-dark);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-visual figcaption strong {
  margin-top: 0.15rem;
  font-size: 0.85rem;
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--ink);
  background: var(--paper-light);
  box-shadow: var(--shadow);
}

.facts article {
  display: grid;
  min-height: 150px;
  align-content: end;
  padding: 1.5rem;
  border-right: 1px solid var(--ink);
}

.facts article:last-child {
  border-right: 0;
}

.facts span {
  margin-bottom: auto;
  color: var(--copper-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.facts strong {
  font-size: 1.25rem;
}

.facts small {
  margin-top: 0.2rem;
  color: var(--muted);
}

.flow-section,
.timeline-section,
.form-section,
.decisions {
  padding: 8rem 0;
}

.section-heading {
  max-width: 810px;
}

.section-heading h2,
.form-intro h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.7rem, 5.6vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
}

.flow li {
  position: relative;
  display: grid;
  min-height: 210px;
  align-content: end;
  padding: 1.5rem;
  border: 1px solid var(--ink);
  border-right: 0;
  background: var(--paper-light);
}

.flow li:last-child {
  border-right: 1px solid var(--ink);
}

.flow li:nth-child(2) {
  transform: translateY(1.5rem);
  background: var(--cream);
}

.flow li:nth-child(3) {
  transform: translateY(-1.5rem);
  background: var(--orange);
}

.flow span {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--copper-dark);
  font-size: 0.7rem;
  font-weight: 800;
}

.flow strong {
  font-size: 1.4rem;
}

.flow small {
  margin-top: 0.25rem;
  color: var(--muted);
}

.timeline-section {
  width: 100%;
  max-width: none;
  background: var(--ink);
  color: var(--paper-light);
}

.timeline-intro,
.timeline {
  width: min(var(--max), calc(100% - 8vw));
  margin-inline: auto;
}

.timeline-intro {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  margin-bottom: 4rem;
}

.timeline-tools {
  display: grid;
  gap: 0.7rem;
  justify-items: end;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}

.filter {
  border-color: rgba(255, 249, 239, 0.5);
  color: var(--paper-light);
}

.filter.is-active {
  border-color: var(--paper-light);
  background: var(--paper-light);
  color: var(--ink);
}

#filter-status {
  margin: 0;
  color: rgba(255, 249, 239, 0.65);
  font-size: 0.78rem;
}

.message-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  border-top: 1px solid rgba(255, 249, 239, 0.25);
  padding: 3rem 0;
}

.message-card:last-child {
  border-bottom: 1px solid rgba(255, 249, 239, 0.25);
}

.message-rail {
  position: relative;
  padding-left: 2rem;
}

.message-rail::before {
  position: absolute;
  top: 0.55rem;
  bottom: -3.6rem;
  left: 0.32rem;
  width: 1px;
  background: rgba(255, 249, 239, 0.3);
  content: "";
}

.message-card:last-child .message-rail::before {
  bottom: 0;
}

.rail-dot {
  position: absolute;
  top: 0.3rem;
  left: 0;
  width: 0.7rem;
  height: 0.7rem;
  border: 2px solid var(--paper-light);
  background: var(--copper);
}

.message-rail time {
  display: grid;
}

.message-rail strong {
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.message-rail small {
  margin-top: 0.2rem;
  color: rgba(255, 249, 239, 0.62);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.message-content {
  min-width: 0;
}

.message-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1.5rem;
}

.message-header h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  letter-spacing: -0.04em;
}

.tag {
  border-color: rgba(255, 249, 239, 0.5);
  background: transparent;
  color: rgba(255, 249, 239, 0.78);
}

.tag.warning {
  border-color: var(--orange);
  color: var(--orange);
}

.tag.neutral {
  border-color: var(--green);
  color: #b6d0b0;
}

.whatsapp-preview {
  border: 1px solid rgba(255, 249, 239, 0.42);
  background: #141210;
}

.preview-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 54px;
  padding: 0 1rem;
  border-bottom: 1px solid rgba(255, 249, 239, 0.2);
}

.preview-top span {
  color: rgba(255, 249, 239, 0.55);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.copy-message {
  min-height: 34px;
  border-color: rgba(255, 249, 239, 0.38);
  padding: 0.38rem 0.7rem;
  color: var(--paper-light);
  font-size: 0.73rem;
}

.message-bubble {
  max-width: 820px;
  margin: 1.25rem;
  border: 1px solid rgba(255, 249, 239, 0.24);
  border-radius: 0 14px 14px 14px;
  background: #24211d;
  padding: 1.35rem;
  color: #f8f1e6;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.message-bubble a {
  color: #f3a173;
}

.form-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 7vw, 7rem);
}

.form-intro {
  position: sticky;
  top: 118px;
  align-self: start;
}

.form-intro > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.12rem;
}

.form-badges {
  margin-top: 2rem;
}

.form-layout {
  min-width: 0;
}

.question-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.question-list li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1rem;
  border-top: 1px solid var(--ink);
  padding: 1.5rem 0;
}

.question-list li:last-child {
  border-bottom: 1px solid var(--ink);
}

.question-number {
  color: var(--copper-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 700;
}

.question-meta {
  margin-bottom: 0.7rem;
}

.question-meta span {
  border-color: var(--line);
  background: transparent;
  color: var(--muted);
  font-size: 0.58rem;
}

.question-list h3 {
  margin-bottom: 0.45rem;
  font-size: 1.25rem;
  line-height: 1.25;
}

.question-list p {
  margin: 0;
  color: var(--muted);
}

.form-rules {
  margin-top: 3rem;
  border: 1px solid var(--ink);
  background: var(--cream);
  padding: 1.5rem;
  box-shadow: 5px 5px 0 var(--ink);
}

.form-rules ul {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding-left: 1.1rem;
}

.final-screen {
  margin-top: 1.5rem;
  border-top: 1px solid var(--ink);
  padding-top: 1.5rem;
}

.final-screen span {
  color: var(--copper-dark);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.final-screen strong {
  display: block;
  margin-top: 0.3rem;
  font-size: 1.25rem;
}

.final-screen p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.decisions {
  border-top: 1px solid var(--ink);
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 3rem;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.decision-grid article {
  position: relative;
  min-height: 190px;
  padding: 1.5rem;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.decision-grid span {
  position: absolute;
  right: 1rem;
  top: 1rem;
  color: var(--copper-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem;
}

.decision-grid strong {
  display: block;
  max-width: 80%;
  margin-top: 3.4rem;
  font-size: 1.35rem;
}

.decision-grid p {
  max-width: 480px;
  margin: 0.4rem 0 0;
  color: var(--muted);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--ink);
  padding: 2rem 0 3rem;
  color: var(--muted);
  font-size: 0.75rem;
}

footer p {
  margin: 0;
}

.toast {
  position: fixed;
  z-index: 60;
  right: 1.5rem;
  bottom: 1.5rem;
  transform: translateY(160%);
  border: 1px solid var(--ink);
  background: var(--green);
  color: var(--paper-light);
  padding: 0.85rem 1rem;
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 700;
  transition: transform 180ms ease;
}

.toast.is-visible {
  transform: translateY(0);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    width: min(100%, 590px);
  }

  .facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .facts article:nth-child(2) {
    border-right: 0;
  }

  .facts article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--ink);
  }

  .flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow li:nth-child(2),
  .flow li:nth-child(3) {
    transform: none;
  }

  .flow li:nth-child(2) {
    border-right: 1px solid var(--ink);
  }

  .flow li:nth-child(-n + 2) {
    border-bottom: 0;
  }

  .timeline-intro {
    display: grid;
  }

  .timeline-tools {
    justify-items: start;
  }

  .filters {
    justify-content: flex-start;
  }

  .message-card {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .message-header {
    display: grid;
  }

  .form-section {
    grid-template-columns: 1fr;
  }

  .form-intro {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 66px;
    padding-inline: 1rem;
  }

  .status-chip,
  .brand small {
    display: none;
  }

  .copy-all-button {
    min-height: 38px;
    padding: 0.5rem 0.7rem;
    font-size: 0.78rem;
  }

  .hero,
  .facts,
  .flow-section,
  .form-section,
  .decisions,
  footer {
    width: min(100% - 2rem, var(--max));
  }

  .hero {
    gap: 3.5rem;
    padding: 4.5rem 0;
  }

  h1 {
    font-size: clamp(3.2rem, 17vw, 5rem);
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions a {
    flex: 1;
    text-align: center;
  }

  .hero-visual::before {
    inset: -0.7rem 0.7rem 0.7rem -0.7rem;
  }

  .facts,
  .flow,
  .decision-grid {
    grid-template-columns: 1fr;
  }

  .facts article {
    min-height: 132px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .facts article:last-child {
    border-bottom: 0;
  }

  .flow-section,
  .timeline-section,
  .form-section,
  .decisions {
    padding: 5.5rem 0;
  }

  .flow li {
    min-height: 160px;
    border-right: 1px solid var(--ink);
    border-bottom: 0;
  }

  .flow li:last-child {
    border-bottom: 1px solid var(--ink);
  }

  .timeline-intro,
  .timeline {
    width: calc(100% - 2rem);
  }

  .filters {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .filter {
    width: 100%;
  }

  .message-card {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 2.4rem 0;
  }

  .message-rail {
    padding-left: 1.6rem;
  }

  .message-rail::before {
    display: none;
  }

  .message-rail time {
    display: flex;
    align-items: baseline;
    gap: 0.7rem;
  }

  .message-rail strong {
    font-size: 1.65rem;
  }

  .message-header h3 {
    font-size: 1.8rem;
  }

  .preview-top {
    min-height: 48px;
  }

  .message-bubble {
    margin: 0.75rem;
    padding: 1rem;
    font-size: 0.94rem;
  }

  .question-list li {
    grid-template-columns: 34px 1fr;
  }

  .decision-grid {
    border-left: 1px solid var(--ink);
  }

  .decision-grid article {
    min-height: 160px;
  }

  footer {
    display: grid;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .timeline-tools,
  .copy-message,
  .toast {
    display: none !important;
  }

  body {
    background: #fff;
  }

  .timeline-section {
    background: #fff;
    color: #000;
  }

  .message-card,
  .message-card:last-child {
    border-color: #999;
    break-inside: avoid;
  }

  .whatsapp-preview,
  .message-bubble {
    border-color: #999;
    background: #fff;
    color: #000;
  }
}
