/* ══════════════════════════════════════════════════════════════
   BENDITO PONTO — FRANQUIA LANDING PAGE
   Design system + Layout + Componentes
   ══════════════════════════════════════════════════════════════ */

/* ─── TOKENS ────────────────────────────────────────────────── */
:root {
  --rose: #a8416b;
  --rose-dark: #8b3359;
  --rose-light: rgba(168, 65, 107, 0.08);
  --mint: #8de4c4;
  --mint-dark: #6dcfad;
  --gold: #ffc600;
  --gold-dark: #e6b200;

  --bg: #fafaf8;
  --bg-alt: #f4f1ed;
  --text: #1a1a1a;
  --text-muted: #54595f;
  --text-faint: #9e9e9e;
  --border: #e8e3dc;

  --font: 'Nunito Sans', system-ui, sans-serif;
  --max-w: 1280px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);

  --transition: 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── RESET + BASE ──────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ─── CONTAINER ─────────────────────────────────────────────── */
.container {
  width: min(var(--max-w), 100%);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ─── TYPOGRAPHY UTILITIES ──────────────────────────────────── */
.eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
  display: block;
}
.eyebrow--light {
  color: rgba(255, 255, 255, 0.65);
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.12;
  color: var(--rose);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.6;
}

.body-text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.body-text--highlight {
  color: var(--text);
  font-weight: 600;
  margin-bottom: 0;
}

/* ─── SECTION BASE ──────────────────────────────────────────── */
.section {
  padding-block: 96px;
}
.section--alt {
  background: var(--bg-alt);
}
.section--rose {
  background: var(--rose);
}
.section--form {
  background: var(--rose);
}

.section-header {
  margin-bottom: 64px;
}
.section-header--centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-header--centered .section-subtitle {
  text-align: center;
}

/* ─── STITCH DIVIDER (signature element) ────────────────────── */
.stitch-divider {
  height: 3px;
  background: repeating-linear-gradient(
    to right,
    var(--rose) 0px,
    var(--rose) 10px,
    transparent 10px,
    transparent 20px
  );
  opacity: 0.25;
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--gold);
  color: var(--rose-dark);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(255, 198, 0, 0.35);
}
.btn--primary.mint {
  background: var(--mint) !important;
  border-color: var(--mint) !important;
}
.btn--primary.mint:hover {
  background: var(--mint-dark) !important;
  border-color: var(--mint-dark) !important;
  box-shadow: 0 8px 24px rgba(141, 228, 196, 0.4) !important;
}
.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: 0 8px 28px rgba(255, 198, 0, 0.45);
}

.btn--whatsapp {
  background: var(--mint);
  color: #1a4033;
  border-color: var(--mint);
}
.btn--whatsapp:hover {
  background: var(--mint-dark);
  border-color: var(--mint-dark);
  box-shadow: 0 8px 24px rgba(141, 228, 196, 0.4);
}

.btn--whatsapp-full {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 16px 24px;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
}

.btn--inline-mt {
  margin-top: 24px;
}

.btn--form-submit {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 18px 32px;
  margin-top: 8px;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
}

/* ─── SITE HEADER ───────────────────────────────────────────── */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
}

.header-cta {
  font-size: 13px;
  font-weight: 800;
  color: white;
  letter-spacing: 0.04em;
  padding: 10px 20px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  transition:
    border-color var(--transition),
    background var(--transition);
}
.header-cta:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--rose);
  background-image: url('https://benditoponto.com.br/wp-content/uploads/2023/11/01-3.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(139, 51, 89, 0.82) 0%,
    rgba(168, 65, 107, 0.72) 60%,
    rgba(90, 30, 55, 0.85) 100%
  );
}

/* Wrapper dois-colunas dentro do hero */
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding: 140px 40px 80px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__content {
  /* posicionamento e padding vêm do hero__inner */
}

.hero__eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 20px;
  display: block;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.2s;
}

