﻿:root {
  --primary: #5B1B5E;
  --primary-dark: #3A0F3D;
  --primary-light: #8E3A91;
  --primary-soft: #F4EAF6;
  --primary-border: #E8D4EA;
  --text-dark: #231124;
  --text-muted: #685D69;
  --text-light: #DCCEDF;
  --background: #FFFFFF;
  --surface: #FCF8FD;
  --bg: var(--background);
  --bg-muted: var(--surface);
  --card: var(--background);
  --ink: var(--text-dark);
  --plum: var(--primary-dark);
  --magenta: var(--primary);
  --magenta-dark: var(--primary-dark);
  --rose: var(--primary-soft);
  --line: var(--primary-border);
  --muted: var(--text-muted);
  --red: #B34A58;
  --green: #15835d;
  --green-bg: #e6f7f1;
  --blue: #2767d7;
  --surface-strong: #F7EFF8;
  --shadow-sm: 0 3px 12px rgba(42, 16, 43, 0.045);
  --shadow: 0 20px 52px rgba(42, 16, 43, 0.075);
  --shadow-lg: 0 34px 76px rgba(42, 16, 43, 0.13);
  --radius: 26px;
  --radius-md: 18px;
  --container: 1220px;
  --font: "Plus Jakarta Sans", Arial, sans-serif;
  --display: "Manrope", "Plus Jakarta Sans", Arial, sans-serif;
  --spacing-section: clamp(64px, 5.5vw, 96px);
  --spacing-grid: clamp(38px, 4vw, 56px);
  --shadow-hover: 0 20px 48px rgba(42, 16, 43, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 36%, var(--bg) 100%);
  color: var(--ink);
  font-family: var(--font);
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.65;
}

h1 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.05em;
  font-size: clamp(3.5rem, 4.5vw, 4rem); /* 56px a 64px */
  margin: 0;
  color: var(--plum);
}

h2 {
  font-family: var(--display);
  font-weight: 750;
  letter-spacing: -0.04em;
  font-size: clamp(2.5rem, 3.2vw, 3rem); /* 40px a 48px */
  margin: 0;
  color: var(--plum);
}

h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: clamp(1.5rem, 2.2vw, 2rem); /* 24px a 32px */
  margin: 0;
  color: var(--plum);
}

section[id] {
  scroll-margin-top: 84px;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
.table-wrap:focus-visible {
  outline: 3px solid rgba(91, 27, 94, 0.82);
  outline-offset: 3px;
}

.container {
  width: min(var(--container), calc(100% - 64px));
  margin-inline: auto;
}

.section {
  padding: var(--spacing-section) 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 50;
  padding: 12px 16px;
  border-radius: 10px;
  color: white;
  background: var(--plum);
  font-size: 14px;
  font-weight: 700;
  transform: translateY(calc(-100% - 18px));
  transition: transform 0.18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.header {
  height: 80px;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.header.is-scrolled {
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 48px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand__logo {
  display: block;
  width: 126px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

.nav a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: #554b55;
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 2px;
  width: 100%;
  background: var(--magenta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--magenta);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.nav .nav__cta {
  display: none;
}

.header__cta {
  min-height: 48px;
  padding: 13px 23px;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: white;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: var(--plum);
  transition: transform 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-radius: 16px;
  letter-spacing: -0.015em;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.button:hover svg {
  transform: translateX(3px);
}

.button--large {
  min-height: 58px;
  padding: 0 30px;
}

.button--primary {
  background: var(--magenta);
  color: white;
  box-shadow: 0 15px 30px rgba(91, 27, 94, 0.2);
}

.button--primary:hover {
  background: var(--magenta-dark);
  box-shadow: 0 18px 32px rgba(91, 27, 94, 0.27);
}

.button--secondary {
  color: var(--plum);
  border: 1px solid var(--line);
  background: white;
}

.button--secondary:hover {
  border-color: rgba(91, 27, 94, 0.3);
  box-shadow: var(--shadow-sm);
}

.button--light {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.button--light:hover {
  background: rgba(255, 255, 255, 0.14);
}

.button--full {
  width: 100%;
  min-height: 54px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 108px;
  border-bottom: 1px solid rgba(232, 212, 234, 0.72);
  background:
    radial-gradient(circle at 74% 28%, rgba(91, 27, 94, 0.06), transparent 31%),
    linear-gradient(180deg, var(--background) 0%, var(--surface) 100%);
}

.hero__wash {
  position: absolute;
  width: 690px;
  height: 650px;
  right: -230px;
  top: -150px;
  background: radial-gradient(circle, rgba(91, 27, 94, 0.1), transparent 68%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: clamp(54px, 5vw, 76px);
  align-items: center;
  min-width: 0;
}

.hero__content,
.section-copy,
.section-heading,
.solution-block,
.price-card,
.problem__layout > *,
.advantages__layout > *,
.addons__grid > *,
.faq__layout > * {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 38px;
  padding: 0 16px;
  color: var(--magenta);
  background: var(--rose);
  border: 1px solid var(--primary-border);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  margin-bottom: 28px;
}

.eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--magenta);
}

.hero h1 {
  max-width: 610px;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.07;
  font-size: clamp(3.5rem, 4.5vw, 4rem);
  margin-bottom: 28px;
}

.hero h1 span {
  color: var(--magenta);
}

.hero__lead {
  max-width: 570px;
  font-size: 17px;
  line-height: 1.72;
  margin-bottom: 38px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 38px;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-sm);
  margin-bottom: 27px;
}

.trust-bar span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text-muted);
  font-size: 12.5px;
  font-weight: 600;
}

.trust-bar svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--green);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__support {
  max-width: 555px;
  font-size: 14px;
  line-height: 1.7;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--magenta) 0%, var(--plum) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* MICRO PROVA SOCIAL */
.hero-micro-social {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(232, 212, 234, 0.8);
  padding: 6px 14px 6px 8px;
  border-radius: 99px;
  backdrop-filter: blur(8px);
  margin-bottom: 24px;
}

.hero-micro-social__avatars {
  display: flex;
  align-items: center;
}

.avatar-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--magenta);
  color: white;
  font-size: 8px;
  font-weight: 700;
  display: grid;
  place-items: center;
  border: 2px solid white;
}

.avatar-dot--2 {
  background: var(--plum);
  margin-left: -8px;
}

.avatar-dot--3 {
  background: var(--green);
  margin-left: -8px;
}

.hero-micro-social__text {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
}

/* MOCKUP PRINCIPAL DO HERO */
.product-visual {
  position: relative;
  min-width: 0;
  min-height: 540px;
  padding: 30px 0 18px;
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 3% 4% 7% 8%;
  border-radius: 44px;
  background: radial-gradient(circle at 55% 44%, rgba(91, 27, 94, 0.1), rgba(91, 27, 94, 0.025) 56%, transparent 76%);
}

.hero-panel {
  position: absolute;
  top: 62px;
  right: 0;
  width: min(475px, 86%);
  padding: 20px;
  border: 1px solid rgba(91, 27, 94, 0.1);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px rgba(42, 18, 34, 0.09);
}

.hero-panel__top,
.hero-panel__brand,
.hero-panel__status,
.hero-panel__footer {
  display: flex;
  align-items: center;
}

.hero-panel__top {
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--primary-border);
}

.hero-panel__brand {
  gap: 10px;
}

.hero-panel__brand > img {
  display: block;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}

.hero-panel__brand div {
  display: grid;
  gap: 1px;
}

.hero-panel__brand strong {
  color: var(--plum);
  font-size: 12px;
}

.hero-panel__brand small,
.hero-panel__footer small {
  color: var(--muted);
  font-size: 10px;
}

.hero-panel__status {
  gap: 6px;
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
}

.hero-panel__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: hero-status-pulse 2.8s ease-in-out infinite;
}

.hero-panel__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.hero-panel__metric {
  display: grid;
  gap: 6px;
  min-height: 120px;
  padding: 12px;
  border: 1px solid var(--primary-border);
  border-radius: 13px;
  background: var(--surface);
}

.hero-panel__metric svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--magenta);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-panel__metric small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-panel__metric strong {
  color: var(--plum);
  font-size: 16px;
  letter-spacing: -0.03em;
}

.hero-panel__metric span {
  color: var(--muted);
  font-size: 10px;
}

.hero-panel__footer {
  gap: 10px;
  padding: 12px 13px;
  border-radius: 12px;
  background: var(--primary-soft);
}

.hero-panel__check {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: var(--green);
  background: var(--green-bg);
  font-size: 13px;
  font-weight: 800;
}

.hero-panel__footer div {
  display: grid;
  gap: 2px;
}

.hero-panel__footer strong {
  color: var(--plum);
  font-size: 11px;
}

.hero-phone {
  --hero-phone-tilt: -0.7deg;
  position: absolute;
  bottom: 20px;
  left: 10px;
  z-index: 4;
  width: 188px;
  height: 360px;
  padding: 7px;
  border-radius: 30px;
  background: #201623;
  box-shadow: 0 24px 56px rgba(42, 18, 34, 0.2);
  transform: rotate(var(--hero-phone-tilt));
  animation: hero-phone-float 6.2s ease-in-out infinite;
}

.hero-phone__screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 23px;
  background: white;
}

.hero-phone__sensor {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 35px;
  height: 4px;
  border-radius: 999px;
  background: #e2dce3;
  transform: translateX(-50%);
}

.hero-phone__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 27px 13px 11px;
  border-bottom: 1px solid var(--primary-border);
}

.hero-phone__brand {
  color: var(--plum);
  font-size: 10px;
  font-weight: 800;
}

.hero-phone__status {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--green);
  font-size: 8px;
  font-weight: 700;
}

.hero-phone__status::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  animation: hero-status-pulse 2.8s ease-in-out 0.45s infinite;
}

.hero-phone__body {
  display: grid;
  gap: 11px;
  padding: 17px 13px;
}

.hero-phone__body small {
  color: var(--magenta);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-phone__body p {
  color: var(--plum);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.hero-phone__preview {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: 47px 36px;
  gap: 6px;
}

.hero-phone__preview span {
  border-radius: 8px;
  background: var(--primary-soft);
}

.hero-phone__preview span:first-child {
  grid-row: span 2;
  background: linear-gradient(145deg, #ead7eb, var(--primary-soft));
}

.hero-phone__cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  min-height: 33px;
  margin-top: 6px;
  border-radius: 9px;
  color: white;
  background: var(--green);
  font-size: 9px;
  font-weight: 700;
}

.hero-phone__cta svg,
.hero-chat svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-chat {
  position: absolute;
  right: 14px;
  bottom: 22px;
  z-index: 5;
  width: 218px;
  padding: 12px;
  border: 1px solid var(--primary-border);
  border-radius: 15px;
  background: white;
  box-shadow: 0 16px 38px rgba(42, 18, 34, 0.09);
  animation: hero-card-float 5.4s ease-in-out 1.1s infinite;
}

.hero-chat__head {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 9px;
  color: var(--green);
}

.hero-chat__head strong {
  color: var(--plum);
  font-size: 10px;
}

.hero-chat p {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 6px;
  padding: 7px 9px;
  border-radius: 9px 9px 9px 3px;
  color: var(--muted);
  background: var(--surface);
  font-size: 9px;
  line-height: 1.35;
}

.hero-chat .hero-chat__reply {
  margin: 0 0 0 auto;
  border-radius: 9px 9px 3px 9px;
  color: #125a41;
  background: var(--green-bg);
}

.hero-feedback {
  position: absolute;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 12px;
  border: 1px solid var(--primary-border);
  border-radius: 99px;
  color: var(--plum);
  background: white;
  box-shadow: 0 10px 28px rgba(42, 18, 34, 0.07);
  font-size: 10px;
  font-weight: 700;
}

.hero-feedback span {
  color: var(--green);
  font-size: 12px;
}

.hero-feedback--order {
  top: 19px;
  right: 24px;
  animation: hero-chip-float 4.8s ease-in-out infinite;
}

.hero-feedback--published {
  top: 112px;
  left: 0;
  animation: hero-chip-float 5s ease-in-out -0.8s infinite;
}

.hero-feedback--connected {
  top: 274px;
  right: -8px;
  animation: hero-chip-float 5.2s ease-in-out -1.6s infinite;
}

@keyframes hero-phone-float {
  0%,
  100% {
    transform: translateY(0) rotate(var(--hero-phone-tilt));
  }

  50% {
    transform: translateY(-7px) rotate(var(--hero-phone-tilt));
  }
}

@keyframes hero-card-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes hero-chip-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

@keyframes hero-status-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.55;
    transform: scale(0.85);
  }
}

