@font-face {
  font-family: "Outfit";
  src: url("./res/fonts/outfit-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("./res/fonts/satoshi-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("./res/fonts/satoshi-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("./res/fonts/poppins-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("./res/fonts/poppins-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --bg: #fffdfc;
  --bg-soft: #f5ebff;
  --bg-soft-2: #efe0ff;
  --bg-deep: #1d0e2b;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --surface-muted: #faf7ff;
  --stroke: rgba(124, 85, 199, 0.16);
  --stroke-strong: rgba(77, 25, 125, 0.18);
  --text: #27183b;
  --text-soft: #6e5c85;
  --text-mute: #8e7ea5;
  --primary: #4d197d;
  --primary-soft: #7b4eb6;
  --accent: #ffcd00;
  --success: #34c759;
  --warning: #f4a700;
  --danger: #d55b7a;
  --shadow: 0 28px 80px rgba(77, 25, 125, 0.08);
  --shadow-strong: 0 30px 90px rgba(77, 25, 125, 0.16);
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 18px;
  --container: min(1220px, calc(100% - 40px));
  --header-height: 84px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background:
    radial-gradient(circle at top center, rgba(168, 124, 255, 0.18), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #fffdfc 100%);
  color: var(--text);
  min-width: 320px;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -56px;
  z-index: 100;
  background: var(--primary);
  color: #fff;
  padding: 12px 16px;
  border-radius: 16px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 16px 0;
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 40px rgba(34, 18, 60, 0.08);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  grid-column: 1;
  grid-row: 1;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 20px;
  background: var(--primary);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(77, 25, 125, 0.16);
}

.site-nav {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 14px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(124, 85, 199, 0.12);
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(77, 25, 125, 0.08);
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  font-family: "Satoshi", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary);
  border-radius: 999px;
  overflow: hidden;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.site-nav a::before {
  content: "";
  position: absolute;
  inset: auto 10px 7px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--primary);
  transition: transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  transform: translateY(-1px);
}

.site-nav a:hover::before,
.site-nav a:focus-visible::before {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  grid-row: 1;
  position: relative;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(124, 85, 199, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  box-shadow: 0 16px 36px rgba(77, 25, 125, 0.1);
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  width: 24px;
  height: 3px;
  background: currentColor;
  border-radius: 999px;
  transform: translateX(-50%);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    top 0.25s ease;
}

.menu-toggle span:first-child {
  top: 20px;
}

.menu-toggle span:last-child {
  top: 30px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  top: 26px;
  transform: translateX(-50%) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  top: 26px;
  transform: translateX(-50%) rotate(-45deg);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 18px;
  border: 1px solid rgba(77, 25, 125, 0.08);
  background: rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  font-family: "Satoshi", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
  box-shadow: 0 16px 34px rgba(77, 25, 125, 0.08);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-family: "Satoshi", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--header {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  min-width: 112px;
  color: #101010;
  background: var(--accent);
  box-shadow: 0 14px 30px rgba(255, 205, 0, 0.34);
}

.button--primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 18px 40px rgba(77, 25, 125, 0.28);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #60239a;
}

.button--secondary {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid rgba(77, 25, 125, 0.16);
  box-shadow: 0 18px 34px rgba(77, 25, 125, 0.08);
}

.hero {
  position: relative;
  overflow: clip;
  padding: 34px 0 0;
  min-height: min-content;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 24px 0 0;
  background: linear-gradient(180deg, #ffffff 0%, #f0e0ff 100%);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  z-index: -3;
}

.hero__aurora {
  position: absolute;
  z-index: -2;
  width: 720px;
  height: 720px;
  border-radius: 999px;
  opacity: 0.6;
  filter: blur(80px);
}

.hero__aurora--left {
  top: 180px;
  left: -240px;
  background: radial-gradient(circle, rgba(255, 205, 0, 0.18) 0%, rgba(255, 205, 0, 0) 68%);
}

.hero__aurora--right {
  top: 80px;
  right: -220px;
  background: radial-gradient(circle, rgba(132, 87, 242, 0.22) 0%, rgba(132, 87, 242, 0) 68%);
}

.hero__content {
  display: grid;
  justify-items: center;
  gap: 26px;
  padding: 48px 0 36px;
}

.hero__badge {
  margin-top: 12px;
}

.hero__title {
  margin: 0;
  display: grid;
  gap: 6px;
  max-width: 980px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.75rem, 6vw, 5.125rem);
  line-height: 0.95;
  text-align: center;
  color: var(--primary);
  letter-spacing: -0.04em;
}

.hero__line {
  display: block;
  overflow: hidden;
}

.hero__char {
  display: inline-block;
  opacity: 0.001;
  transform: translateY(26px);
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.55s ease;
  transition-delay: calc(var(--char-index) * 28ms);
}

.hero__title.is-ready .hero__char {
  opacity: 1;
  transform: translateY(0);
}

.hero__copy {
  max-width: 470px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  color: var(--text-soft);
}

.hero__actions {
  display: flex;
  justify-content: center;
}

.hero__media {
  position: relative;
  width: min(100%, 980px);
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(77, 25, 126, 0.3) 0%, rgba(77, 25, 125, 0) 100%);
  border: 1px solid rgba(153, 134, 238, 0.2);
  box-shadow: inset 0 0 19px rgba(255, 255, 255, 0.12);
}

.hero__media-glow {
  position: absolute;
  top: 40px;
  left: 50%;
  width: min(100%, 812px);
  height: 1px;
  transform: translateX(-50%);
  border-radius: 999px;
  box-shadow: 0 9px 58px 50px rgba(130, 103, 219, 0.78);
}

.hero__video-shell {
  overflow: hidden;
  border-radius: 18px;
  border: 5px solid rgba(77, 25, 125, 0.2);
  background: #2b1644;
  box-shadow: var(--shadow-strong);
}

.hero__video {
  width: 100%;
  aspect-ratio: 935 / 505;
  object-fit: cover;
}

.section {
  padding: 80px 0;
}

.section__intro {
  display: grid;
  gap: 20px;
  margin-bottom: 38px;
}

.section__intro h2 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
}

.section__intro p {
  margin: 0;
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-soft);
}

.section__intro--split {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 480px);
  align-items: start;
}