.hero__headline {
  font-size: clamp(36px, 6vw, 65px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stitch-line {
  display: block;
  overflow: hidden;
}
.stitch-line--accent {
  color: var(--mint);
}

/* Stitch words are wrapped by JS */
.stitch-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  animation: stitchIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes stitchIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__subline {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 600px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 1.2s;
}

/* ─── HERO STATS (mini indicadores no lado esquerdo) ────────── */
.hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
  margin-bottom: 14px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 1.35s;
}

.hero__stat {
  padding: 18px 20px;
}
.hero__stat + .hero__stat {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.hero__stat-value {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  color: var(--mint);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 5px;
}

.hero__stat-label {
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.4;
}

.hero__tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.55;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 1.45s;
}

.hero__badge {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 1.5s;
}
.hero__badge strong {
  color: white;
  font-weight: 800;
}

/* ─── HERO FORM PANEL (glassmorphism) ───────────────────────── */
.hero__form-panel {
  /* background: rgba(15, 5, 10, 0.52); */
  background: rgb(15 5 10 / 0%);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 1s;
  min-width: 0;
}

/* Labels e textos dentro do painel glass */
.hero__form-panel .field label {
  color: rgba(255, 255, 255, 0.82);
}
.hero__form-panel .req {
  color: var(--mint);
}
.hero__form-panel .field input,
.hero__form-panel .field select,
.hero__form-panel .field textarea {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.2);
}
.hero__form-panel .check-label {
  color: rgba(255, 255, 255, 0.68);
}
.hero__form-panel .check-label a {
  color: var(--mint);
}
.hero__form-panel .check-box {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
}
.hero__form-panel .check-label input[type='checkbox']:checked ~ .check-box {
  background: var(--rose);
  border-color: var(--rose);
}

.hero-form__eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 6px;
}
.hero-form__title {
  font-size: 22px;
  font-weight: 900;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── SPLIT LAYOUT ──────────────────────────────────────────── */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split-layout--reversed {
  direction: rtl;
}
.split-layout--reversed > * {
  direction: ltr;
}

.split-layout__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-layout__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.split-layout__image:hover img {
  transform: scale(1.03);
}

.split-layout__image--tall img {
  height: 520px;
}

/* ─── SERVICES GRID ─────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.service-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}
.service-card:hover {
  border-color: var(--rose);
  box-shadow: 0 6px 28px rgba(168, 65, 107, 0.12);
  transform: translateY(-3px);
}
.service-card--soft {
  border-style: dashed;
  opacity: 0.75;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  color: var(--rose);
  flex-shrink: 0;
}
.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card__name {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
}
.service-card__name em {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  color: var(--text-faint);
  display: block;
  margin-top: 2px;
}

.services-note {
  text-align: center;
  font-size: 16px;
  color: var(--text-muted);
  max-width: 700px;
  margin-inline: auto;
  line-height: 1.65;
}

/* ─── RECURRENCE SECTION ────────────────────────────────────── */
/* ─── SEÇÃO RECORRÊNCIA ─────────────────────────────────────── */
.recurrence-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 72px;
  align-items: start;
}

.recurrence-headline {
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.35;
  margin-bottom: 14px;
}

.recurrence-word {
  font-size: clamp(52px, 7.5vw, 88px);
  font-weight: 900;
  color: var(--mint);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}

.recurrence-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin-top: 20px;
  margin-bottom: 28px;
}
.recurrence-sub strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
}

/* Card de introdução (coluna esquerda) */
.recurrence-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 22px 20px;
  margin-bottom: 32px;
}
.recurrence-card__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint);
  padding: 10px;
}
.recurrence-card__icon svg {
  width: 100%;
  height: 100%;
}
.recurrence-card__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  margin-bottom: 8px;
}
.recurrence-card__sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
}

/* Texto destaque em mint */
.recurrence-accent {
  color: var(--mint);
  font-weight: 700;
}

/* Botão outline claro (sobre fundo rose) */
.btn--outline-light {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.38);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 24px;
}
.btn--outline-light:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

/* Coluna direita: argumentos */
.recurrence-args-title {
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 800;
  color: white;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.recurrence-arg {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.recurrence-arg:first-of-type {
  padding-top: 0;
}

.recurrence-arg__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint);
  padding: 9px;
}
.recurrence-arg__icon svg {
  width: 100%;
  height: 100%;
}

.recurrence-arg__title {
  font-size: 15px;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
}
.recurrence-arg__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Card de fechamento / highlight */
.recurrence-highlight {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 22px 20px;
  margin-top: 24px;
}
.recurrence-highlight__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--mint);
  padding: 8px;
  opacity: 0.9;
}
.recurrence-highlight__icon svg {
  width: 100%;
  height: 100%;
}
.recurrence-highlight p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
}