.section-index {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--magenta);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.section-copy h2,
.section-heading h2,
.advantages__intro h2 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 3.2vw, 3rem);
  font-weight: 750;
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin-bottom: 23px;
  background: linear-gradient(135deg, var(--plum) 30%, var(--text-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-copy p,
.section-heading p {
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.65;
}

.section-heading {
  max-width: 745px;
  margin-bottom: 48px;
}

.section-heading--center {
  text-align: center;
  margin: 0 auto 68px;
}

.problem {
  background:
    radial-gradient(circle at 89% 18%, rgba(91, 27, 94, 0.05), transparent 22%),
    var(--bg-muted);
  border-top: 1px solid var(--primary-border);
  border-bottom: 1px solid var(--primary-border);
}

.problem__layout {
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  gap: clamp(70px, 7vw, 98px);
  align-items: start;
}

/* Nova Estrutura de CenÃ¡rio / Fluxo SaaS */
.scenario-flow {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* BLOCO 1 â€” Destaque Principal (Hero Block) */
.flow-block--hero {
  background: white;
  border: 1px solid var(--primary-border);
  border-left: 5px solid var(--magenta);
  border-radius: 18px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.flow-block--hero:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.flow-block__badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 99px;
  background: var(--rose);
  color: var(--magenta);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.flow-block__title {
  font-family: var(--display);
  font-size: 21px;
  color: var(--plum);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.flow-block__desc {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* Blocos de Grupo (Atendimento & OrganizaÃ§Ã£o) */
.flow-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.flow-group {
  background: white;
  border: 1px solid var(--primary-border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(42, 18, 34, 0.02);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.flow-group:hover {
  transform: translateY(-2px);
  border-color: rgba(91, 27, 94, 0.2);
}

.flow-group__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--primary-border);
  padding-bottom: 12px;
}

.flow-group__icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--surface);
  color: var(--plum);
  transition: background 0.3s ease, color 0.3s ease;
}

.flow-group:hover .flow-group__icon {
  background: var(--plum);
  color: white;
}

.flow-group__icon svg {
  width: 18px;
  height: 18px;
}

.flow-group__header h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--plum);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.flow-group__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.flow-group__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: #4f4650;
  line-height: 1.5;
}

.flow-group__bullet {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--primary); /* Acentua o bullet sem sobrecarregar */
  margin-top: 2px;
  opacity: 0.75;
}

/* BLOCO 4 â€” Insight Banner */
.flow-insight {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--primary-soft);
  border: 1px dashed rgba(91, 27, 94, 0.25);
  border-radius: 16px;
  padding: 20px;
  position: relative;
}

.flow-insight__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--magenta);
}

.flow-insight__icon svg {
  width: 16px;
  height: 16px;
}

.flow-insight__text {
  font-size: 13.5px;
  color: var(--plum);
  font-weight: 600;
  line-height: 1.5;
}

/* BLOCO 5 â€” Ponte para SoluÃ§Ã£o (Premium SaaS visual) */
.flow-solution {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, var(--plum) 0%, #260928 100%);
  color: white;
  border-radius: 18px;
  padding: 26px 30px;
  box-shadow: 0 10px 30px rgba(58, 18, 48, 0.15);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.flow-solution:hover {
  transform: translateY(-2px);
}

.flow-solution__visual {
  flex-shrink: 0;
  position: relative;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.flow-solution__icon {
  width: 22px;
  height: 22px;
  color: #fff;
  z-index: 2;
}

.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: pulse-grow 2.5s infinite ease-in-out;
  z-index: 1;
}

@keyframes pulse-grow {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.8;
  }
}

.flow-solution__content {
  flex: 1;
}

.flow-solution__text {
  color: #f7eff4;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.6;
}

.solution {
  background: white;
}

.solution-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  max-width: var(--container);
}

.solution-block {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 530px;
  padding: 28px 27px 25px;
  border: 1px solid var(--primary-border);
  border-radius: 22px;
  background: var(--background);
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(42, 18, 34, 0.025);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.solution-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(42, 18, 34, 0.065);
}

.solution-block > span {
  color: #b49ca9;
  font-size: 11px;
  font-weight: 700;
}

.solution-block h3 {
  font-size: 22px;
  line-height: 1.22;
  letter-spacing: -0.045em;
  margin: 16px 0 11px;
}

.solution-block p {
  font-size: 14px;
  line-height: 1.65;
}

.solution-block .line-icon {
  display: grid;
  place-items: center;
  height: 42px;
  width: 42px;
  margin-bottom: 22px;
  color: var(--magenta);
  background: var(--rose);
  border-radius: 11px;
}

.solution-block .line-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.detail-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.payment-fragment {
  display: grid;
  gap: 13px;
  margin-top: auto;
  padding: 16px;
  border: 1px solid var(--primary-border);
  border-radius: 13px;
  background: var(--surface);
  box-shadow: 0 8px 20px rgba(42, 18, 34, 0.035);
}

.payment-fragment__header {
  display: flex;
  align-items: center;
  gap: 11px;
}

.payment-fragment__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: var(--magenta);
  background: var(--rose);
}

.payment-fragment__icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.payment-fragment__header div {
  display: grid;
  gap: 2px;
}

.payment-fragment__header strong {
  color: var(--plum);
  font-size: 11px;
  font-weight: 700;
}

.payment-fragment__header small {
  color: #837682;
  font-size: 9px;
  font-weight: 600;
}

.payment-fragment__summary {
  display: grid;
  gap: 4px;
  padding: 13px;
  border-radius: 9px;
  background: white;
}

.payment-fragment__summary span {
  color: var(--magenta);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.payment-fragment__summary strong {
  color: var(--plum);
  font-size: 14px;
  line-height: 1.35;
}

.payment-fragment__status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #81747d;
  font-size: 9px;
  font-weight: 600;
}

.payment-fragment__status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.solution-block--whats {
  background: linear-gradient(155deg, var(--primary-dark) 0%, #521954 100%);
  border-color: #461248;
}

.solution-block--whats .line-icon {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.solution-block--whats h3,
.solution-block--whats p {
  color: white;
}

.solution-block--whats > span {
  color: #dfcad6;
}

.whats-fragment {
  display: grid;
  gap: 9px;
  margin-top: auto;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.055);
}

.whats-fragment__header {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 3px;
  color: white;
  font-size: 9px;
}

.whats-fragment__avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.17);
}

.whats-fragment__header small {
  margin-left: auto;
  color: #bde7d6;
  font-size: 8px;
}

.whats-fragment__bubble {
  justify-self: start;
  max-width: 88%;
  padding: 8px 9px;
  border-radius: 10px 10px 10px 3px;
  color: #f9f3f7;
  background: rgba(255, 255, 255, 0.1);
  font-size: 9px;
  line-height: 1.45;
}

.whats-fragment__bubble--reply {
  justify-self: end;
  color: #f3fff9;
  border-radius: 10px 10px 3px 10px;
  background: rgba(27, 145, 103, 0.52);
}

.whats-fragment__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 3px;
  padding: 9px;
  border-radius: 8px;
  color: white;
  background: rgba(21, 131, 93, 0.9);
  font-size: 9px;
  font-weight: 700;
}

.whats-fragment__cta svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.panel-snippet {
  display: grid;
  gap: 11px;
  margin-top: auto;
  padding: 13px;
  background: white;
  border: 1px solid var(--primary-border);
  border-radius: 13px;
  box-shadow: 0 8px 20px rgba(42, 18, 34, 0.035);
}

.panel-snippet__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  color: var(--plum);
}

.panel-snippet__header small {
  color: var(--green);
  font-size: 8px;
  font-weight: 600;
}

.panel-snippet__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
}

.panel-snippet__metrics div {
  display: grid;
  gap: 5px;
  padding: 8px 6px;
  border-radius: 8px;
  background: var(--surface);
}

.panel-snippet__metrics span {
  display: block;
  color: #877b84;
  font-size: 7px;
}

.panel-snippet__metrics strong {
  font-size: 9px;
  color: var(--plum);
}

.panel-snippet__metrics div:first-child strong {
  color: var(--green);
}

.panel-snippet__activity {
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 8px;
  padding: 8px 9px;
  color: #5f535c;
  background: var(--green-bg);
  font-size: 9px;
}

.panel-snippet__activity span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.panel-snippet__activity small {
  margin-left: auto;
  color: var(--green);
  font-size: 8px;
}

.portfolio {
  background: var(--surface);
  border-block: 1px solid rgba(232, 212, 234, 0.62);
}

.portfolio__heading {
  margin-bottom: clamp(38px, 4vw, 50px);
}

.portfolio__heading p {
  max-width: 680px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.portfolio-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--primary-border);
  border-radius: 22px;
  background: white;
  box-shadow: 0 8px 25px rgba(42, 18, 34, 0.04);
  transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(91, 27, 94, 0.22);
  box-shadow: 0 18px 40px rgba(42, 18, 34, 0.075);
}

.portfolio-card__preview {
  aspect-ratio: 1.48;
  overflow: hidden;
  background: var(--primary-soft);
  border-bottom: 1px solid var(--primary-border);
}

.portfolio-card__preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.36s ease;
}

.portfolio-card:hover .portfolio-card__preview img {
  transform: scale(1.025);
}

.portfolio-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 25px 24px 24px;
}

.portfolio-card__type {
  margin-bottom: 13px;
  color: var(--magenta);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portfolio-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.25;
}

.portfolio-card p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.portfolio-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--magenta);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease, gap 0.2s ease;
}

.portfolio-card__link:hover {
  gap: 11px;
  color: var(--plum);
}

.portfolio-card__link svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.advantages {
  background:
    linear-gradient(90deg, transparent 0%, transparent 46%, rgba(91, 27, 94, 0.028) 46%, transparent 100%),
    var(--surface);
  border-block: 1px solid rgba(232, 212, 234, 0.54);
}

.trust {
  background: var(--surface);
  border-block: 1px solid var(--primary-border);
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.trust-card {
  padding: 25px 22px;
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-md);
  background: var(--background);
  box-shadow: var(--shadow-sm);
}

.trust-card > span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--primary);
  background: var(--primary-soft);
  font-weight: 800;
}

.trust-card h3 {
  margin-bottom: 9px;
  color: var(--primary-dark);
  font-size: 17px;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.trust-card p {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.65;
}

.advantages__layout {
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  gap: clamp(76px, 8vw, 108px);
}

.advantages__intro {
  position: sticky;
  top: 123px;
  align-self: start;
}


.advantage-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 44px;
}

