:root {
  --blue: #324792;
  --blue-soft: #566cb2;
  --orange: #ec5a29;
  --orange-soft: #f07d56;
  --ink: #1a1a1a;
  --muted: #4d4d4d;
  --muted-soft: #b3b3b3;
  --paper: #f4f2ef;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(36, 56, 111, 0.12);
  --radius: 24px;
  --container: min(1480px, calc(100vw - 56px));
  --header-offset: 118px;
  --role-note-border: #ec5a29;
  --role-cta-text: #f07d56;
  --plans-overlap: 180px;
}

@font-face {
  font-family: "Gotham";
  src: local("Gotham Book"), local("Gotham-Book"), local("Gotham");
  font-weight: 400;
}

@font-face {
  font-family: "Gotham";
  src: local("Gotham Medium"), local("Gotham-Medium"), local("Gotham");
  font-weight: 500;
}

@font-face {
  font-family: "Gotham";
  src: local("Gotham Bold"), local("Gotham-Bold"), local("Gotham");
  font-weight: 700;
}

@font-face {
  font-family: "Gotham";
  src: local("Gotham Black"), local("Gotham-Black"), local("Gotham");
  font-weight: 900;
}

@font-face {
  font-family: "Gotham";
  src: local("Gotham Ultra"), local("Gotham-Ultra"), local("Gotham");
  font-weight: 1000;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

body {
  margin: 0;
  font-family: "Gotham", "Montserrat", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f2f2f2 0%, #f2f2f2 29.931%, #ffffff 63.683%, #ffffff 100%);
}

#hero,
#pra-quem-e,
#como-funciona,
#faq,
#contato {
  scroll-margin-top: var(--header-offset);
}

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

button,
input,
textarea {
  font: inherit;
}

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

.topbar-wrap {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(244, 242, 239, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(50, 71, 146, 0.08);
  transition: background 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0 16px;
  position: relative;
  z-index: 10;
  transition: padding 260ms ease, gap 260ms ease;
}

.brand {
  display: flex;
  align-items: center;
  width: 237px;
  height: 72px;
  transform-origin: left center;
  transition: transform 260ms ease;
}

.brand-logo {
  position: relative;
  display: block;
  width: 237px;
  height: 72px;
}

.brand-logo img {
  position: absolute;
  display: block;
}

.brand-wordmark {
  inset: 13px 0 2px 73px;
  width: 164px;
  height: 57px;
}

.brand-c {
  left: 0;
  top: 27px;
  width: 57px;
  height: 45px;
}

.brand-hat {
  left: 0;
  top: 0;
  width: 61px;
  height: 31px;
}

.brand-divider {
  left: 1px;
  top: 26px;
  width: 56px;
  height: 14px;
}

.brand-accent {
  left: 54px;
  top: 26px;
  width: 2px;
  height: 3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 48px;
  font-size: 18px;
  font-weight: 500;
  transition: gap 260ms ease, font-size 260ms ease;
}

.nav a {
  position: relative;
  transition: color 260ms ease, transform 260ms ease;
}

body.is-scrolled .topbar-wrap {
  background: rgba(244, 242, 239, 0.96);
  box-shadow: 0 8px 24px rgba(36, 56, 111, 0.08);
  border-color: rgba(50, 71, 146, 0.1);
}

body.is-scrolled .topbar {
  gap: 20px;
  padding: 10px 0;
}

body.is-scrolled .brand {
  transform: scale(0.72);
}

body.is-scrolled .nav {
  gap: 36px;
  font-size: 16px;
}

body.is-scrolled .btn-small {
  min-height: 46px;
  padding: 0 24px;
  font-size: 16px;
}

.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange-soft), var(--orange));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 260ms ease;
}

.nav a:not(.btn):hover {
  color: var(--blue);
}

.nav a:not(.btn):hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.nav-toggle span + span {
  margin-top: 5px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease, color 260ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.btn-small {
  min-height: 54px;
  padding: 0 32px;
  font-size: 18px;
  border-radius: 8px;
}

.btn-primary {
  background: linear-gradient(180deg, var(--orange-soft), var(--orange));
  color: var(--white);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #ff8d67, #f05a22);
  box-shadow: 0 14px 28px rgba(236, 90, 41, 0.28);
}

.btn-secondary {
  background: var(--white);
  border-color: rgba(50, 71, 146, 0.18);
  color: var(--muted);
}

.btn-secondary.light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue);
}