/* ─── STATS SECTION ─────────────────────────────────────────── */
.stats-section {
  background: white;
}

/* Subtítulo da seção com termos em rose */
.stats-accent {
  color: var(--rose);
  font-weight: 700;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  margin-bottom: 48px;
}

.stat-block {
  padding: 36px 28px 32px;
  border-right: 1.5px solid var(--border);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-block:last-child {
  border-right: none;
}

/* Ícone circular acima do número */
.stat-block__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  padding: 18px;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.stat-block__icon svg {
  width: 100%;
  height: 100%;
}

.stat-value {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 900;
  color: var(--rose);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
}
.stat-value--static {
  color: var(--rose);
}

/* Fio divisor entre número e label */
.stat-divider {
  width: 32px;
  height: 2px;
  background: var(--rose);
  border-radius: 2px;
  margin: 0 auto 14px;
  opacity: 0.4;
}

.stat-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  line-height: 1.4;
}

/* Pill tag "A partir de" */
.stat-tag {
  display: inline-block;
  background: var(--rose);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.stat-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Disclaimer com ícone */
.stats-disclaimer {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  max-width: 860px;
  margin-inline: auto;
}
.stats-disclaimer__icon {
  flex-shrink: 0;
  color: var(--rose);
  opacity: 0.6;
  margin-top: 1px;
}
.stats-disclaimer p {
  font-size: 12px;
  color: var(--text-faint);
  line-height: 1.65;
}

/* ─── FRANQUEADO SECTION ────────────────────────────────────── */
.franqueado-section {
  background: var(--bg);
}

/* Grid principal: texto esq | direita com bullets+foto+cta */
.franqueado-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

/* Coluna esquerda */
.franqueado-content .body-text {
  margin-top: 12px;
}

.founder-banner__signature {
  margin-top: 12px;
}

.text-rose {
  color: var(--rose);
}

/* Coluna direita */
.franqueado-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* 3 bullets com ícone */
.franqueado-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.franqueado-benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.franqueado-benefit__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--rose-light);
  color: var(--rose);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.franqueado-benefit__icon svg {
  width: 100%;
  height: 100%;
}

.franqueado-benefit__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  /* padding-top: 14px; */
}

.franqueado-benefit__text strong {
  color: var(--text);
  font-weight: 700;
}

/* Foto da fachada */
.franqueado-photo {
  border-radius: 16px;
  overflow: hidden;
  /* aspect-ratio: 16 / 9; */
}

.franqueado-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.franqueado-photo:hover img {
  transform: scale(1.03);
}

/* CTA no rodapé da coluna direita */
.franqueado-cta {
  align-self: flex-end;
}

/* Grid 2-col de suporte (coluna esquerda) */
.franqueado-support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  margin-top: 28px;
}

.franqueado-support-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* 5º item ocupa as duas colunas */
.franqueado-support-item--wide {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
}

.franqueado-support-item--wide .franqueado-support-item__title,
.franqueado-support-item--wide .franqueado-support-item__desc {
  margin: 0;
}

.franqueado-support-item--wide .franqueado-support-item__icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.franqueado-support-item__icon {
  width: 36px;
  height: 36px;
  color: var(--rose);
}

.franqueado-support-item__icon svg {
  width: 100%;
  height: 100%;
}

.franqueado-support-item__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin: 0;
}

.franqueado-support-item__desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.franqueado-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.franqueado-title__light {
  color: var(--text-muted);
  font-weight: 400;
  font-size: clamp(20px, 3vw, 32px);
}
.franqueado-title__bold {
  color: var(--text);
}
.franqueado-title__accent {
  color: var(--rose);
}

/* ─── SUPPORT GRID ──────────────────────────────────────────── */
.support-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.support-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 20px;
  border: 1.5px solid var(--border);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}
.support-card:hover {
  border-color: var(--rose);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.support-card__icon {
  width: 36px;
  height: 36px;
  color: var(--rose);
  margin-bottom: 16px;
}
.support-card__icon svg {
  width: 100%;
  height: 100%;
}

.support-card__title {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.35;
}

.support-card__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ─── LOCATION SECTION ──────────────────────────────────────── */
.location-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 48px;
}

.location-header {
  max-width: 600px;
}
.location-header .body-text {
  text-align: center;
}

.location-cards {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
  max-width: 820px;
}

.location-card {
  flex: 1;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: left;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}