.advantage-list article {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.detail-icon {
  flex: 0 0 43px;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: var(--magenta);
  border-radius: 11px;
  background: white;
  border: 1px solid var(--primary-border);
  transition: background 0.28s cubic-bezier(0.16, 1, 0.3, 1), color 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.28s cubic-bezier(0.16, 1, 0.3, 1), transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.advantage-list article:hover .detail-icon {
  color: white;
  background: var(--magenta);
  border-color: var(--magenta);
  transform: translateY(-4px) scale(1.08) rotate(6deg);
  box-shadow: 0 8px 18px rgba(91, 27, 94, 0.2);
}

.detail-icon svg {
  width: 20px;
}

.advantage-list h3 {
  font-size: 17px;
  letter-spacing: -0.03em;
  margin: 1px 0 8px;
}

.advantage-list p {
  font-size: 14px;
  line-height: 1.68;
}

.pricing {
  background:
    radial-gradient(circle at 50% 23%, rgba(91, 27, 94, 0.05), transparent 29%),
    var(--bg);
}

.pricing__budget-note {
  width: fit-content;
  margin: -39px auto 48px;
  padding: 11px 18px;
  border: 1px solid var(--primary-border);
  border-radius: 999px;
  color: var(--text-muted);
  background: var(--surface);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 22px;
}

.price-card {
  position: relative;
  padding: 35px 31px 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(58, 18, 48, 0.08);
  background: white;
  box-shadow: 0 10px 32px rgba(42, 18, 34, 0.035);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.price-card:not(.price-card--featured):hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 45px rgba(42, 18, 34, 0.08);
  border-color: rgba(91, 27, 94, 0.2);
}

.price-card--featured {
  transform: translateY(-13px);
  border: 2px solid transparent;
  background-image: linear-gradient(white, white), linear-gradient(135deg, var(--magenta) 0%, var(--plum) 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  padding-top: 50px;
  box-shadow: 0 29px 62px rgba(91, 27, 94, 0.13);
}

.featured-label {
  position: absolute;
  top: -1px;
  left: 30px;
  right: 30px;
  height: 34px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--magenta);
  border-radius: 0 0 12px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.plan-badge {
  display: inline-flex;
  height: 29px;
  align-items: center;
  border-radius: 99px;
  padding: 0 11px;
  color: var(--magenta);
  background: var(--rose);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.price-card h3 {
  font-size: 27px;
  letter-spacing: -0.055em;
  margin: 23px 0 14px;
}

.price-card__header p {
  font-size: 14px;
  line-height: 1.65;
  min-height: 72px;
}

.price {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 30px 0 27px;
  padding: 24px 0 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 116px;
  gap: 10px;
}

.price__installments {
  color: #69606a;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0;
}

.price__value {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  color: var(--plum);
  font-size: 48px;
  letter-spacing: -0.06em;
  line-height: 1;
  font-weight: 850;
  white-space: nowrap;
}

.price__value small {
  color: #69606a;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
}

.price__total {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.features {
  min-height: 310px;
  display: grid;
  align-content: start;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #4f4650;
  font-size: 14px;
  line-height: 1.5;
}

.feature-check {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  color: var(--green);
  margin-top: 2px;
}

.renewal {
  min-height: 52px;
  margin: 0 0 22px;
  padding: 14px 15px;
  color: #5f5560;
  background: var(--primary-soft);
  border-radius: 12px;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.55;
}

.conditional {
  display: block;
  color: #665d66;
  font-size: 12px;
  margin-top: 12px;
}

.plans-note {
  margin: 44px auto 0;
  max-width: 880px;
  text-align: center;
  color: #766b75;
  font-size: 13px;
}

.addons {
  background:
    radial-gradient(circle at 82% 40%, rgba(142, 58, 145, 0.25), transparent 28%),
    linear-gradient(125deg, #321035, #48144A);
}

.addons__grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: clamp(64px, 7vw, 94px);
  align-items: center;
}

.addons .section-index {
  color: #D8B7DB;
}

.addons h2 {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
  background-clip: unset;
}

.addons p {
  color: white;
  opacity: 0.75;
}

.addon-helper {
  margin-top: 38px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  color: #e6dae2;
  font-size: 14px;
  line-height: 1.65;
}

.addon-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-content: center;
}

.addon-cloud span {
  padding: 17px 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 15px;
  color: #f9f1f5;
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.2s ease, background 0.2s ease;
}

.addon-cloud span:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.11);
}

.addon-cloud span.large {
  padding-inline: 25px;
}

.addon-cloud span.accent {
  color: var(--plum);
  background: white;
}

.process {
  padding-bottom: var(--spacing-section);
  background: white;
}

.journey {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: var(--container);
  counter-reset: step;
  gap: 18px;
}

.journey li {
  position: relative;
  min-height: 255px;
  padding: 32px 23px;
  border: 1px solid rgba(232, 212, 234, 0.62); /* Borda mais fina, suave e delicada */
  border-radius: 22px;
  background: white;
  opacity: 0.45; /* Efeito inativo suave por padrÃ£o */
  transform: translateY(6px);
  transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(42, 18, 34, 0.015); /* Sombra extremamente suave e discreta */
}

/* AnimaÃ§Ã£o sequencial ultrafluida (DuraÃ§Ã£o total de ponta a ponta ~1.4s) */
.journey.is-visible li:nth-child(1) { animation: journeyCardActive 0.2s ease forwards; }
.journey.is-visible li:not(:last-child):nth-child(1)::after { animation: journeyLineActiveHorizontal 0.2s ease 0.2s forwards; }
.journey.is-visible li:not(:last-child):nth-child(1)::before { animation: journeyArrowActive 0.05s ease 0.35s forwards; }

.journey.is-visible li:nth-child(2) { animation: journeyCardActive 0.2s ease 0.3s forwards; }
.journey.is-visible li:not(:last-child):nth-child(2)::after { animation: journeyLineActiveHorizontal 0.2s ease 0.5s forwards; }
.journey.is-visible li:not(:last-child):nth-child(2)::before { animation: journeyArrowActive 0.05s ease 0.65s forwards; }

.journey.is-visible li:nth-child(3) { animation: journeyCardActive 0.2s ease 0.6s forwards; }
.journey.is-visible li:not(:last-child):nth-child(3)::after { animation: journeyLineActiveHorizontal 0.2s ease 0.8s forwards; }
.journey.is-visible li:not(:last-child):nth-child(3)::before { animation: journeyArrowActive 0.05s ease 0.95s forwards; }

.journey.is-visible li:nth-child(4) { animation: journeyCardActive 0.2s ease 0.9s forwards; }
.journey.is-visible li:not(:last-child):nth-child(4)::after { animation: journeyLineActiveHorizontal 0.2s ease 1.1s forwards; }
.journey.is-visible li:not(:last-child):nth-child(4)::before { animation: journeyArrowActive 0.05s ease 1.25s forwards; }

.journey.is-visible li:nth-child(5) { animation: journeyCardActive 0.2s ease 1.2s forwards; }

@keyframes journeyCardActive {
  100% {
    opacity: 1;
    transform: translateY(0);
    border-color: rgba(91, 27, 94, 0.12); /* Borda ativa ultra sutil */
    box-shadow: 0 6px 20px rgba(42, 18, 34, 0.02); /* Sombra ativa muito delicada */
  }
}

/* Hover refinado e responsivo */
.journey li:hover {
  border-color: rgba(91, 27, 94, 0.28) !important;
  box-shadow: 0 10px 24px rgba(42, 18, 34, 0.04) !important;
  transform: translateY(-3px) !important; /* Deslocamento de -3px */
}

/* Conectores horizontais desktop centralizados no espaÃ§o entre cards. */
.journey li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  width: 10px;
  background: linear-gradient(to right, var(--magenta) 50%, var(--line) 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  z-index: 1;
}

@keyframes journeyLineActiveHorizontal {
  100% {
    background-position: left bottom;
  }
}

.journey li:not(:last-child)::before {
  content: "";
  position: absolute;
  right: -13px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 6px; /* Seta mais delicada e menor */
  height: 6px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  z-index: 2;
  transition: border-color 0.3s ease;
}

.journey li:hover::before {
  border-color: var(--magenta) !important; /* Seta acompanha visualmente o hover acendendo */
}

@keyframes journeyArrowActive {
  100% {
    border-color: var(--magenta);
  }
}

.journey__number {
  display: inline-block;
  color: var(--magenta);
  font-size: 10px; /* Menor e mais discreta */
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 22px; /* Margem reduzida para proporÃ§Ã£o visual */
  opacity: 0.8;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), color 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.journey li:hover .journey__number {
  transform: scale(1.05) translateX(1px);
  color: var(--plum);
}

.journey h3 {
  font-size: 20px; /* Um pouco mais compacto para manter a altura geral */
  font-weight: 800; /* TÃ­tulo mais forte */
  color: var(--plum);
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

.journey p {
  max-width: 249px;
  font-size: 13.5px; /* Fonte menor e refinada */
  line-height: 1.6; /* Line-height otimizado para legibilidade */
  color: var(--muted);
}

.comparison {
  padding-top: clamp(104px, 8vw, 120px);
  background:
    linear-gradient(180deg, var(--surface) 0%, var(--background) 100%);
}

.comparison__hint {
  display: none;
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--primary-border);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 14px 36px rgba(42, 18, 34, 0.045);
}

.table-wrap::-webkit-scrollbar {
  height: 6px;
}

.table-wrap::-webkit-scrollbar-track {
  background: transparent;
}

.table-wrap::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 99px;
}

.table-wrap::-webkit-scrollbar-thumb:hover {
  background: var(--magenta);
}

table {
  border-collapse: collapse;
  width: 100%;
  min-width: 640px;
  text-align: left;
}

th,
td {
  padding: 19px 26px;
  border-bottom: 1px solid var(--primary-border);
  font-size: 14px;
}

thead th {
  padding-top: 24px;
  padding-bottom: 24px;
  color: var(--plum);
  font-size: 16px;
}

thead th:first-child {
  width: 42%;
}

thead .is-pro {
  color: var(--magenta);
  background: var(--rose);
}

tbody th {
  color: #564d56;
  font-weight: 600;
}

tbody td {
  color: #655b64;
}

tbody td:nth-child(3) {
  background: rgba(244, 234, 246, 0.58);
}

tr:last-child th,
tr:last-child td {
  border-bottom: 0;
}

.check {
  color: var(--green);
  font-weight: 700;
}

.faq__layout {
  display: grid;
  grid-template-columns: minmax(365px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(56px, 5.4vw, 72px);
  align-items: start;
  max-width: 1180px;
}

.faq__intro {
  position: sticky;
  top: 106px;
  max-width: 400px;
}

.faq__intro .section-index {
  margin-bottom: 18px;
}

.faq__intro h2 {
  font-size: clamp(2.2rem, 3.2vw, 2.8rem);
}

.faq__intro > p {
  max-width: 385px;
  font-size: 16px;
  line-height: 1.7;
}

.faq__support-card {
  display: grid;
  gap: 10px;
  max-width: 350px;
  margin-top: 42px;
  padding: 19px 20px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.faq__support-label {
  color: var(--magenta);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faq__support-text {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.faq__support-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 44px;
  margin-top: 3px;
  padding: 10px 13px;
  color: var(--plum);
  background: var(--rose);
  border: 1px solid var(--primary-border);
  border-radius: 12px;
  font-size: 12.5px;
  font-weight: 700;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.faq__support-link svg {
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  color: var(--magenta);
  transform: rotate(90deg);
}

.faq__support-link:hover {
  background: #EEE0F0;
  border-color: var(--primary-border);
}

.accordion {
  display: grid;
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.accordion details {
  overflow: hidden;
  background: transparent;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease;
}

.accordion details[open] {
  background: rgba(244, 234, 246, 0.6);
}

.accordion summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 24px 54px 24px 8px;
  cursor: pointer;
  list-style: none;
  color: var(--plum);
  font-size: 16px;
  font-weight: 600;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::before,
.accordion summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 16px;
  height: 1.5px;
  background: var(--magenta);
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}

.accordion summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.accordion details[open] summary::after {
  transform: translateY(-50%) rotate(0deg);
}

.accordion details p {
  padding: 2px 54px 24px 8px;
  max-width: 650px;
  font-size: 15px;
  line-height: 1.6;
}

.faq-badge {
  flex-shrink: 0;
  margin-left: 2px;
  padding: 4px 7px;
  color: var(--magenta);
  background: var(--rose);
  border-radius: 5px;
  font-family: var(--font);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: uppercase;
}

.faq-badge--payment {
  color: var(--green);
  background: var(--green-bg);
}

.closing {
  padding-top: 42px;
}

.closing__card {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  padding: 88px 36px 84px;
  text-align: center;
  background: var(--plum);
}

.closing__card::before,
.closing__card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.closing__card::before {
  right: -110px;
  top: -190px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(142, 58, 145, 0.42), transparent 67%);
}

.closing__card::after {
  left: -130px;
  bottom: -210px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(142, 58, 145, 0.24), transparent 68%);
}

.closing__card > * {
  position: relative;
  z-index: 1;
}

.closing__card .section-index {
  color: #D8B7DB;
}

.closing__card h2 {
  max-width: 690px;
  margin: 0 auto 22px;
  color: white;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 3.35rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.06em;
}

.closing__card p {
  max-width: 610px;
  margin: 0 auto 28px;
  font-size: 17px;
  color: var(--text-light);
}

.closing__trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 25px;
  list-style: none;
  margin: 0 auto 38px;
  padding: 0;
  color: #F4EAF6;
  font-size: 14px;
  font-weight: 600;
}

.closing__trust li::before {
  content: "âœ“";
  margin-right: 8px;
  color: #CBA9CE;
}

.closing__actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 34px;
}

.closing__card small {
  color: #cfbdc9;
  font-size: 13px;
}

.footer {
  padding: 0 0 46px;
}

.footer__panel {
  display: grid;
  grid-template-columns: minmax(270px, 1.18fr) minmax(140px, 0.55fr) minmax(265px, 0.92fr);
  align-items: start;
  gap: clamp(34px, 5vw, 68px);
  padding: 42px 44px 38px;
  background: var(--surface);
  border: 1px solid var(--primary-border);
  border-radius: 25px;
}

.footer__brand {
  display: grid;
  align-content: start;
  gap: 19px;
}

.footer__brand .brand__logo {
  width: 138px;
}

.footer__brand p {
  max-width: 340px;
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.footer__nav,
.footer__contact {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer__label {
  margin-bottom: 5px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__nav a {
  width: max-content;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer__nav a:hover {
  color: var(--primary);
}

.footer__contact p {
  margin: 0 0 5px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.footer__whatsapp {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  padding: 13px 15px;
  color: white;
  background: var(--primary);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.footer__whatsapp:hover {
  background: var(--primary-dark);
  box-shadow: 0 12px 26px rgba(58, 15, 61, 0.16);
  transform: translateY(-2px);
}

.footer__whatsapp svg {
  width: 15px;
  height: 15px;
  transform: rotate(90deg);
}

.footer__bottom {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 21px 5px 0;
  text-align: center;
}

.footer__bottom small {
  color: var(--text-muted);
  font-size: 12px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 23px;
  z-index: 12;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 17px 13px 14px;
  border: 0;
  background: var(--primary);
  color: white;
  border-radius: 99px;
  box-shadow: 0 14px 32px rgba(58, 15, 61, 0.22);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.whatsapp-float:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lead-chat {
  position: fixed;
  right: 24px;
  bottom: 82px;
  z-index: 13;
  display: flex;
  flex-direction: column;
  width: min(386px, calc(100vw - 34px));
  max-height: calc(100dvh - 112px);
  overflow: hidden;
  border: 1px solid var(--primary-border);
  border-radius: 22px;
  background: white;
  box-shadow: 0 26px 64px rgba(42, 16, 43, 0.17);
}

.lead-chat[hidden] {
  display: none;
}

.lead-chat__header {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 16px;
  color: white;
  background: var(--primary);
}

.lead-chat__brand {
  display: block;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  padding: 3px;
  border-radius: 11px;
  background: white;
}

.lead-chat__header div {
  display: grid;
  gap: 2px;
}

.lead-chat__header strong {
  font-size: 14px;
}

.lead-chat__header small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
}

.lead-chat__close {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  margin-left: auto;
  border: 0;
  border-radius: 10px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.lead-chat__close:hover {
  background: rgba(255, 255, 255, 0.18);
}

.lead-chat__close svg,
.lead-chat__send svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lead-chat__body {
  overflow-y: auto;
  padding: 16px;
  background: var(--surface);
}

.lead-chat__bubble {
  width: fit-content;
  max-width: 92%;
  margin-bottom: 15px;
  padding: 11px 13px;
  border-radius: 4px 14px 14px 14px;
  color: var(--text-dark);
  background: white;
  border: 1px solid var(--primary-border);
  font-size: 13px;
  line-height: 1.55;
}

.lead-chat__form {
  display: grid;
  gap: 11px;
}

.lead-chat__question {
  display: grid;
  gap: 7px;
  padding: 10px 11px 11px;
  border-radius: 14px 14px 4px 14px;
  background: var(--primary-soft);
}

.lead-chat__question span {
  color: var(--plum);
  font-size: 12px;
  font-weight: 700;
}

.lead-chat__question input,
.lead-chat__question textarea {
  width: 100%;
  padding: 10px 11px;
  border: 1px solid transparent;
  border-radius: 9px;
  color: var(--text-dark);
  background: white;
  font: inherit;
  font-size: 13px;
  line-height: 1.45;
  resize: none;
}

.lead-chat__question input::placeholder,
.lead-chat__question textarea::placeholder {
  color: #958793;
}

.lead-chat__question input:focus,
.lead-chat__question textarea:focus {
  outline: none;
  border-color: rgba(91, 27, 94, 0.42);
  box-shadow: 0 0 0 3px rgba(91, 27, 94, 0.08);
}

.lead-chat__privacy {
  padding: 3px 2px 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.lead-chat__actions {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 3px;
}

.lead-chat__clear,
.lead-chat__send {
  min-height: 45px;
  border: 0;
  border-radius: 11px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.lead-chat__clear {
  color: var(--magenta);
  background: transparent;
}

.lead-chat__clear:hover {
  background: var(--primary-soft);
}

.lead-chat__send {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: white;
  background: var(--green);
  transition: background 0.2s ease, transform 0.2s ease;
}

.lead-chat__send:hover {
  background: #126f4d;
  transform: translateY(-1px);
}

.whatsapp-direct-float {
  position: fixed;
  right: 24px;
  bottom: 86px;
  z-index: 12;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: white;
  background: var(--green);
  box-shadow: 0 16px 34px rgba(21, 131, 93, 0.26);
  font-size: 13px;
  font-weight: 800;
}

.whatsapp-direct-float:hover {
  background: #126f4d;
  transform: translateY(-1px);
}

.portal {
  background:
    linear-gradient(180deg, rgba(244, 234, 246, 0.58), rgba(255, 255, 255, 0.92));
}

.portal__shell {
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow);
}

.portal__tabs {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-bottom: 1px solid var(--primary-border);
  background: var(--surface);
}

.portal__tab {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--text-muted);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.portal__tab.is-active {
  color: var(--primary);
  border-color: var(--primary-border);
  background: white;
  box-shadow: var(--shadow-sm);
}

.portal__panel {
  padding: clamp(18px, 3vw, 32px);
}

.portal__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 18px;
}

.portal__grid--admin {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.portal-card {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-md);
  background: var(--background);
  box-shadow: var(--shadow-sm);
}

.portal-card--summary {
  background: linear-gradient(160deg, var(--primary-dark), var(--primary));
}

.portal-card--summary h3,
.portal-card--summary .portal-card__eyebrow,
.portal-card--summary dt,
.portal-card--summary dd {
  color: white;
}

.portal-card--summary dd {
  opacity: 0.82;
}

.portal-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.portal-card__header strong {
  color: var(--primary);
  font-size: 13px;
}

.portal-card__eyebrow {
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portal-status {
  display: grid;
  gap: 10px;
  margin: 0;
}

.portal-status div {
  display: grid;
  gap: 2px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.portal-status dt {
  font-size: 12px;
  font-weight: 800;
}

.portal-status dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.briefing-form,
.ticket-form,
.admin-form {
  display: grid;
  gap: 13px;
}

.briefing-step {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.briefing-step.is-active {
  display: grid;
  gap: 13px;
}

.briefing-step legend {
  margin-bottom: 10px;
  color: var(--primary-dark);
  font: 800 18px/1.2 var(--display);
}

.briefing-form label,
.ticket-form label,
.admin-form label {
  display: grid;
  gap: 7px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 800;
}

.briefing-form input,
.briefing-form textarea,
.ticket-form input,
.ticket-form textarea,
.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid var(--primary-border);
  border-radius: 10px;
  color: var(--text-dark);
  background: white;
  font: inherit;
  font-size: 14px;
}

.briefing-form textarea,
.ticket-form textarea,
.admin-form textarea {
  resize: vertical;
}

.briefing-form input:focus,
.briefing-form textarea:focus,
.ticket-form input:focus,
.ticket-form textarea:focus,
.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
  outline: none;
  border-color: rgba(91, 27, 94, 0.44);
  box-shadow: 0 0 0 3px rgba(91, 27, 94, 0.08);
}

.portal-note {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.45;
}

.briefing-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.upload-drop {
  display: grid;
  gap: 7px;
  padding: 18px;
  border: 1px dashed rgba(91, 27, 94, 0.34);
  border-radius: 14px;
  background: var(--primary-soft);
  cursor: pointer;
}

.upload-drop input {
  width: 100%;
}

.upload-drop span {
  color: var(--primary-dark);
  font-weight: 800;
}

.upload-drop small {
  color: var(--text-muted);
  line-height: 1.45;
}

.portal-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.portal-list li {
  display: grid;
  gap: 3px;
  padding: 12px;
  border: 1px solid var(--primary-border);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text-dark);
  font-size: 13px;
  line-height: 1.45;
}

.portal-list small {
  color: var(--text-muted);
}

.admin-overview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.admin-overview article {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--primary-border);
  border-radius: 14px;
  background: var(--surface);
}

.admin-overview span {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
}

.admin-overview strong {
  color: var(--primary-dark);
  font: 800 28px/1 var(--display);
}

.admin-feed {
  display: grid;
  gap: 10px;
}

.admin-feed p {
  font-size: 14px;
  line-height: 1.55;
}

.app-page {
  min-height: 100vh;
  background: linear-gradient(180deg, var(--surface) 0%, #fff 100%);
}

.auth-screen {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 32px;
  gap: 24px;
}

.auth-card {
  display: grid;
  gap: 18px;
  width: min(100%, 460px);
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow);
}

.auth-card--wide {
  width: min(100%, 860px);
  margin-inline: auto;
}

.auth-card h1,
.portal-card h1 {
  color: var(--primary-dark);
  font-size: clamp(2rem, 4vw, 2.65rem);
  line-height: 1.08;
}

.auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--primary);
  font-weight: 800;
}

.app-shell {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 64px;
}

.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.app-topbar nav {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--primary);
  font-weight: 800;
}

.app-topbar button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--primary-border);
  border-radius: 10px;
  color: var(--primary);
  background: white;
  font-weight: 800;
  cursor: pointer;
}

.checkout-options {
  display: grid;
  gap: 14px;
}

.checkout-options label {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--primary-border);
  border-radius: 14px;
  background: var(--surface);
  cursor: pointer;
}

.checkout-options strong {
  color: var(--primary-dark);
}

.checkout-options span {
  color: var(--primary);
  font-weight: 800;
}

/* ==========================================================================
   TESTIMONIALS (Prova Social)
   ========================================================================== */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 54px;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(91, 27, 94, 0.22);
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--plum);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(58, 18, 48, 0.15);
}

