:root {
  color-scheme: light;
  --ink: #120d1b;
  --muted: #6e6476;
  --paper: #fff6e8;
  --paper-strong: #fffaf2;
  --cream: #f6ebd8;
  --purple: #6328ca;
  --purple-dark: #240549;
  --orange: #ff970f;
  --orange-dark: #e66d00;
  --lavender: #e8d9ff;
  --line: rgba(18, 13, 27, 0.14);
  --shadow: 0 28px 80px rgba(26, 8, 54, 0.16);
  --max: 1180px;
  --brand-icon-url: url("ícone.png");
  --hero-title-color: var(--ink);
  --intro-title-color: var(--ink);
  --feature-section-title-color: #ffffff;
  --feature-item-title-color: #ffffff;
  --banner-title-color: #ffffff;
  --screens-title-color: var(--ink);
  --screen-item-title-color: var(--ink);
  --resilience-title-color: var(--ink);
  --resilience-item-title-color: var(--ink);
  --plans-title-color: var(--ink);
  --plan-name-color: var(--purple-dark);
  --plan-term-title-color: var(--ink);
  --audience-title-color: var(--ink);
  --audience-card-title-color: var(--ink);
  --faq-title-color: var(--ink);
  --faq-question-color: var(--ink);
  --footer-title-color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100vw;
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(99, 40, 202, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(99, 40, 202, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, #fffaf2 0%, #fff3df 46%, #f2e6d5 100%);
  background-size: 82px 82px, 82px 82px, auto;
  font-family: "Avenir Next", "Neue Haas Grotesk Text", "Segoe UI", sans-serif;
  font-weight: 430;
}

main {
  max-width: 100vw;
  overflow-x: hidden;
}

body::selection {
  color: #ffffff;
  background: var(--purple);
}

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

img {
  display: block;
  max-width: 100%;
}

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

.page-noise {
  position: fixed;
  inset: 0;
  z-index: -5;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(18, 13, 27, 0.08) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 40%, rgba(99, 40, 202, 0.08) 0 1px, transparent 1px);
  background-size: 18px 18px, 26px 26px;
  mix-blend-mode: multiply;
}

.motion-ribbon {
  position: fixed;
  z-index: -4;
  width: 70vw;
  height: 210px;
  pointer-events: none;
  filter: blur(1px);
  opacity: 0.82;
  transform: rotate(-12deg);
}

.ribbon-one {
  top: 18vh;
  right: -24vw;
  background: linear-gradient(90deg, transparent, rgba(255, 151, 15, 0.22), rgba(99, 40, 202, 0.12), transparent);
  animation: ribbon-slide 16s ease-in-out infinite alternate;
}

.ribbon-two {
  left: -26vw;
  bottom: 10vh;
  background: linear-gradient(90deg, transparent, rgba(99, 40, 202, 0.16), rgba(255, 151, 15, 0.16), transparent);
  animation: ribbon-slide 18s ease-in-out infinite alternate-reverse;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(320px, 1fr);
  grid-template-areas: "brand nav actions";
  align-items: center;
  gap: 22px;
  width: 100%;
  min-height: 84px;
  margin: 0;
  padding: 16px clamp(24px, 4vw, 58px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.9);
  backdrop-filter: blur(18px) saturate(150%);
}

.brand {
  grid-area: brand;
  justify-self: start;
}

.brand img {
  width: 170px;
}

.nav-links {
  grid-area: nav;
  display: flex;
  justify-content: center;
  justify-self: center;
  gap: clamp(10px, 1.5vw, 22px);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-links > a,
.contact-menu summary {
  position: relative;
  padding: 10px 0;
}

.nav-links > a::after,
.contact-menu summary::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links > a:hover,
.nav-links > a:focus-visible,
.contact-menu summary:hover,
.contact-menu summary:focus-visible {
  color: var(--purple-dark);
}

.nav-links > a:hover::after,
.nav-links > a:focus-visible::after,
.contact-menu[open] summary::after,
.contact-menu summary:hover::after,
.contact-menu summary:focus-visible::after {
  transform: scaleX(1);
}

.contact-menu {
  position: relative;
}

.contact-menu summary {
  cursor: pointer;
  list-style: none;
}

.contact-menu summary::-webkit-details-marker {
  display: none;
}

.contact-popover {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 70;
  display: grid;
  min-width: 230px;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: #ffffff;
  box-shadow: 7px 7px 0 rgba(18, 13, 27, 0.86);
  transform: translateX(-50%);
}

.contact-popover a {
  padding: 14px 16px;
  color: var(--purple-dark);
  font-weight: 620;
  white-space: nowrap;
}

.contact-popover a + a {
  border-top: 1px solid var(--line);
}

.contact-popover a:hover,
.contact-popover a:focus-visible {
  background: var(--lavender);
}

.topbar-actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.mobile-menu {
  display: none;
}

.button,
.nav-cta,
.panel-cta,
.plan-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--ink);
  border-radius: 0;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 4px 4px 0 rgba(18, 13, 27, 0.84);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.nav-cta,
.button-ghost {
  color: var(--purple-dark);
  background: #ffffff;
}

.panel-cta,
.button-primary {
  color: var(--purple-dark);
  background: var(--lavender);
}

.button:hover,
.nav-cta:hover,
.panel-cta:hover,
.plan-button:hover {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: 54px;
  align-items: center;
  width: min(100% - 42px, var(--max));
  min-height: calc(100vh - 84px);
  margin: 0 auto;
  padding: 62px 0 82px;
}

.hero::before {
  display: none;
  content: none;
}

.hero-copy h1 {
  display: grid;
  gap: 2px;
  margin: 0 0 24px;
  color: var(--hero-title-color);
  font-size: clamp(3.15rem, 6.8vw, 6.45rem);
  font-weight: 760;
  letter-spacing: -0.066em;
  line-height: 0.92;
  text-transform: uppercase;
}

.hero-copy h1 span:nth-child(3) {
  width: fit-content;
  padding: 0 0.06em 0.06em;
  color: inherit;
  background: linear-gradient(180deg, transparent 54%, rgba(255, 151, 15, 0.52) 54%);
}

.hero-copy p {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.5vw, 1.24rem);
  line-height: 1.72;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-banner {
  position: absolute;
  inset: 28px 0 auto auto;
  display: grid;
  align-content: stretch;
  width: min(100%, 670px);
  height: 540px;
  overflow: hidden;
  border: 2px solid var(--ink);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(36, 5, 73, 0.98), rgba(99, 40, 202, 0.92) 54%, rgba(255, 151, 15, 0.82)),
    var(--purple-dark);
  box-shadow: 16px 16px 0 var(--ink);
  transform: rotate(-1.2deg);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.hero-banner:hover {
  transform: rotate(0deg) translate(-5px, -5px);
  box-shadow: 22px 22px 0 var(--ink);
}

.hero-banner.has-site-image {
  background: var(--site-image) center / cover no-repeat;
}

.hero-banner.has-site-image > * {
  opacity: 0;
}

.hero-banner.is-clickable,
.banner-slot.is-clickable {
  cursor: pointer;
}

.ticket-stack {
  position: absolute;
  top: 28px;
  left: 24px;
  z-index: 3;
  display: grid;
  gap: 10px;
  width: 122px;
}

.ticket-stack span {
  display: grid;
  min-height: 44px;
  place-items: center;
  border: 1px solid rgba(18, 13, 27, 0.72);
  color: var(--ink);
  background: var(--paper-strong);
  font-size: 1.2rem;
  font-weight: 740;
  letter-spacing: -0.03em;
  box-shadow: 5px 5px 0 rgba(18, 13, 27, 0.46);
  animation: ticket-hop 3.8s ease-in-out infinite;
}

.ticket-stack span:nth-child(2) {
  transform: translateX(18px);
  animation-delay: -0.4s;
}

.ticket-stack span:nth-child(3) {
  transform: translateX(36px);
  animation-delay: -0.8s;
}

.ticket-stack span:nth-child(4) {
  transform: translateX(54px);
  animation-delay: -1.2s;
}

.broadcast-board {
  position: absolute;
  right: 32px;
  bottom: 82px;
  left: 180px;
  z-index: 2;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
}

.board-header {
  position: absolute;
  right: 0;
  bottom: calc(100% + 18px);
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.board-header span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
}

.board-header span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 8px rgba(255, 151, 15, 0.2);
  animation: live-dot 1.5s ease-in-out infinite;
}