.section__intro--center {
  justify-items: center;
  text-align: center;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.workflow-step {
  min-height: 220px;
  padding: 28px 24px;
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at top right, rgba(255, 205, 0, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(247, 242, 255, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%);
  border: 1px solid var(--stroke);
  box-shadow: 0 18px 40px rgba(77, 25, 125, 0.04);
}

.workflow-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-family: "Satoshi", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(77, 25, 125, 0.2);
}

.problem-card {
  min-height: 162px;
  padding: 28px 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(247, 242, 255, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%);
  border: 1px solid var(--stroke);
  box-shadow: 0 18px 40px rgba(77, 25, 125, 0.04);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.problem-card:hover {
  transform: translateY(-6px);
  border-color: rgba(77, 25, 125, 0.18);
  box-shadow: 0 24px 56px rgba(77, 25, 125, 0.1);
}

.problem-card h3,
.workflow-step h3,
.solution-card__copy h3,
.testimonial-card h3,
.pricing-card__header h3 {
  margin: 0 0 12px;
  font-family: "Outfit", sans-serif;
  font-size: 1.35rem;
  line-height: 1.1;
  color: var(--primary);
}

.problem-card p,
.workflow-step p,
.solution-card__copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.55;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.insight-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 100%;
  padding: 26px 24px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(168, 124, 255, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(245, 236, 255, 0.98), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(77, 25, 125, 0.1);
  box-shadow: var(--shadow);
}

.insight-card h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  line-height: 1.08;
  color: var(--primary);
}

.insight-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.insight-card .button {
  justify-self: start;
  margin-top: 6px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 22px 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(77, 25, 125, 0.1);
  box-shadow: 0 16px 36px rgba(77, 25, 125, 0.05);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: "Outfit", sans-serif;
  font-size: 1.28rem;
  line-height: 1.2;
  color: var(--primary);
}

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

.faq-item p {
  margin: 16px 0 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.faq-item a {
  color: var(--primary);
  font-weight: 700;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.solution-card {
  position: relative;
  display: grid;
  gap: 22px;
  min-height: 280px;
  padding: 22px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(168, 124, 255, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(245, 236, 255, 0.98), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(77, 25, 125, 0.1);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 72px rgba(77, 25, 125, 0.14);
}

.solution-card--feature {
  grid-column: span 1;
  min-height: 480px;
}

.solution-card--compact {
  grid-column: span 1;
}

.solution-card--center {
  grid-column: span 1;
}

.solution-card--tall {
  grid-column: span 1;
  min-height: 520px;
}

.solution-card--wide {
  grid-column: span 1;
}

.solution-card__art {
  position: relative;
  min-height: 160px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.28)),
    linear-gradient(135deg, rgba(77, 25, 125, 0.08), rgba(255, 205, 0, 0.12));
  overflow: hidden;
}

.solution-card__art img {
  position: absolute;
  box-shadow: 0 18px 34px rgba(39, 24, 59, 0.16);
}

.solution-card__art--burocracia {
  min-height: 260px;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 205, 0, 0.2), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.28)),
    linear-gradient(135deg, rgba(77, 25, 125, 0.08), rgba(255, 205, 0, 0.12));
}