.testimonial-avatar--clara {
  background: var(--magenta);
}

.testimonial-avatar--thiago {
  background: var(--plum);
}

.testimonial-avatar--mariana {
  background: var(--green);
}

.testimonial-card__header h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 2px;
}

.testimonial-card__header small {
  color: var(--muted);
  font-size: 12.5px;
}

.testimonial-quote {
  font-size: 14.5px;
  line-height: 1.68;
  color: #4b424c;
  font-style: italic;
  flex-grow: 1;
}

.testimonial-rating {
  color: #f5a623;
  font-size: 15px;
  letter-spacing: 2px;
}

/* ==========================================================================
   WARRANTY (Garantia)
   ========================================================================== */
.warranty__layout {
  background: linear-gradient(135deg, var(--bg-muted) 0%, var(--surface-strong) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 60px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.warranty__layout::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(91, 27, 94, 0.05), transparent 70%);
  right: -50px;
  bottom: -50px;
  pointer-events: none;
}

.warranty__icon {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: white;
  border: 1px solid var(--line);
  color: var(--magenta);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 25px rgba(91, 27, 94, 0.08);
}

.warranty__icon svg {
  width: 38px;
  height: 38px;
  stroke-width: 1.8;
}

.warranty__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.warranty__content h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.warranty__content p {
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 850px;
}

.warranty__badge {
  display: inline-flex;
  align-items: center;
  align-self: start;
  background: var(--green-bg);
  color: var(--green);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 99px;
  margin-top: 8px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   AUTH PAGES (Login / Cadastro) â€” redesign 2026
   ========================================================================== */

.auth-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100dvh;
  background: var(--bg);
}

.auth-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px clamp(40px, 5vw, 80px);
  background:
    radial-gradient(ellipse at 30% 40%, rgba(91, 27, 94, 0.07), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(91, 27, 94, 0.04), transparent 40%),
    linear-gradient(160deg, var(--surface) 0%, #f8f2fa 100%);
  overflow: hidden;
}

.auth-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 27, 94, 0.06), transparent 70%);
  pointer-events: none;
}

.auth-hero__body {
  position: relative;
  z-index: 1;
  max-width: 480px;
}

.auth-hero .brand__logo {
  width: 140px;
  margin-bottom: 48px;
}

.auth-hero__text {
  margin-bottom: 40px;
}

.auth-hero__title {
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: var(--plum);
  margin: 0 0 16px;
}

.auth-hero__desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 420px;
}

.auth-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.auth-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-dark);
}

.auth-benefits svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--green);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.auth-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: white;
}

.auth-card {
  width: min(100%, 440px);
  display: grid;
  gap: 0;
}

.auth-card__badge {
  display: inline-block;
  width: fit-content;
  margin-bottom: 20px;
  padding: 5px 12px;
  border-radius: 99px;
  background: var(--rose);
  color: var(--magenta);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-card__headline {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  color: var(--plum);
  margin: 0 0 10px;
}

.auth-card__subhead {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 400px;
}

.auth-card__form {
  display: grid;
  gap: 18px;
  margin-bottom: 20px;
}

.auth-field {
  display: grid;
  gap: 6px;
}

.auth-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.auth-input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1.5px solid var(--primary-border);
  border-radius: 12px;
  background: white;
  color: var(--text-dark);
  font: inherit;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.auth-input::placeholder {
  color: #b3a6b5;
}

.auth-input:focus {
  border-color: rgba(91, 27, 94, 0.45);
  box-shadow: 0 0 0 3px rgba(91, 27, 94, 0.08);
}

.auth-input.--error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(179, 74, 88, 0.1);
}

.auth-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 14px;
  background: var(--magenta);
  color: white;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.015em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 24px rgba(91, 27, 94, 0.18);
}

.auth-btn:hover {
  background: var(--magenta-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(91, 27, 94, 0.24);
}

.auth-btn:active {
  transform: translateY(0);
}

.auth-btn:focus-visible {
  outline: 3px solid rgba(91, 27, 94, 0.5);
  outline-offset: 3px;
}

.auth-btn--secondary {
  background: transparent;
  color: var(--magenta);
  border: 1.5px solid var(--magenta);
  box-shadow: none;
  margin-top: 8px;
}
.auth-btn--secondary:hover {
  background: rgba(91, 27, 94, 0.06);
  transform: none;
  box-shadow: none;
}
.auth-btn--ghost {
  background: transparent;
  color: var(--text-muted);
  box-shadow: none;
  min-height: 40px;
  font-weight: 500;
}
.auth-btn--ghost:hover {
  background: rgba(0,0,0,0.04);
  transform: none;
  box-shadow: none;
}
.auth-btn--success {
  background: var(--green, #15835D) !important;
}
.auth-field--forgot {
  display: flex;
  justify-content: flex-end;
  margin-top: -8px;
}
.auth-forgot-link {
  font-size: 13px;
  color: var(--magenta);
  text-decoration: none;
  font-weight: 500;
}
.auth-forgot-link:hover {
  text-decoration: underline;
}
.auth-forgot-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.auth-forgot-form[hidden] {
  display: none;
}
.auth-forgot-form .auth-card__subhead {
  margin-bottom: 0;
}

.auth-note {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 20px;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--surface);
}

.auth-links {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

.auth-links a {
  color: var(--magenta);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.auth-links a:hover {
  color: var(--magenta-dark);
  text-decoration: underline;
}

/* ==========================================================================
   ADMIN DASHBOARD
   ========================================================================== */

.admin-layout {
  display: flex;
  min-height: 100dvh;
  background: #f6f4f7;
  overflow-x: clip;
}

.admin-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
  width: 250px;
  height: 100dvh;
  background: linear-gradient(180deg, #2d1130 0%, #1f0a22 100%);
  transition: transform 0.25s ease;
}

.admin-sidebar__brand {
  display: flex;
  align-items: center;
  height: 68px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-sidebar__brand img {
  display: block;
  width: 118px;
  height: auto;
  filter: brightness(1.15);
}

.admin-sidebar__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 10px;
  overflow-y: auto;
}

.admin-sidebar__link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.6);
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease;
}

.admin-sidebar__link svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.admin-sidebar__link:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
}

.admin-sidebar__link.is-active {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 700;
}

.admin-sidebar__link--logout {
  margin-top: auto;
  color: rgba(255, 255, 255, 0.45);
}

.admin-sidebar__link--logout:hover {
  color: #f87171;
  background: rgba(248, 113, 113, 0.1);
}

.admin-sidebar__footer {
  padding: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-main {
  flex: 1;
  margin-left: 250px;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  min-width: 0;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 68px;
  padding: 0 clamp(20px, 3vw, 36px);
  background: white;
  border-bottom: 1px solid rgba(232, 212, 234, 0.5);
}

.admin-topbar__title {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--plum);
  margin: 0;
}

.admin-topbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-topbar__greeting {
  font-size: 14px;
  color: var(--muted);
}

.admin-topbar__greeting strong {
  color: var(--plum);
}

.admin-topbar__avatar {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--magenta);
  color: white;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.admin-content {
  flex: 1;
  padding: clamp(20px, 3vw, 32px);
  overflow-y: auto;
  overflow-x: clip;
  width: 100%;
  max-width: 1360px;
  margin-inline: auto;
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.admin-metric {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: 16px;
  background: white;
  box-shadow: 0 2px 10px rgba(42, 16, 43, 0.04);
  border: 1px solid rgba(232, 212, 234, 0.45);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.admin-metric:hover {
  box-shadow: 0 6px 18px rgba(42, 16, 43, 0.06);
  transform: translateY(-1px);
}

.admin-metric__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--rose);
  color: var(--magenta);
}

