/* ============================================================
   Granus - Landing Page Plano Profissional
   Identidade extraída de referencia/ (dist da Home atual).
   Tokens principais: navy #0D2E4F, laranja #F88705, Inter.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --navy: #0d2e4f;
  --navy-deep: #092138;
  --navy-soft: #1a4066;
  --ink: #0e2433;
  --muted: #52667a;
  --bg: #f5f7fa;
  --white: #ffffff;
  --card-border: #e7edf4;

  --orange: #f88705;
  --orange-bright: #fe8f37;
  --orange-hover: #ffa640;
  --grad-cta: linear-gradient(180deg, #ff950f, #f57b00);
  --grad-cta-hover: linear-gradient(180deg, #ffa42f, #f88705);

  --on-navy-muted: #b9c9da;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  --shadow-card: 0 2px 8px rgba(13, 46, 79, 0.06);
  --shadow-float: 0 18px 44px rgba(10, 34, 58, 0.2);
  --shadow-cta: 0 12px 22px rgba(248, 135, 5, 0.22);

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --container: 1140px;
  --header-h: 72px;

  --z-header: 50;
  --z-menu: 40;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1,
h2,
h3 {
  line-height: 1.15;
  text-wrap: balance;
  margin: 0;
}

p {
  margin: 0;
  text-wrap: pretty;
}

ul,
ol,
dl,
dd,
figure {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

/* ---------- Layout base ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 32px);
}

.container--narrow {
  max-width: 880px;
}

.section {
  padding-block: clamp(64px, 9vw, 108px);
}

.section--alt {
  background: var(--white);
}

.section h2 {
  color: var(--navy);
  font-size: clamp(1.65rem, 3.4vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
}

.section__lead {
  max-width: 62ch;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  text-align: center;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 800;
  line-height: 1.15;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.2s ease;
}

.btn svg {
  width: 20px;
  height: 20px;
  flex: none;
}

.btn--primary {
  color: #fff;
  background: var(--grad-cta);
  box-shadow: var(--shadow-cta);
}

.btn--primary:hover {
  background: var(--grad-cta-hover);
  transform: translateY(-2px);
}

.btn--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.65);
}

.btn--ghost:hover {
  color: var(--navy);
  background: #fff;
  box-shadow: inset 0 0 0 2px #fff;
}

.btn--sm {
  padding: 9px 18px;
  font-size: 0.9rem;
}

.btn--lg {
  min-height: 52px;
  padding: 14px 28px;
  font-size: 1.02rem;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: var(--navy);
  transition: box-shadow 0.25s ease;
}

.header.is-scrolled {
  box-shadow: 0 6px 18px rgba(9, 33, 56, 0.35);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.brand__name {
  display: flex;
  flex-direction: column;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
}

.brand__name small {
  color: var(--on-navy-muted);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav__link {
  position: relative;
  padding-block: 6px;
  color: #fff;
  font-size: 0.94rem;
  font-weight: 600;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--orange-bright);
  transition: right 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav__link:hover::after {
  right: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: var(--radius-sm);
}

.nav-toggle__bar {
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(160deg, var(--navy) 55%, var(--navy-deep));
  padding-block: clamp(56px, 8vw, 96px) clamp(120px, 14vw, 170px);
}

.hero::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -180px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(50, 120, 187, 0.28), transparent 65%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(40px, 6vw, 72px);
}

.badge {
  display: inline-block;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  color: var(--orange-bright);
  background: rgba(254, 143, 55, 0.14);
  box-shadow: inset 0 0 0 1px rgba(254, 143, 55, 0.45);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 18px;
  font-size: clamp(2rem, 4.6vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.hero h1 mark {
  color: var(--orange-bright);
  background: none;
}

.hero__sub {
  max-width: 54ch;
  margin-top: 18px;
  color: var(--on-navy-muted);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.65;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero__chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  color: #e8eef5;
  font-size: 0.85rem;
  font-weight: 600;
}

.hero__chips svg {
  width: 16px;
  height: 16px;
  color: var(--orange-bright);
}

.hero__curve {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: clamp(40px, 6vw, 90px);
}

/* Visual do hero */
.hero__visual {
  position: relative;
  max-width: 460px;
  justify-self: end;
  width: 100%;
}

.pill-ilimitada {
  position: absolute;
  top: -16px;
  right: -8px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border-radius: var(--radius-pill);
  color: var(--navy);
  background: #fff;
  box-shadow: var(--shadow-float);
  font-size: 0.82rem;
  font-weight: 800;
}

