/* WODTECHX — Landing Page PhDFIT */
:root {
  --color-bg: #ffffff;
  --color-bg-soft: #f6f7f9;
  --color-text: #1a1a1a;
  --color-muted: #5c6370;
  --color-accent: #ff6b2c;
  --color-accent-dark: #e85a1f;
  --gradient-brand: linear-gradient(135deg, #ff8a3d 0%, #ff4d4d 100%);
  --gradient-purple: linear-gradient(135deg, #7c5cff 0%, #a855f7 100%);
  --color-purple: #6c63ff;
  --color-cta-light: #fff5ad;
  --color-dark: #0d0d0d;
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.1);
  --radius: 12px;
  --radius-lg: 20px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --container: min(1140px, 92vw);
  --header-h: 72px;
  --hero-bg: #f4f6f8;
  /* Espaçamento vertical padronizado entre seções */
  --space-section-y: clamp(4rem, 7vw, 5rem);
  --space-section-y-sm: clamp(3rem, 5vw, 4rem);
  --space-section-head: clamp(2rem, 4vw, 2.5rem);
  --space-section-gap: clamp(2.5rem, 5vw, 3.5rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p { margin: 0 0 1rem; }
h1 { font-size: clamp(1.85rem, 4vw, 2.75rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; line-height: 1.2; }
h3 { font-size: 1.1rem; font-weight: 700; }

.container { width: var(--container); margin-inline: auto; }
.text-accent { color: var(--color-accent); }
.text-accent-purple { color: var(--color-purple); }
.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}
.eyebrow-light { color: #ffe082; }
.section-intro {
  color: var(--color-muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}
.section-intro.light { color: rgba(255,255,255,0.9); }

/* Blocos de seção — padding vertical unificado */
.section-block,
.stats,
.app-benefits,
.admin-section,
.testimonials,
.lead-section,
.differentials,
.feature-rows,
.gradient-features,
.lp-section {
  padding-block: var(--space-section-y);
}

/* Cabeçalhos de seção — margem inferior padronizada */
.app-benefits-header,
.lp-section-head,
.differentials > .container > h2,
.testimonials > .container > h2 {
  margin-bottom: var(--space-section-head);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--color-dark);
  color: #fff;
}
.skip-link:focus { left: 0; }

/* Icons */
.icon { width: 28px; height: 28px; flex-shrink: 0; }
.icon-sm { width: 18px; height: 18px; }
.icon-white { color: #fff; stroke: #fff; }
.icon-gradient {
  width: 48px;
 height: 48px;
  stroke: url(#icon-gradient);
  color: var(--color-accent);
}
.icon-menu { display: block; }
.icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  border-color: transparent;
}
.btn-outline {
  background: #fff;
  color: var(--color-purple);
  border-color: var(--color-purple);
}
.btn-cta-light {
  background: var(--color-cta-light);
  color: var(--color-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
}
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}
.logo img { height: 36px; width: auto; }
.nav ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav a:not(.btn) {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-muted);
}
.nav a:not(.btn):hover { color: var(--color-accent); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--color-text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.nav {
  margin-left: auto;
}

/* Hero — primeira dobra (100vh) */
.hero-fold {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  background-color: var(--hero-bg);
  overflow: hidden;
}

.hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-logo-shape {
  position: absolute;
  right: -5%;
  top: 50%;
  width: min(55vw, 520px);
  height: auto;
  transform: translateY(-48%);
  opacity: 1;
}

.hero .container.hero-grid {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding-block: clamp(1.25rem, 3vh, 2.5rem);
}

.hero-copy {
  max-width: 540px;
}
.hero-copy .eyebrow {
  color: var(--color-muted);
  margin-bottom: 1rem;
}
.hero-copy h1 {
  font-size: clamp(1.65rem, 3.6vw, 2.65rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-highlight {
  color: var(--color-accent);
  display: inline;
}
.hero-copy .lead {
  color: var(--color-muted);
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 480px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn-hero {
  background: transparent;
  color: var(--color-purple);
  border: 2px solid var(--color-purple);
  padding: 0.9rem 2.25rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 6px;
}
.btn-hero:hover {
  background: var(--color-purple);
  color: #fff;
}
.btn-hero-secondary {
  background: transparent;
  color: var(--color-muted);
  border: none;
  padding: 0.9rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
}
.btn-hero-secondary:hover {
  color: var(--color-accent);
  transform: none;
  box-shadow: none;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  min-height: 280px;
}
.hero-devices-img {
  width: 100%;
  max-width: 620px;
  height: auto;
  object-fit: contain;
  object-position: center right;
  margin-left: auto;
}

.hero-fold-accent {
  flex-shrink: 0;
  height: 10px;
  background: var(--gradient-brand);
  width: 100%;
}

/* Stats */
.stats {
  background: #fff;
  border-block: 1px solid rgba(0, 0, 0, 0.05);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-section-gap);
  text-align: center;
}

/* Ícones grandes em cards (~80px) */
.card-icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  min-height: 80px;
}
.card-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}
.card-icon--accent { color: var(--color-accent); }
.card-icon--white { color: #fff; }
.card-icon--purple { color: var(--color-purple); }

.stat-item strong { display: block; font-size: 1rem; margin-bottom: 0.25rem; }
.stat-item span { font-size: 0.85rem; color: var(--color-muted); }

/* VIP section — overlap visual; padding inferior incluso no bloco */
.vip-section {
  padding-top: var(--space-section-y-sm);
  padding-bottom: 0;
}
.vip-figure {
  margin: 0 auto -4rem;
  max-width: 520px;
  position: relative;
  z-index: 2;
}
.vip-figure img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  width: 100%;
  aspect-ratio: 16/10;
}
.vip-banner {
  background: var(--gradient-brand);
  border-radius: var(--radius-lg);
  padding: 5rem 2rem 2.5rem;
  margin-top: 0;
}
.vip-banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.vip-copy { color: #fff; }
.vip-copy h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
.vip-copy p { opacity: 0.95; margin-bottom: 1.5rem; }

.phones-stack {
  position: relative;
  min-height: 280px;
}
.phone-frame {
  position: absolute;
  width: 120px;
  height: 220px;
  background: #111;
  border-radius: 20px;
  padding: 8px;
  box-shadow: var(--shadow-md);
}
.phone-1 { left: 0; top: 20px; transform: rotate(-8deg); z-index: 1; }
.phone-2 { left: 50%; top: 0; transform: translateX(-50%) rotate(2deg); z-index: 3; width: 130px; height: 240px; }
.phone-3 { right: 0; top: 30px; transform: rotate(8deg); z-index: 2; }
.phone-screen {
  background: var(--gradient-brand);
  border-radius: 14px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
}
.phone-screen-alt { background: var(--gradient-purple); }
.phone-logo { font-size: 0.55rem; opacity: 0.9; letter-spacing: 0.05em; }

/* Gradient features */
.gradient-features {
  background: var(--gradient-brand);
  color: #fff;
  text-align: center;
}
.gradient-features h2 { max-width: 700px; margin-inline: auto; }
.gradient-features .section-intro { margin-bottom: var(--space-section-head); }
.features-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-section-gap);
  margin: var(--space-section-head) 0;
  text-align: left;
}
.feature-block .card-icon-wrap {
  margin-bottom: 1.25rem;
  justify-content: flex-start;
}
.feature-block h3 { text-transform: uppercase; font-size: 0.95rem; letter-spacing: 0.04em; margin-top: 0; }
.feature-block p { font-size: 0.9rem; opacity: 0.92; line-height: 1.65; }

/* App benefits */
.app-benefits {
  background: #fff;
  text-align: center;
}
.app-benefits-header {
  max-width: 720px;
  margin-inline: auto;
}
.app-benefits-header h2 { margin-bottom: 0.75rem; }
.app-benefits-header .section-intro { margin-bottom: 0; }

.benefits-panel {
  background: var(--color-bg-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.benefits-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(300px, 1.05fr);
  gap: var(--space-section-gap);
  align-items: center;
  text-align: left;
}

.benefits-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.benefits-visual-bg {
  position: absolute;
  width: min(100%, 380px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 44, 0.12) 0%, rgba(255, 107, 44, 0) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.benefits-phone-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-inline: auto;
}

.benefits-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.benefit-card {
  color: #fff;
  padding: 1.75rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}
.benefit-card--primary {
  background: var(--gradient-brand);
}
.benefit-card--secondary {
  background: var(--gradient-purple);
  margin-left: clamp(0px, 3vw, 2rem);
}
.benefit-card .card-icon-wrap {
  justify-content: flex-start;
  min-height: 72px;
  margin-bottom: 1rem;
}
.benefit-card .card-icon {
  width: 72px;
  height: 72px;
}
.benefit-card h3 {
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.65rem;
  margin-top: 0;
}
.benefit-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  opacity: 0.95;
  margin: 0;
}

.benefits-cta {
  padding-top: 0.5rem;
  margin-left: clamp(0px, 3vw, 2rem);
}
.benefits-cta .btn-outline {
  min-width: 200px;
}

.gradient-card {
  background: var(--gradient-brand);
  color: #fff;
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.gradient-card h3 {
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.gradient-card p { font-size: 0.9rem; opacity: 0.95; margin: 0; line-height: 1.65; }
.gradient-card-purple { background: var(--gradient-purple); }

.soft-card {
  background: #ede9fe;
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-lg);
}
.soft-card h3 {
  color: var(--color-purple);
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
.soft-card p { color: var(--color-muted); margin: 0; font-size: 0.95rem; }

/* Feature rows */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-section-gap);
  align-items: center;
  margin-bottom: var(--space-section-gap);
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row-reverse .feature-row-media { order: 2; }
.feature-row-reverse .feature-row-content { order: 1; }
.feature-row-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-inline: auto;
}
.feature-row-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}
.feature-row-media-trainer { position: relative; }
.feature-row-media-trainer img {
  border-radius: var(--radius-lg);
  max-height: 420px;
  object-fit: cover;
  width: 100%;
}
.video-frame {
  position: absolute;
  inset: 10% 5%;
  border: 3px solid #fff;
  border-radius: var(--radius);
  pointer-events: none;
  box-shadow: var(--shadow-md);
}
/* Notificações — mockup de celular (mesmo padrão das feature-media-panel) */
.feature-row--notify .feature-media-panel {
  min-height: 400px;
}
.notify-phone {
  position: relative;
  z-index: 1;
  width: min(100%, 320px);
  margin-inline: auto;
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 8px solid #111;
  background: #111;
}
.notify-phone img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.notification-bubble {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  background: rgba(255, 140, 50, 0.95);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  max-width: 90%;
  box-shadow: var(--shadow-md);
}
.notification-bubble .icon { width: 20px; height: 20px; flex-shrink: 0; }
.notification-bubble p { margin: 0; line-height: 1.4; }

/* Painéis visuais das feature rows (avaliação + pagamentos) */
.feature-media-panel {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.feature-media-glow {
  position: absolute;
  width: min(100%, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 44, 0.1) 0%, transparent 68%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.feature-media-glow--purple {
  background: radial-gradient(circle, rgba(108, 99, 255, 0.14) 0%, transparent 68%);
}

.feature-highlight-card {
  width: 100%;
  max-width: 440px;
  color: #fff;
  padding: 1.75rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.feature-highlight-card--purple { background: var(--gradient-purple); }
.feature-highlight-card .card-icon-wrap {
  justify-content: flex-start;
  min-height: 72px;
  margin-bottom: 1rem;
}
.feature-highlight-card .card-icon { width: 72px; height: 72px; }
.feature-highlight-card h3 {
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  margin: 0 0 0.75rem;
}
.feature-highlight-card > p {
  font-size: 0.92rem;
  line-height: 1.65;
  opacity: 0.95;
  margin: 0 0 1rem;
}
.feature-bullets {
  margin: 0;
  padding: 0;
  list-style: none;
}
.feature-bullets li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  opacity: 0.95;
}
.feature-bullets .icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Mockup tablet + phone — avaliação física */
.feature-row--assessment .feature-media-panel { min-height: 400px; }
.ui-device {
  position: absolute;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-md);
  z-index: 1;
}
.ui-device--tablet {
  left: 0;
  top: 50%;
  transform: translateY(-52%);
  width: min(100%, 300px);
  padding: 1rem 1.15rem 1.25rem;
  border-radius: 14px;
}
.ui-device--phone {
  right: 0;
  bottom: 8%;
  width: 168px;
  padding: 1.75rem 1rem 1rem;
  border-radius: 22px;
  z-index: 2;
  border: 6px solid #111;
}
.ui-device-bar {
  display: flex;
  gap: 5px;
  margin-bottom: 0.75rem;
}
.ui-device-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e0e0e0;
}
.ui-device-bar span:first-child { background: #ff5f57; }
.ui-device-bar span:nth-child(2) { background: #febc2e; }
.ui-device-bar span:nth-child(3) { background: #28c840; }
.ui-device-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}
.ui-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8a3d, #ff4d4d);
  flex-shrink: 0;
}
.ui-device-head strong {
  display: block;
  font-size: 0.85rem;
  line-height: 1.2;
}
.ui-device-head small {
  font-size: 0.72rem;
  color: var(--color-muted);
}
.ui-form-list {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
}
.ui-form-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.78rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.ui-form-list li span { color: var(--color-muted); }
.ui-form-list li em {
  font-style: normal;
  font-weight: 600;
  color: var(--color-text);
}
.ui-chip {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ui-chip--ok {
  background: rgba(108, 99, 255, 0.12);
  color: var(--color-purple);
}
.ui-device-notch {
  width: 48px;
  height: 5px;
  background: #222;
  border-radius: 99px;
  margin: 0 auto 0.65rem;
}
.ui-device--phone strong {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}
.ui-check-list {
  list-style: none;
  margin: 0 0 0.75rem;
  padding: 0;
  font-size: 0.72rem;
  color: var(--color-muted);
}
.ui-check-list li {
  padding: 0.25rem 0 0.25rem 1.1rem;
  position: relative;
}
.ui-check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}
.ui-progress {
  height: 6px;
  background: #eee;
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 0.35rem;
}
.ui-progress span {
  display: block;
  height: 100%;
  background: var(--gradient-brand);
  border-radius: 99px;
}
.ui-device--phone small {
  font-size: 0.65rem;
  color: var(--color-muted);
}

/* Mockup pagamentos */
.feature-row--payments .feature-media-panel {
  min-height: 380px;
  justify-content: flex-start;
}
.ui-payment-board {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
  z-index: 1;
}
.ui-plan-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.ui-plan-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f0f0f0;
}
.ui-plan-card-head span {
  font-weight: 800;
  font-size: 0.9rem;
}
.ui-plan-card-head em {
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #059669;
  background: #d1fae5;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}
.ui-field {
  margin-bottom: 0.65rem;
}
.ui-field label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-muted);
  margin-bottom: 0.2rem;
}
.ui-field span {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  background: #f8f9fb;
  padding: 0.45rem 0.6rem;
  border-radius: 6px;
  border: 1px solid #eef0f3;
}
.ui-plan-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}
.ui-pill {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(108, 99, 255, 0.1);
  color: var(--color-purple);
}
.ui-cards-fan {
  position: absolute;
  right: -8px;
  bottom: -28px;
  width: 200px;
  height: 120px;
  z-index: 2;
}
.ui-credit-card {
  position: absolute;
  width: 148px;
  height: 88px;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ui-credit-card--dark {
  background: linear-gradient(135deg, #2d2d2d, #0d0d0d);
  color: #fff;
  transform: rotate(-10deg);
  left: 0;
  bottom: 0;
}
.ui-credit-card--light {
  background: linear-gradient(135deg, #7c5cff, #a855f7);
  color: #fff;
  transform: rotate(8deg);
  right: 0;
  top: 0;
}
.ui-credit-card span { font-size: 0.8rem; letter-spacing: 0.08em; }
.ui-credit-card small { font-size: 0.7rem; opacity: 0.85; }
.ui-credit-card strong { font-size: 1.35rem; line-height: 1; }

.tagline-center {
  text-align: center;
  font-size: 1.25rem;
  color: var(--color-muted);
  padding-top: var(--space-section-head);
}

/* Admin */
.admin-section {
  background: #fff;
}
.admin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-section-gap);
  align-items: center;
}
.check-list { margin: 1.5rem 0 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--color-muted);
  font-size: 0.95rem;
}
.check-list .icon { color: var(--color-accent); stroke: var(--color-accent); width: 22px; height: 22px; margin-top: 2px; }
.admin-visual { position: relative; }
.admin-card { max-width: 320px; position: relative; z-index: 2; }
.admin-photo {
  position: absolute;
  right: 0;
  top: 10%;
  width: 55%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  z-index: 1;
}

/* Differentials */
.differentials {
  background: var(--color-bg-soft);
  text-align: center;
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-section-gap);
  text-align: left;
}
.diff-card {
  background: #fff;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.diff-card .card-icon-wrap {
  justify-content: flex-start;
  margin-bottom: 1.25rem;
}
.diff-grid h3 { color: var(--color-accent); margin-bottom: 0.5rem; margin-top: 0; }
.diff-grid p { margin: 0; font-size: 0.9rem; color: var(--color-muted); }