.solution-card__art--burocracia::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 50%);
  pointer-events: none;
}

.solution-card__art--burocracia .solution-card__layer {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 22px 40px rgba(39, 24, 59, 0.18);
  will-change: transform;
}

.solution-card__layer--back {
  inset: auto auto 24px -28px;
  width: 42%;
  aspect-ratio: 1280 / 828;
  border-radius: 18px;
  transform: rotate(-7deg);
}

.solution-card__layer--front {
  inset: 24px 24px auto auto;
  width: 62%;
  aspect-ratio: 631 / 358;
  border-radius: 24px;
  transform: rotate(2deg);
}

.solution-card__layer--back img,
.solution-card__layer--front picture,
.solution-card__layer--front img {
  display: block;
  width: 100%;
  height: 100%;
}

.solution-card__art--burocracia .solution-card__layer img {
  position: static;
  object-fit: cover;
  box-shadow: none;
}

.solution-card__layer--back img,
.solution-card__layer--front img {
  opacity: 0.001;
  transition:
    opacity 0.72s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.35s ease;
  will-change: transform, opacity;
}

.solution-card__layer--back img {
  transform: translate(-34px, 28px) scale(0.92);
}

.solution-card__layer--front img {
  transform: translate(40px, -30px) scale(0.9);
}

.solution-card.is-visible .solution-card__layer--back img {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  transition-delay: 0.12s;
}

.solution-card.is-visible .solution-card__layer--front img {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  transition-delay: 0.28s;
}

.solution-card.is-visible .solution-card__layer--back {
  animation: burocracia-back-float 5.4s ease-in-out 1s infinite;
}

.solution-card.is-visible .solution-card__layer--front {
  animation: burocracia-front-float 4.8s ease-in-out 1.05s infinite;
}

.solution-card:hover .solution-card__layer--front img {
  filter: saturate(1.04) contrast(1.02);
}

.solution-card__art--center img {
  inset: 18px 18px;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  object-fit: contain;
  box-shadow: none;
  opacity: 0.001;
  transform: translate3d(0, 34px, 0) scale(0.9);
  transition:
    opacity 0.72s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.35s ease;
  will-change: transform, opacity;
}

.solution-card--selecao.is-visible .solution-card__art--center img {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  animation: selecao-panel-float 5.1s ease-in-out 0.95s infinite;
}

.solution-card--selecao:hover .solution-card__art--center img {
  filter: drop-shadow(0 18px 30px rgba(77, 25, 125, 0.14));
}

.solution-card--sorteio .solution-card__art--stack {
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 205, 0, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.28)),
    linear-gradient(135deg, rgba(77, 25, 125, 0.08), rgba(255, 205, 0, 0.12));
}

.solution-card--sorteio .solution-card__art--stack picture {
  position: absolute;
  display: block;
  overflow: hidden;
  opacity: 0.001;
  box-shadow: 0 24px 44px rgba(39, 24, 59, 0.18);
  transition:
    opacity 0.72s ease,
    transform 0.92s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.35s ease;
  will-change: transform, opacity;
}