.called-ticket,
.media-window {
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: rgba(18, 13, 27, 0.42);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.2);
}

.called-ticket {
  display: grid;
  min-height: 230px;
  place-items: center;
  padding: 24px;
  text-align: center;
}

.called-ticket span,
.media-window span,
.signal-marquee span {
  font-size: 0.72rem;
  font-weight: 680;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.called-ticket strong {
  display: block;
  color: #ffffff;
  font-size: 3.75rem;
  font-weight: 740;
  letter-spacing: -0.08em;
  line-height: 1;
  animation: called-pulse 2.4s ease-in-out infinite;
}

.called-ticket small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 520;
  text-transform: uppercase;
}

.media-window {
  display: grid;
  align-content: end;
  min-height: 230px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 151, 15, 0.92), rgba(99, 40, 202, 0.75)),
    rgba(255, 151, 15, 0.9);
}

.media-window h2 {
  max-width: 310px;
  margin: 16px 0 0;
  font-size: clamp(1.55rem, 2.7vw, 2.42rem);
  font-weight: 720;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.signal-marquee {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  display: flex;
  gap: 28px;
  padding: 16px 0;
  color: var(--ink);
  background: var(--orange);
  border-top: 2px solid var(--ink);
  white-space: nowrap;
  animation: marquee-slide 14s linear infinite;
}

.signal-marquee span {
  flex: 0 0 auto;
}

.impact-section,
.section,
.banner-section,
.system-section,
.resilience-band,
.audience-section,
.footer {
  padding-right: max(22px, calc((100vw - var(--max)) / 2));
  padding-left: max(22px, calc((100vw - var(--max)) / 2));
}

.impact-section {
  padding-top: 48px;
  padding-bottom: 112px;
}

.intro-grid {
  display: grid;
  width: min(100%, var(--max));
  margin: 0 auto;
  border-top: 2px solid var(--ink);
}

.intro-grid article {
  display: grid;
  grid-template-columns: 110px minmax(220px, 0.8fr) minmax(260px, 1fr);
  gap: 28px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 2px solid var(--ink);
}

.intro-grid span {
  color: var(--orange-dark);
  font-size: clamp(2.55rem, 5.95vw, 4.9rem);
  font-weight: 720;
  letter-spacing: -0.075em;
  line-height: 0.8;
}

.intro-grid h2 {
  margin: 0;
  color: var(--intro-title-color);
  font-size: clamp(1.55rem, 2.95vw, 2.88rem);
  font-weight: 700;
  letter-spacing: -0.042em;
  line-height: 1.04;
}

.intro-grid p,
.feature-item p,
.resilience-copy p,
.resilience-steps p,
.plan-card li,
.plan-note,
.plan-extra p,
.plan-terms p,
.faq-list p,
.footer p {
  color: var(--muted);
  line-height: 1.68;
}

.section,
.system-section,
.audience-section {
  padding-top: 108px;
  padding-bottom: 108px;
}

.section-heading {
  width: min(100%, var(--max));
  margin: 0 auto 48px;
}

.section-heading h2,
.resilience-copy h2,
.footer h2 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.2rem, 4.75vw, 4.6rem);
  font-weight: 720;
  letter-spacing: -0.046em;
  line-height: 1.02;
  text-wrap: balance;
}