.admin-metric__icon svg {
  width: 19px;
  height: 19px;
}

.admin-metric__body {
  display: grid;
  gap: 2px;
}

.admin-metric__value {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--plum);
  line-height: 1;
}

.admin-metric__label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
  min-width: 0;
}

.admin-card {
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: 22px;
  border-radius: 18px;
  background: white;
  border: 1px solid rgba(232, 212, 234, 0.45);
  box-shadow: 0 2px 10px rgba(42, 16, 43, 0.03);
}

.admin-card--denied {
  max-width: 480px;
  text-align: center;
  justify-items: center;
  gap: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(232, 212, 234, 0.5);
  box-shadow: 0 4px 16px rgba(42, 16, 43, 0.04);
  margin: 0 auto;
}

.admin-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 120px;
  font-size: 15px;
  color: var(--muted);
}

.admin-loading__spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary-border);
  border-top-color: var(--magenta);
  border-radius: 50%;
  animation: admin-spin 0.7s linear infinite;
}

@keyframes admin-spin {
  to { transform: rotate(360deg); }
}

.admin-card__badge {
  display: inline-block;
  width: fit-content;
  padding: 5px 12px;
  border-radius: 99px;
  background: #fef2f2;
  color: #b34a58;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-card__headline {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--plum);
  margin: 0;
}

.admin-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 4px;
  min-width: 0;
}

.admin-card__title {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--plum);
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
}

.admin-card__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0;
}

.admin-card__form .admin-btn {
  grid-column: 1 / -1;
  margin-top: 4px;
}

.admin-field {
  display: grid;
  gap: 5px;
}

[data-admin-domain-form],
[data-admin-renewal-form] {
  grid-template-columns: minmax(0, 1fr);
}

.admin-field__label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-dark);
}

.admin-field__input {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 1.5px solid rgba(232, 212, 234, 0.65);
  border-radius: 10px;
  background: white;
  color: var(--text-dark);
  font: inherit;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.admin-field__input::placeholder {
  color: #bdb0c0;
}

.admin-field__input:focus {
  border-color: rgba(91, 27, 94, 0.4);
  box-shadow: 0 0 0 3px rgba(91, 27, 94, 0.07);
}

select.admin-field__input {
  cursor: pointer;
  appearance: auto;
}

.admin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 12px;
  background: var(--magenta);
  color: white;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 20px rgba(91, 27, 94, 0.16);
}

.admin-btn:hover {
  background: var(--magenta-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(91, 27, 94, 0.22);
}

.admin-btn:active {
  transform: translateY(0);
}

.admin-btn:focus-visible {
  outline: 3px solid rgba(91, 27, 94, 0.5);
  outline-offset: 3px;
}

.admin-btn-primary,
.admin-btn-secondary,
.admin-btn-ghost,
.admin-btn-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.admin-btn-primary {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--magenta);
  background: var(--magenta);
  color: #fff;
  box-shadow: 0 8px 18px rgba(91, 27, 94, 0.16);
}

.admin-btn-secondary {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(91, 27, 94, 0.28);
  background: #fff;
  color: var(--plum);
}

.admin-btn-ghost {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(232, 212, 234, 0.72);
  background: #faf7fb;
  color: var(--text-dark);
}

.admin-btn-small {
  min-height: 34px;
  padding: 0 14px;
  font-size: 12px;
}

.admin-btn-primary:hover,
.admin-btn-secondary:hover,
.admin-btn-ghost:hover,
.admin-btn-small:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(91, 27, 94, 0.14);
}

.admin-btn-primary:focus-visible,
.admin-btn-secondary:focus-visible,
.admin-btn-ghost:focus-visible,
.admin-btn-small:focus-visible,
.admin-sidebar__link:focus-visible,
.briefings-filter-btn:focus-visible,
.briefings-card:focus-visible,
.briefings-btn:focus-visible {
  outline: 3px solid rgba(91, 27, 94, 0.42);
  outline-offset: 2px;
}

.admin-card-body,
.admin-card__body {
  display: grid;
  gap: 4px;
  min-width: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.45;
}

.admin-card-body span,
.admin-card__body span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.admin-card-footer,
.admin-card__footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
  margin-top: auto;
}

.admin-card-footer__meta {
  color: var(--text-muted);
  font-size: 12px;
}

.admin-table-wrapper {
  width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(232, 212, 234, 0.5);
  border-radius: 12px;
  background: #fff;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.admin-table th,
.admin-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(232, 212, 234, 0.42);
  text-align: left;
  vertical-align: top;
}

.admin-table-action {
  white-space: nowrap;
}

.admin-input,
.admin-select {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(232, 212, 234, 0.7);
  border-radius: 10px;
  background: #fff;
  color: var(--text-dark);
  font: inherit;
  font-size: 14px;
}

.admin-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  max-width: 100%;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.admin-status-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
}

.badge-paid,
.badge-success {
  background: #e8f4ed;
  color: #15835d;
  border-color: rgba(21, 131, 93, 0.18);
}

.badge-pending,
.badge-warning {
  background: #fff4e6;
  color: #b76519;
  border-color: rgba(183, 101, 25, 0.2);
}

.badge-progress {
  background: #f4eaf6;
  color: #5b1b5e;
  border-color: rgba(91, 27, 94, 0.18);
}

.badge-danger {
  background: #fef2f2;
  color: #b34a58;
  border-color: rgba(179, 74, 88, 0.18);
}

.badge-neutral {
  background: #f2eef3;
  color: #685d69;
  border-color: rgba(104, 93, 105, 0.18);
}

.admin-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.admin-list li {
  position: relative;
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid rgba(232, 212, 234, 0.4);
  color: var(--text-dark);
  font-size: 13px;
  line-height: 1.45;
  transition: border-color 0.15s ease;
}

.admin-list li:hover {
  border-color: rgba(91, 27, 94, 0.18);
}

.admin-list li strong {
  color: var(--plum);
  font-size: 14px;
}

.admin-list li small {
  color: var(--muted);
  font-size: 11.5px;
}

.admin-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 3px 0 0 3px;
  background: var(--primary-border);
}

.admin-list li:has(strong:empty) {
  opacity: 0.55;
}

/* â”€â”€ Dashboard section title â”€â”€ */

.dashboard-section-title {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.dashboard-section-title__text {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.03em;
  color: var(--plum);
  margin: 0;
}

.dashboard-section-title__period {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

/* â”€â”€ Dashboard chart subtitle â”€â”€ */

.dashboard-chart-card__subtitle {
  font-size: 12px;
  color: var(--text-muted);
  margin: 2px 0 0;
  font-weight: 500;
}

/* â”€â”€ Dashboard chart note (single-day concentration) â”€â”€ */

.dashboard-chart-card__note {
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
  margin: 8px 0 0;
  font-style: italic;
}

/* â”€â”€ Dashboard chart tooltip â”€â”€ */

.dashboard-chart-tooltip {
  position: absolute;
  pointer-events: none;
  background: rgba(35, 17, 36, 0.92);
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
  padding: 8px 12px;
  border-radius: 8px;
  white-space: nowrap;
  z-index: 10;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: opacity 0.12s ease;
}

.dashboard-chart-tooltip:not([hidden]) {
  opacity: 1;
}

.dashboard-chart-tooltip[hidden] {
  opacity: 0;
  display: block;
  pointer-events: none;
}

/* â”€â”€ Dashboard period filter â”€â”€ */

.dashboard-period {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
}

.dashboard-period__btn {
  padding: 6px 18px;
  border: 1.5px solid rgba(232, 212, 234, 0.6);
  border-radius: 10px;
  background: white;
  color: var(--text-muted);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.dashboard-period__btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.dashboard-period__btn.is-active {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
}

/* â”€â”€ Dashboard chart card â”€â”€ */

.dashboard-chart-card {
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(232, 212, 234, 0.4);
  box-shadow: 0 2px 10px rgba(42, 16, 43, 0.04);
  overflow: hidden;
  margin-bottom: 24px;
}

.dashboard-chart-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(232, 212, 234, 0.3);
  flex-wrap: wrap;
}

.dashboard-chart-card__title {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--plum);
  margin: 0;
}

.dashboard-chart-card__body {
  padding: 16px 12px 8px;
  position: relative;
}

.dashboard-chart-card__body canvas {
  display: block;
  width: 100%;
}

/* â”€â”€ Dashboard health section â”€â”€ */

.dashboard-health {
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(232, 212, 234, 0.4);
  box-shadow: 0 2px 10px rgba(42, 16, 43, 0.04);
  overflow: hidden;
  margin-bottom: 24px;
}

.dashboard-health__header {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(232, 212, 234, 0.3);
}

.dashboard-health__title {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--plum);
  margin: 0;
}

.dashboard-health__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.dashboard-health-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 18px;
  border-right: 1px solid rgba(232, 212, 234, 0.2);
  transition: background 0.15s;
  cursor: default;
}

.dashboard-health-card:last-child {
  border-right: none;
}

.dashboard-health-card:hover {
  background: var(--primary-soft);
}

.dashboard-health-card__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
}

.dashboard-health-card__icon svg {
  width: 20px;
  height: 20px;
}

.dashboard-health-card__body {
  display: grid;
  gap: 2px;
}

.dashboard-health-card__value {
  font-size: 20px;
  font-weight: 800;
  color: var(--plum);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.dashboard-health-card__label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
}

@media (max-width: 800px) {
  .dashboard-health__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dashboard-health-card:nth-child(2) {
    border-right: none;
  }
  .dashboard-health-card:nth-child(3),
  .dashboard-health-card:nth-child(4) {
    border-top: 1px solid rgba(232, 212, 234, 0.2);
  }
}

@media (max-width: 500px) {
  .dashboard-health__grid {
    grid-template-columns: 1fr;
  }
  .dashboard-health-card {
    border-right: none;
    border-bottom: 1px solid rgba(232, 212, 234, 0.2);
  }
  .dashboard-health-card:last-child {
    border-bottom: none;
  }
}

/* â”€â”€ Dashboard donuts grid (two cards side by side) â”€â”€ */

.dashboard-donuts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .dashboard-donuts-grid {
    grid-template-columns: 1fr;
  }
}

/* â”€â”€ Dashboard donut card (donut + metrics side by side) â”€â”€ */

.dashboard-donut-card__body {
  display: flex;
  align-items: stretch;
  gap: 12px;
  padding: 20px 20px 18px;
  min-height: 260px;
}

.dashboard-donut {
  position: relative;
  flex: 0 0 220px;
  width: 220px;
  height: 220px;
  margin: auto 0;
}

.dashboard-donut canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* â”€â”€ Dashboard donut empty state â”€â”€ */

.dashboard-donut-empty {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
}

.dashboard-donut-empty__icon {
  width: 48px;
  height: 48px;
  color: #DCCEDF;
  stroke-width: 1.3;
}

.dashboard-donut-empty__text {
  font-size: 13px;
  color: #B5A7B8;
  font-weight: 600;
  text-align: center;
  margin: 0;
}

/* â”€â”€ Dashboard donut metrics â”€â”€ */

.dashboard-donut-metrics {
  flex: 1;
  display: grid;
  gap: 4px;
  padding: 4px 0;
}

.dashboard-donut-metric {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 7px 12px;
  border-radius: 10px;
  transition: background 0.15s;
  cursor: default;
}

.dashboard-donut-metric:hover {
  background: var(--primary-soft);
}

.dashboard-donut-metric__label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dashboard-donut-metric__value {
  font-size: 14px;
  color: var(--plum);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: right;
}

/* Colored dots via ::before on the metric grid */

.dashboard-donut-metric::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
  display: block;
}

.dashboard-donut-metric--rate::before {
  display: none;
}