.solution-card--sorteio .solution-card__art--stack picture:first-child {
  inset: 22px auto auto 30px;
  z-index: 1;
  width: 44%;
  aspect-ratio: 789 / 972;
  border-radius: 24px;
  transform: translate3d(-22px, 18px, 0) rotate(-5deg) scale(0.96);
}

.solution-card--sorteio .solution-card__art--stack picture:last-child {
  inset: auto 18px 18px auto;
  z-index: 2;
  width: 61%;
  aspect-ratio: 1079 / 1118;
  border-radius: 24px;
  transform: translate3d(24px, -20px, 0) rotate(4deg) scale(0.96);
}

.solution-card--sorteio .solution-card__art--stack img {
  position: static;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: none;
}

.solution-card--sorteio.is-visible .solution-card__art--stack picture:first-child {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(-3deg) scale(1);
  transition-delay: 0.08s;
}

.solution-card--sorteio.is-visible .solution-card__art--stack picture:last-child {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(2deg) scale(1);
  transition-delay: 0.2s;
}

.solution-card--sorteio:hover .solution-card__art--stack picture:first-child {
  transform: translate3d(-8px, -2px, 0) rotate(-4deg) scale(1);
}

.solution-card--sorteio:hover .solution-card__art--stack picture:last-child {
  transform: translate3d(6px, 6px, 0) rotate(3deg) scale(1.01);
  filter: saturate(1.03) contrast(1.02);
}

.solution-card__art--cover img {
  inset: 14px;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  object-fit: cover;
  border-radius: 18px;
  opacity: 0.001;
  transition:
    opacity 0.72s ease,
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.35s ease;
  will-change: transform, opacity;
}

.solution-card--planta .solution-card__art--cover img {
  transform: translate3d(42px, 0, 0) scale(1.06);
}

.solution-card--planta.is-visible .solution-card__art--cover img {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  animation: planta-panel-float 7.2s ease-in-out 1.04s infinite;
}

.solution-card__art--phone-single {
  min-height: 320px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 205, 0, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.32)),
    linear-gradient(135deg, rgba(77, 25, 125, 0.08), rgba(255, 205, 0, 0.14));
}

.solution-card--resultados .solution-phone--single {
  left: 50%;
  right: auto;
  z-index: 2;
  width: 40%;
  top: 12px;
  bottom: -28px;
  transform: translate3d(-50%, 34px, 0) scale(0.96);
}

.solution-card--resultados .solution-phone--single img {
  object-fit: cover;
  object-position: center top;
  background: #f7f4ff;
}

.solution-card--resultados.is-visible .solution-phone--single {
  opacity: 1;
  transform: translate3d(-50%, 0, 0) scale(1);
  animation: resultados-phone-float 6.1s ease-in-out 1.02s infinite;
}

.solution-card--planta:hover .solution-card__art--cover img {
  filter: saturate(1.03) contrast(1.02);
}

.solution-card--resultados:hover .solution-phone--single {
  transform: translate3d(-50%, -8px, 0) scale(1.015);
  filter: saturate(1.03) contrast(1.02);
}

.solution-card__art--phones {
  min-height: 320px;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 205, 0, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.32)),
    linear-gradient(135deg, rgba(77, 25, 125, 0.08), rgba(255, 205, 0, 0.14));
}

.solution-phone {
  position: absolute;
  top: 10px;
  bottom: -20px;
  overflow: hidden;
  border-radius: 30px;
  border: 8px solid #171321;
  background: #171321;
  box-shadow: 0 26px 48px rgba(39, 24, 59, 0.2);
  opacity: 0.001;
  transition:
    opacity 0.72s ease,
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.35s ease;
  will-change: transform, opacity;
}

.solution-phone::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 2;
  width: 34%;
  height: 18px;
  border-radius: 999px;
  background: #0d0a14;
  transform: translateX(-50%);
}

.solution-phone picture,
.solution-phone img {
  display: block;
  width: 100%;
  height: 100%;
}

.solution-phone img {
  position: static;
  object-fit: cover;
  box-shadow: none;
}