.location-card:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}
.location-card:last-child {
  border-radius: 0 var(--radius) var(--radius) 0;
}
.location-card:hover {
  border-color: var(--rose);
  box-shadow: var(--shadow);
}

.location-card__label {
  font-size: 20px;
  font-weight: 900;
  color: var(--rose);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.location-card__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

.location-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 800;
  color: var(--text-faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--border);
  border-block: 1.5px solid var(--border);
}

.location-closing {
  font-size: 17px;
  font-style: italic;
  color: var(--text-muted);
  max-width: 560px;
  text-align: center;
  line-height: 1.65;
}

/* ─── TIMELINE ──────────────────────────────────────────────── */
.timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.timeline-step__dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--rose);
  color: white;
  font-size: 16px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(168, 65, 107, 0.3);
}
.timeline-step__dot--final {
  background: var(--mint);
  color: #1a4033;
  font-size: 20px;
}

.timeline-step__line {
  position: absolute;
  top: 24px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    var(--rose) 0px,
    var(--rose) 6px,
    transparent 6px,
    transparent 12px
  );
  opacity: 0.3;
  z-index: 0;
}
.timeline-step--last .timeline-step__line {
  display: none;
}

.timeline-step__content {
  padding: 20px 10px 0;
}
.timeline-step__title {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}
.timeline-step__desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── ECOSSISTEMA ───────────────────────────────────────────── */
.eco-section {
  background: var(--bg-alt);
}

.eco-headline {
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 900;
  color: var(--rose);
  max-width: 860px;
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1.5px solid var(--border);
}

.eco-split {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 48px;
}

.eco-col {
  padding: 32px;
  background: white;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
}
.eco-col--highlight {
  border-color: var(--rose);
  box-shadow: 0 4px 28px rgba(168, 65, 107, 0.1);
}

.eco-col__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  background: var(--bg-alt);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.eco-col__tag--rose {
  color: var(--rose);
  background: var(--rose-light);
}

.eco-col__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

.eco-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--rose);
  font-weight: 900;
  padding-top: 72px;
}

.eco-quote {
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 700;
  color: var(--rose-dark);
  line-height: 1.55;
  padding: 32px 44px;
  border-left: 4px solid var(--rose);
  background: var(--rose-light);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ─── MARKET SECTION (Oportunidade de Mercado) ──────────────── */
.market-section {
  background: var(--bg-alt);
  overflow: hidden;
}

.market-intro {
  background-image: url('img/banner-bg-setor-dourado.png');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  border-radius: 20px;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  padding: 60px 56px;
  margin-bottom: 64px;
}

.market-intro__text {
  max-width: 54%;
}

/* Imagem mobile do setor — oculta no desktop, ativa via media query */
.market-intro__mobile-img {
  display: none;
}

.market-headline {
  font-size: clamp(28px, 3.8vw, 50px);
  font-weight: 900;
  color: var(--rose);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.market-accent {
  font-size: clamp(17px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--mint-dark);
  line-height: 1.3;
  margin-bottom: 22px;
}

.market-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* Numbers */
.market-numbers {
  padding-top: 56px;
  border-top: 1.5px solid var(--border);
  margin-bottom: 40px;
}

.market-numbers__label {
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.market-numbers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.market-numbers__grid::before,
.market-numbers__grid::after {
  content: '';
  position: absolute;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border);
}

.market-numbers__grid::before {
  left: 33.33%;
}
.market-numbers__grid::after {
  left: 66.66%;
}

.market-num {
  text-align: center;
  padding: 0 36px 16px;
}

.market-num__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  color: var(--rose);
  border-radius: 50%;
  background: var(--rose-light);
  padding: 14px;
}

.market-num__value {
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 900;
  color: var(--rose);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 12px;
}

.market-num__desc {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 8px;
  font-weight: 600;
  max-width: 220px;
  margin-inline: auto;
}

.market-num__source {
  font-size: 11px;
  color: var(--text-muted);
  font-style: italic;
}

/* Pillars */
.market-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 40px;
  border-top: 1.5px solid var(--border);
}

.market-pillar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: white;
  border-radius: var(--radius);
  padding: 24px 28px;
  border: 1.5px solid var(--border);
}

.market-pillar__icon {
  width: 40px;
  height: 40px;
  color: var(--mint-dark);
  flex-shrink: 0;
}