/* Client funnel dot colors */
[data-donut-client-metrics] .dashboard-donut-metric:nth-child(1)::before { background: #5B1B5E; }
[data-donut-client-metrics] .dashboard-donut-metric:nth-child(2)::before { background: #E8A838; }
[data-donut-client-metrics] .dashboard-donut-metric:nth-child(3)::before { background: #8E3A91; }
[data-donut-client-metrics] .dashboard-donut-metric:nth-child(4)::before { background: #D4786A; }
[data-donut-client-metrics] .dashboard-donut-metric:nth-child(5)::before { background: #15835D; }

/* Ticket dot colors */
[data-donut-ticket-metrics] .dashboard-donut-metric:nth-child(1)::before { background: #D4786A; }
[data-donut-ticket-metrics] .dashboard-donut-metric:nth-child(2)::before { background: #E8A838; }
[data-donut-ticket-metrics] .dashboard-donut-metric:nth-child(3)::before { background: #15835D; }

/* Rate row â€” override grid to space-between, highlighted */
.dashboard-donut-metric--rate {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  background: var(--primary-soft);
  border: 1px solid rgba(232, 212, 234, 0.5);
  border-radius: 10px;
  padding: 9px 14px;
}

.dashboard-donut-metric--rate .dashboard-donut-metric__label {
  font-weight: 700;
  color: var(--plum);
  font-size: 12px;
}

.dashboard-donut-metric--rate .dashboard-donut-metric__value {
  font-size: 14px;
}

@media (max-width: 700px) {
  .dashboard-donut-card__body {
    flex-direction: column;
    align-items: center;
    padding: 16px;
  }
  .dashboard-donut {
    flex: 0 0 auto;
    width: 180px;
    height: 180px;
    margin: 0 auto 8px;
  }
  .dashboard-donut-metrics {
    padding-left: 0;
    width: 100%;
  }
}

.dashboard-donut {
  position: relative;
  flex: 0 0 240px;
  width: 240px;
  height: 240px;
}

.dashboard-donut canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

/* â”€â”€ Dashboard donut metrics â”€â”€ */

.dashboard-donut-metrics {
  flex: 1;
  display: grid;
  gap: 2px;
  padding-left: 12px;
}

.dashboard-donut-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(252, 248, 253, 0.6);
  transition: background 0.15s;
}

.dashboard-donut-metric:hover {
  background: var(--primary-soft);
}

.dashboard-donut-metric__label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

.dashboard-donut-metric__value {
  font-size: 14px;
  color: var(--plum);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.dashboard-donut-metric--rate {
  margin-top: 4px;
  background: var(--primary-soft);
  border: 1px solid rgba(232, 212, 234, 0.5);
}

@media (max-width: 700px) {
  .dashboard-donut-card__body {
    flex-direction: column;
    align-items: stretch;
  }
  .dashboard-donut {
    flex: 0 0 auto;
    width: 180px;
    height: 180px;
    margin: 0 auto;
  }
  .dashboard-donut-metrics {
    padding-left: 0;
  }
}

/* â”€â”€ Chart legend â”€â”€ */

.dashboard-chart-legend {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.dashboard-chart-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

.dashboard-chart-legend__dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  flex-shrink: 0;
}

/* â”€â”€ Admin page sections â”€â”€ */

.admin-page {
  display: block;
}

.admin-page[hidden] {
  display: none;
}

.admin-page__header {
  margin-bottom: 24px;
}

.admin-page__title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--plum);
  margin: 0;
}

/* Briefings page - premium inline workspace */

.briefings-empty {
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: 36px 20px;
  background: #fff;
  border: 1px solid rgba(232, 212, 234, 0.45);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(42, 16, 43, 0.05);
  text-align: center;
}

.briefings-empty[hidden],
.briefings-layout[hidden] {
  display: none !important;
}

.briefings-empty h3 {
  margin: 0 0 6px;
  color: var(--plum);
  font-family: var(--display);
  font-size: 20px;
}

.briefings-empty p {
  max-width: 420px;
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.briefings-layout {
  display: grid;
  grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.briefings-sidebar,
.briefing-detail {
  background: #fff;
  border: 1px solid rgba(232, 212, 234, 0.42);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(42, 16, 43, 0.05);
}

.briefings-sidebar {
  padding: 14px;
}

.briefings-search {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 12px;
  background: #faf7fb;
  border: 1px solid rgba(232, 212, 234, 0.62);
  border-radius: 8px;
  color: var(--text-muted);
}

.briefings-search svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.briefings-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text-dark);
  font: inherit;
  font-size: 13px;
}

.briefings-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 12px 0 14px;
}

.briefings-filter-btn {
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(91, 27, 94, 0.12);
  border-radius: 8px;
  background: #fff;
  color: var(--text-muted);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.briefings-filter-btn.is-active,
.briefings-filter-btn:hover {
  background: #f4eaf6;
  border-color: rgba(91, 27, 94, 0.2);
  color: var(--plum);
}

.briefings-list {
  display: grid;
  gap: 9px;
  max-height: calc(100dvh - 270px);
  min-height: 220px;
  overflow: auto;
  padding-right: 3px;
}

.briefings-list__empty {
  display: grid;
  place-items: center;
  min-height: 160px;
  padding: 18px;
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
  background: #faf7fb;
  border-radius: 8px;
}

.briefings-card {
  display: grid;
  gap: 6px;
  width: 100%;
  min-width: 0;
  padding: 13px;
  border: 1px solid rgba(232, 212, 234, 0.58);
  border-radius: 8px;
  background: #fff;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.16s, box-shadow 0.16s, transform 0.16s;
}

.briefings-card:hover,
.briefings-card.is-selected {
  border-color: rgba(91, 27, 94, 0.34);
  box-shadow: 0 8px 18px rgba(42, 16, 43, 0.07);
  transform: translateY(-1px);
}

.briefings-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.briefings-card__top strong,
.briefings-card__company,
.briefings-card__meta {
  min-width: 0;
  overflow-wrap: anywhere;
}

.briefings-card__top strong {
  color: var(--plum);
  font-size: 14px;
  line-height: 1.25;
}

.briefings-card__company {
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 650;
}

.briefings-card__meta {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.4;
}

.briefing-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  border: 1px solid currentColor;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.briefing-status-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.briefing-status-badge--enviado {
  background: #fff4e6;
  color: #b76519;
  border-color: rgba(183, 101, 25, 0.2);
}

.briefing-status-badge--em_analise {
  background: #f4eaf6;
  color: #5b1b5e;
  border-color: rgba(91, 27, 94, 0.18);
}

.briefing-status-badge--analisado {
  background: #e8f4ed;
  color: #15835d;
  border-color: rgba(21, 131, 93, 0.18);
}

.briefing-detail {
  min-height: 360px;
  padding: 20px;
}

.briefing-detail__placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 300px;
  color: var(--text-muted);
  text-align: center;
}

.briefing-detail__placeholder span {
  color: var(--plum);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
}

.briefing-detail__placeholder p {
  max-width: 360px;
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.55;
}

.briefing-detail__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(232, 212, 234, 0.5);
}

.briefing-detail__header .briefing-status-badge {
  flex: 0 0 auto;
}

.briefing-detail__eyebrow {
  display: block;
  margin-bottom: 5px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.briefing-detail__header h3 {
  margin: 0;
  color: var(--plum);
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.15;
}

.briefing-detail__header p {
  margin: 7px 0 0;
  color: var(--text-muted);
  font-size: 13px;
}

.briefing-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 16px 0 18px;
}

.briefings-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 8px;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.16s, border-color 0.16s, color 0.16s, transform 0.16s;
}

.briefings-btn:hover {
  transform: translateY(-1px);
}

.briefings-btn--primary {
  border: 1px solid var(--primary);
  background: var(--primary);
  color: #fff;
}

.briefings-btn--outline {
  border: 1px solid rgba(91, 27, 94, 0.34);
  background: #fff;
  color: var(--plum);
}

.briefings-btn--ghost {
  border: 1px solid rgba(232, 212, 234, 0.7);
  background: #faf7fb;
  color: var(--text-dark);
}

.briefing-sections {
  display: grid;
  gap: 13px;
}

.briefing-section {
  padding: 15px;
  border: 1px solid rgba(232, 212, 234, 0.46);
  border-radius: 8px;
  background: #fff;
}

.briefing-section--empty {
  color: var(--text-muted);
  font-size: 13px;
}

.briefing-section__title {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: var(--plum);
}

.briefing-section__title svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.briefing-section__title h4 {
  margin: 0;
  font-family: var(--display);
  font-size: 16px;
}

.briefing-section dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.briefing-section__row {
  display: grid;
  grid-template-columns: minmax(120px, 180px) minmax(0, 1fr);
  gap: 14px;
  padding-top: 8px;
  border-top: 1px solid rgba(232, 212, 234, 0.26);
}

.briefing-section__row:first-child {
  padding-top: 0;
  border-top: 0;
}

.briefing-section dt {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.briefing-section dd {
  min-width: 0;
  margin: 0;
  color: var(--text-dark);
  font-size: 13px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

@media (max-width: 1024px) {
  .briefings-layout {
    grid-template-columns: 1fr;
  }

  .briefings-list {
    max-height: none;
  }
}

@media (max-width: 768px) {
  .briefing-detail,
  .briefings-sidebar {
    padding: 14px;
  }

  .briefing-detail__header {
    flex-direction: column;
  }

  .briefing-section__row {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}
/* ==========================================================================
   CLIENT DASHBOARD
   ========================================================================== */

.client-layout {
  display: flex;
  min-height: 100dvh;
  background: #f6f4f7;
}

.client-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
  width: 250px;
  height: 100dvh;
  background: linear-gradient(180deg, #2d1130 0%, #1f0a22 100%);
  transition: transform 0.25s ease;
}

.client-sidebar__brand {
  display: flex;
  align-items: center;
  height: 68px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.client-sidebar__brand img {
  display: block;
  width: 118px;
  height: auto;
  filter: brightness(1.15);
}

.client-sidebar__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 10px;
  overflow-y: auto;
}

.client-sidebar__link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.6);
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease;
}

.client-sidebar__link svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.client-sidebar__link:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
}

.client-sidebar__link.is-active {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 700;
}

.client-sidebar__link--logout {
  color: rgba(255, 255, 255, 0.45);
}

.client-sidebar__link--logout:hover {
  color: #f87171;
  background: rgba(248, 113, 113, 0.1);
}

.client-sidebar__footer {
  padding: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.client-main {
  flex: 1;
  margin-left: 250px;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

.client-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 68px;
  padding: 0 clamp(20px, 3vw, 36px);
  background: white;
  border-bottom: 1px solid rgba(232, 212, 234, 0.5);
}

.client-topbar__title {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--plum);
  margin: 0;
}

.client-topbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client-topbar__greeting {
  font-size: 14px;
  color: var(--muted);
}

.client-topbar__greeting strong {
  color: var(--plum);
}

.client-topbar__avatar {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--magenta);
  color: white;
  font-size: 13px;
  font-weight: 800;
}

.client-content {
  flex: 1;
  padding: clamp(20px, 3vw, 32px);
  overflow-y: auto;
  width: 100%;
  max-width: 1360px;
  margin-inline: auto;
}

.client-content > [data-client-content]:not([hidden]) {
  display: grid;
  gap: 22px;
}

.client-project-hero,
.client-timeline-card,
.client-briefing-panel__intro,
.client-project-followup {
  border-radius: 18px;
  background: white;
  border: 1px solid rgba(232, 212, 234, 0.5);
  box-shadow: 0 14px 36px rgba(42, 16, 43, 0.055);
}

.client-project-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 24px;
  align-items: end;
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(91, 27, 94, 0.08), rgba(255, 255, 255, 0) 55%),
    white;
}

.client-project-hero__copy {
  display: grid;
  gap: 12px;
}

.client-project-hero h2 {
  max-width: 720px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--plum);
}

.client-project-hero p {
  max-width: 620px;
  margin: 0;
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.65;
}

.client-project-hero__meta {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(232, 212, 234, 0.72);
}

.client-project-hero__meta span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 12px;
}

.client-project-hero__meta strong {
  color: var(--plum);
  font-size: 13px;
  text-align: right;
}

.client-section-heading {
  display: grid;
  gap: 5px;
}

.client-section-heading h2,
.client-support-card__header h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--plum);
}

.client-timeline-card {
  display: grid;
  gap: 22px;
  padding: 24px;
}

.client-timeline {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.client-timeline__item {
  position: relative;
  display: grid;
  gap: 10px;
  align-content: start;
  min-width: 0;
  padding-right: 10px;
  padding-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.client-timeline__item strong {
  display: block;
  max-width: 118px;
  line-height: 1.25;
  overflow-wrap: break-word;
}

.client-timeline__item::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(232, 212, 234, 0.9);
}

.client-timeline__item:first-child::before {
  left: 12px;
}

.client-timeline__item:last-child::before {
  right: calc(100% - 12px);
}

.client-timeline__marker {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: white;
  border: 2px solid rgba(91, 27, 94, 0.2);
}

.client-timeline__item.is-complete,
.client-timeline__item.is-current {
  color: var(--plum);
}

.client-timeline__item.is-complete .client-timeline__marker {
  background: #15835d;
  border-color: #15835d;
}

.client-timeline__item.is-complete .client-timeline__marker::after {
  content: "";
  width: 8px;
  height: 5px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
}

.client-timeline__item.is-current .client-timeline__marker {
  border-color: var(--magenta);
  box-shadow: 0 0 0 5px rgba(179, 65, 184, 0.12);
}

.client-cards--portal {
  margin-bottom: 0;
}

.client-cards--portal .client-card {
  min-height: 126px;
}

.client-briefing-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.client-briefing-panel__intro {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 15px;
  padding: 26px;
  background:
    linear-gradient(155deg, rgba(91, 27, 94, 0.96), rgba(74, 21, 77, 0.94)),
    var(--plum);
  color: white;
}

.client-briefing-panel__intro .client-card__badge {
  width: fit-content;
  background: rgba(255, 255, 255, 0.14);
  color: white;
}

.client-briefing-panel__intro h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: white;
}

.client-briefing-panel__intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.client-briefing-panel__intro .client-btn {
  width: fit-content;
  background: white;
  color: var(--plum);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
}

.client-briefing-card {
  border-radius: 18px;
}