.pill-ilimitada svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
}

/* ---------- Mock: janela "Criar etiqueta" ---------- */
.ui-window {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
  color: var(--ink);
}

.ui-window__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  color: #fff;
  background: var(--navy);
  font-size: 0.95rem;
}

.ui-window__bar svg {
  width: 18px;
  height: 18px;
  color: var(--orange-bright);
}

.ui-window__close {
  margin-left: auto;
  color: var(--on-navy-muted);
  font-size: 1.2rem;
  line-height: 1;
}

.ui-window__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
  padding: 18px;
}

.ui-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.ui-field--full {
  grid-column: 1 / -1;
}

.ui-field__label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.ui-field__input {
  overflow: hidden;
  padding: 8px 11px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  background: #fbfcfe;
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ui-toggle {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
}

.ui-toggle__switch {
  position: relative;
  flex: none;
  width: 36px;
  height: 20px;
  border-radius: var(--radius-pill);
  background: var(--navy);
}

.ui-toggle__switch::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
}

.ui-btn {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
  padding: 12px;
  border-radius: 10px;
  color: #fff;
  background: var(--grad-cta);
  font-size: 0.92rem;
  font-weight: 800;
}

.ui-btn svg {
  width: 18px;
  height: 18px;
}

/* ---------- Mock: etiqueta ---------- */
.etq {
  width: 100%;
  max-width: 320px;
  padding: 20px 22px 18px;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  color: var(--ink);
}

.etq__title {
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.etq__data {
  display: grid;
  gap: 7px;
  padding-block: 12px;
  border-bottom: 1px dashed #c6d0db;
}

.etq__data > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.82rem;
}

.etq__data dt {
  color: var(--muted);
  font-weight: 600;
}

.etq__data dd {
  font-weight: 700;
  text-align: right;
}

.etq__foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
}

.etq__foot img {
  width: 56px;
  height: 56px;
  flex: none;
}

.etq__foot p {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.etq__foot strong {
  color: var(--navy);
}

.etq--float {
  position: absolute;
  z-index: 2;
  right: -28px;
  bottom: 92px; /* acima do botão "Imprimir etiqueta" do mock */
  max-width: 260px;
  box-shadow: var(--shadow-float);
  border: 0;
}

/* ---------- Seção de dor ---------- */
.pain__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px;
  max-width: 820px;
  margin: 40px auto 0;
}

.pain__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
}

.pain__list svg {
  flex: none;
  width: 22px;
  height: 22px;
  color: #c62828;
}

/* ---------- Como funciona ---------- */
.steps__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 52px;
  counter-reset: step;
}

.steps__item {
  position: relative;
  text-align: center;
}

/* conector tracejado entre passos */
.steps__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 34px;
  left: calc(50% + 48px);
  width: calc(100% - 96px);
  border-top: 2px dashed #b9c9da;
}

.steps__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--bg);
  box-shadow: inset 0 0 0 1px var(--card-border);
}

.steps__icon svg {
  width: 30px;
  height: 30px;
}

.steps__item strong {
  display: block;
  margin-top: 16px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
}

.steps__num {
  color: var(--orange);
}

.steps__item p {
  max-width: 26ch;
  margin: 8px auto 0;
  color: var(--muted);
  font-size: 0.88rem;
}

/* ---------- Seção visual principal (workflow) ---------- */
.workflow__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) auto minmax(0, 1.16fr) auto minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(12px, 2vw, 20px);
  margin-top: 52px;
}

.workflow__arrow {
  color: var(--orange);
}

.workflow__arrow svg {
  width: 30px;
  height: 30px;
}

.ui-window--flow {
  box-shadow: 0 14px 36px rgba(10, 34, 58, 0.14);
}

.workflow__result {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.workflow__result .etq {
  box-shadow: 0 14px 36px rgba(10, 34, 58, 0.14);
  border: 0;
}

.workflow__toolbar {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 0.85rem;
}

.workflow__toolbar span,
.workflow__toolbar strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  padding: 4px 6px;
  border-radius: 6px;
}

.workflow__toolbar span {
  background: var(--bg);
  font-weight: 700;
}

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

/* painel de produtos */
.ui-panel {
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 36px rgba(10, 34, 58, 0.14);
}