.market-pillar p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.market-pillar p strong {
  color: var(--text);
  font-weight: 700;
}

/* ─── PORTFOLIO (integrado dentro do market-section) ────────── */
.market-portfolio {
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1.5px solid var(--border);
}

.portfolio-section {
  background: var(--bg);
}

.portfolio-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 40px;
}

.portfolio-title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  color: var(--rose);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 0;
}

.portfolio-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--rose);
  border-radius: 2px;
  margin-top: 16px;
}

.portfolio-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  padding-bottom: 3px; /* alinha com baseline do título */
}

/* Grid 5+4 (10 colunas, cards espaçados e centrados) */
.market-portfolio .services-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 12px;
  margin-bottom: 0;
}

.market-portfolio .service-card {
  grid-column: span 2;
  align-items: center;
  text-align: center;
  padding: 22px 14px 18px;
  gap: 10px;
}

/* Segunda fileira: 3 cards centralizados (colunas 3-4, 5-6, 7-8) */
.market-portfolio .service-card:nth-child(6) {
  grid-column: 3 / span 2;
}
.market-portfolio .service-card:nth-child(7) {
  grid-column: 5 / span 2;
}
.market-portfolio .service-card:nth-child(8) {
  grid-column: 7 / span 2;
}

.market-portfolio .service-card__icon {
  width: 44px;
  height: 44px;
}

.market-portfolio .service-card__name {
  font-size: 13px;
}

/* ─── HISTÓRIA / FUNDADORES ─────────────────────────────────── */
/* ─── HISTÓRIA ──────────────────────────────────────────────── */
.historia-section {
  background: var(--bg-alt);
}

.historia-layout {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: center;
}

.historia-headline {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 900;
  color: var(--rose);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.historia-sep {
  width: 40px;
  height: 3px;
  background: var(--rose);
  border-radius: 2px;
  margin-bottom: 24px;
}

.historia-text .body-text {
  margin-bottom: 14px;
}

/* Coluna direita: vídeo portrait */
.historia-video-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.historia-video-player {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  background: #111;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
}

.historia-video-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay: play button + label */
.historia-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(0, 0, 0, 0.32);
  color: white;
  border: none;
  cursor: pointer;
  width: 100%;
  padding: 0;
  transition: background var(--transition);
}

.historia-play-btn:hover {
  background: rgba(168, 65, 107, 0.4);
}

.historia-play-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform var(--transition),
    background var(--transition);
}

.historia-play-btn:hover .historia-play-icon {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.28);
}

.historia-play-icon svg {
  width: 28px;
  height: 28px;
  margin-left: 4px; /* optical center for play triangle */
}

.historia-video-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

/* Esconde overlay quando vídeo está tocando */
.historia-video-player.is-playing .historia-play-btn {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.historia-video-player video::-webkit-media-controls {
  display: none !important;
}

/* ─── FAQ ───────────────────────────────────────────────────── */
.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: white;
  transition: border-color var(--transition);
}
.faq-item:has(.faq-btn[aria-expanded='true']) {
  border-color: var(--rose);
}

.faq-btn {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  transition: background var(--transition);
}
.faq-btn:hover {
  background: var(--bg-alt);
}
.faq-btn[aria-expanded='true'] {
  color: var(--rose);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-muted);
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition);
}
.faq-icon::before {
  content: '+';
  line-height: 1;
}
.faq-btn[aria-expanded='true'] .faq-icon {
  transform: rotate(45deg);
  border-color: var(--rose);
  background: var(--rose);
  color: white;
}
.faq-btn[aria-expanded='true'] .faq-icon::before {
  color: white;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-panel p {
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── FORM SECTION ──────────────────────────────────────────── */
.form-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.form-main-title {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.form-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.6;
}

.form-body {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
  min-width: 0;
}

.form-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  min-width: 0;
  overflow: hidden;
}

.form-row {
  margin-bottom: 20px;
}
.form-row--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

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

.field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.req {
  color: var(--rose);
}
.optional {
  font-weight: 400;
  color: var(--text-faint);
  font-size: 12px;
}

.field input,
.field select,
.field textarea {
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  width: 100%;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-faint);
}
.field select {
  cursor: pointer;
  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 d='M1 1l5 5 5-5' stroke='%2354595F' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(168, 65, 107, 0.1);
}
.field textarea {
  resize: vertical;
  min-height: 88px;
}