.btn-light {
  background: var(--white);
  color: var(--orange);
  width: fit-content;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 641px) minmax(0, 910px);
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 72px 0 96px;
}

.eyebrow,
.section-tag {
  margin: 0 0 14px;
  font-weight: 500;
  color: var(--orange);
  text-transform: none;
}

.eyebrow {
  font-size: 18px;
  line-height: 1.3;
}

.hero h1,
.profile-intro h2,
.flow-section h2,
.plans-section h2,
.stores-section h2,
.faq-section h2,
.contact-section h2,
.final-cta h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 641px;
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: 0;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 64px;
}

.microcopy {
  margin: 24px 0 0;
  color: var(--muted-soft);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 71px;
  min-width: 288px;
  padding: 24px 32px;
  font-size: 18px;
  line-height: 1.3;
  color: var(--muted);
  font-weight: 500;
  background: var(--white);
  border-radius: 8px;
  white-space: nowrap;
  transition: transform 260ms ease, box-shadow 260ms ease, color 260ms ease, background 260ms ease;
}

.hero-link:hover {
  color: var(--blue);
  background: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(50, 71, 146, 0.08);
}

.hero-primary {
  min-width: 288px;
  min-height: 71px;
  padding: 24px 32px;
  border-radius: 8px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 469px;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.stats-strip {
  background: var(--blue);
  min-height: 320px;
  display: flex;
  align-items: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 72px;
  align-items: stretch;
}

.stat-card {
  min-height: 148px;
  border: 2px solid var(--orange);
  border-radius: 8px;
  padding: 32px 28px;
  text-align: center;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  white-space: normal;
}

.stat-card p {
  margin: 0;
  max-width: 300px;
  font-size: clamp(20px, 1.4vw, 28px);
  line-height: 1.25;
  font-weight: 700;
  text-wrap: balance;
}

.stat-card strong {
  font-weight: 800;
}

.profile-intro,
.flow-section,
.plans-section,
.stores-section,
.faq-section,
.contact-section {
  padding: 88px 0;
}

.profile-intro {
  text-align: center;
  padding-top: 104px;
  padding-bottom: 24px;
}

.profile-title {
  margin: 0;
  font-size: 52px;
  line-height: 1.1;
  font-weight: 900;
  color: var(--orange);
}

.profile-subtitle {
  margin: 24px 0 0;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 500;
  color: var(--muted);
}

.profile-intro h2,
.flow-section h2,
.plans-section h2,
.stores-section h2,
.faq-section h2,
.contact-section h2,
.final-cta h2 {
  font-size: clamp(2rem, 4.6vw, 3.8rem);
}

.role-tabs {
  display: flex;
  margin-top: 34px;
  width: 100%;
  overflow: hidden;
}

.role-tab {
  flex: 1 1 50%;
  min-height: 110px;
  border: 0;
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
  position: relative;
  font-size: 24px;
  line-height: 1.2;
  transform: scale(1);
  overflow: hidden;
  transition: flex-basis 380ms ease, flex-grow 380ms ease, transform 220ms ease, background 220ms ease, opacity 220ms ease;
}

.role-tab-content {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  transition: gap 280ms ease, transform 280ms ease;
}

.role-tab-construtor {
  border-top-right-radius: 24px;
  background: linear-gradient(180deg, var(--blue) 83.014%, var(--blue-soft) 117.92%);
}

.role-tab-lojista {
  border-top-left-radius: 24px;
  background: var(--orange);
}

.role-tab-construtor:hover {
  background: linear-gradient(180deg, #3b519d 83.014%, #6277bc 117.92%);
  transform: scale(1.015);
}

.role-tab-lojista:hover {
  background: #f1642e;
  transform: scale(1.015);
}

.role-tab.is-active {
  opacity: 1;
}

.role-tab:not(.is-active) {
  opacity: 0.98;
}

.role-tab-label {
  position: relative;
  z-index: 1;
  opacity: 1;
  max-width: 220px;
  overflow: hidden;
  transition: opacity 220ms ease, max-width 300ms ease;
}

.role-tab-icon {
  width: 48px;
  height: 48px;
  display: block;
  flex: 0 0 auto;
}

.role-tabs[data-role-tabs-state="expanded"] .role-tab.is-active {
  flex-basis: 90.89%;
  flex-grow: 0;
}

.role-tabs[data-role-tabs-state="expanded"] .role-tab:not(.is-active) {
  flex-basis: 9.11%;
  flex-grow: 0;
}

.role-tabs[data-role-tabs-state="expanded"] .role-tab:not(.is-active) .role-tab-label {
  opacity: 0;
  max-width: 0;
}

.role-tabs[data-role-tabs-state="expanded"] .role-tab:not(.is-active) .role-tab-content {
  gap: 0;
  justify-content: center;
  width: 100%;
}

.role-section {
  padding: 0;
}

.role-section .role-tabs,
.role-section .panel-shell {
  transition: background 320ms ease;
}

.role-section.is-transitioning .role-tabs,
.role-section.is-transitioning .panel-shell {
  opacity: 1;
  transform: none;
}

.panel-shell {
  min-height: 660px;
  border-radius: 0;
  background: var(--blue);
  color: var(--white);
  display: grid;
  grid-template-columns: 675px 792px;
  justify-content: center;
  gap: 88px;
  width: 100%;
  padding: 96px max(28px, calc((100vw - 1480px) / 2)) 104px;
  transition: background 320ms ease;
}

body[data-role="lojista"] .panel-shell {
  background: var(--orange);
}

.panel-shell.is-transitioning {
  opacity: 1;
  transform: none;
}

.panel-kicker {
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
}

.panel-text {
  margin: 0;
  max-width: 675px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 42px 0 20px;
  display: grid;
  gap: 16px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}

.feature-bullet {
  width: 24px;
  height: 24px;
  display: block;
  flex: 0 0 auto;
}

.feature-list li span {
  display: block;
}

.panel-preview {
  min-height: 452px;
  position: relative;
}

.panel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  transition: opacity 320ms ease, transform 320ms ease;
}

.panel-note {
  display: inline-flex;
  align-items: center;
  min-height: 37px;
  padding: 8px 24px;
  border: 1px solid var(--role-note-border);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 40px;
}

.btn-light {
  min-width: 420px;
  min-height: 71px;
  padding: 24px 32px;
  border-radius: 8px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 900;
  color: var(--role-cta-text);
}

.flow-section {
  background: var(--blue-soft);
  color: var(--white);
  padding: 104px 0 110px;
  overflow: hidden;
}

body[data-role="lojista"] .flow-section {
  background: var(--orange-soft);
}

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

.flow-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 64px;
  text-align: center;
}