.solution-phone--left,
.solution-phone--right {
  width: 31%;
}

.solution-phone--left {
  left: 6%;
  z-index: 1;
  transform: translate3d(-16px, 26px, 0) rotate(-9deg) scale(0.96);
}

.solution-phone--left img {
  object-fit: contain;
  object-position: center top;
  background: #f7f4ff;
}

.solution-phone--center {
  left: 50%;
  z-index: 3;
  width: 35%;
  transform: translate3d(-50%, 34px, 0) scale(0.96);
}

.solution-phone--center img {
  object-position: center top;
}

.solution-phone--right {
  right: 6%;
  z-index: 2;
  transform: translate3d(16px, 26px, 0) rotate(12deg) scale(0.96);
}

.solution-phone--right img {
  object-position: center top;
}

.solution-card--custos.is-visible .solution-phone--left {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(-7deg) scale(1);
  transition-delay: 0.05s;
}

.solution-card--custos.is-visible .solution-phone--center {
  opacity: 1;
  transform: translate3d(-50%, 0, 0) scale(1);
  transition-delay: 0.16s;
}

.solution-card--custos.is-visible .solution-phone--right {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(12deg) scale(1);
  transition-delay: 0.27s;
}

.solution-card--custos:hover .solution-phone--left {
  transform: translate3d(-4px, -6px, 0) rotate(-8deg) scale(1);
}

.solution-card--custos:hover .solution-phone--center {
  transform: translate3d(-50%, -8px, 0) scale(1.015);
}

.solution-card--custos:hover .solution-phone--right {
  transform: translate3d(4px, -6px, 0) rotate(13deg) scale(1);
}

.solution-card__copy {
  position: relative;
  z-index: 1;
}

.testimonial-slider {
  display: grid;
  gap: 26px;
}

.testimonial-slider__viewport {
  overflow: hidden;
}

.testimonial-slider__track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100% - 40px) / 3);
  min-height: 420px;
  display: grid;
  align-content: start;
  gap: 20px;
  padding: 28px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(255, 205, 0, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(247, 242, 255, 0.96), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(77, 25, 125, 0.1);
  box-shadow: var(--shadow);
}

.testimonial-card__avatar {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}

.testimonial-card__quote {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-soft);
}

.testimonial-card__name {
  font-family: "Satoshi", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}