.ui-panel__head {
  display: grid;
  gap: 10px;
  padding: 16px 16px 12px;
}

.ui-panel__head strong {
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 800;
}

.ui-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  background: #fbfcfe;
  color: var(--muted);
  font-size: 0.8rem;
}

.ui-search svg {
  width: 15px;
  height: 15px;
}

.ui-products li {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 16px;
  border-top: 1px solid var(--card-border);
}

.ui-products li.is-selected {
  background: #fff6ec;
  box-shadow: inset 3px 0 0 var(--orange);
}

.ui-products__thumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--bg);
  font-size: 1.15rem;
}

.ui-products__info {
  min-width: 0;
  display: grid;
}

.ui-products__info strong {
  overflow: hidden;
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ui-products__info small {
  color: var(--muted);
  font-size: 0.72rem;
}

.ui-products__check {
  flex: none;
  width: 18px;
  height: 18px;
  margin-left: auto;
  color: var(--orange);
}

.ui-panel__foot {
  padding: 12px 16px;
  border-top: 1px solid var(--card-border);
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 700;
  text-align: center;
}

/* ---------- Benefícios ---------- */
.benefits__banner {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 30px);
  margin-top: 44px;
  padding: clamp(24px, 3.4vw, 34px) clamp(22px, 3.6vw, 40px);
  border-radius: var(--radius-lg);
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
}

.benefits__banner-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  color: var(--orange-bright);
  background: rgba(254, 143, 55, 0.13);
  box-shadow: inset 0 0 0 1px rgba(254, 143, 55, 0.4);
}

.benefits__banner-icon svg {
  width: 36px;
  height: 36px;
}

.benefits__banner h3 {
  font-size: 1.3rem;
  font-weight: 800;
}

.benefits__banner p {
  margin-top: 6px;
  color: #e8eef5;
  font-size: 0.98rem;
}

.benefits__banner small {
  display: block;
  margin-top: 10px;
  color: var(--on-navy-muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.benefits__grid li {
  padding: 26px 24px;
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
}

.benefits__grid li:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.benefits__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  color: var(--orange);
  background: #fff0e0;
}

.benefits__icon svg {
  width: 23px;
  height: 23px;
}

.benefits__grid h3 {
  margin-top: 16px;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 800;
}

.benefits__grid p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---------- Planos ---------- */
.plans__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 24px;
  align-items: stretch;
  max-width: 960px;
  margin: 48px auto 0;
}

.plan {
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3vw, 36px);
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
}

.plan__head h3 {
  color: var(--navy);
  font-size: 1.45rem;
  font-weight: 800;
}

.plan__head p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.plan__list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--card-border);
}

.plan__list li {
  position: relative;
  padding-left: 30px;
  font-size: 0.95rem;
  font-weight: 600;
}

.plan__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--navy) no-repeat center / 11px
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3.5"><path d="m4.5 12.5 5 5L19.5 7"/></svg>');
}

.plan--pro {
  position: relative;
  color: #fff;
  background: linear-gradient(160deg, var(--navy), var(--navy-deep));
  border: 0;
  box-shadow: var(--shadow-float);
}

.plan--pro .plan__head h3 {
  color: #fff;
}

.plan--pro .plan__head p {
  color: var(--on-navy-muted);
}

.plan--pro .plan__list {
  border-top-color: rgba(255, 255, 255, 0.14);
}

.plan--pro .plan__list li::before {
  background-color: var(--orange);
}

.plan__flag {
  position: absolute;
  top: -14px;
  left: clamp(26px, 3vw, 36px);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  color: #fff;
  background: var(--grad-cta);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan__cta {
  margin-top: 28px;
}

/* ---------- Prova de valor ---------- */
.value {
  color: #fff;
  background: linear-gradient(160deg, var(--navy) 60%, var(--navy-deep));
  text-align: center;
}

.value h2 {
  color: #fff;
}

.value > .container > p {
  max-width: 58ch;
  margin: 16px auto 0;
  color: var(--on-navy-muted);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
}

.value__points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(16px, 4vw, 24px);
  margin-top: 40px;
}

.value__points li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 800;
}

.value__points li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange-bright);
}

/* ---------- FAQ ---------- */
.faq__list {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin: 44px auto 0;
}

.faq__item {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
  transition: box-shadow 0.25s ease;
}

.faq__item h3 {
  font-size: inherit;
  font-weight: inherit;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 22px;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 700;
  text-align: left;
}