.flow-title {
  margin: 0;
  font-size: 52px;
  line-height: 1.1;
  font-weight: 900;
  color: var(--orange-soft);
}

body[data-role="lojista"] .flow-title {
  color: var(--blue);
}

.flow-subtitle {
  margin: 0;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 500;
  color: var(--white);
}

.flow-steps {
  display: grid;
  grid-template-columns: 507px 24px 507px 24px 507px;
  column-gap: 4px;
  align-items: start;
  justify-content: center;
}

.flow-item {
  width: 507px;
}

.flow-step-head {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-height: 53px;
  margin-bottom: 16px;
}

.flow-step {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 64px;
  flex: 0 0 auto;
  background: var(--orange);
  color: var(--white);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
}

body[data-role="lojista"] .flow-step {
  background: var(--blue);
}

.flow-item h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  color: #f2f2f2;
}

.flow-shot {
  margin: 0 0 15px;
  aspect-ratio: 507 / 270;
  overflow: hidden;
  border: 2px solid var(--orange);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

body[data-role="lojista"] .flow-shot {
  border-color: var(--blue);
}

.flow-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.flow-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  color: #f2f2f2;
}

.flow-connector {
  align-self: start;
  display: grid;
  place-items: center;
  padding-top: 175px;
  color: var(--orange-soft);
}

body[data-role="lojista"] .flow-connector {
  color: var(--blue);
}

.flow-connector svg {
  width: 24px;
  height: 24px;
  display: block;
}