/* Testimonials */
.testimonials {
  background: var(--color-bg-soft);
}
.testimonials > .container > h2 { text-align: center; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.testimonial-card {
  background: #fff;
  padding: 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 160px;
}
.testimonial-card p {
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}
.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.testimonial-card cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
  display: block;
}
.testimonial-card footer span:last-child {
  font-size: 0.75rem;
  color: var(--color-muted);
}

/* Lead */
.lead-section {
  background: var(--color-dark);
  color: #fff;
}
.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-section-gap);
  align-items: center;
}
.lead-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lead-copy h2 {
  color: #fff;
  margin-bottom: 1rem;
}
.lead-copy > p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 0;
}
.lead-copy .check-list.light-list {
  margin-top: 1.5rem;
  margin-bottom: 0;
}
.lead-copy .check-list.light-list li {
  color: #f8fafc;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.01em;
}
.lead-copy .check-list.light-list .icon {
  stroke: var(--color-accent);
  color: var(--color-accent);
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.lead-form {
  background: #fff;
  color: var(--color-text);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font: inherit;
}
.form-group input:focus,
.form-group select:focus {
  outline: 2px solid var(--color-purple);
  border-color: var(--color-purple);
}
.form-feedback {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  min-height: 1.25rem;
}
.form-feedback.success { color: #059669; }
.form-feedback.error { color: #dc2626; }
.form-legal {
  font-size: 0.75rem;
  color: var(--color-muted);
  margin: 1rem 0 0;
}

/* Footer */
.site-footer {
  background: var(--gradient-brand);
  color: #fff;
  padding: 3rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2rem;
}
.footer-tagline { opacity: 0.9; font-size: 0.9rem; margin-top: 1rem; }
.footer-col h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.footer-col h3.mt { margin-top: 1.5rem; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col a {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
}
.footer-col a:hover { text-decoration: underline; }
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.25);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.9;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.footer-credit a {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  opacity: 0.95;
  transition: opacity 0.2s ease;
}

.footer-credit a:hover {
  opacity: 1;
}

.footer-credit img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* WhatsApp FAB */
.fab-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s;
}
.fab-whatsapp:hover { transform: scale(1.04); }
.fab-whatsapp .icon { width: 22px; height: 22px; }

/* Responsive */
@media (max-width: 992px) {
  .hero .container.hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-copy { max-width: none; margin-inline: auto; }
  .hero-copy .lead { margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .hero-visual { justify-content: center; min-height: 220px; }
  .hero-devices-img {
    margin-inline: auto;
    object-position: center;
    max-height: 45vh;
  }
  .hero-logo-shape {
    right: 50%;
    top: 62%;
    width: 90vw;
    transform: translate(50%, -50%);
    opacity: 0.5;
  }
  .benefit-card--secondary,
  .benefits-cta { margin-left: 0; }
  .benefits-cta { text-align: center; }
  .benefits-visual { min-height: 260px; order: -1; }
  .feature-media-panel {
    min-height: 340px;
    padding: 1rem;
  }
  .ui-device--tablet {
    left: 50%;
    transform: translate(-50%, -55%);
    width: 88%;
    max-width: 300px;
  }
  .ui-device--phone {
    right: 50%;
    transform: translate(42%, 0);
    bottom: 0;
  }
  .ui-payment-board { max-width: 100%; }
  .ui-cards-fan {
    right: 0;
    bottom: -20px;
    transform: scale(0.9);
    transform-origin: bottom right;
  }
  .feature-highlight-card { max-width: none; }
  .vip-banner-grid,
  .benefits-showcase,
  .feature-row,
  .admin-grid,
  .lead-grid { grid-template-columns: 1fr; }
  .feature-row-reverse .feature-row-media,
  .feature-row-reverse .feature-row-content { order: unset; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-three { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .phones-stack { min-height: 200px; margin-top: 2rem; }
  .admin-photo { position: static; width: 100%; margin-top: 1rem; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav {
    margin-left: 0;
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: #fff;
    padding: 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
    box-shadow: var(--shadow-md);
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav ul { flex-direction: column; align-items: stretch; }
  .stats-grid,
  .testimonials-grid,
  .diff-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .fab-whatsapp span { display: none; }
  .hero-copy h1 { font-size: clamp(1.45rem, 6vw, 1.85rem); }
  .vip-figure { margin-bottom: -2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover, .fab-whatsapp:hover { transform: none; }
}

/* LP Franqueados */
.lp-intro-left {
  text-align: left;
  margin-inline: 0;
  max-width: none;
}
.lp-section-head {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}
.lp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-section-gap);
  align-items: center;
}
.lp-split-reverse .lp-split-copy { order: 2; }
.lp-split-reverse .lp-split-visual { order: 1; }
.lp-split-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.lp-benefits {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}
.lp-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  color: var(--color-muted);
  font-size: 0.95rem;
}
.lp-benefits .icon {
  color: var(--color-accent);
  stroke: var(--color-accent);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.lp-consultoria { background: #fff; }
.lp-equipe { background: var(--color-bg-soft); }
.lp-franquia { background: #fff; }
.lp-ofertas { background: var(--color-bg-soft); }

.lp-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.lp-team-card {
  background: #fff;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.lp-team-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-team-initial {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-accent);
}
.lp-team-card h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.lp-team-role {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-purple);
  margin-bottom: 0.75rem;
}
.lp-team-card p:last-child {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.55;
}

.lp-franquia-panel {
  background: var(--gradient-purple);
  color: #fff;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.lp-franquia-panel h3 {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
.lp-franquia-panel p {
  margin: 0;
  font-size: 0.92rem;
  opacity: 0.95;
  line-height: 1.6;
}
.lp-franquia-panel .card-icon-wrap {
  justify-content: center;
  min-height: auto;
  margin-bottom: 1rem;
}
.lp-franquia-panel .card-icon {
  width: 72px;
  height: 72px;
}

.hero-cta--dual .btn-primary { min-width: 10rem; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 880px;
  margin-inline: auto;
  align-items: stretch;
}
.pricing-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}
.pricing-card--featured {
  border: 2px solid var(--color-accent);
  box-shadow: var(--shadow-md);
}
.pricing-badge {
  position: absolute;
  top: -0.65rem;
  right: 1.25rem;
  background: var(--gradient-brand);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}
.pricing-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  margin-bottom: 0.35rem;
}
.pricing-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}
.pricing-desc {
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}
.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.pricing-price span {
  font-size: 1.25rem;
  vertical-align: top;
}
.pricing-price small {
  font-size: 1.25rem;
  font-weight: 700;
}
.pricing-note {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-bottom: 1.25rem;
}
.pricing-features {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  flex: 1 1 auto;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
  color: var(--color-muted);
}
.pricing-features .icon {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  stroke: var(--color-accent);
  flex-shrink: 0;
}

.lp-leads-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.lead-block h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}
.lead-block > p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

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

@media (max-width: 992px) {
  .lp-split,
  .lp-split-reverse .lp-split-copy,
  .lp-split-reverse .lp-split-visual { order: unset; }
  .lp-split,
  .lp-leads-grid,
  .pricing-grid,
  .lp-team-grid { grid-template-columns: 1fr; }
  .site-footer--simple .footer-grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   LP Franquias — estilo Libero / WODTECHX
   =================================================================== */
body.lp-franq {
  --franq-dark: #0d0d0d;
  --franq-accent: var(--color-accent);
  --franq-accent-2: #ff4d4d;
  --franq-gradient: var(--gradient-brand);
  --franq-gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  --franq-radius-xl: clamp(1.25rem, 3vw, 2rem);
  --header-h: 80px;
  --franq-hero-frame: clamp(1.75rem, 5.5vw, 4.5rem);
}

body.lp-franq .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #0d0d0d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

body.lp-franq .site-header.site-header--hero-dark {
  background: #0d0d0d;
}

body.lp-franq .nav-toggle {
  color: #fff;
}

@media (max-width: 768px) {
  body.lp-franq .nav.is-open a:not(.btn) {
    color: var(--color-text);
  }
}

body.lp-franq main {
  padding-top: var(--header-h);
}

body.lp-franq .nav a:not(.btn) {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

body.lp-franq .nav a:not(.btn):hover {
  color: var(--franq-accent);
}

/* Botões franquia */
.btn-franq {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: var(--franq-gradient);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.75rem;
  box-shadow: 0 8px 24px rgba(255, 107, 44, 0.35);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-franq:hover {
  transform: translateY(-2px);
}

.btn-franq:not(.btn-franq--light):not(.btn-franq--outline-light):hover,
.btn-franq:not(.btn-franq--light):not(.btn-franq--outline-light):focus-visible {
  box-shadow: 0 12px 32px rgba(255, 107, 44, 0.45);
  color: #fff;
}

.btn-franq--lg {
  padding: 1rem 2rem;
  font-size: 0.9rem;
}

.btn-franq--light,
a.btn-franq--light,
a.btn-franq--light:visited {
  background: #fff;
  color: var(--franq-accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.btn-franq--light:hover,
.btn-franq--light:focus-visible,
a.btn-franq--light:hover,
a.btn-franq--light:focus-visible {
  background: #fff;
  color: var(--franq-accent-dark);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.btn-franq--dark,
a.btn-franq--dark,
a.btn-franq--dark:visited {
  background: var(--franq-dark);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.btn-franq--dark:hover,
.btn-franq--dark:focus-visible,
a.btn-franq--dark:hover,
a.btn-franq--dark:focus-visible {
  background: #1a1a1a;
  color: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.btn-franq--outline-light,
a.btn-franq--outline-light,
a.btn-franq--outline-light:visited {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  box-shadow: none;
}

.btn-franq--outline-light:hover,
.btn-franq--outline-light:focus-visible,
a.btn-franq--outline-light:hover,
a.btn-franq--outline-light:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
  box-shadow: none;
}

.btn-franq-nav {
  white-space: nowrap;
  font-size: 0.75rem;
  background: #0d0d0d;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  padding: 0;
  min-height: 40px;
}

.site-header--hero-dark .btn-franq-nav {
  background: #0d0d0d;
  color: #fff;
}

/* Seletor de idioma — bandeiras circulares no header */
.nav-lang-flags {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.25rem;
  list-style: none;
}

.nav-lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  background: rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  line-height: 0;
}

.nav-lang:hover,
.nav-lang:focus-visible {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transform: translateY(-1px);
}

.nav-lang.is-active {
  border-color: var(--franq-accent);
  box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.25);
}

.nav-lang-flag {
  width: 28px;
  height: 28px;
  display: block;
  border-radius: 50%;
}

.btn-header-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn-header-login:hover,
.btn-header-login:focus-visible {
  background: var(--franq-gradient, linear-gradient(135deg, #ff8a3d, #ff4d4d));
  border-color: transparent;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(255, 77, 77, 0.35);
}

.site-header:not(.site-header--hero-dark) .btn-header-login {
  border-color: rgba(0, 0, 0, 0.2);
  color: var(--color-text);
}

.site-header:not(.site-header--hero-dark) .btn-header-login:hover,
.site-header:not(.site-header--hero-dark) .btn-header-login:focus-visible {
  color: #fff;
}

/* CTA "Receba o Plano de Negócio" — badge SVG + texto */
.btn-franq-cta {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  padding: 0;
  text-align: left;
  line-height: 1.2;
}

.btn-franq-cta__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 52px;
  background: var(--franq-gradient);
  border-radius: 999px 0 0 999px;
  box-shadow: inset -1px 0 0 rgba(0, 0, 0, 0.12);
}

.btn-franq-cta__badge-svg {
  width: 30px;
  height: 30px;
  color: #fff;
}

.btn-franq-cta__badge-svg--sm {
  width: 24px;
  height: 24px;
}

.btn-franq-cta__label {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 0.85rem 0.65rem 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.btn-franq-cta__tail {
  display: inline-flex;
  align-items: center;
  padding-right: 0.85rem;
  opacity: 0.9;
}

.btn-franq-cta__chevron {
  width: 18px;
  height: 18px;
  color: currentColor;
}

.btn-franq-cta__chevron--sm {
  width: 14px;
  height: 14px;
}

.btn-franq-nav.btn-franq-cta .btn-franq-cta__label {
  padding: 0.45rem 0.65rem 0.45rem 0.55rem;
  font-size: 0.72rem;
}

.btn-franq-nav.btn-franq-cta .btn-franq-cta__badge {
  width: 42px;
}

.btn-franq-nav.btn-franq-cta .btn-franq-cta__tail {
  padding-right: 0.65rem;
}

.franq-shape {
  color: var(--franq-accent);
  pointer-events: none;
}

.franq-shape--btn {
  width: 22px;
  height: auto;
  flex-shrink: 0;
  color: #fff;
  opacity: 0.9;
}

/* Formas decorativas X */
.franq-shape--hero-left {
  position: absolute;
  left: -8%;
  top: 5%;
  width: min(38vw, 320px);
  opacity: 0.12;
  transform: rotate(-8deg);
}

.franq-shape--hero-right {
  position: absolute;
  right: -5%;
  bottom: 10%;
  width: min(32vw, 280px);
  opacity: 0.08;
  transform: rotate(12deg);
}

.franq-shape--story {
  position: absolute;
  right: -6%;
  top: 10%;
  width: min(40vw, 360px);
  opacity: 0.15;
  color: #fff;
}

.franq-shape--modelo-left {
  position: absolute;
  left: -10%;
  top: 20%;
  width: min(35vw, 300px);
  opacity: 0.1;
}

.franq-shape--modelo-right {
  position: absolute;
  right: -8%;
  bottom: 5%;
  width: min(30vw, 260px);
  opacity: 0.08;
  transform: scaleX(-1);
}

.franq-shape--card {
  position: absolute;
  left: -12%;
  bottom: -8%;
  width: 180px;
  opacity: 0.85;
  color: var(--franq-accent);
  z-index: 2;
}

.franq-shape--backoffice {
  position: absolute;
  right: -15%;
  bottom: -5%;
  width: min(28vw, 220px);
  opacity: 0.2;
  color: #fff;
}

.franq-shape--mercado {
  position: absolute;
  left: -8%;
  bottom: 0;
  width: min(35vw, 300px);
  opacity: 0.12;
  color: #fff;
}

.franq-shape--dep-left,
.franq-shape--dep-right {
  position: absolute;
  width: min(30vw, 260px);
  opacity: 0.1;
}

.franq-shape--dep-left { left: -8%; top: 15%; }
.franq-shape--dep-right { right: -6%; bottom: 10%; transform: scaleX(-1); }

.franq-shape--join {
  position: absolute;
  left: -10%;
  bottom: -5%;
  width: 200px;
  opacity: 0.85;
  color: var(--franq-accent);
}

.franq-shape--badge {
  width: 48px;
  height: auto;
  color: var(--franq-accent);
}

/* Hero — imagem full width, altura proporcional, sem efeitos */
.franq-hero {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
  background: #0d0d0d;
  overflow: hidden;
}

.franq-hero-media,
.franq-hero-media img {
  display: block;
  width: 100%;
  height: auto;
}

.franq-hero .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Intro — card branco após o hero (estilo Libero) */
.franq-intro {
  position: relative;
  z-index: 5;
  margin-top: 0;
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.franq-intro-card {
  background: #fff;
  border-radius: clamp(1.75rem, 4vw, 2.75rem) clamp(1.75rem, 4vw, 2.75rem) var(--franq-radius-xl) var(--franq-radius-xl);
  padding: clamp(2rem, 5vw, 3.25rem);
  box-shadow:
    0 -12px 48px rgba(0, 0, 0, 0.1),
    0 16px 40px rgba(0, 0, 0, 0.06);
}

.franq-intro-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.franq-intro-heading h2 {
  margin: 0;
  line-height: 1.05;
}

.franq-intro-static {
  display: block;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.franq-intro-rotate-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.franq-intro-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  background: var(--franq-gradient);
  color: #fff;
  font-size: clamp(0.95rem, 1.8vw, 1.25rem);
  font-weight: 700;
  border-radius: 6px;
  line-height: 1.2;
  flex-shrink: 0;
}

.franq-intro-rotate {
  position: relative;
  display: inline-block;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  height: 1.25em;
  line-height: 1.25;
  min-width: min(100%, 280px);
  overflow: hidden;
  vertical-align: bottom;
}

.franq-intro-word {
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
  font-size: inherit;
  font-weight: 800;
  line-height: inherit;
  color: var(--franq-accent);
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(110%);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.franq-intro-word.is-active {
  opacity: 1;
  transform: translateY(0);
}

.franq-intro-copy p {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.65;
  color: var(--color-muted);
  margin: 0 0 1.5rem;
  max-width: 480px;
}

.franq-intro-copy p strong {
  color: var(--color-text);
  font-weight: 700;
}

.btn-franq-intro-cta {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
  gap: 0.6rem;
}

.franq-intro-cta-x {
  width: 22px;
  height: auto;
  flex-shrink: 0;
  color: #fff;
}

.franq-intro-stats {
  list-style: none;
  margin: clamp(2rem, 4vw, 2.75rem) 0 0;
  padding: clamp(1.5rem, 3vw, 2rem) 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
}

.franq-intro-stats li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  line-height: 1.5;
  color: var(--color-muted);
}

.franq-intro-stat-icon {
  width: 26px;
  height: auto;
  flex-shrink: 0;
  color: var(--franq-accent);
  margin-top: 0.15rem;
}

.franq-intro-stats strong {
  color: var(--franq-accent);
  font-weight: 800;
}

/* Por que investir */
.franq-investir {
  background:
    radial-gradient(ellipse 70% 55% at 50% 35%, rgba(255, 107, 44, 0.28) 0%, rgba(255, 77, 77, 0.08) 42%, transparent 68%),
    linear-gradient(165deg, #1a1a1a 0%, #0d0d0d 48%, #121212 100%);
  color: #fff;
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.franq-investir-glow {
  position: absolute;
  inset: 10% 15% auto;
  height: 55%;
  background: radial-gradient(ellipse at center, rgba(255, 107, 44, 0.22) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(8px);
}

.franq-investir-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.franq-shape--investir-left,
.franq-shape--investir-right {
  position: absolute;
  width: clamp(180px, 28vw, 340px);
  height: auto;
  color: rgba(255, 255, 255, 0.04);
}

.franq-shape--investir-left {
  left: -4%;
  top: 18%;
  transform: rotate(-12deg);
}

.franq-shape--investir-right {
  right: -6%;
  bottom: 8%;
  transform: rotate(18deg);
}

.franq-investir-head {
  text-align: center;
  max-width: 920px;
  margin: 0 auto clamp(2.25rem, 5vw, 3.25rem);
  position: relative;
  z-index: 1;
}

.franq-investir-head h2 {
  margin: 0;
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}

.franq-investir-brand {
  color: var(--franq-accent);
  white-space: nowrap;
}

.franq-investir-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3.5vw, 2.5rem);
  position: relative;
  z-index: 1;
  align-items: start;
}

.franq-investir-card h3 {
  margin: 1.15rem 0 0.65rem;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
}

.franq-investir-card p {
  margin: 0;
  font-size: clamp(0.92rem, 1.4vw, 1rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.franq-investir-media {
  border: 2px solid var(--franq-accent);
  border-radius: 4px;
  overflow: hidden;
  background: #1a1a1a;
  aspect-ratio: 16 / 10;
}

.franq-investir-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.franq-investir-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 0.45rem;
}

.franq-investir-list li {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.35;
}

/* Seções gerais */
.franq-section {
  position: relative;
  overflow: hidden;
}

.franq-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-section-head);
}

.franq-section-head h2 {
  margin-bottom: 0.75rem;
}

/* Formulário */
.franq-form-section {
  background: var(--franq-gradient);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.franq-form-card {
  background: #fff;
  border-radius: var(--franq-radius-xl);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-md);
  max-width: 920px;
  margin-inline: auto;
}

.franq-form-card--compact {
  max-width: none;
  padding: 1.75rem;
}

.franq-form-title {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.franq-form-title span {
  display: block;
  font-weight: 600;
  font-size: 0.95em;
  color: var(--color-muted);
  margin-top: 0.25rem;
}

.franq-form-section .franq-form-title {
  color: var(--color-text);
}

.franq-comparativo-form .franq-form-title,
.franq-mercado-form .franq-form-title {
  color: #fff;
}

.franq-comparativo-form .franq-form-title span,
.franq-mercado-form .franq-form-title span {
  color: rgba(255, 255, 255, 0.85);
}

.franq-form-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.franq-form-grid .form-group {
  min-width: 0;
}

.franq-field-nome,
.franq-field-tel,
.franq-field-email {
  grid-column: span 2;
}

.franq-field-capital,
.franq-field-intencao {
  grid-column: span 3;
}

/* Formulários em colunas estreitas (comparativo, mercado) */
.franq-form-grid--stacked,
.franq-comparativo-form .franq-form-grid,
.franq-mercado-form .franq-form-grid {
  grid-template-columns: 1fr;
}

.franq-form-grid--stacked .form-group,
.franq-comparativo-form .franq-form-grid .form-group,
.franq-mercado-form .franq-form-grid .form-group {
  grid-column: 1 / -1;
}

.franq-lead-form .form-group {
  margin-bottom: 0;
}

.franq-lead-form .form-group label {
  font-size: 0.8rem;
  line-height: 1.35;
  margin-bottom: 0.4rem;
}

.franq-lead-form .form-group input,
.franq-lead-form .form-group select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0.7rem 0.9rem;
  border: 1px solid #d8dce3;
  border-radius: 10px;
  font: inherit;
  background: #fff;
  appearance: none;
}

.franq-lead-form .form-group select {
  padding-right: 2.25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235c6370' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  cursor: pointer;
}

.franq-lead-form .form-group input:focus,
.franq-lead-form .form-group select:focus {
  outline: 2px solid var(--franq-accent);
  border-color: var(--franq-accent);
}

.franq-lead-form .btn-block {
  width: 100%;
  margin-top: 0.25rem;
}

.franq-form-full {
  grid-column: 1 / -1;
}

.franq-lead-form .form-legal {
  margin: 0.75rem 0 1rem;
  font-size: 0.72rem;
}

.franq-comparativo-form .form-legal,
.franq-mercado-form .form-legal {
  color: rgba(255, 255, 255, 0.75);
}

/* Story */
.franq-story {
  background: var(--franq-gradient);
  color: #fff;
  padding-block: clamp(3rem, 6vw, 5rem);
}

.franq-story-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.franq-story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
  position: relative;
  z-index: 1;
}

.franq-story-copy h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1.25rem;
}

.franq-highlight {
  background: #fff;
  color: var(--franq-accent);
  padding: 0.1em 0.35em;
  border-radius: 6px;
}

.franq-story-copy p {
  opacity: 0.95;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.franq-story-benefits h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.franq-story-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.franq-story-benefits li {
  margin-bottom: 0.85rem;
  line-height: 1.6;
  padding-left: 1rem;
  border-left: 3px solid rgba(255, 255, 255, 0.4);
}

.franq-cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  position: relative;
  z-index: 1;
}

.franq-cta-band p {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  margin: 0;
}

/* Modelo Home Office — foto 50vw à esquerda + conteúdo no container */
.franq-modelo {
  position: relative;
  background: #d3671e;
  padding-block: 0;
  min-height: clamp(420px, 52vw, 560px);
  overflow: hidden;
}

.franq-modelo-visual {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  overflow: hidden;
  background: #2a1a0c;
  z-index: 0;
}

.franq-modelo-visual picture,
.franq-modelo-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

/* Transição suave foto → painel laranja */
.franq-modelo-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 58%,
    rgba(211, 103, 30, 0.35) 78%,
    rgba(211, 103, 30, 0.85) 92%,
    #d3671e 100%
  );
  pointer-events: none;
  z-index: 1;
}

.franq-modelo-banner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: clamp(420px, 52vw, 560px);
  align-items: stretch;
}

.franq-modelo-panel {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(0.9rem, 2vw, 1.25rem);
  padding: clamp(1.75rem, 4vw, 2.75rem) 0 clamp(1.75rem, 4vw, 2.75rem) clamp(1rem, 3vw, 2rem);
  background: transparent;
  color: #fff;
}

.franq-modelo-panel h2 {
  margin: 0;
  color: #fff;
}

.franq-modelo-title-main {
  display: block;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.franq-modelo-title-sub {
  display: block;
  margin-top: 0.25rem;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.25;
}

.franq-modelo-benefits-label {
  margin: 0.25rem 0 0;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

.franq-modelo-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.franq-modelo-benefits li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: clamp(0.78rem, 1.4vw, 0.92rem);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
  line-height: 1.3;
}

.franq-modelo-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1.5px solid rgba(255, 255, 255, 0.75);
}

.franq-modelo-benefit-icon .icon {
  width: 18px;
  height: 18px;
  color: #fff;
  stroke: #fff;
}

.franq-modelo-pricebox {
  margin-top: 0.35rem;
  padding: 0.85rem 1.15rem;
  border-radius: 8px;
  background: rgba(62, 28, 8, 0.72);
  border: 1.5px solid rgba(255, 168, 88, 0.55);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  text-align: left;
}

.franq-modelo-price-kicker {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.franq-modelo-price-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0.2rem;
}

.franq-modelo-price-value {
  display: block;
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 800;
  font-style: italic;
  color: #fff;
  line-height: 1;
}

.btn-franq-modelo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  margin-top: 0.25rem;
  padding: 0.95rem 1.5rem;
  border: 2px solid var(--franq-accent);
  border-radius: 999px;
  background: #0d0d0d;
  color: #fff;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 0 0 1px rgba(255, 107, 44, 0.35), 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-franq-modelo:hover {
  transform: translateY(-2px);
  background: #1a1a1a;
  color: #fff;
  box-shadow: 0 0 0 2px rgba(255, 107, 44, 0.55), 0 12px 28px rgba(0, 0, 0, 0.4);
}

/* Backoffice — 3 camadas: fundo → modelo → textos */
.franq-backoffice {
  position: relative;
  color: #fff;
  padding-block: clamp(2.25rem, 4vw, 3.25rem);
  overflow: hidden;
  background: #8a3a12;
  min-height: clamp(520px, 62vw, 700px);
}

/* Camada 1 — fundo full width, centralizado verticalmente */
.franq-backoffice-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.franq-backoffice-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Camada 2 — modelo (quase altura da section) */
.franq-backoffice-model {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 1;
  width: min(92vw, 980px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  line-height: 0;
}

.franq-backoffice-model img {
  display: block;
  width: auto;
  max-width: none;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  mix-blend-mode: lighten;
}

/* Camada 3 — conteúdo acima do fundo e da modelo */
.franq-backoffice-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  min-height: inherit;
}

.franq-backoffice-left,
.franq-backoffice-right {
  position: relative;
  z-index: 1;
}

.franq-backoffice-lead {
  margin: 0 0 1.25rem;
  font-size: clamp(0.92rem, 1.5vw, 1.05rem);
  font-style: italic;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
  max-width: 340px;
}

.franq-backoffice-lead strong {
  display: block;
  font-style: italic;
  font-weight: 800;
  font-size: 1.05em;
  margin-bottom: 0.2rem;
  color: #fff;
}

.franq-backoffice-left h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5.5vw, 4.25rem);
  font-weight: 800;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 0 28px rgba(255, 180, 80, 0.35), 0 4px 18px rgba(0, 0, 0, 0.35);
}

.franq-backoffice-right {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.15rem;
  justify-self: end;
  width: 100%;
  max-width: 360px;
}

.franq-backoffice-right .franq-backoffice-lead {
  max-width: none;
}

.franq-backoffice-features {
  list-style: none;
  margin: 0;
  padding: 1rem 1.15rem;
  border: 2px solid rgba(255, 168, 88, 0.95);
  border-radius: 10px;
  background: rgba(180, 70, 20, 0.35);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(2px);
}

.franq-backoffice-features li {
  margin: 0;
  padding: 0.55rem 0;
  line-height: 1.35;
}

.franq-backoffice-features li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.franq-backoffice-features strong {
  display: block;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 800;
  color: #fff;
}

.franq-backoffice-features span {
  display: block;
  font-size: clamp(0.85rem, 1.3vw, 0.95rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
  margin-top: 0.1rem;
}

.btn-franq-backoffice {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-top: 0.25rem;
  min-width: min(100%, 280px);
  padding: 0.95rem 1.75rem;
  border: 2px solid #ff8a3d;
  border-radius: 999px;
  background: #0d0d0d;
  color: #fff;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 0 0 1px rgba(255, 138, 61, 0.4), 0 10px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-franq-backoffice:hover {
  transform: translateY(-2px);
  background: #1a1a1a;
  color: #fff;
  box-shadow: 0 0 0 2px rgba(255, 138, 61, 0.55), 0 14px 32px rgba(0, 0, 0, 0.4);
}

/* Comparativo */
.franq-comparativo {
  background: #fff;
  padding-block: clamp(3rem, 6vw, 5rem);
}

.franq-comparativo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

.franq-comparativo-table-wrap h2 {
  margin-bottom: 1.5rem;
}

.franq-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.franq-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 2px solid var(--franq-accent);
  border-radius: var(--franq-radius-xl);
  overflow: hidden;
  font-size: 0.88rem;
}

.franq-table thead th {
  background: var(--franq-gradient);
  color: #fff;
  padding: 1rem;
  text-align: left;
  font-weight: 700;
}

.franq-table tbody th,
.franq-table tbody td {
  padding: 0.85rem 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  vertical-align: middle;
}

.franq-table tbody th {
  font-weight: 600;
  background: var(--color-bg-soft);
  text-align: left;
  white-space: nowrap;
}

.franq-table-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #059669;
  border-radius: 50%;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.franq-table-yes .icon {
  width: 14px;
  height: 14px;
  color: #fff;
  stroke: #fff;
}

.franq-table-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #dc2626;
  color: #fff;
  border-radius: 50%;
  margin-right: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  vertical-align: middle;
}

.franq-comparativo-form {
  background: var(--franq-gradient);
  border-radius: var(--franq-radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
}

.franq-comparativo-form .franq-form-card {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.franq-comparativo-form .form-group input,
.franq-comparativo-form .form-group select {
  background: #fff;
}

/* Mercado */
.franq-mercado {
  background: var(--franq-gradient-dark);
  color: #fff;
  padding-block: clamp(3rem, 6vw, 5rem);
}

.franq-mercado-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.franq-mercado-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.franq-mercado-copy h2 {
  margin-bottom: 0.75rem;
}

.franq-mercado-source {
  font-size: 0.8rem;
  opacity: 0.65;
  margin-bottom: 2rem;
}

.franq-mercado-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.franq-stat-icon {
  width: 36px;
  height: 36px;
  color: var(--franq-accent);
  stroke: var(--franq-accent);
  margin-bottom: 0.75rem;
}

.franq-stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.franq-stat-label {
  font-size: 0.88rem;
  opacity: 0.85;
  line-height: 1.5;
  margin: 0;
}

.franq-mercado-form {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--franq-radius-xl);
  padding: 1.75rem;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.franq-mercado-form .franq-form-card {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.franq-mercado-form .form-group input,
.franq-mercado-form .form-group select {
  background: #fff;
}

/* Depoimentos */
.franq-depoimentos {
  background: var(--color-bg-soft);
  padding-block: clamp(3rem, 6vw, 5rem);
}

.franq-depoimentos-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.franq-depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.franq-depo-card {
  background: #fff;
  border-radius: var(--franq-radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
}

.franq-depo-quote {
  font-size: 4rem;
  line-height: 1;
  color: var(--franq-accent);
  opacity: 0.25;
  font-family: Georgia, serif;
  margin-bottom: -1rem;
}

.franq-depo-card p {
  flex: 1;
  color: var(--color-muted);
  line-height: 1.65;
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
}

.franq-depo-card footer strong {
  display: block;
  color: var(--franq-accent);
  font-size: 0.95rem;
}

.franq-depo-card footer span {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.franq-depoimentos-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Join final */
.franq-join {
  background: #fff;
  padding-block: clamp(3rem, 6vw, 4rem);
}

.franq-join-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  margin-bottom: 3rem;
}

.franq-join-visual {
  position: relative;
}

.franq-join-visual img {
  width: 100%;
  border-radius: var(--franq-radius-xl);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.franq-join-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.franq-join-copy p {
  color: var(--color-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.franq-join-form {
  background: var(--franq-gradient);
  border-radius: var(--franq-radius-xl);
  padding: clamp(1.75rem, 4vw, 2.5rem);
}

.franq-join-form .franq-form-card {
  background: transparent;
  box-shadow: none;
  padding: 0;
  max-width: none;
}

.franq-join-form .franq-form-title {
  color: #fff;
}

.franq-join-form .franq-form-title span {
  color: rgba(255, 255, 255, 0.85);
}

.franq-join-form .form-legal {
  color: rgba(255, 255, 255, 0.75);
}

.franq-join-form .form-group input,
.franq-join-form .form-group select {
  background: #fff;
}

/* Footer legal LP franquia */
body.lp-franq .site-footer--simple {
  background: var(--franq-dark);
}

.footer-legal {
  font-size: 0.75rem;
  opacity: 0.85;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

/* Responsive LP franquia */
@media (max-width: 992px) {
  body.lp-franq .nav ul {
    gap: 0.75rem;
  }

  .btn-franq-nav {
    width: 100%;
    justify-content: center;
  }

  .franq-intro-top {
    grid-template-columns: 1fr;
  }

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

  .franq-investir-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }

  .franq-intro {
    margin-top: 0;
  }

  .franq-story-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .franq-modelo {
    min-height: 0;
  }

  .franq-modelo-visual {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 280px;
    aspect-ratio: 16 / 10;
  }

  .franq-modelo-visual picture,
  .franq-modelo-visual img {
    position: absolute;
    inset: 0;
  }

  .franq-modelo-visual::after {
    background: linear-gradient(180deg, transparent 55%, rgba(211, 103, 30, 0.7) 85%, #d3671e 100%);
  }

  .franq-modelo-banner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .franq-modelo-panel {
    grid-column: 1;
    padding: 1.75rem 0 2rem;
  }

  .franq-backoffice {
    min-height: 0;
    padding-block: clamp(2rem, 5vw, 2.75rem);
    display: flex;
    flex-direction: column;
  }

  .franq-backoffice-content {
    order: 1;
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 1.35rem;
    text-align: left;
  }

  .franq-backoffice-model {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    transform: none;
    order: 2;
    width: min(100%, 480px);
    height: auto;
    aspect-ratio: 3 / 4;
    margin: 1rem auto 0;
    z-index: 1;
  }

  .franq-backoffice-model img {
    width: 100%;
    height: 100%;
    max-width: 100%;
  }

  .franq-backoffice-right {
    max-width: none;
    justify-self: stretch;
  }

  .franq-backoffice-lead {
    max-width: none;
  }

  .franq-backoffice-left h2 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .btn-franq-backoffice {
    align-self: stretch;
    width: 100%;
  }

  .franq-comparativo-grid,
  .franq-mercado-grid,
  .franq-join-grid {
    grid-template-columns: 1fr;
  }

  .franq-form-grid {
    grid-template-columns: 1fr;
  }

  .franq-form-grid .form-group {
    grid-column: 1 / -1;
  }

  .franq-mercado-stats {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .franq-mercado-stats article {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 0.85rem;
    row-gap: 0.15rem;
    align-items: center;
    text-align: left;
  }

  .franq-mercado-stats .franq-stat-icon {
    grid-row: 1 / 3;
    grid-column: 1;
    margin-bottom: 0;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }

  .franq-mercado-stats .franq-stat-value {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0;
    font-size: clamp(1.25rem, 5vw, 1.5rem);
  }

  .franq-mercado-stats .franq-stat-label {
    grid-column: 2;
    grid-row: 2;
  }

  .franq-depoimentos-grid {
    grid-template-columns: 1fr;
  }

  .franq-cta-band {
    flex-direction: column;
    text-align: center;
  }

  .franq-shape--card,
  .franq-shape--backoffice,
  .franq-shape--join {
    display: none;
  }
}

@media (max-width: 768px) {
  body.lp-franq {
    --franq-hero-frame: clamp(1rem, 4vw, 1.75rem);
  }

  body.lp-franq .logo img { height: 30px; }

  .header-actions {
    gap: 0.4rem;
  }

  .btn-header-login {
    padding: 0.4rem 0.8rem;
    font-size: 0.72rem;
  }

  .nav-lang-flags {
    margin-left: 0;
    gap: 0.3rem;
  }

  .nav-lang {
    width: 28px;
    height: 28px;
  }

  .nav-lang-flag {
    width: 22px;
    height: 22px;
  }

  .franq-backoffice-left h2 {
    font-size: clamp(2rem, 9vw, 2.5rem);
  }

  .franq-intro {
    margin-top: 0;
  }

  /* Tabela comparativo — cards empilhados no mobile */
  .franq-comparativo-table-wrap h2 {
    font-size: clamp(1.35rem, 5.5vw, 1.75rem);
    text-align: center;
  }

  .franq-table-scroll {
    overflow-x: visible;
  }

  .franq-table {
    border: none;
    border-radius: 0;
    font-size: 0.84rem;
  }

  .franq-table thead {
    display: none;
  }

  .franq-table tbody tr {
    display: block;
    margin-bottom: 0.85rem;
    border: 2px solid var(--franq-accent);
    border-radius: var(--franq-radius-xl);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  }

  .franq-table tbody tr:last-child {
    margin-bottom: 0;
  }

  .franq-table tbody th[scope="row"] {
    display: block;
    white-space: normal;
    background: var(--color-bg-soft);
    font-size: 0.92rem;
    padding: 0.85rem 1rem;
    border-top: none;
  }

  .franq-table tbody td {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 0.7rem 1rem;
    line-height: 1.45;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .franq-table tbody td:nth-child(2) {
    background: rgba(255, 107, 44, 0.07);
  }

  .franq-table tbody td:nth-child(2)::before,
  .franq-table tbody td:nth-child(3)::before {
    display: block;
    flex: 0 0 100%;
    font-weight: 700;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.15rem;
  }

  .franq-table tbody td:nth-child(2)::before {
    content: "Franquia WODTECHX";
    color: var(--franq-accent);
  }

  .franq-table tbody td:nth-child(3)::before {
    content: "Concorrente";
    color: #991b1b;
  }

  .franq-table-yes,
  .franq-table-no {
    flex-shrink: 0;
    margin-right: 0;
    margin-top: 0.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .franq-intro-word {
    transition: none;
  }
}