.feature-section {
  color: #ffffff;
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 151, 15, 0.22), transparent 28%),
    linear-gradient(135deg, var(--purple-dark), #13021f 72%);
}

.feature-section .section-heading h2 {
  color: var(--feature-section-title-color);
}

.system-section .section-heading h2 {
  color: var(--screens-title-color);
}

.feature-list {
  display: grid;
  width: min(100%, var(--max));
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.feature-item {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  min-height: 164px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition:
    padding 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.feature-item:hover {
  padding-right: 26px;
  padding-left: 26px;
  color: var(--ink);
  background: var(--orange);
}

.feature-icon,
.audience-card svg {
  width: 68px;
  height: 68px;
  color: currentColor;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-item h3 {
  margin: 0;
  color: var(--feature-item-title-color);
  font-size: clamp(1.35rem, 2.05vw, 1.9rem);
  font-weight: 680;
  letter-spacing: -0.034em;
  line-height: 1.1;
}

.feature-item p {
  max-width: 620px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.feature-item:hover p {
  color: rgba(18, 13, 27, 0.72);
}

.feature-item:hover h3 {
  color: var(--ink);
}

.banner-section {
  padding-top: 118px;
  padding-bottom: 104px;
  background: linear-gradient(180deg, var(--paper), #fffaf2);
}

.banner-slot {
  position: relative;
  display: grid;
  align-content: end;
  width: min(100%, var(--max));
  height: 460px;
  margin: 0 auto;
  overflow: hidden;
  padding: 42px;
  border: 2px solid var(--ink);
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(36, 5, 73, 0.96) 0 44%, rgba(99, 40, 202, 0.9) 44% 66%, rgba(255, 151, 15, 0.92) 66%),
    var(--purple-dark);
  box-shadow: 14px 14px 0 var(--ink);
  transform: rotate(0.7deg);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.banner-slot::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.13) 0 1px, transparent 1px 38px),
    var(--brand-icon-url) right -8% center / min(44%, 430px) no-repeat;
  opacity: 0.3;
}

.banner-slot:hover {
  transform: rotate(0deg) translate(-4px, -4px);
  box-shadow: 20px 20px 0 var(--ink);
}

.banner-slot.has-site-image {
  background: var(--site-image) center / cover no-repeat;
}

.banner-slot.has-site-image > * {
  opacity: 0;
}

.banner-slot.has-site-image::before {
  display: none;
}

.banner-slot h2 {
  position: relative;
  z-index: 1;
}

.banner-slot h2 {
  max-width: 840px;
  margin: 0;
  color: var(--banner-title-color);
  font-size: clamp(2.38rem, 5.25vw, 5.1rem);
  font-weight: 720;
  letter-spacing: -0.048em;
  line-height: 1.03;
  text-wrap: balance;
}

.banner-cta-row {
  display: flex;
  justify-content: center;
  width: min(100%, var(--max));
  margin: 34px auto 0;
}

.banner-cta {
  color: var(--purple-dark);
  background: #ffffff;
}

.screens-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.9fr);
  grid-template-rows: repeat(2, minmax(292px, 1fr));
  gap: 22px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.screen-card {
  display: grid;
  min-width: 0;
  margin: 0;
}

.screen-card-large {
  grid-row: 1 / span 2;
}

.screen-placeholder {
  position: relative;
  display: flex;
  min-height: 292px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 34px;
  border: 2px solid var(--ink);
  background: var(--paper-strong);
  box-shadow: 10px 10px 0 rgba(18, 13, 27, 0.92);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.screen-placeholder:hover {
  transform: translate(-4px, -4px);
  box-shadow: 16px 16px 0 rgba(18, 13, 27, 0.92);
}

.screen-card-large .screen-placeholder {
  min-height: 100%;
}

.screen-placeholder::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px dashed rgba(18, 13, 27, 0.28);
}

.screen-placeholder.has-site-image {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.04), rgba(255, 250, 242, 0.78)),
    var(--site-image) center / cover no-repeat;
}