.gallery-strip {
  display: flex;
  width: 100%;
  height: 825px;
  background: #111111;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.gallery-item {
  position: relative;
  flex: 1 1 33.333%;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: flex-basis 420ms ease, flex-grow 420ms ease, transform 420ms ease, filter 420ms ease;
}

.gallery-dots {
  display: none;
}

.gallery-item:focus-visible {
  outline: 0;
  z-index: 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 420ms ease, filter 420ms ease;
}

.gallery-item:first-child img {
  object-position: center;
}

.gallery-item:nth-child(2) img,
.gallery-item:nth-child(3) img {
  object-position: center center;
}

.gallery-strip[data-active-panel="1"]:not([data-default-state="true"]) .gallery-item:nth-child(1) {
  flex-basis: 81.87%;
  flex-grow: 0;
}

.gallery-strip[data-active-panel="1"]:not([data-default-state="true"]) .gallery-item:nth-child(2),
.gallery-strip[data-active-panel="1"]:not([data-default-state="true"]) .gallery-item:nth-child(3) {
  flex-basis: 9.065%;
  flex-grow: 0;
}

.gallery-strip[data-active-panel="2"]:not([data-default-state="true"]) .gallery-item:nth-child(2) {
  flex-basis: 81.87%;
  flex-grow: 0;
}

.gallery-strip[data-active-panel="2"]:not([data-default-state="true"]) .gallery-item:nth-child(1),
.gallery-strip[data-active-panel="2"]:not([data-default-state="true"]) .gallery-item:nth-child(3) {
  flex-basis: 9.065%;
  flex-grow: 0;
}

.gallery-strip[data-active-panel="3"]:not([data-default-state="true"]) .gallery-item:nth-child(3) {
  flex-basis: 81.87%;
  flex-grow: 0;
}

.gallery-strip[data-active-panel="3"]:not([data-default-state="true"]) .gallery-item:nth-child(1),
.gallery-strip[data-active-panel="3"]:not([data-default-state="true"]) .gallery-item:nth-child(2) {
  flex-basis: 9.065%;
  flex-grow: 0;
}

.gallery-strip[data-active-panel="1"]:not([data-default-state="true"]) .gallery-item:not(:nth-child(1)) img,
.gallery-strip[data-active-panel="2"]:not([data-default-state="true"]) .gallery-item:not(:nth-child(2)) img,
.gallery-strip[data-active-panel="3"]:not([data-default-state="true"]) .gallery-item:not(:nth-child(3)) img {
  transform: none;
}

.gallery-strip[data-active-panel="1"]:not([data-default-state="true"]) .gallery-item:nth-child(1) img,
.gallery-strip[data-active-panel="2"]:not([data-default-state="true"]) .gallery-item:nth-child(2) img,
.gallery-strip[data-active-panel="3"]:not([data-default-state="true"]) .gallery-item:nth-child(3) img {
  transform: none;
}

@media (hover: hover) {
  .gallery-item:hover img {
    filter: saturate(1.02);
  }
}

.plans-section {
  display: none !important;
  position: relative;
  z-index: 2;
  background-color: #f2f2f2;
  padding: 104px 0 var(--plans-overlap);
  pointer-events: none;
}

body[data-role="lojista"] .plans-section {
  display: none !important;
  width: 100%;
}

.plans-section .container,
.plans-section a,
.plans-section button {
  pointer-events: auto;
}

.plans-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.plans-header h2 {
  margin: 0;
  color: var(--orange);
  font-size: 52px;
  line-height: 1.1;
  font-weight: 900;
}

.plans-header p {
  margin: 0;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 500;
  color: var(--muted);
}

.plans-toggle {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 48px auto 56px;
  padding: 8px;
  border-radius: 56px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(26, 26, 26, 0.02);
  isolation: isolate;
}

.plans-toggle-pill {
  position: absolute;
  left: 8px;
  top: 8px;
  width: 111px;
  height: 43px;
  border-radius: 24px;
  background: var(--orange);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  transition: transform 280ms ease;
  z-index: 0;
}

.plans-toggle[data-billing="annual"] .plans-toggle-pill {
  transform: translateX(119px);
}

.plans-toggle-option {
  position: relative;
  z-index: 1;
  min-width: 111px;
  min-height: 43px;
  padding: 8px 16px;
  border: 0;
  border-radius: 24px;
  background: #f2f2f2;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 280ms ease, transform 220ms ease;
}

