/* ══════════════════════════════════════════════════════════════
   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: 1160px;
  --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: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%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 140px 40px 80px;
}

.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, 70px);
  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: 40px;
  max-width: 600px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 1.4s;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 1.7s;
}

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

.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 ────────────────────────────────────── */
.recurrence-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.recurrence-headline {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.35;
  margin-bottom: 16px;
}

.recurrence-word {
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 900;
  color: var(--mint);
  letter-spacing: -0.04em;
  line-height: 1;
}

.recurrence-poem {
  padding-top: 12px;
}

.poem-line {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
  margin-bottom: 10px;
  transition: padding-left var(--transition);
}
.poem-line--indent {
  padding-left: 24px;
  border-left: 2px solid rgba(141, 228, 196, 0.35);
  color: rgba(255, 255, 255, 0.7);
}
.poem-closing {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

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

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

.stat-block {
  padding: 40px 32px;
  border-right: 1.5px solid var(--border);
  text-align: left;
}
.stat-block:last-child {
  border-right: none;
}

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

.stat-label {
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

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

.stats-disclaimer {
  font-size: 12px;
  color: var(--text-faint);
  line-height: 1.6;
  max-width: 740px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

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

.franqueado-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.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;
}

/* ─── HISTÓRIA / FUNDADORES ─────────────────────────────────── */
.history-header {
  max-width: 720px;
  margin-bottom: 48px;
}
.history-header .section-title {
  margin-bottom: 20px;
}

.founders-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.founder-text-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 36px 36px 44px;
  border: 1.5px solid var(--border);
  position: relative;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}
.founder-text-card:hover {
  border-color: var(--rose);
  box-shadow: var(--shadow);
}
.founder-text-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--rose);
  border-radius: var(--radius) 0 0 var(--radius);
}

.founder-text-card__name {
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.founder-text-card__role {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rose);
  margin-bottom: 18px;
}
.founder-text-card__bio {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── 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;
}
.check-label input[type='checkbox'] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 4px;
  border: 1.5px solid var(--border);
  background: white;
  accent-color: var(--rose);
  cursor: pointer;
  margin: 0;
  padding: 0;
}
.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(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s 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;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-block {
    border-right: none;
    border-bottom: 1.5px solid var(--border);
  }
  .stat-block:last-child {
    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__content {
    padding: 110px 20px 64px;
  }
  .hero__video {
    display: none;
  } /* fallback to CSS bg-image on tablet */

  /* 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: 36px;
  }

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

  /* 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;
  }

  /* Fundadores */
  .founders-text-grid {
    grid-template-columns: 1fr;
  }

  /* Eco */
  .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;
  }

  /* 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__content {
    padding: 100px 20px 56px;
  }
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__ctas .btn {
    justify-content: center;
  }

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

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

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

  /* 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: 44px;
  }

  /* 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__content {
    padding: 96px 18px 52px;
  }
  .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;
  }
  .stat-block {
    padding: 28px 20px;
  }
  .stat-value {
    font-size: 48px;
  }

  /* Recorrência */
  .recurrence-word {
    font-size: 52px;
  }
  .poem-line--indent {
    padding-left: 16px;
  }

  /* 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;
  }
}

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