.main-screen-placeholder {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 151, 15, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(99, 40, 202, 0.17), rgba(255, 250, 242, 0.9));
}

.master-placeholder {
  background:
    repeating-linear-gradient(90deg, rgba(99, 40, 202, 0.16) 0 2px, transparent 2px 52px),
    var(--lavender);
}

.attendant-placeholder {
  background:
    repeating-linear-gradient(0deg, rgba(255, 151, 15, 0.18) 0 2px, transparent 2px 42px),
    #fff1d8;
}

.screen-placeholder span,
.screen-placeholder strong {
  position: relative;
  z-index: 1;
}

.screen-placeholder span {
  color: var(--muted);
}

.screen-placeholder strong {
  display: block;
  max-width: 620px;
  margin-top: 10px;
  color: var(--screen-item-title-color);
  font-size: clamp(1.55rem, 2.8vw, 2.68rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.resilience-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: stretch;
  padding-top: 110px;
  padding-bottom: 110px;
  background:
    linear-gradient(90deg, var(--orange) 0 36%, transparent 36%),
    linear-gradient(180deg, #fffaf2, #fff1d8);
}

.resilience-copy {
  align-self: center;
}

.resilience-copy h2 {
  max-width: 680px;
  color: var(--resilience-title-color);
}

.resilience-copy p {
  max-width: 560px;
  margin: 22px 0 0;
  font-size: 1.08rem;
}

.resilience-steps {
  display: grid;
  gap: 14px;
}

.resilience-steps article {
  position: relative;
  padding: 26px 30px;
  border: 2px solid var(--ink);
  background: #ffffff;
  box-shadow: 8px 8px 0 var(--ink);
  transition:
    transform 190ms ease,
    box-shadow 190ms ease,
    background 190ms ease;
}

.resilience-steps article:hover {
  transform: translate(-3px, -3px);
  background: var(--lavender);
  box-shadow: 12px 12px 0 var(--ink);
}

.resilience-steps span {
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 680;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.resilience-steps h3 {
  margin: 10px 0 8px;
  color: var(--resilience-item-title-color);
  font-size: 1.38rem;
  font-weight: 680;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.plans-section {
  background:
    radial-gradient(circle at 18% 12%, rgba(99, 40, 202, 0.1), transparent 30%),
    linear-gradient(180deg, var(--paper), #fffaf2);
}

.plans-section .section-heading h2 {
  color: var(--plans-title-color);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 560px;
  flex-direction: column;
  padding: 30px;
  border: 2px solid var(--ink);
  background: #fffdf7;
  box-shadow: 8px 8px 0 var(--ink);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.plan-card:hover {
  transform: translate(-3px, -3px) rotate(-0.25deg);
  background: #fff4de;
  box-shadow: 12px 12px 0 var(--ink);
}

.plan-featured {
  background:
    linear-gradient(180deg, #fffdf7 0 58%, #fff0d0 58%),
    #fffdf7;
}

.plan-name {
  color: var(--plan-name-color);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.plan-card h3 {
  min-height: 48px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 480;
  line-height: 1.45;
}

.plan-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 24px 0 0;
  padding-left: 18px;
}

.plan-card li {
  font-size: 0.95rem;
}

.plan-note {
  margin: 18px 0 0;
  font-size: 0.92rem;
}

.plan-extra {
  display: grid;
  gap: 9px;
  margin-top: 22px;
  padding-top: 20px;
  padding-bottom: 24px;
  border-top: 1px dashed rgba(18, 13, 27, 0.28);
}

.plan-extra span {
  color: var(--orange-dark);
  font-size: 0.74rem;
  font-weight: 680;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-extra p {
  margin: 0;
  font-size: 0.92rem;
}

.plan-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 22px;
  border-top: 2px dashed var(--ink);
}

.plan-price {
  margin: 0;
  color: var(--purple-dark);
  font-size: 1.95rem;
  font-weight: 720;
  letter-spacing: -0.04em;
}

.plan-price span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 560;
  letter-spacing: 0;
}

.plan-button {
  width: auto;
  min-width: 220px;
  color: var(--purple-dark);
  background: #ffffff;
}

.plan-button:hover {
  background: var(--lavender);
  color: var(--ink);
}

.plan-terms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, var(--max));
  margin: 24px auto 0;
}

.plan-terms article {
  padding: 20px;
  border: 2px solid var(--ink);
  background: #ffffff;
  box-shadow: 7px 7px 0 rgba(18, 13, 27, 0.85);
}

.plan-terms h3 {
  margin: 0 0 7px;
  color: var(--plan-term-title-color);
  font-size: 1.04rem;
  font-weight: 660;
  letter-spacing: -0.03em;
}

.plan-terms p {
  margin: 0;
  font-size: 0.92rem;
}

.audience-section {
  display: grid;
  grid-template-columns: minmax(290px, 410px) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  background:
    linear-gradient(180deg, #fffaf2, var(--paper)),
    var(--paper);
}

.audience-section .section-heading {
  position: sticky;
  top: 112px;
  width: auto;
  margin: 0;
}

.audience-section .section-heading h2 {
  color: var(--audience-title-color);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: minmax(160px, auto);
  gap: 16px;
}

.audience-card {
  display: grid;
  align-content: space-between;
  min-height: 166px;
  padding: 24px;
  border: 2px solid var(--ink);
  background: #ffffff;
  box-shadow: 8px 8px 0 var(--ink);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    background 200ms ease;
}

.audience-card:hover {
  transform: translate(-4px, -4px);
  background: var(--orange);
  box-shadow: 14px 14px 0 var(--ink);
}

.audience-card svg {
  width: 68px;
  height: 68px;
  color: var(--purple);
}

.audience-card:hover svg {
  color: var(--ink);
}

.audience-card span {
  max-width: 270px;
  color: var(--audience-card-title-color);
  font-size: 1.18rem;
  font-weight: 680;
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.audience-card-medical {
  grid-column: 1 / span 3;
}

.audience-card-dental {
  grid-column: 1 / span 2;
  grid-row: 2;
}

.audience-card-labs {
  grid-column: 4 / span 3;
}

.audience-card-registry {
  grid-column: 3 / span 2;
  grid-row: 2;
}

.audience-card-education {
  grid-column: 1 / span 2;
  grid-row: 3;
}

.audience-card-finance {
  grid-column: 5 / span 2;
  grid-row: 2;
}

.audience-card-tools {
  grid-column: 3 / span 4;
  grid-row: 3;
}

.faq-section {
  padding-bottom: 118px;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 151, 15, 0.18), transparent 28%),
    linear-gradient(180deg, #efe4ff 0%, #f9f3ff 100%);
}

.faq-list {
  display: grid;
  width: min(100%, 920px);
  margin: 0 auto;
  border-top: 2px solid var(--ink);
}

.faq-section .section-heading h2 {
  color: var(--faq-title-color);
}

.faq-list details {
  border-bottom: 2px solid var(--ink);
}

.faq-list summary {
  cursor: pointer;
  padding: 24px 0;
  color: var(--faq-question-color);
  font-size: 1.18rem;
  font-weight: 650;
  list-style: none;
  letter-spacing: -0.018em;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--orange-dark);
  font-size: 1.6rem;
  font-weight: 520;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  max-width: 760px;
  margin: 0;
  padding: 0 0 24px;
}

.footer {
  padding-top: 58px;
  padding-bottom: 32px;
  color: var(--ink);
  border-top: 2px solid var(--ink);
  background: #ffffff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 30px;
  align-items: center;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.footer h2 {
  max-width: 560px;
  margin-top: 0;
  color: var(--footer-title-color);
  font-size: clamp(1.05rem, 1.55vw, 1.38rem);
  font-weight: 480;
  letter-spacing: -0.015em;
  line-height: 1.28;
}

.footer .button-primary {
  color: var(--purple-dark);
  background: #ffffff;
}

.copyright {
  width: min(100%, var(--max));
  margin: 30px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
}

.reveal.is-visible {
  animation: reveal-up 760ms cubic-bezier(0.18, 0.84, 0.32, 1) both;
  animation-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible > * {
  animation: cascade-up 700ms cubic-bezier(0.18, 0.84, 0.32, 1) both;
}

.reveal.is-visible > *:nth-child(1) {
  animation-delay: calc(var(--reveal-delay, 0ms) + 60ms);
}

.reveal.is-visible > *:nth-child(2) {
  animation-delay: calc(var(--reveal-delay, 0ms) + 140ms);
}

.reveal.is-visible > *:nth-child(3) {
  animation-delay: calc(var(--reveal-delay, 0ms) + 220ms);
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

@keyframes cascade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

@keyframes ribbon-slide {
  from {
    transform: translate3d(-4vw, 0, 0) rotate(-12deg);
  }

  to {
    transform: translate3d(4vw, -3vh, 0) rotate(-12deg);
  }
}

@keyframes ticket-hop {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -5px;
  }
}

@keyframes live-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.55;
    transform: scale(0.86);
  }
}

@keyframes called-pulse {
  0%,
  100% {
    transform: scale(1);
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }

  50% {
    transform: scale(1.04);
    text-shadow: 0 0 32px rgba(255, 255, 255, 0.24);
  }
}

@keyframes marquee-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-220px);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .topbar {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand actions"
      "nav nav";
    gap: 16px;
    row-gap: 8px;
  }

  .topbar-actions {
    justify-self: end;
  }

  .nav-links {
    justify-content: center;
    justify-self: center;
  }
}

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

  .hero-visual {
    min-height: 590px;
  }

  .hero-banner {
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotate(-1deg);
  }

  .hero-banner:hover {
    transform: translateX(-50%) rotate(0deg) translate(-4px, -4px);
  }

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

  .resilience-band,
  .footer-inner,
  .audience-section {
    grid-template-columns: 1fr;
  }

  .audience-section .section-heading {
    position: static;
  }
}

@media (max-width: 780px) {
  html {
    scroll-padding-top: 86px;
  }

  body {
    padding-top: 72px;
  }

  .topbar {
    position: fixed;
    right: 0;
    left: 0;
    grid-template-columns: auto minmax(0, 1fr) 38px;
    grid-template-areas: "brand actions mobile";
    justify-content: stretch;
    justify-items: stretch;
    column-gap: 14px;
    min-height: 72px;
    padding: 12px 18px;
  }

  .brand {
    justify-self: start;
  }

  .brand img {
    width: 124px;
  }

  .nav-links {
    display: none;
  }

  .topbar-actions {
    width: auto;
    flex-direction: row;
    justify-content: flex-end;
    justify-self: end;
    gap: 7px;
  }

  .button,
  .nav-cta,
  .panel-cta {
    width: auto;
    min-height: 31px;
    padding: 0 10px;
    font-size: 0.7rem;
    box-shadow: 3px 3px 0 rgba(18, 13, 27, 0.84);
  }

  .nav-cta,
  .panel-cta {
    min-width: 0;
    font-size: 0;
  }

  .nav-cta::after,
  .panel-cta::after {
    font-size: 0.68rem;
    line-height: 1;
  }

  .nav-cta::after {
    content: "Demonstração";
  }

  .panel-cta::after {
    content: "Painel";
  }

  .mobile-menu {
    position: relative;
    grid-area: mobile;
    display: block;
    justify-self: end;
  }

  .mobile-menu summary {
    display: grid;
    width: 38px;
    height: 34px;
    place-items: center;
    border: 1px solid var(--ink);
    background: #ffffff;
    box-shadow: 3px 3px 0 rgba(18, 13, 27, 0.84);
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    display: block;
    width: 17px;
    height: 2px;
    margin: 2px 0;
    background: var(--purple-dark);
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .mobile-menu[open] summary span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .mobile-menu[open] summary span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu[open] summary span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mobile-menu-panel {
    position: fixed;
    top: 72px;
    right: 18px;
    z-index: 90;
    display: grid;
    width: min(286px, calc(100vw - 36px));
    overflow: hidden;
    border: 1px solid var(--ink);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 8px 8px 0 rgba(18, 13, 27, 0.86);
    backdrop-filter: blur(16px) saturate(145%);
  }

  .mobile-menu-panel > a {
    padding: 15px 17px;
    color: var(--purple-dark);
    font-size: 0.96rem;
    font-weight: 560;
    border-bottom: 1px solid var(--line);
  }

  .mobile-menu-panel > a:hover,
  .mobile-menu-panel > a:focus-visible {
    background: var(--lavender);
  }

  .mobile-contact-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
    background: #fff7eb;
  }

  .mobile-contact-actions a {
    display: grid;
    min-height: 34px;
    place-items: center;
    border: 1px solid rgba(18, 13, 27, 0.2);
    color: var(--purple-dark);
    background: #ffffff;
    font-size: 0.74rem;
    font-weight: 560;
  }

  .hero {
    width: min(100% - 30px, var(--max));
    gap: 28px;
    padding-top: 34px;
    padding-bottom: 62px;
  }

  .hero-copy h1 {
    font-size: clamp(2.18rem, 10.7vw, 3.25rem);
    letter-spacing: -0.052em;
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-banner {
    position: relative;
    inset: auto;
    left: auto;
    width: 100%;
    height: auto;
    max-width: 100%;
    aspect-ratio: 1.36;
    box-shadow: 7px 7px 0 var(--ink);
    transform: none;
  }

  .hero-banner:hover {
    transform: translate(-2px, -2px);
    box-shadow: 9px 9px 0 var(--ink);
  }

  .hero-banner.has-site-image {
    background: var(--site-mobile-image) center / cover no-repeat;
  }

  .hero-banner.has-site-image:hover {
    transform: none;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .ticket-stack {
    top: 18px;
    left: 16px;
    width: 78px;
  }

  .ticket-stack span {
    min-height: 36px;
    font-size: 1rem;
  }

  .broadcast-board {
    right: 16px;
    bottom: 54px;
    left: 106px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .called-ticket {
    min-height: 108px;
    padding: 16px;
  }

  .called-ticket strong {
    font-size: 2.36rem;
  }

  .media-window {
    min-height: 116px;
    padding: 16px;
  }

  .media-window h2 {
    font-size: 1.34rem;
  }

  .intro-grid article {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0;
  }

  .section,
  .system-section,
  .audience-section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .resilience-copy h2,
  .footer h2 {
    font-size: clamp(1.72rem, 7.9vw, 2.42rem);
    line-height: 1.06;
  }

  .feature-item {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
  }

  .feature-icon,
  .audience-card svg {
    width: 54px;
    height: 54px;
  }

  .banner-slot {
    height: auto;
    min-height: 0;
    aspect-ratio: 1.62;
    padding: 24px;
    box-shadow: 7px 7px 0 var(--ink);
    transform: none;
  }

  .banner-slot:hover {
    transform: translate(-2px, -2px);
    box-shadow: 9px 9px 0 var(--ink);
  }

  .banner-slot.has-site-image {
    background: var(--site-mobile-image) center / cover no-repeat;
  }

  .banner-slot.has-site-image:hover {
    transform: none;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .banner-slot h2 {
    font-size: clamp(1.62rem, 7.8vw, 2.38rem);
  }

  .screens-grid,
  .plan-terms,
  .resilience-band {
    grid-template-columns: 1fr;
  }

  .screens-grid {
    grid-template-rows: auto;
  }

  .screen-card-large {
    grid-row: auto;
  }

  .screen-placeholder {
    min-height: 300px;
    padding: 24px;
    box-shadow: 7px 7px 0 rgba(18, 13, 27, 0.92);
  }

  .screen-placeholder:hover {
    transform: translate(-2px, -2px);
    box-shadow: 9px 9px 0 rgba(18, 13, 27, 0.92);
  }

  .screen-card-large .screen-placeholder {
    min-height: 300px;
  }

  .screen-placeholder strong {
    font-size: clamp(1.24rem, 6vw, 1.68rem);
  }

  .plans-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .audience-card {
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    align-content: center;
    min-height: 112px;
    gap: 17px;
    padding: 20px;
  }

  .audience-card svg {
    width: 52px;
    height: 52px;
  }

  .audience-card span {
    max-width: none;
    font-size: 1.24rem;
    line-height: 1.16;
  }

  .plan-card {
    min-height: auto;
  }

  .plan-card ul {
    grid-template-columns: 1fr;
  }

  .plan-bottom {
    display: grid;
  }

  .plan-button {
    width: 100%;
    min-width: 0;
  }

  .audience-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-inner img {
    width: 212px;
  }
}

@media (max-width: 460px) {
  .impact-section,
  .section,
  .banner-section,
  .system-section,
  .resilience-band,
  .audience-section,
  .footer {
    padding-right: 16px;
    padding-left: 16px;
  }

  .topbar {
    align-items: stretch;
    grid-template-columns: auto minmax(0, 1fr) 36px;
    column-gap: 11px;
    min-height: 68px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand img {
    width: 112px;
  }

  .topbar-actions {
    gap: 7px;
  }

  .nav-links {
    justify-content: center;
    width: 100%;
    gap: 7px 11px;
    font-size: 0.72rem;
  }

  .nav-cta,
  .panel-cta {
    min-height: 29px;
    padding: 0 8px;
    font-size: 0;
  }

  .nav-cta::after,
  .panel-cta::after {
    font-size: 0.6rem;
  }

  .mobile-menu summary {
    width: 36px;
    height: 32px;
  }

  .mobile-menu-panel {
    top: 68px;
    right: 14px;
    width: min(276px, calc(100vw - 28px));
  }

  .mobile-contact-actions {
    grid-template-columns: 1fr;
  }

  .audience-card {
    grid-template-columns: 50px minmax(0, 1fr);
    min-height: 98px;
    gap: 14px;
    padding: 17px;
  }

  .audience-card svg {
    width: 46px;
    height: 46px;
  }

  .audience-card span {
    font-size: 1.15rem;
  }

  .hero-banner {
    aspect-ratio: 1.24;
  }

  .broadcast-board {
    left: 92px;
    bottom: 48px;
  }

  .media-window h2 {
    font-size: 1.2rem;
  }

  .banner-slot {
    aspect-ratio: 1.42;
  }

  .screen-placeholder,
  .screen-card-large .screen-placeholder {
    min-height: 260px;
  }
}