.plans-toggle-option:hover {
  transform: translateY(-1px);
  background: #e9e9e9;
}

.plans-toggle-option.is-active {
  background: transparent;
  color: var(--white);
}

.plans-toggle-option.is-active:hover {
  background: transparent;
}

.plans-toggle-badge {
  position: absolute;
  top: -1px;
  left: 216px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 18px;
  border-radius: 24px;
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
  line-height: 1.5;
  font-weight: 700;
  z-index: 3;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 507px);
  gap: 32px;
  justify-content: center;
  align-items: start;
  transition: opacity 220ms ease, transform 220ms ease;
}

.plans-grid.is-switching .plan-price,
.plans-grid.is-switching .plan-rate {
  opacity: 0.45;
  transform: translateY(6px);
}

.plan-card {
  min-height: 513px;
  border-radius: 8px;
  padding: 48px;
  background: var(--white);
  border: 1px solid #b3b3b3;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.plan-card.featured {
  background: linear-gradient(180deg, #ffffff 0%, #f2f2f2 49.398%);
  border: 2px solid var(--orange);
  box-shadow: 0 24px 24px rgba(0, 0, 0, 0.1);
}

.plan-badge {
  display: inline-flex;
  width: fit-content;
  padding: 4px 8px;
  border-radius: 8px;
  border: 1px solid var(--orange);
  color: var(--orange-soft);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  text-transform: uppercase;
}

.plan-copy {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
}

.plan-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plan-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.2;
  font-weight: 900;
}

.plan-head p,
.plan-rate {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

.plan-rate {
  transition: opacity 220ms ease, transform 220ms ease;
}

.plan-price {
  display: flex;
  flex-direction: column;
  transition: opacity 220ms ease, transform 220ms ease;
}

.plan-price-old {
  min-height: 23px;
  color: #8d8d8d;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.plan-price-old.has-value {
  opacity: 1;
  transform: translateY(0);
}

.plan-price strong {
  margin: 0;
  color: var(--ink);
  font-size: 56px;
  line-height: 1.1;
  font-weight: 900;
}

.plan-price span {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
}

.plan-price-note {
  min-height: 24px;
  margin: 4px 0 0;
  color: var(--orange);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.plan-price-note.has-value {
  opacity: 1;
  transform: translateY(0);
}

.plan-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 32px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}

.plan-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
}

.plan-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 24px 32px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--orange-soft) 0%, var(--orange) 50.069%);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  color: var(--white);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 900;
  text-align: center;
  transition: transform 260ms ease, box-shadow 260ms ease, filter 260ms ease;
}

.plan-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(236, 90, 41, 0.24);
  filter: saturate(1.05);
}

.plan-cta.offer {
  flex-direction: column;
  gap: 2px;
}

.plan-cta.offer span {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 900;
}

.plan-cta.offer small {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  text-transform: uppercase;
}

.stores-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 42px;
}

.stores-section {
  background: var(--white);
  padding: 104px 0;
  display: none !important;
}

.stores-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.stores-header h2 {
  margin: 0;
  color: var(--orange);
  font-size: 52px;
  line-height: 1.1;
  font-weight: 900;
}

.stores-header p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.3;
  font-weight: 500;
}

.stores-grid {
  gap: 32px;
  margin-top: 64px;
}

.store-card,
.contact-card {
  background: transparent;
}

.store-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.store-logo {
  width: 100%;
  height: 168px;
  padding: 0;
  border-radius: 8px;
  background: var(--white);
  display: grid;
  place-items: center;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.store-card:hover .store-logo {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(58, 169, 129, 0.08);
}

.store-logo-image {
  width: 305px;
  height: auto;
  display: block;
}

.store-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 162px;
  text-align: center;
}

.store-card strong {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  margin: 0;
}

.store-card span,
.contact-card span {
  color: var(--muted);
}

.store-card span {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
}

.store-card small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
  margin: -8px 0 0;
}

.faq-section {
  background: #f2f2f2;
  padding: 104px 0;
}

.faq-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.faq-header h2 {
  margin: 0;
  color: var(--orange);
  font-size: 52px;
  line-height: 1.1;
  font-weight: 900;
}