.client-project-followup {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.client-project-note {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.client-project-note div,
.client-project-note p {
  margin: 0;
  padding: 16px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid rgba(232, 212, 234, 0.5);
}

.client-project-note p {
  grid-column: 1 / -1;
  color: var(--text-dark);
  line-height: 1.6;
}

.client-project-note span,
.client-chat-history > span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.client-project-note strong {
  color: var(--plum);
  font-size: 15px;
}

.client-grid--portal {
  align-items: start;
}

.client-card--files,
.client-support-card {
  border-radius: 18px;
}

.client-files-groups {
  display: grid;
  gap: 14px;
}

.client-files-groups h3 {
  margin: 0 0 8px;
  color: var(--plum);
  font-family: var(--display);
  font-size: 15px;
}

.client-support-card {
  gap: 18px;
}

.client-support-card__header {
  display: grid;
  gap: 7px;
}

.client-support-card__header p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.client-chat-form {
  padding: 16px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid rgba(232, 212, 234, 0.6);
}

.client-chat-history {
  display: grid;
  gap: 8px;
}

/* CARDS DE RESUMO */
.client-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.client-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: 16px;
  background: white;
  border: 1px solid rgba(232, 212, 234, 0.45);
  box-shadow: 0 2px 10px rgba(42, 16, 43, 0.03);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.client-card:not(.client-card--locked):not(.client-card--summary):not(.client-card--highlight):hover {
  box-shadow: 0 6px 18px rgba(42, 16, 43, 0.06);
  transform: translateY(-1px);
}

.client-card--locked {
  max-width: 540px;
  text-align: center;
  justify-items: center;
  gap: 14px;
}

.client-card--locked:not([hidden]) {
  margin-top: clamp(48px, 8vh, 96px);
  margin-inline: auto;
}

.client-card--summary {
  background: linear-gradient(145deg, var(--primary-dark) 0%, #3a0f3d 100%);
  border-color: transparent;
  color: white;
}

.client-card--summary .client-card__eyebrow,
.client-card--summary .client-card__stat span {
  color: rgba(255, 255, 255, 0.65);
}

.client-card--summary .client-card__plan {
  color: white;
}

.client-card--summary .client-card__pill {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.client-card--highlight {
  background: var(--surface);
  border-left: 4px solid var(--magenta);
}

.client-card--span {
  grid-column: 1 / -1;
}

.client-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.client-card__title {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--plum);
  margin: 0;
}

.client-card__eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.client-card__plan {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--plum);
}

.client-card__status {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--plum);
}

.client-card__stat {
  display: grid;
  gap: 2px;
  font-size: 12.5px;
  color: var(--muted);
}

.client-card__pill {
  display: inline-block;
  width: fit-content;
  padding: 2px 10px;
  border-radius: 99px;
  background: #fef3c7;
  color: #92400e;
  font-size: 11px;
  font-weight: 700;
}

.client-card__badge {
  display: inline-block;
  width: fit-content;
  padding: 5px 12px;
  border-radius: 99px;
  background: #fef2f2;
  color: #b34a58;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.client-card__headline {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--plum);
  margin: 0;
}

.client-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.client-card__step {
  font-size: 12px;
  font-weight: 700;
  color: var(--magenta);
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

/* BRIEFING PROGRESS BAR */
.client-briefing-bar {
  display: grid;
  gap: 6px;
  padding: 0 0 6px;
}

.client-briefing-bar__track {
  display: block;
  height: 6px;
  border-radius: 99px;
  background: var(--primary-border);
  overflow: hidden;
}

.client-briefing-bar__fill {
  display: block;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--magenta), var(--primary-light));
  transition: width 0.4s ease;
}

.client-briefing-bar__label {
  font-size: 12px;
  color: var(--muted);
}

/* BRIEFING FORM */
.client-briefing {
  display: grid;
  gap: 16px;
}

.client-briefing__step {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.client-briefing__step.is-active {
  display: block;
}

.client-briefing__legend {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--plum);
  margin-bottom: 16px;
  padding: 0;
}

.client-briefing__fields {
  display: grid;
  gap: 14px;
}

.client-briefing__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.client-field {
  display: grid;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}

.client-field__label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-dark);
}

.client-input {
  width: 100%;
  min-height: 44px;
  padding: 0 13px;
  border: 1.5px solid rgba(232, 212, 234, 0.6);
  border-radius: 11px;
  background: white;
  color: var(--text-dark);
  font: inherit;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.client-input::placeholder {
  color: #bdb0c0;
}

.client-input:focus {
  border-color: rgba(91, 27, 94, 0.4);
  box-shadow: 0 0 0 3px rgba(91, 27, 94, 0.07);
}

.client-input--area {
  padding: 11px 13px;
  resize: vertical;
}

/* CLIENT BUTTONS */
.client-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  background: var(--magenta);
  color: white;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 20px rgba(91, 27, 94, 0.16);
}

.client-btn:hover {
  background: var(--magenta-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(91, 27, 94, 0.22);
}

.client-btn:active {
  transform: translateY(0);
}

.client-btn:focus-visible {
  outline: 3px solid rgba(91, 27, 94, 0.5);
  outline-offset: 3px;
}

.client-btn--outline {
  background: transparent;
  color: var(--plum);
  box-shadow: none;
  border: 1.5px solid var(--primary-border);
}

.client-btn--outline:hover {
  background: var(--surface);
  border-color: rgba(91, 27, 94, 0.25);
  box-shadow: var(--shadow-sm);
}

/* UPLOAD */
.client-upload {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 24px;
  border: 1.5px dashed rgba(91, 27, 94, 0.25);
  border-radius: 14px;
  background: var(--surface);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.client-upload:hover {
  border-color: rgba(91, 27, 94, 0.45);
  background: var(--rose);
}

.client-upload input {
  display: none;
}

.client-upload__icon {
  color: var(--magenta);
}

.client-upload__icon svg {
  width: 28px;
  height: 28px;
}

.client-upload__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--plum);
}

.client-upload__hint {
  font-size: 11.5px;
  color: var(--muted);
  text-align: center;
}

/* TICKET FORM */
.client-ticket {
  display: grid;
  gap: 12px;
}

.client-ticket .client-btn {
  margin-top: 2px;
}

.client-feedback {
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(21, 131, 93, 0.18);
  background: rgba(21, 131, 93, 0.08);
  color: #146c50;
  font-size: 12.5px;
  font-weight: 700;
}

.client-feedback[hidden] {
  display: none;
}

/* CLIENT LISTS */
.client-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.client-list li {
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid rgba(232, 212, 234, 0.4);
  color: var(--text-dark);
  font-size: 13px;
  line-height: 1.45;
  transition: border-color 0.15s ease;
}

.client-list li:hover {
  border-color: rgba(91, 27, 94, 0.18);
}

.client-list li strong {
  color: var(--plum);
  font-size: 14px;
}

.client-list li small {
  color: var(--muted);
  font-size: 11.5px;
}