.faq__question:hover {
  background: var(--navy-soft);
}

.faq__question:focus-visible {
  outline: 2px solid var(--orange-bright);
  outline-offset: -2px;
}

.faq__icon {
  position: relative;
  flex: none;
  width: 18px;
  height: 18px;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--orange-bright);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq__icon::before {
  width: 14px;
  height: 2px;
}

.faq__icon::after {
  width: 2px;
  height: 14px;
}

.faq__question[aria-expanded="true"] .faq__icon::after {
  transform: rotate(90deg) scaleX(0);
}

.faq__answer {
  background: #fff;
  border: 1px solid var(--card-border);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
}

.faq__answer p {
  max-width: 68ch;
  padding: 18px 22px;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.6;
}

/* ---------- CTA final ---------- */
.cta-final {
  padding-top: 0;
}

.cta-final__panel {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 7vw, 80px) clamp(24px, 6vw, 90px);
  border-radius: clamp(16px, 2.4vw, 22px);
  color: #fff;
  background:
    radial-gradient(circle at 12% 0%, rgba(50, 120, 187, 0.35), transparent 45%),
    radial-gradient(circle at 95% 100%, rgba(248, 135, 5, 0.22), transparent 40%),
    linear-gradient(160deg, var(--navy), var(--navy-deep));
  text-align: center;
}

.cta-final__panel h2 {
  max-width: 24ch;
  margin-inline: auto;
  color: #fff;
}

.cta-final__panel p {
  max-width: 52ch;
  margin: 16px auto 0;
  color: var(--on-navy-muted);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
}

.cta-final__panel .btn {
  margin-top: 30px;
}

.cta-final__panel small {
  display: block;
  margin-top: 14px;
  color: var(--on-navy-muted);
  font-size: 0.8rem;
}

/* ---------- Footer ---------- */
.footer {
  color: #fff;
  background: var(--navy-deep);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(28px, 5vw, 60px);
  padding-block: clamp(44px, 6vw, 64px);
}

.footer__brand img {
  width: 40px;
}

.footer__brand strong {
  display: block;
  margin-top: 14px;
  font-size: 1.15rem;
  font-weight: 800;
}

.footer__brand p {
  margin-top: 4px;
  color: var(--on-navy-muted);
  font-size: 0.88rem;
}

.footer__col h3 {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-bright);
}

.footer__col ul {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.footer__col li {
  color: var(--on-navy-muted);
  font-size: 0.92rem;
}

.footer__col a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer__bottom {
  padding-block: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__bottom p {
  color: var(--on-navy-muted);
  font-size: 0.8rem;
  text-align: center;
}

/* ---------- Animações de entrada ---------- */
/* .reveal-init só é aplicada via JS: sem JS, tudo fica visível. */
.reveal-init {
  opacity: 0;
  transform: translateY(24px);
}

.reveal-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--d, 0s);
}

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

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

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

/* ============================================================
   Responsivo
   ============================================================ */

@media (max-width: 1080px) {
  /* workflow vira coluna: lista -> modal -> etiqueta */
  .workflow__grid {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 20px;
  }

  .workflow__grid > * {
    width: 100%;
    max-width: 480px;
  }

  .workflow__arrow {
    width: auto !important;
    transform: rotate(90deg);
  }

  .steps__track {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 24px;
  }

  .steps__item:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    justify-self: center;
    margin-top: 24px;
  }

  .etq--float {
    right: -8px;
  }

  .plans__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .plan--pro {
    order: -1;
    margin-top: 14px;
  }

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

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  /* menu mobile */
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: var(--z-menu);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px 20px 22px;
    background: var(--navy);
    box-shadow: 0 18px 30px rgba(9, 33, 56, 0.35);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.25s;
  }

  .nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav__link {
    display: block;
    padding: 13px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
  }

  .nav__link::after {
    display: none;
  }

  .nav .btn {
    margin-top: 14px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-bottom: 150px;
  }

  .hero__ctas .btn {
    width: 100%;
  }

  .ui-window__body {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero__visual {
    max-width: 380px;
  }

  .etq--float {
    position: static;
    max-width: none;
    margin-top: 16px;
    box-shadow: var(--shadow-float);
  }

  .pill-ilimitada {
    top: -14px;
    right: 4px;
  }

  .steps__track {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .benefits__banner {
    flex-direction: column;
    align-items: flex-start;
  }

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