.faq-header p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.3;
  font-weight: 500;
}

.faq-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 744px));
  gap: 32px;
  justify-content: center;
  margin-top: 64px;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-columns h3 {
  margin: 0;
  text-align: center;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 900;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-list details {
  border-top: 1px solid #b3b3b3;
  border-bottom: 1px solid #b3b3b3;
  padding: 16px 32px;
  margin-top: -1px;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
}

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

.faq-icon {
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 18px;
  line-height: 1;
  transform: rotate(0deg);
  transition: transform 260ms ease;
}

.faq-list details:not([open]) .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
  transition: height 280ms ease, opacity 220ms ease;
}

.faq-list p {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

.contact-section {
  background: var(--white);
  padding: 104px 0;
}

.contact-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.contact-header h2 {
  margin: 0;
  color: var(--orange);
  font-size: 52px;
  line-height: 1.1;
  font-weight: 900;
}

.contact-header p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.3;
  font-weight: 500;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 372px);
  gap: 32px;
  justify-content: center;
  margin-top: 64px;
}

.contact-card {
  min-height: 106px;
  padding: 24px 32px;
  border: 2px solid var(--orange);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  background: var(--white);
  transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  background: #fffaf7;
  box-shadow: 0 14px 24px rgba(236, 90, 41, 0.08);
}

.contact-card span {
  color: var(--orange-soft);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 900;
}

.final-cta {
  background: var(--blue);
  color: var(--white);
  padding: 104px 0 24px;
  text-align: center;
}

.final-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.final-cta h2 {
  margin: 0;
  color: var(--orange-soft);
  font-size: 52px;
  line-height: 1.1;
  font-weight: 900;
}

.final-cta-subtitle {
  margin: 0;
  color: var(--white);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 776px;
  height: 71px;
  margin-top: 16px;
}

.final-cta-primary,
.final-cta-secondary {
  width: 372px;
  min-height: 71px;
  padding: 24px 32px;
  border-radius: 8px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 900;
}

.final-cta-secondary {
  background: #f2f2f2;
  color: var(--muted);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.final-cta-copy {
  margin: 24px 0 0;
  color: var(--white);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}

.footer {
  background: var(--blue);
  color: rgba(255, 255, 255, 0.86);
}

.footer-inner {
  display: flex;
  justify-content: center;
  padding: 22px 0 30px;
  font-size: 0.95rem;
}

@media (max-width: 1180px) {
  .hero,
  .panel-shell,
  .plans-grid,
  .stores-grid,
  .contact-grid,
  .faq-columns {
    grid-template-columns: 1fr;
  }

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

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

  .flow-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .flow-item {
    width: 100%;
  }

  .flow-step-head {
    min-height: 0;
  }

  .flow-connector {
    display: none;
  }

  .gallery-strip {
    flex-direction: column;
    height: auto;
  }

  .gallery-item {
    flex: none;
    min-height: 220px;
  }

  .gallery-strip[data-active-panel] .gallery-item {
    flex-basis: auto;
  }

  .plans-section {
    padding-bottom: 72px;
  }

  body[data-role="lojista"] .plans-section {
    margin-bottom: 0;
  }
}

@media (max-width: 1520px) {
  :root {
    --container: min(1360px, calc(100vw - 96px));
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    gap: 32px;
    padding: 56px 0 88px;
  }

  .hero h1,
  .profile-title,
  .flow-title,
  .plans-header h2,
  .stores-header h2,
  .faq-header h2,
  .contact-header h2,
  .final-cta h2 {
    font-size: clamp(2.3rem, 3.7vw, 3.25rem);
  }

  .hero-actions {
    margin-top: 44px;
    gap: 20px;
    flex-wrap: wrap;
  }

  .hero-link,
  .hero-primary {
    min-width: 280px;
  }

  .stats-grid {
    gap: 32px;
  }

  .stat-card {
    padding: 24px 28px;
  }

  .stat-card strong {
    font-size: clamp(2.4rem, 4vw, 3.5rem);
  }

  .stat-card span {
    font-size: clamp(1.15rem, 2vw, 1.625rem);
  }

  .panel-shell {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
    gap: 56px;
    padding: 72px max(32px, calc((100vw - 1584px) / 2)) 80px;
  }

  .panel-text,
  .panel-copy {
    max-width: none;
  }

  .flow-steps {
    grid-template-columns: minmax(0, 1fr) 24px minmax(0, 1fr) 24px minmax(0, 1fr);
    column-gap: 8px;
  }

  .flow-item {
    width: auto;
  }

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

  .faq-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 1340px;
    margin-left: auto;
    margin-right: auto;
  }

  .faq-column {
    max-width: 654px;
    width: 100%;
    justify-self: center;
  }

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

  .store-logo-image {
    width: min(305px, calc(100% - 32px));
  }

  .gallery-strip {
    height: 550px;
  }

  .gallery-item img {
    object-fit: cover;
    background: transparent;
  }

  .gallery-item:first-child img {
    object-position: 50% center;
  }

  .gallery-item:nth-child(2) img {
    object-position: 50% center;
  }

  .gallery-item:nth-child(3) img {
    object-position: 50% center;
  }

  .gallery-strip[data-active-panel="1"]:not([data-default-state="true"]) .gallery-item:nth-child(1),
  .gallery-strip[data-active-panel="2"]:not([data-default-state="true"]) .gallery-item:nth-child(2),
  .gallery-strip[data-active-panel="3"]:not([data-default-state="true"]) .gallery-item:nth-child(3) {
    flex-basis: 72%;
  }

  .gallery-strip[data-active-panel="1"]:not([data-default-state="true"]) .gallery-item:nth-child(2),
  .gallery-strip[data-active-panel="1"]:not([data-default-state="true"]) .gallery-item:nth-child(3),
  .gallery-strip[data-active-panel="2"]:not([data-default-state="true"]) .gallery-item:nth-child(1),
  .gallery-strip[data-active-panel="2"]:not([data-default-state="true"]) .gallery-item:nth-child(3),
  .gallery-strip[data-active-panel="3"]:not([data-default-state="true"]) .gallery-item:nth-child(1),
  .gallery-strip[data-active-panel="3"]:not([data-default-state="true"]) .gallery-item:nth-child(2) {
    flex-basis: 14%;
  }
}