@media (max-width: 1100px) {
  .client-project-hero,
  .client-briefing-panel,
  .client-grid--portal {
    grid-template-columns: minmax(0, 1fr);
  }

  .client-briefing-panel__intro {
    position: static;
  }

  .client-timeline {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .client-timeline__item {
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
  }

  .client-timeline__item strong {
    max-width: none;
  }

  .client-timeline__item::before {
    top: 0;
    bottom: -12px;
    left: 12px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .client-timeline__item:first-child::before {
    left: 12px;
  }

  .client-timeline__item:last-child::before {
    display: none;
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
  }

  .trust__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .warranty__layout {
    padding: 50px;
    gap: 35px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 56px;
  }

  .hero__content {
    max-width: 650px;
  }

  .product-visual {
    width: 100%;
    max-width: 650px;
    margin-inline: auto;
    min-height: 525px;
  }

  .hero-phone {
    --hero-phone-tilt: 0deg;
    left: 14px;
    transform: none;
  }

  .problem__layout,
  .advantages__layout,
  .addons__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 56px;
  }

  .advantages__intro {
    position: static;
    max-width: 660px;
  }

  .solution-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-block--panel {
    grid-column: auto;
  }

  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 560px;
    margin-inline: auto;
    gap: 26px;
  }

  .price-card--featured {
    order: -1;
    transform: none;
  }

  .features {
    min-height: 0;
  }

  .journey {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 980px;
    gap: 22px;
  }

  .journey li {
    padding: 32px 26px;
  }

  .journey li::after,
  .journey li::before {
    display: none;
  }

  .portal__grid,
  .portal__grid--admin {
    grid-template-columns: minmax(0, 1fr);
  }

  .admin-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .client-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (min-width: 621px) and (max-width: 1100px) {
  .portfolio-card:last-child {
    grid-column: 1 / -1;
    width: calc((100% - 22px) / 2);
    justify-self: center;
  }
}

@media (max-width: 1060px) and (min-width: 761px) {
  .faq__layout {
    grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
    gap: clamp(38px, 5vw, 52px);
  }

  .faq__intro {
    position: static;
  }

  .faq__intro h2 {
    font-size: clamp(2rem, 4vw, 2.3rem);
  }
}

@media (max-width: 860px) {
  .faq__support-card {
    max-width: 360px;
  }

  .testimonials__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .warranty__layout {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
    justify-items: center;
    padding: 44px 30px;
    gap: 28px;
  }

  .container {
    width: min(var(--container), calc(100% - 48px));
  }

  .section {
    padding: 90px 0;
  }

  .header__inner {
    gap: 13px;
  }

  .nav-toggle {
    display: flex;
  }

  .header__cta {
    display: none;
  }

  .nav {
    position: absolute;
    left: 19px;
    right: 19px;
    top: 76px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 9px 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s;
  }

  .nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
  }

  .nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--primary-border);
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .nav .nav__cta {
    display: inline-flex;
    justify-content: center;
    margin: 10px 0 9px;
    padding: 14px 17px;
    color: white;
    background: var(--magenta);
    border-radius: 12px;
    border-bottom: 0;
  }

  .nav .nav__cta::after {
    display: none;
  }

  .hero {
    padding: 54px 0 92px;
  }

  .problem__layout {
    gap: 46px;
  }

  .advantages__layout {
    gap: 44px;
  }

  .journey {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .journey li::after,
  .journey li::before {
    display: none;
  }

  .closing__card {
    padding: 68px 30px 64px;
  }

  .price-card__header p,
  .features li,
  .journey p {
    font-size: 14px;
  }

  .renewal,
  .plans-note {
    font-size: 13px;
  }

  .footer__panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    padding: 35px 30px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__brand p {
    max-width: 510px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 7px;
  }

  .admin-sidebar {
    width: 72px;
  }

  .admin-sidebar__brand {
    justify-content: center;
    padding: 0;
  }

  .admin-sidebar__brand img {
    width: 32px;
    height: 32px;
    object-fit: contain;
  }

  .admin-sidebar__link span,
  .admin-sidebar__link:not(.admin-sidebar__link--logout)::after {
    display: none;
  }

  .admin-sidebar__link svg {
    width: 20px;
    height: 20px;
  }

  .admin-sidebar__link {
    justify-content: center;
    padding: 0;
    min-height: 48px;
  }

  .admin-main {
    margin-left: 72px;
  }

  .admin-card__form {
    grid-template-columns: minmax(0, 1fr);
  }

  .client-sidebar {
    width: 72px;
  }

  .client-sidebar__brand {
    justify-content: center;
    padding: 0;
  }

  .client-sidebar__brand img {
    width: 32px;
    height: 32px;
    object-fit: contain;
  }

  .client-sidebar__link span,
  .client-sidebar__link:not(.client-sidebar__link--logout)::after {
    display: none;
  }

  .client-sidebar__link svg {
    width: 20px;
    height: 20px;
  }

  .client-sidebar__link {
    justify-content: center;
    gap: 0;
    padding: 0;
    min-height: 48px;
  }

  .client-main {
    margin-left: 72px;
  }

  .client-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  .admin-layout,
  .client-layout {
    width: 100%;
    overflow-x: clip;
  }

  .client-sidebar {
    width: 64px;
  }

  .client-sidebar__brand {
    height: 56px;
    justify-content: center;
    padding: 0;
  }

  .client-sidebar__brand img {
    width: 32px;
    height: 32px;
    object-fit: contain;
  }

  .client-sidebar__nav {
    padding: 10px 8px;
  }

  .client-sidebar__footer {
    padding: 8px;
  }

  .client-sidebar__link {
    justify-content: center;
    gap: 0;
    min-height: 46px;
    padding: 0;
    border-radius: 10px;
  }

  .client-sidebar__link span {
    display: none;
  }

  .client-sidebar__link svg {
    width: 19px;
    height: 19px;
  }

  .client-main {
    margin-left: 64px;
  }

  .admin-sidebar {
    width: 64px;
  }

  .admin-sidebar__brand {
    height: 56px;
    justify-content: center;
    padding: 0;
  }

  .admin-sidebar__brand img {
    width: 32px;
    height: 32px;
    object-fit: contain;
  }

  .admin-sidebar__nav {
    padding: 10px 8px;
  }

  .admin-sidebar__footer {
    padding: 8px;
  }

  .admin-sidebar__link {
    justify-content: center;
    gap: 0;
    min-height: 46px;
    padding: 0;
    border-radius: 10px;
  }

  .admin-sidebar__link span {
    display: none;
  }

  .admin-sidebar__link svg {
    width: 19px;
    height: 19px;
  }

  .admin-main {
    width: calc(100vw - 64px);
    min-width: 0;
    margin-left: 64px;
  }

  .admin-topbar {
    height: 56px;
    min-width: 0;
    padding: 0 12px;
    gap: 10px;
  }

  .admin-topbar__title {
    min-width: 0;
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .admin-topbar__right {
    min-width: 0;
    gap: 8px;
  }

  .admin-topbar__greeting {
    max-width: 92px;
    font-size: 12px;
    line-height: 1.15;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .admin-topbar__avatar {
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
  }

  .admin-content {
    width: 100%;
    min-width: 0;
    padding: 20px 14px 28px;
    overflow-x: clip;
  }

  .admin-page__header {
    margin-bottom: 14px;
  }

  .admin-page__title {
    font-size: 28px;
    line-height: 1.1;
  }

  .admin-metrics,
  .admin-grid,
  .dashboard-donuts-grid,
  .dashboard-health__grid {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    min-width: 0;
  }

  .admin-card,
  .admin-metric,
  .dashboard-chart-card,
  .dashboard-health,
  .briefings-sidebar,
  .briefing-detail {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .admin-card {
    gap: 14px;
    padding: 18px;
    border-radius: 14px;
  }

  .admin-card__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .admin-card__footer,
  .admin-card-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-btn,
  .admin-card__footer .admin-btn,
  .admin-card-footer .admin-btn,
  .admin-card__footer .admin-btn-small,
  .admin-card-footer .admin-btn-small,
  .admin-btn-primary,
  .admin-btn-secondary,
  .admin-btn-ghost {
    width: 100%;
  }

  .dashboard-donut-card__body {
    min-width: 0;
    gap: 22px;
  }

  .dashboard-donut {
    max-width: min(180px, 100%);
    width: min(180px, 100%);
    height: 180px;
  }

  .dashboard-donut canvas {
    max-width: 100%;
  }

  .dashboard-donut-metrics {
    min-width: 0;
  }

  .briefings-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

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

  .briefings-filter-btn,
  .briefings-btn {
    width: 100%;
  }

  .briefings-card__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

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

  .briefing-section__title svg,
  .briefings-search svg,
  .dashboard-donut-empty__icon {
    max-width: 48px;
    max-height: 48px;
  }

  .faq__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    max-width: 660px;
  }

  .faq__intro {
    position: static;
    max-width: 600px;
  }

  .accordion {
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  .nav {
    top: 70px;
  }

  .testimonial-card {
    padding: 26px 20px;
    gap: 16px;
  }

  .trust__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .trust-card {
    padding: 22px 20px;
  }

  .warranty__layout {
    padding: 38px 20px;
    border-radius: var(--radius-md);
  }

  .container {
    width: calc(100% - 40px);
  }

  .header {
    height: 70px;
  }

  .brand__logo {
    width: 112px;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 10.8vw, 2.7rem);
    line-height: 1.12;
  }

  .section {
    padding: 78px 0;
  }

  .eyebrow {
    height: 36px;
    padding-inline: 13px;
    margin-bottom: 23px;
    font-size: 11px;
  }

  .hero__lead {
    font-size: 15.5px;
    line-height: 1.68;
    margin-bottom: 28px;
  }

  .hero__actions {
    gap: 12px;
    margin-bottom: 32px;
  }

  .hero__support {
    font-size: 14px;
    line-height: 1.65;
  }

  .hero-micro-social {
    display: inline-flex;
    margin-inline: auto;
    justify-content: center;
    margin-bottom: 20px;
    padding: 5px 12px 5px 6px;
  }

  .hero__actions,
  .closing__actions {
    flex-direction: column;
  }

  .hero__actions .button,
  .closing__actions .button {
    width: 100%;
  }

  .trust-bar {
    display: grid;
    padding: 18px 17px;
    margin-bottom: 23px;
  }

  .trust-bar span {
    font-size: 13px;
  }

  .product-visual {
    min-height: 495px;
    margin-inline: 0;
    padding: 18px 0 0;
  }

  .product-visual::before {
    inset: 3% 0 5% 4%;
    border-radius: 26px;
  }

  .hero-panel {
    top: 20px;
    right: 0;
    width: 100%;
    padding: 13px;
    border-radius: 18px;
  }

  .hero-panel__top {
    padding-bottom: 11px;
  }

  .hero-panel__brand > img {
    width: 28px;
    height: 28px;
  }

  .hero-panel__status {
    font-size: 9px;
  }

  .hero-panel__metrics {
    gap: 6px;
    margin: 11px 0 0;
  }

  .hero-panel__metric {
    min-height: 86px;
    gap: 4px;
    padding: 8px 7px;
  }

  .hero-panel__metric svg {
    width: 14px;
    height: 14px;
  }

  .hero-panel__metric strong {
    font-size: 13px;
  }

  .hero-panel__metric small,
  .hero-panel__metric span {
    font-size: 8px;
  }

  .hero-panel__footer,
  .hero-chat,
  .hero-feedback--published,
  .hero-feedback--connected {
    display: none;
  }

  .hero-phone {
    --hero-phone-tilt: 0deg;
    bottom: 0;
    left: 6px;
    width: 170px;
    height: 305px;
    transform: none;
  }

  .hero-phone__body {
    padding: 14px 11px;
  }

  .hero-phone__body p {
    font-size: 14px;
  }

  .hero-phone__preview {
    grid-template-rows: 40px 31px;
  }

  .hero-feedback--order {
    top: auto;
    right: 0;
    bottom: 36px;
    padding: 9px 10px;
    font-size: 9px;
  }

  .scenario-flow {
    gap: 16px;
  }

  .flow-groups {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .section-copy h2,
  .section-heading h2,
  .advantages__intro h2 {
    font-size: clamp(2rem, 9vw, 2.35rem);
    line-height: 1.13;
    margin-bottom: 18px;
  }

  .section-copy p,
  .section-heading p {
    font-size: 15px;
  }

  .section-heading,
  .section-heading--center {
    margin-bottom: 46px;
  }

  .problem__layout {
    gap: 38px;
  }

  .flow-block--hero {
    padding: 22px;
  }

  .flow-group {
    padding: 20px;
  }

  .flow-insight {
    padding: 16px;
    gap: 12px;
  }

  .flow-solution {
    padding: 20px;
    gap: 16px;
  }
  
  .flow-solution__text {
    font-size: 13.5px;
  }

  .solution-board {
    grid-template-columns: minmax(0, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .portfolio-card__content {
    padding: 22px 20px 21px;
  }

  .solution-block--panel {
    display: flex;
    flex-direction: column;
  }

  .solution-block {
    min-height: 0;
    padding: 27px 24px;
  }

  .solution-block--whats {
    padding-top: 27px;
  }

  .solution-block h3 {
    font-size: 21px;
  }

  .panel-snippet {
    width: 100%;
  }

  .payment-fragment,
  .whats-fragment,
  .panel-snippet {
    margin-top: 28px;
    padding: 12px;
  }

  .advantage-list {
    grid-template-columns: 1fr;
  }

  .advantage-list article {
    padding: 24px 0;
  }

  .price-card {
    padding: 30px 23px 26px;
  }

  .price-card--featured {
    padding-top: 46px;
  }

  .price-card h3 {
    font-size: 25px;
  }

  .price-card__header p {
    min-height: 0;
  }

  .pricing__budget-note {
    margin: -22px auto 38px;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 13px;
  }

  .price__value {
    font-size: 43px;
  }

  .addons__grid {
    gap: 42px;
  }

  .addon-cloud span {
    padding: 14px 16px;
  }

  .journey {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px; /* Grid vertical compacto e elegante */
  }

  .journey li {
    min-height: 0;
    padding: 28px 23px;
  }

  .journey p {
    max-width: none;
  }

  /* Remove conectores e setas no mobile */
  .journey li::after,
  .journey li::before {
    display: none !important;
  }

  .section-heading .comparison__hint {
    display: block;
    margin-top: 18px;
    color: #756a73;
    font-size: 13px;
  }

  .table-wrap {
    position: relative;
    margin-right: -4px;
    border-radius: 18px 0 0 18px;
  }

  th,
  td {
    padding: 15px 16px;
  }

  table {
    min-width: 660px;
  }

  thead th:first-child,
  tbody th {
    position: sticky;
    left: 0;
    z-index: 1;
    background: white;
    box-shadow: 9px 0 13px -14px rgba(58, 18, 48, 0.72);
  }

  thead th:first-child {
    z-index: 2;
  }

  .accordion summary {
    min-height: 56px;
    font-size: 16px;
    padding: 18px 52px 18px 19px;
  }

  .accordion summary::before,
  .accordion summary::after {
    right: 19px;
    width: 15px;
  }

  .accordion details p {
    font-size: 14px;
    padding: 3px 44px 20px 19px;
  }

  .closing {
    padding-top: 0;
  }

  .closing__card {
    border-radius: 27px;
    padding: 57px 22px 54px;
  }

  .closing__card h2 {
    font-size: clamp(2rem, 9vw, 2.35rem);
  }

  .closing__card p {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .closing__trust {
    display: grid;
    justify-content: start;
    gap: 12px;
    max-width: 278px;
    margin-bottom: 30px;
    text-align: left;
  }

  .footer {
    padding-bottom: 84px;
  }

  .footer__panel {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    padding: 30px 22px;
    border-radius: 20px;
  }

  .footer__brand .brand__logo {
    width: 124px;
  }

  .footer__whatsapp {
    width: 100%;
  }

  .footer__bottom {
    align-items: center;
    padding-top: 18px;
    text-align: center;
  }

  .auth-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .auth-hero {
    padding: 40px clamp(24px, 5vw, 40px);
  }

  .auth-hero .brand__logo {
    margin-bottom: 32px;
  }

  .auth-hero__body {
    max-width: 520px;
  }

  .auth-hero__text {
    margin-bottom: 28px;
  }

  .auth-col {
    padding: 0 0 48px;
  }

  .auth-card {
    width: min(100%, 480px);
    padding: 0 24px;
  }

  .portal__shell {
    margin-top: 28px;
    border-radius: 18px;
  }

  .portal__tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portal__tab {
    padding: 0 10px;
  }

  .portal__panel {
    padding: 14px;
  }

  .portal-card {
    border-radius: 16px;
    padding: 17px;
  }

  .auth-screen {
    padding: 24px;
  }

  .app-shell {
    width: min(var(--container), calc(100% - 32px));
    padding-top: 20px;
  }

  .app-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .checkout-options label {
    grid-template-columns: auto 1fr;
  }

  .checkout-options span {
    grid-column: 2;
  }

  .portal-card__header,
  .briefing-form__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .briefing-form__actions .button {
    width: 100%;
  }

  .admin-overview {
    grid-template-columns: minmax(0, 1fr);
  }

  .auth-col {
    padding: 0 0 40px;
  }

  .auth-card {
    padding: 0 16px;
  }

  .auth-input {
    min-height: 46px;
    font-size: 16px;
  }

  .auth-btn {
    min-height: 48px;
    font-size: 14px;
  }

  .auth-card__subhead {
    margin-bottom: 22px;
  }

  .whatsapp-direct-float {
    right: 82px;
    bottom: 23px;
    min-height: 42px;
    padding: 0 13px;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    padding: 0;
    justify-content: center;
    right: 17px;
    bottom: 17px;
  }

  .lead-chat {
    top: 80px;
    right: 10px;
    bottom: 80px;
    width: calc(100vw - 20px);
    max-height: none;
    border-radius: 19px;
  }

  .lead-chat__header,
  .lead-chat__body {
    padding: 14px;
  }

  .lead-chat__body {
    padding: 11px 14px 12px;
  }

  .lead-chat__bubble {
    margin-bottom: 10px;
    padding: 9px 11px;
  }

  .lead-chat__form {
    gap: 8px;
  }

  .lead-chat__question {
    gap: 5px;
    padding: 8px;
  }

  .lead-chat__question input,
  .lead-chat__question textarea {
    padding: 8px 10px;
  }

  .lead-chat__question textarea {
    height: 62px;
  }

  .lead-chat__privacy {
    font-size: 10px;
  }

  .lead-chat__actions {
    gap: 5px;
  }

  .lead-chat__clear {
    min-height: 33px;
  }

  .lead-chat__send {
    min-height: 43px;
  }

  .admin-metrics {
    grid-template-columns: minmax(0, 1fr);
  }

  .admin-content {
    padding: 16px;
  }

  .client-cards {
    grid-template-columns: minmax(0, 1fr);
  }

  .client-content {
    padding: 16px;
  }

  .client-topbar {
    height: 60px;
    padding: 0 16px;
  }

  .client-topbar__title {
    font-size: 17px;
  }

  .client-topbar__greeting {
    font-size: 12px;
  }

  .client-card {
    padding: 18px;
    border-radius: 14px;
  }

  .client-project-hero,
  .client-timeline-card,
  .client-briefing-panel__intro,
  .client-project-followup {
    border-radius: 16px;
  }

  .client-project-hero,
  .client-timeline-card,
  .client-project-followup {
    padding: 18px;
  }

  .client-project-hero__meta {
    padding: 12px;
  }

  .client-project-hero__meta span {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .client-project-hero__meta strong {
    text-align: left;
  }

  .client-project-note {
    grid-template-columns: minmax(0, 1fr);
  }

  .client-project-note p {
    grid-column: auto;
  }

  .client-grid {
    gap: 14px;
  }

  .client-input {
    min-height: 42px;
    font-size: 16px;
  }

  .client-btn {
    min-height: 44px;
    font-size: 13px;
  }

  .client-list li {
    padding: 10px 12px;
  }

  .client-card--locked {
    padding: 24px 20px;
  }

  .client-card--summary {
    padding: 20px;
  }

  .admin-metric {
    padding: 16px;
  }

  .admin-card--denied {
    padding: 24px 20px;
  }

  .admin-topbar {
    height: 60px;
    padding: 0 16px;
  }

  .admin-topbar__title {
    font-size: 17px;
  }

  .admin-topbar__greeting {
    font-size: 12px;
  }

  .admin-card {
    padding: 18px;
    border-radius: 14px;
  }

  .admin-grid {
    gap: 14px;
  }

  .admin-field__input {
    min-height: 40px;
    font-size: 16px;
  }

  .admin-btn {
    min-height: 42px;
    font-size: 13px;
  }

  .admin-list li {
    padding: 10px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-phone,
  .hero-chat,
  .hero-feedback,
  .hero-panel__status i,
  .hero-phone__status::before {
    animation: none;
  }
}

@media (hover: none) {
  .button:hover,
  .solution-block:hover,
  .portfolio-card:hover,
  .price-card:not(.price-card--featured):hover,
  .addon-cloud span:hover,
  .whatsapp-float:hover,
  .lead-chat__send:hover {
    transform: none;
  }

  .portfolio-card:hover .portfolio-card__preview img {
    transform: none;
  }

  .advantage-list article:hover .detail-icon {
    color: var(--magenta);
    background: white;
    border-color: var(--primary-border);
  }
}