.field--check {
  flex-direction: row;
}
.check-label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  position: relative;
}
/* Oculta o input nativo, mantendo funcionalidade e validação */
.check-label input[type='checkbox'] {
  position: absolute;
  opacity: 0;
  width: 18px;
  height: 18px;
  top: 1px;
  left: 0;
  cursor: pointer;
  margin: 0;
  z-index: 1;
}
/* Caixa visual customizada */
.check-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  min-width: 18px;
  flex-shrink: 0;
  border-radius: 4px;
  border: 1.5px solid var(--border);
  background: white;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s;
  margin-top: 1px;
}
/* Checkmark via ::after */
.check-box::after {
  content: '';
  display: block;
  width: 10px;
  height: 6px;
  border-left: 2.5px solid transparent;
  border-bottom: 2.5px solid transparent;
  transform: rotate(-45deg) translate(1px, -1px);
  transition: border-color 0.15s;
}
/* Estado marcado */
.check-label input[type='checkbox']:checked ~ .check-box {
  background: var(--rose);
  border-color: var(--rose);
}
.check-label input[type='checkbox']:checked ~ .check-box::after {
  border-color: white;
}
.check-label a {
  color: var(--rose);
  text-decoration: underline;
}

/* Form feedback states */
.form-feedback {
  margin-top: 20px;
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  text-align: center;
}
.form-feedback--success {
  background: #f0fbf6;
  border: 1.5px solid #8de4c4;
  color: #1a4033;
}
.form-feedback--error {
  background: #fff0f4;
  border: 1.5px solid #f5a0bc;
  color: var(--rose-dark);
}
.form-feedback__icon {
  font-size: 36px;
  margin-bottom: 8px;
}
.form-feedback h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
}
.form-feedback p {
  font-size: 14px;
  line-height: 1.5;
}

/* Spinner animation */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.btn-spinner {
  animation: spin 0.8s linear infinite;
}