@media (max-width: 1280px) {
  :root {
    --container: min(1240px, calc(100vw - 104px));
  }

  .topbar {
    gap: 20px;
  }

  .nav {
    gap: 28px;
    font-size: 16px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 24px 0 48px;
  }

  .hero-copy {
    max-width: 640px;
  }

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

  .stats-strip {
    min-height: auto;
    padding: 32px 0;
  }

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

  .profile-intro {
    padding-top: 80px;
  }

  .role-tab {
    min-height: 96px;
    font-size: 20px;
  }

  .role-tab-content {
    gap: 16px;
  }

  .role-tab-icon {
    width: 40px;
    height: 40px;
  }

  .panel-shell {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 24px 56px;
  }

  .panel-preview {
    min-height: 0;
  }

  .panel-image {
    height: auto;
  }

  .flow-section {
    padding: 64px 0 72px;
  }

  .flow-header {
    margin-bottom: 56px;
  }

  .flow-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .flow-connector {
    display: none;
  }

  .gallery-strip {
    height: 400px;
  }

  .plans-section {
    padding: 64px 0 56px;
  }

  body[data-role="lojista"] .plans-section {
    margin-bottom: 0;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 0 auto;
  }

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

  .faq-columns {
    gap: 24px;
    max-width: 100%;
  }

  .contact-grid {
    justify-content: stretch;
  }

  .final-cta {
    padding-top: 64px;
  }

  .final-cta-actions {
    width: 100%;
    max-width: 776px;
  }

  .final-cta-primary,
  .final-cta-secondary {
    width: 100%;
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(calc(100vw - 24px), 100%);
  }

  .topbar {
    padding-top: 18px;
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .hero {
    padding-top: 24px;
    padding-bottom: 44px;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 8.2vw, 2.6rem);
  }

  .eyebrow,
  .profile-subtitle,
  .flow-subtitle,
  .plans-header p,
  .stores-header p,
  .faq-header p,
  .contact-header p,
  .final-cta-subtitle {
    font-size: 16px;
  }

  .hero-actions {
    margin-top: 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .hero-link,
  .hero-primary {
    width: 100%;
    min-width: 0;
  }

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

  .profile-intro,
  .flow-section,
  .plans-section,
  .stores-section,
  .faq-section,
  .contact-section,
  .role-panel {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .panel-shell {
    padding: 22px 18px 28px;
  }

  .panel-kicker {
    font-size: 18px;
  }

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

  .stat-card {
    white-space: normal;
    min-height: 0;
    padding: 20px;
  }

  .stat-card strong {
    font-size: 40px;
  }

  .stat-card span {
    font-size: 20px;
  }

  .flow-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .flow-header {
    margin-bottom: 36px;
  }

  .flow-title {
    font-size: clamp(1.8rem, 7.8vw, 2.4rem);
  }

  .role-tabs {
    margin-top: 24px;
  }

  .role-tab,
  .role-tabs[data-role-tabs-state="expanded"] .role-tab.is-active,
  .role-tabs[data-role-tabs-state="expanded"] .role-tab:not(.is-active) {
    flex-basis: 50%;
    flex-grow: 1;
  }

  .role-tab {
    min-height: 78px;
    font-size: 16px;
  }

  .role-tab-content,
  .role-tabs[data-role-tabs-state="expanded"] .role-tab:not(.is-active) .role-tab-content {
    gap: 12px;
    width: auto;
  }

  .role-tab-label,
  .role-tabs[data-role-tabs-state="expanded"] .role-tab:not(.is-active) .role-tab-label {
    opacity: 1;
    max-width: 160px;
  }

  .role-tab-icon {
    width: 28px;
    height: 28px;
  }

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

  .plan-card {
    min-height: auto;
    padding: 24px 18px;
    gap: 24px;
  }

  .plans-toggle {
    margin-bottom: 28px;
    transform: scale(0.9);
    transform-origin: center;
  }

  .stores-grid,
  .contact-grid,
  .faq-columns {
    grid-template-columns: 1fr;
  }

  .stores-section,
  .faq-section,
  .contact-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .stores-grid,
  .contact-grid,
  .faq-columns {
    margin-top: 28px;
  }

  .gallery-strip {
    flex-direction: row;
    height: auto;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .gallery-strip::-webkit-scrollbar {
    display: none;
  }

  .gallery-item {
    flex: 0 0 100%;
    min-height: 190px;
    scroll-snap-align: start;
  }

  .gallery-item img {
    object-fit: cover;
  }

  .gallery-strip[data-active-panel] .gallery-item,
  .gallery-strip[data-default-state] .gallery-item {
    flex-basis: 100%;
    flex-grow: 0;
  }

  .gallery-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
  }

  .gallery-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(50, 71, 146, 0.22);
    transition: transform 220ms ease, background 220ms ease;
  }

  .gallery-dot.is-active {
    background: var(--orange);
    transform: scale(1.15);
  }

  .contact-grid {
    gap: 16px;
  }

  .final-cta {
    padding: 56px 0 20px;
  }

  .final-cta-actions {
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 12px;
  }

  .final-cta-primary,
  .final-cta-secondary {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .brand {
    width: 180px;
    height: 55px;
  }

  .brand-logo {
    width: 180px;
    height: 55px;
  }

  .brand-wordmark {
    inset: 10px 0 2px 56px;
    width: 124px;
    height: 43px;
  }

  .brand-c {
    top: 20px;
    width: 43px;
    height: 34px;
  }

  .brand-hat {
    width: 46px;
    height: 24px;
  }

  .brand-divider {
    top: 19px;
    width: 42px;
    height: 11px;
  }

  .brand-accent {
    left: 40px;
    top: 19px;
  }

  .profile-title,
  .flow-title,
  .plans-header h2,
  .stores-header h2,
  .faq-header h2,
  .contact-header h2,
  .final-cta h2 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .panel-shell {
    padding: 18px 14px 24px;
  }

  .panel-note,
  .btn-light {
    width: 100%;
    min-width: 0;
  }

  .flow-item h3 {
    font-size: 18px;
  }

  .plans-toggle {
    transform: scale(0.8);
  }

  .plan-card {
    padding: 20px 14px;
  }

  .plan-price strong {
    font-size: 36px;
  }

  .store-logo {
    height: 118px;
  }

  .contact-card {
    min-height: 84px;
    padding: 16px 12px;
  }
}