.testimonial-card--cta {
  justify-content: center;
  background:
    radial-gradient(circle at top right, rgba(77, 25, 125, 0.18), transparent 42%),
    linear-gradient(180deg, #fffdf2, #ffffff);
}

.testimonial-card--cta h3 {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.1;
}

.testimonial-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.slider-button {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(77, 25, 125, 0.12);
  border-radius: 999px;
  background: #fff;
  color: var(--primary);
  font-size: 1.4rem;
  box-shadow: 0 16px 34px rgba(77, 25, 125, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.slider-button:hover,
.slider-button:focus-visible {
  transform: translateY(-2px);
  background: var(--bg-soft);
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(77, 25, 125, 0.22);
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    opacity 0.25s ease;
}

.slider-dot.is-active {
  transform: scale(1.2);
  background: var(--primary);
  opacity: 1;
}

.section--pricing {
  position: relative;
}

.pricing-shell {
  display: grid;
  gap: 30px;
}

.pricing-controls {
  max-width: 520px;
  margin: 0 auto;
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(77, 25, 125, 0.08);
  box-shadow: 0 20px 48px rgba(77, 25, 125, 0.07);
}

.pricing-controls__field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.pricing-controls__field label {
  font-family: "Satoshi", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.pricing-controls__field input {
  width: 96px;
  padding: 10px 12px;
  border: 2px solid #eee6ff;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  color: var(--primary);
}

.pricing-controls__field input:focus-visible {
  border-color: rgba(77, 25, 125, 0.32);
  outline: none;
}

.pricing-controls__range {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
}

.pricing-controls__step {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 10px 24px rgba(77, 25, 125, 0.24);
}

.pricing-controls__range input {
  width: 100%;
  accent-color: #6c5ce7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(77, 25, 125, 0.08);
  box-shadow: 0 18px 44px rgba(18, 16, 34, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(18, 16, 34, 0.12);
}

.pricing-card__header {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  background: var(--primary);
}

.pricing-card__header h3 {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.pricing-card--accent .pricing-card__header {
  background: linear-gradient(135deg, #4d197d, #7b4eb6);
}

.pricing-card--dark .pricing-card__header {
  background: linear-gradient(135deg, #3f1268, #4d197d);
}

.pricing-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 22px 22px;
}

.pricing-card__price {
  font-size: 1.85rem;
  font-weight: 800;
  color: #2d3436;
}

.pricing-card__price small,
.pricing-card__extra,
.pricing-card__minimum {
  display: block;
}

.pricing-card__price small {
  display: inline;
  font-size: 0.95rem;
  font-weight: 500;
  color: #6b7280;
}

.pricing-card__extra {
  margin-top: 8px;
  color: #636e72;
  font-size: 0.9rem;
}

.pricing-card__minimum {
  margin-top: 12px;
  color: #b2bec3;
  font-size: 0.78rem;
  font-style: italic;
}

.pricing-card__features {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 20px 0 0;
  list-style: none;
  border-top: 1px solid #f0f0f0;
}

.pricing-card__features li {
  position: relative;
  padding-left: 28px;
  color: #2d3436;
  line-height: 1.3;
}

.pricing-card__features li::before {
  position: absolute;
  left: 0;
  top: -1px;
}

.pricing-card__features li.is-check::before {
  content: "✅";
}

.pricing-card__features li.is-cross {
  opacity: 0.55;
}

.pricing-card__features li.is-cross::before {
  content: "❌";
}

.pricing-card__features li.is-warning::before {
  content: "⚠️";
}

.pricing__footer {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.site-footer {
  position: relative;
  margin-top: 28px;
  padding: 0 0 80px;
  background: var(--bg-deep);
  border-radius: 30px 30px 0 0;
  box-shadow: inset 0 0 55px rgba(197, 185, 246, 0.15);
  overflow: hidden;
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.site-footer::before {
  top: 0;
  left: 80px;
  width: 120px;
  height: 1px;
  box-shadow: 0 1px 180px 80px rgb(130, 88, 242);
}

.site-footer::after {
  bottom: 0;
  right: 0;
  width: 110px;
  height: 1px;
  box-shadow: 0 1px 180px 60px rgb(129, 87, 242);
}

.footer-marquee {
  overflow: hidden;
  padding: 14px 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.footer-marquee__track {
  display: flex;
  align-items: center;
  gap: 70px;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.footer-marquee__track img {
  height: 50px;
  width: auto;
  object-fit: contain;
  opacity: 0.96;
}

.footer-card {
  margin-top: 26px;
  padding: 40px 0 0;
}

.footer-brand {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 0 36px;
}

.footer-brand img {
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 34px;
  align-items: start;
}

.footer-address,
.footer-seal,
.footer-social {
  color: #dedcff;
}

.footer-address p,
.footer-seal p,
.footer-social p,
.footer-copy {
  margin: 0;
  line-height: 1.6;
}

.footer-seal a,
.footer-address a {
  color: #ffffff;
  font-weight: 700;
}

.footer-social__links {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}

.footer-social__links a {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    transform 0.25s ease,
    background-color 0.25s ease;
}

.footer-social__links a:hover,
.footer-social__links a:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
}

.footer-social__links svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.footer-copy {
  margin-top: 28px;
  color: #ebe4e4;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.35);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

[data-reveal] {
  opacity: 0.001;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes burocracia-back-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-7deg);
  }

  50% {
    transform: translate3d(10px, -8px, 0) rotate(-4.5deg);
  }
}

@keyframes burocracia-front-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(2deg);
  }

  50% {
    transform: translate3d(-10px, 8px, 0) rotate(4deg);
  }
}

@keyframes selecao-panel-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  }

  50% {
    transform: translate3d(0, -10px, 0) scale(1.018) rotate(-0.8deg);
  }
}

@keyframes planta-panel-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-20px, 0, 0) scale(1.035);
  }
}

@keyframes resultados-phone-float {
  0%,
  100% {
    transform: translate3d(-50%, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-50%, -14px, 0) scale(1.03);
  }
}

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

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1199px) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto auto;
    gap: 12px;
    justify-content: initial;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-height) + 8px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 8px;
    padding: 18px;
    background: #ffffff;
    border-radius: 28px;
    justify-items: stretch;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav a {
    justify-content: flex-start;
    min-height: 46px;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 4;
    justify-self: end;
  }

  .button--header {
    display: inline-flex;
    grid-column: 3;
    min-width: 0;
    min-height: 50px;
    padding: 0 18px;
    font-size: 0.92rem;
    justify-self: end;
  }

  .hero {
    padding-top: 12px;
  }

  .hero__content {
    padding-top: 22px;
  }

  .hero__media {
    width: min(100%, 92vw);
  }

  .section__intro--split {
    grid-template-columns: 1fr;
  }

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

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

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

  .solution-card,
  .solution-card--feature,
  .solution-card--compact,
  .solution-card--center,
  .solution-card--tall,
  .solution-card--wide {
    grid-column: span 1;
    min-height: 360px;
  }

  .testimonial-card {
    flex-basis: calc((100% - 20px) / 2);
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 809px) {
  :root {
    --container: min(100% - 28px, 100%);
  }

  .site-header {
    padding: 12px 0;
  }

  .site-header__inner {
    gap: 8px;
  }

  .brand {
    min-height: 48px;
    padding: 10px 16px;
  }

  .brand img {
    width: 104px;
    height: auto;
  }

  .button--header {
    min-height: 46px;
    padding: 0 16px;
    font-size: 0.88rem;
  }

  .hero::before {
    inset: 8px 0 0;
    border-radius: 0 0 24px 24px;
  }

  .hero__content {
    gap: 22px;
    padding-bottom: 24px;
  }

  .hero__copy {
    font-size: 0.96rem;
  }

  .hero__media {
    padding: 8px;
    border-radius: 18px;
  }

  .hero__media-glow {
    top: 40px;
    width: 278px;
  }

  .hero__video-shell {
    border-width: 2px;
  }

  .section {
    padding: 64px 0;
  }

  .problem-grid,
  .workflow-grid,
  .insights-grid,
  .solutions-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .faq-item {
    padding: 20px 18px;
  }

  .faq-item summary {
    font-size: 1.14rem;
  }

  .testimonial-card {
    flex-basis: 100%;
    min-height: 360px;
  }

  .testimonial-slider__controls {
    gap: 12px;
  }

  .slider-button {
    width: 48px;
    height: 48px;
  }

  .pricing-controls {
    padding: 18px;
  }

  .pricing-controls__range {
    gap: 10px;
  }

  .pricing-controls__step {
    width: 36px;
    height: 36px;
  }

  .footer-card {
    padding-top: 28px;
  }

  .footer-brand img {
    width: 183px;
    height: auto;
  }

  .footer-marquee__track {
    gap: 46px;
  }

  .footer-marquee__track img {
    height: 38px;
  }

  .solution-card__art--phones {
    min-height: 280px;
  }

  .solution-card__art--phone-single {
    min-height: 280px;
  }

  .solution-phone {
    top: 10px;
    bottom: -14px;
    border-width: 7px;
    border-radius: 26px;
  }

  .solution-phone::before {
    top: 10px;
    height: 16px;
  }

  .solution-phone--left,
  .solution-phone--right {
    width: 32%;
  }

  .solution-card--resultados .solution-phone--single {
    width: 46%;
    top: 10px;
    bottom: -20px;
  }

  .solution-phone--left {
    left: 3%;
  }

  .solution-phone--center {
    width: 39%;
  }

  .solution-phone--right {
    right: 3%;
  }

  .solution-card--custos.is-visible .solution-phone--left {
    transform: translate3d(0, 0, 0) rotate(-6deg) scale(1);
  }

  .solution-card--custos.is-visible .solution-phone--right {
    transform: translate3d(0, 0, 0) rotate(6deg) scale(1);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal],
  .hero__char {
    opacity: 1 !important;
    transform: none !important;
  }
}