/* ─── WHATSAPP SIDE ─────────────────────────────────────────── */
.wa-side {
  color: white;
  padding-top: 16px;
  min-width: 0;
}
.wa-side__label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
}
.wa-side__title {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.wa-side__text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin-bottom: 28px;
}
.wa-side__disclaimer {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

/* ─── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: #111;
  padding-block: 40px;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(0.6);
}
.footer-info {
  flex: 1;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}
.footer-link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: underline;
  transition: color var(--transition);
}
.footer-link:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ─── SCROLL REVEAL ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — REVISÃO COMPLETA
   ═══════════════════════════════════════════════════════════════ */

/* ─── 1280px — ajustes de grid em telas menores que o max-w ─── */
@media (max-width: 1280px) {
  .support-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ─── 1024px — tablets landscape, laptops menores ───────────── */
@media (max-width: 1024px) {
  :root {
    --max-w: 960px;
  }

  .hero__inner {
    gap: 44px;
    padding: 130px 32px 72px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-block {
    border-right: none;
    border-bottom: 1.5px solid var(--border);
  }
  .stat-block:nth-child(odd) {
    border-right: 1.5px solid var(--border);
  }
  .stat-block:last-child {
    border-bottom: none;
  }
  .stat-block:nth-child(3) {
    border-bottom: none;
  }

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

  .eco-split {
    grid-template-columns: 1fr 44px 1fr;
  }
}

/* ─── 900px — tablets portrait ──────────────────────────────── */
@media (max-width: 900px) {
  .section {
    padding-block: 72px;
  }

  /* Header */
  .site-header {
    padding: 18px 20px;
  }
  .site-logo {
    height: 38px;
  }

  /* Hero */
  .hero__inner {
    grid-template-columns: 1fr;
    padding: 110px 24px 64px;
    gap: 36px;
  }
  .hero__form-panel {
    background: rgba(100, 30, 55, 0.72);
  }
  /* vídeo do hero continua visível no mobile — autoplay muted playsinline já configurado */

  /* Splits */
  .split-layout,
  .split-layout--reversed {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 36px;
  }
  .split-layout__image img {
    height: 280px;
  }
  .split-layout__image--tall img {
    height: 550px;
  }

  /* Franqueado */
  .franqueado-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .franqueado-cta {
    align-self: stretch;
    justify-content: center;
  }

  /* Recorrência */
  .recurrence-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Serviços */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Suporte */
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Localização — empilha verticalmente */
  .location-cards {
    flex-direction: column;
  }
  .location-card:first-child {
    border-radius: var(--radius) var(--radius) 0 0;
  }
  .location-card:last-child {
    border-radius: 0 0 var(--radius) var(--radius);
  }
  .location-divider {
    width: 100%;
    height: 44px;
    border-inline: 1.5px solid var(--border);
    border-block: none;
    border-radius: 0;
  }

  /* Timeline — vertical */
  .timeline {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 520px;
    margin-inline: auto;
  }
  .timeline-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 28px;
  }
  .timeline-step--last {
    padding-bottom: 0;
  }
  .timeline-step__dot {
    flex-shrink: 0;
  }
  .timeline-step__line {
    top: 48px;
    left: 23px;
    right: auto;
    width: 2px;
    height: calc(100% + 4px);
    background: repeating-linear-gradient(
      to bottom,
      var(--rose) 0px,
      var(--rose) 6px,
      transparent 6px,
      transparent 12px
    );
  }
  .timeline-step__content {
    padding: 10px 0 0;
  }

  /* História */
  .historia-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .historia-video-player {
    max-width: 300px;
  }

  /* Eco (legado) */
  .eco-split {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .eco-arrow {
    padding-top: 0;
    transform: rotate(90deg);
    height: 40px;
    align-items: center;
  }
  .eco-headline {
    margin-bottom: 40px;
    padding-bottom: 36px;
  }

  /* Market section */
  .market-intro {
    min-height: 340px;
    padding: 40px 32px;
    background-position: right bottom;
    background-size: 55% auto;
  }
  .market-intro__text {
    max-width: 100%;
  }

  /* Portfolio header */
  .portfolio-header {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Portfolio grid: 5→3 colunas */
  .market-portfolio .services-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .market-portfolio .service-card {
    grid-column: span 2;
  }
  .market-portfolio .service-card:nth-child(6),
  .market-portfolio .service-card:nth-child(7),
  .market-portfolio .service-card:nth-child(8) {
    grid-column: span 2;
  }
  .market-numbers__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .market-numbers__grid::before,
  .market-numbers__grid::after {
    display: none;
  }
  .market-num {
    padding: 24px 0;
    border-bottom: 1.5px solid var(--border);
  }
  .market-num:last-child {
    border-bottom: none;
  }
  .market-pillars {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .market-pillar {
    flex-direction: row;
    align-items: flex-start;
  }
  .market-pillar__icon {
    margin-top: 2px;
  }

  /* Formulário */
  .form-body {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .form-row--two {
    grid-template-columns: 1fr 1fr;
  } /* mantém 2 cols no tablet */
}

/* ─── 680px — smartphones maiores ───────────────────────────── */
@media (max-width: 680px) {
  .section {
    padding-block: 60px;
  }

  /* Header */
  .site-header {
    padding: 16px 20px;
  }
  .header-cta {
    display: none;
  }
  .site-logo {
    height: 34px;
  }

  /* Hero */
  .hero__inner {
    padding: 100px 20px 52px;
    gap: 28px;
  }
  .hero__form-panel {
    padding: 28px 20px;
  }

  /* Serviços */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Suporte */
  .support-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Eco (legado) */
  .eco-quote {
    padding: 24px 28px;
    font-size: 16px;
  }

  /* Market — remove background image em mobile, foto inline no lugar */
  .market-intro {
    background-image: none;
    min-height: unset;
    padding: 36px 24px;
    border-radius: var(--radius);
  }

  .market-intro__mobile-img {
    display: block;
    width: 100%;
    border-radius: 14px;
    margin: 16px 0 20px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }
  .market-num__desc {
    max-width: 100%;
  }

  /* Portfolio grid mobile: 2 colunas */
  .market-portfolio .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .market-portfolio .service-card,
  .market-portfolio .service-card:nth-child(6),
  .market-portfolio .service-card:nth-child(7),
  .market-portfolio .service-card:nth-child(8),
  .market-portfolio .service-card:nth-child(9) {
    grid-column: span 1;
  }

  /* Formulário */
  .form-card {
    padding: 28px 20px;
  }
  .form-row--two {
    grid-template-columns: 1fr;
  }

  /* FAQ */
  .faq-btn {
    padding: 18px 18px;
    font-size: 15px;
  }
  .faq-panel p {
    padding: 0 18px 18px;
  }

  /* Stats */
  .stat-value {
    font-size: 40px;
  }
  .stat-block__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ─── 480px — smartphones menores ───────────────────────────── */
@media (max-width: 480px) {
  .section {
    padding-block: 52px;
  }
  .container {
    padding-inline: 18px;
  }

  /* Hero */
  .hero__inner {
    padding: 96px 18px 48px;
    gap: 24px;
  }
  .hero__form-panel {
    padding: 24px 16px;
    border-radius: var(--radius);
  }
  .hero__badge {
    font-size: 12px;
  }

  /* Serviços — 1 coluna */
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 20px;
  }
  .service-card__icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  /* Suporte — 1 coluna */
  .support-grid {
    grid-template-columns: 1fr;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-block {
    padding: 28px 16px;
  }
  .stat-block__icon {
    width: 56px;
    height: 56px;
    padding: 14px;
    margin-bottom: 18px;
  }
  .stat-value {
    font-size: 42px;
  }

  /* Recorrência */
  .recurrence-word {
    font-size: 56px;
  }
  .recurrence-card {
    flex-direction: column;
    gap: 12px;
  }
  .recurrence-highlight {
    flex-direction: column;
    gap: 12px;
  }

  /* Timeline */
  .timeline {
    max-width: 100%;
  }
  .timeline-step__title {
    font-size: 13px;
  }
  .timeline-step__desc {
    font-size: 12px;
  }

  /* Localização */
  .location-card {
    padding: 24px 20px;
  }
  .location-closing {
    font-size: 15px;
  }

  /* Formulário */
  .form-card {
    padding: 24px 16px;
    border-radius: var(--radius);
  }
  .form-body {
    gap: 28px;
  }
  .form-main-title {
    font-size: 28px;
  }
  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
  } /* evita zoom no iOS */

  /* FAQ */
  .faq-btn {
    padding: 16px 16px;
    font-size: 14px;
    gap: 12px;
  }
  .faq-panel p {
    padding: 0 16px 16px;
    font-size: 14px;
  }

  /* Eco */
  .eco-headline {
    font-size: 22px;
  }
  .eco-col {
    padding: 24px 20px;
  }

  /* Fundadores */
  .founder-text-card {
    padding: 28px 24px 28px 32px;
  }
  .founder-text-card__name {
    font-size: 20px;
  }

  /* Seção Form */
  .form-section-header {
    margin-bottom: 40px;
  }
  .form-subtitle {
    font-size: 15px;
  }

  /* WA side */
  .wa-side__title {
    font-size: 20px;
  }

  /* Footer */
  .footer-logo {
    height: 32px;
  }
  .footer-info {
    font-size: 12px;
  }
}

/* ─── FOUNDER BANNER (seção "O momento certo") ──────────────── */
.founder-banner-section {
  background: var(--bg-alt);
  padding-block: 0;
  padding-top: 64px;
  padding-bottom: 64px;
}

.founder-banner {
  background-image: url('img/banner-criadora.png');
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  border-radius: 20px;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 60px 56px;
}

.founder-banner__text {
  max-width: 48%;
}

.founder-banner__text .section-title {
  color: var(--rose);
}

/* Foto mobile — oculta no desktop (background já mostra a fundadora) */
.founder-banner__mobile-photo {
  display: none;
}

@media (max-width: 900px) {
  .founder-banner {
    background-position: center top;
    justify-content: center;
    min-height: 380px;
    padding: 48px 36px;
  }

  .founder-banner__text {
    max-width: 70%;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    padding: 28px 24px;
  }
}

@media (max-width: 600px) {
  .founder-banner {
    background-image: none;
    background-color: var(--bg-alt);
    min-height: unset;
    padding: 40px 0;
    border-radius: 0;
  }

  .founder-banner__text {
    max-width: 100%;
    background: none;
    padding: 0;
  }

  /* Exibe a foto da fundadora após o título no mobile */
  .founder-banner__mobile-photo {
    display: block;
    width: 100%;
    border-radius: 14px;
    margin: 20px 0 24px;
    object-fit: cover;
  }
}

/* ─── REDUCED MOTION ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .stitch-word,
  .hero__eyebrow,
  .hero__subline,
  .hero__stats,
  .hero__tagline,
  .hero__form-panel,
  .hero__badge,
  .reveal {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
  .scroll-dot {
    animation: none;
  }
}
