/* =========================================================
   01. VARIÁVEIS GLOBAIS / IDENTIDADE VISUAL
========================================================= */
:root {
  --bg: #f6f4f5;
  --bg-soft: #fbf9fa;
  --surface: #ffffff;
  --surface-alt: #f1ecee;

  --primary: #b40b20;
  --accent: #ff0011;

  --text: #474747;
  --text-soft: #7d7679;

  --line: rgba(71, 71, 71, 0.12);
  --line-strong: rgba(180, 11, 32, 0.16);

  --shadow-sm: 0 10px 30px rgba(71, 71, 71, 0.06);
  --shadow-md: 0 20px 60px rgba(71, 71, 71, 0.10);
  --shadow-lg: 0 30px 80px rgba(180, 11, 32, 0.10);

  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;

  --container: 1220px;
}

/* =========================================================
   02. RESET BÁSICO
========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(180, 11, 32, 0.05), transparent 24%),
    linear-gradient(180deg, #fcfbfb 0%, #f5f2f3 100%);
}

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

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

/* =========================================================
   03. ESTRUTURA GERAL
========================================================= */
.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section:nth-of-type(even) {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.6),
    rgba(241, 236, 238, 0.45)
  );
}

/* =========================================================
   04. HEADER / TOPO
========================================================= */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(71, 71, 71, 0.08);
  box-shadow: 0 8px 24px rgba(71, 71, 71, 0.04);
}

.topbar.is-scrolled {
  background: rgba(255, 255, 255, 0.90);
  box-shadow: 0 12px 28px rgba(71, 71, 71, 0.08);
  border-bottom-color: rgba(71, 71, 71, 0.12);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 82px;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 0 1 auto;
}

.logo-main {
  display: block;
  width: auto;
  height: auto;
  max-height: 120px;
  max-width: 240px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.08));
}

/* =========================================================
   05. BOTÕES — PREMIUM GLOBAL
========================================================= */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    color 0.32s ease,
    background 0.32s ease;
}

.btn:hover {
  transform: translateY(-3px) scale(1.01);
}

.btn:focus-visible {
  outline: 2px solid rgba(180, 11, 32, 0.24);
  outline-offset: 3px;
}

/* botão vermelho */
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  border-color: rgba(180, 11, 32, 0.22);
  box-shadow: 0 16px 30px rgba(180, 11, 32, 0.22);
}

.btn-primary:hover {
  background: #ffffff;
  color: var(--primary);
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow:
    0 20px 34px rgba(180, 11, 32, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

/* botão branco */
.btn-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 14px 28px rgba(71, 71, 71, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  border-color: rgba(180, 11, 32, 0.20);
  box-shadow: 0 20px 34px rgba(180, 11, 32, 0.22);
}

/* =========================================================
   06. HERO / PRIMEIRA DOBRA
========================================================= */
.hero,
.hero-premium {
  padding: 100px 0;
}

.hero-cover {
  position: relative;
  overflow: hidden;
  background-color: #f6f4f5;
  background-image: url("../img/hero-empreendimento.svg");
  background-position: -77% center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(246, 244, 245, 0.96) 0%,
      rgba(246, 244, 245, 0.85) 18%,
      rgba(246, 244, 245, 0.55) 30%,
      rgba(246, 244, 245, 0.25) 42%,
      rgba(246, 244, 245, 0.08) 55%,
      rgba(246, 244, 245, 0.02) 65%,
      rgba(246, 244, 245, 0) 75%
    );
  z-index: 0;
}

.hero-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  min-height: 500px;
}

.hero-media {
  display: none;
}

.hero-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 620px;
  padding: 76px 64px 56px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(249, 246, 247, 0.82)
  );
  border: 1px solid rgba(71, 71, 71, 0.06);
  box-shadow: 0 35px 90px rgba(71, 71, 71, 0.10);
  border-radius: 36px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-card::before {
  content: "";
  position: absolute;
  top: -130px;
  right: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180, 11, 32, 0.14), transparent 70%);
  pointer-events: none;
}

.hero-card::after {
  content: "TH";
  position: absolute;
  right: 28px;
  bottom: 18px;
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  color: rgba(180, 11, 32, 0.045);
  pointer-events: none;
}

.hero-tag {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 12px 18px;
  margin-bottom: 26px;
  border-radius: 999px;
  background: rgba(180, 11, 32, 0.07);
  border: 1px solid rgba(180, 11, 32, 0.10);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 10px;
  max-width: 9ch;
  font-size: clamp(3rem, 5vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.085em;
  color: var(--text);
  background: linear-gradient(135deg, #474747, #000000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  position: relative;
  z-index: 2;
  max-width: 56ch;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.95;
  font-size: 1.08rem;
}

.hero-actions {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
  margin-bottom: 38px;
}

.hero-metrics {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hero-metric {
  padding: 20px 20px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(71, 71, 71, 0.08);
  box-shadow: 0 12px 28px rgba(71, 71, 71, 0.05);
}

.hero-metric strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.65rem;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.04em;
}

.hero-metric span {
  display: block;
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.hero-logo {
  position: absolute;
  right: 36px;
  bottom: 30px;
  width: 110px;
  height: auto;
  opacity: 0.04;
  pointer-events: none;
  animation: floatLogo 6s ease-in-out infinite;
}

@keyframes floatLogo {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

.hero-floating-box {
  position: absolute;
  left: clamp(380px, 37vw, 450px);
  right: 10px;
  bottom: -95px;
  max-width: 390px;
  padding: 24px 26px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.12),
    0 8px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(10px);
  z-index: 5;
}

.hero-floating-box strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.02rem;
  line-height: 1.35;
  color: var(--text);
}

.hero-floating-box span {
  display: block;
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--text-soft);
}

/* =========================================================
   07. TÍTULOS GERAIS
========================================================= */
h2 {
  position: relative;
  margin: 0 0 18px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: var(--text);
}

section > .container > h2.reveal {
  max-width: 50ch;
  margin-bottom: 42px;
}

section > .container > h2.reveal::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: 0.3s;
}

h2:hover::after {
  width: 90px;
}

/* =========================================================
   08. PROBLEMAS / IDENTIFICAÇÃO
========================================================= */
.problem-section {
  position: relative;
  padding: 130px 0 110px;
  background:
    radial-gradient(circle at top right, rgba(180, 11, 32, 0.05), transparent 22%),
    linear-gradient(180deg, #fbf9fa 0%, #f4f1f2 100%);
  overflow: hidden;
}

.problem-section::before {
  content: "ERROS";
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  color: rgba(180, 11, 32, 0.035);
  pointer-events: none;
  z-index: 0;
}

.problem-section .container {
  position: relative;
  z-index: 2;
}

.problem-section h2.reveal {
  max-width: 8ch;
  margin: 0 0 22px;
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.problem-section h2.reveal::after {
  content: "";
  display: block;
  width: 84px;
  height: 4px;
  margin-top: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.problem-sub {
  max-width: 720px;
  margin: 0 0 56px;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-soft);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.problem-item {
  position: relative;
  min-height: 100%;
  padding: 34px 32px 30px;
  border: 1px solid rgba(71, 71, 71, 0.07);
  border-radius: 26px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(255, 255, 255, 0.92)
  );
  box-shadow: 0 18px 46px rgba(71, 71, 71, 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  overflow: hidden;
}

.problem-item::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0.9;
}

.problem-item::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180, 11, 32, 0.08), transparent 68%);
  pointer-events: none;
}

.problem-item:hover {
  transform: translateY(-8px);
  border-color: rgba(180, 11, 32, 0.14);
  box-shadow: 0 28px 60px rgba(71, 71, 71, 0.11);
}

.problem-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(180, 11, 32, 0.08);
  border: 1px solid rgba(180, 11, 32, 0.10);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.problem-item h3 {
  margin: 0 0 14px;
  font-size: 1.28rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--text);
}

.problem-item p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.82;
  color: var(--text-soft);
}

/* =========================================================
   09. SOLUÇÃO / PROPOSTA DE VALOR
========================================================= */
.strategy-section {
  position: relative;
  padding: 130px 0 110px;
  background:
    radial-gradient(circle at top left, rgba(180, 11, 32, 0.04), transparent 22%),
    linear-gradient(180deg, #fbf9fa 0%, #f4f1f2 100%);
  overflow: hidden;
}

.strategy-section::before {
  content: "ESTRATÉGIA";
  position: absolute;
  top: 26px;
  right: 36px;
  font-size: clamp(3.5rem, 9vw, 9rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  color: rgba(180, 11, 32, 0.03);
  pointer-events: none;
  z-index: 0;
}

.strategy-section .container {
  position: relative;
  z-index: 2;
}

.strategy-section h2.reveal {
  max-width: 12ch;
  margin: 0 0 22px;
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.strategy-section h2.reveal::after {
  content: "";
  display: block;
  width: 84px;
  height: 4px;
  margin-top: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.strategy-sub {
  max-width: 760px;
  margin: 0 0 58px;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-soft);
}

.strategy-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
}

.strategy-panel {
  display: grid;
  gap: 18px;
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.97),
    rgba(255, 255, 255, 0.92)
  );
  border: 1px solid rgba(71, 71, 71, 0.07);
  box-shadow: 0 20px 50px rgba(71, 71, 71, 0.07);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.strategy-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(71, 71, 71, 0.08);
  transition: transform 0.28s ease;
}

.strategy-item:first-child {
  padding-top: 0;
}

.strategy-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.strategy-item:hover {
  transform: translateX(6px);
}

.strategy-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(180, 11, 32, 0.08);
  border: 1px solid rgba(180, 11, 32, 0.10);
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
}

.strategy-text h3 {
  margin: 0 0 8px;
  font-size: 1.14rem;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--text);
}

.strategy-text p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-soft);
}

.strategy-visual {
  position: relative;
  min-height: 100%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(71, 71, 71, 0.10);
}

.strategy-visual::before {
  content: "";
  position: absolute;
  inset: 18px -10px -10px 18px;
  border-radius: 30px;
  background: linear-gradient(
    135deg,
    rgba(180, 11, 32, 0.12),
    rgba(255, 0, 17, 0.05)
  );
  z-index: 0;
}

.strategy-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  border-radius: 30px;
  transition: transform 0.8s ease;
}

.strategy-visual:hover img {
  transform: scale(1.03);
}

.strategy-badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  max-width: 320px;
  padding: 20px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.14),
    0 8px 20px rgba(0, 0, 0, 0.06);
  z-index: 3;
}

.strategy-badge strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.98rem;
  line-height: 1.3;
  color: var(--text);
}

.strategy-badge span {
  display: block;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-soft);
}

/* =========================================================
   10. DIFERENCIAIS
========================================================= */
.differentials-section {
  position: relative;
  padding: 140px 0 120px;
  margin-top: 48px;
  margin-bottom: 56px;
  background:
    radial-gradient(circle at top left, rgba(180, 11, 32, 0.06), transparent 24%),
    radial-gradient(circle at bottom right, rgba(255, 0, 17, 0.04), transparent 22%),
    linear-gradient(180deg, #fbf9fa 0%, #f3eff1 100%);
  overflow: hidden;
}

.differentials-section::before {
  content: "DIFERENCIAIS";
  position: absolute;
  top: 34px;
  right: 24px;
  font-size: clamp(3.8rem, 9vw, 9rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  color: rgba(180, 11, 32, 0.03);
  pointer-events: none;
  z-index: 0;
}

.differentials-section .container {
  position: relative;
  z-index: 2;
}

.differentials-head {
  max-width: 760px;
  margin-bottom: 58px;
}

.differentials-kicker {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(180, 11, 32, 0.07);
  border: 1px solid rgba(180, 11, 32, 0.10);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.differentials-head h2 {
  max-width: none;
  margin: 0 0 18px;
  font-size: clamp(2.6rem, 4.3vw, 4.6rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.differentials-head h2::after {
  content: "";
  display: block;
  width: 86px;
  height: 4px;
  margin-top: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.differentials-head p {
  margin: 0;
  max-width: 700px;
  font-size: 1.04rem;
  line-height: 1.85;
  color: var(--text-soft);
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

.differential-card {
  position: relative;
  min-height: 100%;
  padding: 42px 38px 36px;
  border-radius: 30px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(255, 255, 255, 0.93)
  );
  border: 1px solid rgba(71, 71, 71, 0.07);
  box-shadow: 0 22px 54px rgba(71, 71, 71, 0.08);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.differential-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(180, 11, 32, 0.02),
    transparent 34%
  );
  pointer-events: none;
}

.differential-card::after {
  content: "";
  position: absolute;
  top: -110px;
  right: -110px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180, 11, 32, 0.08), transparent 68%);
  pointer-events: none;
}

.differential-card:hover {
  transform: translateY(-10px);
  border-color: rgba(180, 11, 32, 0.16);
  box-shadow: 0 34px 70px rgba(71, 71, 71, 0.12);
}

.differential-card-featured {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1),
    rgba(255, 250, 251, 0.96)
  );
  border-color: rgba(180, 11, 32, 0.14);
  box-shadow:
    0 28px 70px rgba(180, 11, 32, 0.10),
    0 12px 24px rgba(71, 71, 71, 0.05);
  transform: translateY(-10px);
}

.differential-card-featured::before {
  background: linear-gradient(
    180deg,
    rgba(180, 11, 32, 0.05),
    transparent 38%
  );
}

.differential-card-featured:hover {
  transform: translateY(-14px);
  box-shadow:
    0 36px 84px rgba(180, 11, 32, 0.14),
    0 16px 28px rgba(71, 71, 71, 0.06);
}

.differential-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  margin-bottom: 26px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow:
    0 16px 30px rgba(180, 11, 32, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.differential-icon::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 19px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.14),
    rgba(255, 255, 255, 0.02)
  );
  pointer-events: none;
}

.differential-icon::after {
  content: "";
  position: absolute;
  top: -12px;
  right: -12px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 68%);
  pointer-events: none;
}

.differential-icon svg {
  position: relative;
  z-index: 2;
  width: 30px;
  height: 30px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.differential-card:hover .differential-icon {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 20px 34px rgba(180, 11, 32, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.differential-card-featured .differential-icon {
  transform: scale(1.04);
  box-shadow:
    0 20px 38px rgba(180, 11, 32, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.differential-card-featured:hover .differential-icon {
  transform: translateY(-2px) scale(1.07);
}

.differential-card h3 {
  margin: 0 0 16px;
  font-size: 1.42rem;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--text);
}

.differential-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.88;
  color: var(--text-soft);
}

/* =========================================================
   11. PARA QUEM É ESTE SERVIÇO
========================================================= */
.audience-section {
  position: relative;
  padding: 140px 0 10px;
  overflow: hidden;
  background-color: #f4f1f2;
  background-image: url("../img/audience.svg");
  background-position: left center;
  background-size: cover;
  background-repeat: no-repeat;
}

.audience-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(244, 241, 242, 0.92) 0%,
      rgba(244, 241, 242, 0.76) 24%,
      rgba(244, 241, 242, 0.38) 44%,
      rgba(244, 241, 242, 0.12) 62%,
      rgba(244, 241, 242, 0.03) 78%,
      rgba(244, 241, 242, 0) 100%
    );
  z-index: 0;
}

.audience-section::after {
  content: "PERFIL";
  position: absolute;
  top: 30px;
  right: 36px;
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  color: rgba(180, 11, 32, 0.03);
  pointer-events: none;
  z-index: 1;
}

.audience-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: start;
  min-height: 760px;
  gap: 24px;
}

.audience-head {
  position: relative;
  z-index: 3;
  max-width: 560px;
  margin-bottom: 56px;
}

.audience-head h2 {
  max-width: 20ch;
  margin: 0 0 18px;
  font-size: clamp(2.3rem, 3.4vw, 3.2rem);
  line-height: 1.01;
  letter-spacing: -0.055em;
  color: var(--text);
}

.audience-head h2::after {
  content: "";
  display: block;
  width: 92px;
  height: 4px;
  margin-top: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  box-shadow: 0 6px 18px rgba(180, 11, 32, 0.16);
}

.audience-head p {
  margin: 0;
  max-width: 650px;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--text-soft);
}

.audience-grid {
  position: relative;
  z-index: 4;
  margin-left: auto;
  width: 100%;
  max-width: 580px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.audience-item {
  position: relative;
  padding: 22px 22px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 20px 46px rgba(71, 71, 71, 0.10),
    0 8px 18px rgba(71, 71, 71, 0.04);
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.audience-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.02)
  );
  pointer-events: none;
}

.audience-item::after {
  content: "";
  position: absolute;
  top: -82px;
  right: -82px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180, 11, 32, 0.08), transparent 68%);
  pointer-events: none;
}

.audience-item:nth-child(1) { transform: translateY(10px); }
.audience-item:nth-child(2) { transform: translateY(0); }
.audience-item:nth-child(3) { transform: translateY(18px); }
.audience-item:nth-child(4) { transform: translateY(6px); }

.audience-item:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(180, 11, 32, 0.16);
  box-shadow:
    0 30px 70px rgba(71, 71, 71, 0.14),
    0 10px 22px rgba(71, 71, 71, 0.05);
}

.audience-item-wide {
  grid-column: 1 / -1;
  transform: translateY(18px);
}

.audience-item-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow:
    0 14px 28px rgba(180, 11, 32, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.24);
}

.audience-item p {
  margin: 0;
  max-width: 34ch;
  font-size: 0.96rem;
  line-height: 1.72;
  color: var(--text);
}

.audience-item-wide p {
  max-width: 52ch;
}

/* =========================================================
   12. PROVA SOCIAL / DEPOIMENTOS
========================================================= */
.section-impact {
  padding: 120px 0;
}

.impact-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 34px;
  padding: 46px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(180, 11, 32, 0.98), rgba(255, 0, 17, 0.94));
  box-shadow: 0 30px 80px rgba(180, 11, 32, 0.22);
  color: #ffffff;
  overflow: hidden;
}

.impact-panel::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%);
}

.impact-left,
.impact-right {
  position: relative;
  z-index: 2;
}

.impact-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.impact-left h2 {
  max-width: 8ch;
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
  color: #ffffff;
}

.impact-left h2::after {
  display: none;
}

.impact-lead {
  max-width: 36ch;
  margin: 0 0 30px;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.84);
}

/* CTA especial desta seção */
.impact-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 6px;
}

.impact-cta {
  min-width: 270px;
}

.impact-cta-white {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.78);
  background: #ffffff;
  box-shadow:
    0 18px 34px rgba(0,0,0,0.10),
    inset 0 1px 0 rgba(255,255,255,0.78);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
  white-space: normal;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.impact-cta-white::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: 0;
}

.impact-cta-white .impact-cta-label {
  position: relative;
  z-index: 2;
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  transition:
    color 0.35s ease,
    -webkit-text-fill-color 0.35s ease,
    background 0.35s ease;
}

.impact-cta-white:hover::before {
  transform: scaleX(1);
}

.impact-cta-white:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(255,255,255,0.95);
  box-shadow:
    0 26px 50px rgba(0,0,0,0.18),
    0 10px 20px rgba(180, 11, 32, 0.25);
}

.impact-cta-white:hover .impact-cta-label {
  background: none;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

.impact-cta-white:focus-visible {
  outline: 2px solid rgba(255,255,255,0.9);
  outline-offset: 3px;
}

/* carrossel */
.impact-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-carousel {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 14px;
  align-items: center;
}

.testimonial-track {
  position: relative;
}

.testimonial-card {
  display: none;
  padding: 18px;
  border-radius: 26px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.10);
}

.testimonial-card.is-active {
  display: block;
}

.testimonial-print {
  width: 100%;
  max-width: 360px;
  margin: 0 auto 18px;
  border-radius: 22px;
  box-shadow:
    0 18px 38px rgba(0,0,0,0.18),
    0 6px 12px rgba(0,0,0,0.08);
  border: 1px solid rgba(255,255,255,0.18);
}

.testimonial-info {
  text-align: center;
}

.testimonial-stars {
  margin-bottom: 12px;
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0.18em;
  color: #ffd76a;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.testimonial-info strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  color: #ffffff;
}

.testimonial-info span {
  display: block;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.84);
}

.testimonial-arrow {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.testimonial-arrow:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,0.32);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.testimonial-dots button.is-active {
  background: #ffffff;
  transform: scale(1.15);
}

/* =========================================================
   13. GRIDS GERAIS
========================================================= */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  align-items: stretch;
}

/* =========================================================
   14. CARDS GERAIS
========================================================= */
.card {
  height: 100%;
  padding: 36px;
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96),
    rgba(255, 255, 255, 0.92)
  );
  border: 1px solid rgba(71, 71, 71, 0.07);
  box-shadow: 0 20px 50px rgba(71, 71, 71, 0.07);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: 0.28s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  border-color: var(--line-strong);
}

.card h3 {
  margin: 0 0 14px;
  font-size: 1.22rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
}

.card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.9;
}

.grid-3 .card {
  position: relative;
  padding-top: 102px;
}

.grid-3 .card::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 34px;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    rgba(180, 11, 32, 0.10),
    rgba(255, 0, 17, 0.05)
  );
  border: 1px solid rgba(180, 11, 32, 0.12);
}

.grid-2 .card:last-child {
  padding: 0;
  overflow: hidden;
}

.grid-2 .card:last-child img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

/* =========================================================
   15. LISTA COM CHECK
========================================================= */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 16px;
  color: var(--text);
  line-height: 1.7;
  font-weight: 500;
}

.check-list li:last-child {
  margin-bottom: 0;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  background: rgba(180, 11, 32, 0.10);
  color: var(--primary);
  font-weight: 800;
}

/* =========================================================
   FOOTER MINIMAL — ULTRA PREMIUM
========================================================= */
.footer-minimal {
  padding: 28px 0 18px;
  background: transparent;
}

.footer-minimal-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-footer {
  max-height: 60px;
  width: auto;
  opacity: 0.96;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-footer:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(0,0,0,0.55);
  letter-spacing: 0.02em;
}

.footer-item {
  white-space: nowrap;
  transition: color 0.25s ease;
}

.footer-item:hover {
  color: var(--primary);
}

.footer-dot {
  opacity: 0.4;
  font-size: 0.7rem;
}

.footer-bottom-minimal {
  margin-top: 14px;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(0,0,0,0.45);
  letter-spacing: 0.03em;
}

/* =========================================================
   18. ANIMAÇÕES
========================================================= */
.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   BOTÃO FLUTUANTE DE CONVERSÃO
========================================================= */
.floating-lead-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 210px;
  min-height: 58px;
  padding: 0 24px;

  border-radius: 999px;
  border: 1.5px solid rgba(180, 11, 32, 0.30);

  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 18px 40px rgba(71, 71, 71, 0.12),
    0 6px 16px rgba(71, 71, 71, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.85);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  text-decoration: none;
  overflow: hidden;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px) scale(0.96);

  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.floating-lead-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: 0;
}

.floating-lead-btn__text {
  position: relative;
  z-index: 2;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  transition:
    color 0.35s ease,
    -webkit-text-fill-color 0.35s ease,
    background 0.35s ease;
}

.floating-lead-btn.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  animation: floatingLeadPulse 2.4s ease-in-out infinite;
}

.floating-lead-btn:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(180, 11, 32, 0.22);
  box-shadow:
    0 24px 50px rgba(180, 11, 32, 0.18),
    0 10px 22px rgba(71, 71, 71, 0.08);
}

.floating-lead-btn:hover::before {
  transform: scaleX(1);
}

.floating-lead-btn:hover .floating-lead-btn__text {
  background: none;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

@keyframes floatingLeadPulse {
  0% {
    box-shadow:
      0 18px 40px rgba(71, 71, 71, 0.12),
      0 6px 16px rgba(71, 71, 71, 0.06),
      0 0 0 0 rgba(180, 11, 32, 0.00);
  }
  50% {
    box-shadow:
      0 20px 44px rgba(71, 71, 71, 0.14),
      0 8px 20px rgba(71, 71, 71, 0.07),
      0 0 0 10px rgba(180, 11, 32, 0.05);
  }
  100% {
    box-shadow:
      0 18px 40px rgba(71, 71, 71, 0.12),
      0 6px 16px rgba(71, 71, 71, 0.06),
      0 0 0 0 rgba(180, 11, 32, 0.00);
  }
}

/* =========================================================
   MOBILE FINAL PREMIUM — LP TATIANE HERNANDES
========================================================= */

/* BASE MOBILE / CONTROLE GLOBAL */
.hero-mobile {
  display: none;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  * {
    min-width: 0;
  }

  body {
    overflow-x: hidden;
  }

  .container,
  .topbar,
  .topbar-inner,
  .hero-mobile,
  .hero-mobile-card,
  .problem-section,
  .problem-grid,
  .problem-item,
  .strategy-section,
  .strategy-layout,
  .strategy-panel,
  .strategy-visual,
  .strategy-badge,
  .differentials-section,
  .differentials-grid,
  .differential-card,
  .audience-section,
  .audience-shell,
  .audience-grid,
  .audience-item,
  .audience-item-wide,
  .section-impact,
  .impact-panel,
  .impact-right,
  .testimonial-carousel,
  .testimonial-track,
  .testimonial-card,
  .testimonial-print,
  .footer-minimal,
  .footer-minimal-shell {
    width: 100%;
    max-width: 100%;
  }

  .btn,
  .impact-cta-white,
  .floating-lead-btn {
    text-align: center;
  }

  img,
  video,
  svg,
  iframe,
  canvas {
    max-width: 100%;
    height: auto;
  }

  /* ritmo vertical premium */
  .hero-mobile {
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .section,
  .problem-section,
  .strategy-section,
  .differentials-section,
  .audience-section {
    padding-top: 64px;
    padding-bottom: 56px;
  }

  .section-impact {
    padding-top: 72px;
    padding-bottom: 60px;
  }

  /* microtipografia premium */
  h2,
  .impact-left h2,
  .audience-head h2,
  .strategy-section h2.reveal,
  .problem-section h2.reveal,
  .differentials-head h2 {
    letter-spacing: -0.06em;
    line-height: 0.95;
  }

  /* sombra mais consistente */
  .hero-mobile-card,
  .problem-item,
  .strategy-panel,
  .differential-card,
  .audience-item,
  .audience-item-wide,
  .testimonial-card {
    box-shadow:
      0 18px 40px rgba(0, 0, 0, 0.08),
      0 6px 12px rgba(0, 0, 0, 0.04);
  }

  /* botões mais táteis */
  .btn-primary {
    box-shadow:
      0 10px 20px rgba(180, 11, 32, 0.25),
      0 4px 10px rgba(180, 11, 32, 0.15);
  }

  .btn-primary:active,
  .impact-cta-white:active,
  .floating-lead-btn:active {
    transform: scale(0.98);
  }
}

@media (max-width: 560px) {
  .hero-mobile {
    padding-top: 40px;
    padding-bottom: 54px;
  }

  .section,
  .problem-section,
  .strategy-section,
  .differentials-section,
  .audience-section,
  .section-impact {
    padding-top: 56px;
    padding-bottom: 50px;
  }
}

/* =========================================================
   HEADER MOBILE
========================================================= */
@media (max-width: 768px) {
  .topbar {
    width: 100%;
    transition: transform 0.35s ease, opacity 0.3s ease;
  }

  .topbar.hide-header {
    transform: translateY(-100%);
    opacity: 0;
  }

  .topbar-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: auto;
    padding: 12px 0;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .logo-main {
    max-width: 150px;
    max-height: 46px;
    height: auto;
  }

  .topbar .btn {
    flex: 0 0 auto;
    width: auto;
    min-height: 44px;
    padding: 0 16px;
    font-size: 0.88rem;
    white-space: nowrap;
  }
}

@media (max-width: 560px) {
  .topbar-inner {
    gap: 10px;
    padding: 10px 0;
  }

  .logo-main {
    max-width: 132px;
    max-height: 40px;
  }

  .topbar .btn {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.82rem;
  }
}

/* =========================================================
   HERO EXCLUSIVO MOBILE
========================================================= */
@media (max-width: 768px) {
  .hero-desktop {
    display: none !important;
  }

  .hero-mobile {
    display: block !important;
    position: relative;
    overflow: hidden;
    background-color: #f6f4f5;
    background-image:
      linear-gradient(
        180deg,
        rgba(246, 244, 245, 0.96) 0%,
        rgba(246, 244, 245, 0.88) 35%,
        rgba(246, 244, 245, 0.74) 100%
      ),
      url("../img/hero-empreendimento.svg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .hero-mobile-card {
    position: relative;
    padding: 28px 20px 22px;
    border-radius: 24px;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96),
      rgba(249, 246, 247, 0.90)
    );
    border: 1px solid rgba(71, 71, 71, 0.06);
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .hero-mobile-card::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -70px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(180, 11, 32, 0.12), transparent 70%);
    pointer-events: none;
  }

  .hero-mobile-card::after {
    content: "TH";
    position: absolute;
    right: 14px;
    bottom: 8px;
    font-size: 4.4rem;
    font-weight: 800;
    letter-spacing: -0.08em;
    color: rgba(180, 11, 32, 0.04);
    pointer-events: none;
  }

  .hero-mobile .hero-tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(180, 11, 32, 0.07);
    border: 1px solid rgba(180, 11, 32, 0.10);
    color: var(--primary);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .hero-mobile h1 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 8.5vw, 2.8rem);
    color: var(--text);
  }

  .hero-mobile .hero-lead {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.72;
    color: var(--text-soft);
  }

  .hero-mobile .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .hero-mobile .hero-actions .btn {
    width: 100%;
    min-height: 52px;
  }

  .hero-mobile .hero-metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 18px;
  }

  .hero-mobile .hero-metric {
    padding: 16px 16px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(71, 71, 71, 0.07);
  }

  .hero-mobile .hero-metric strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.25rem;
    line-height: 1;
    color: var(--text);
    letter-spacing: -0.03em;
  }

  .hero-mobile .hero-metric span {
    display: block;
    font-size: 0.88rem;
    line-height: 1.45;
    color: var(--text-soft);
  }

  .hero-mobile-note {
    padding: 16px;
    border-radius: 18px;
    background: rgba(180, 11, 32, 0.05);
    border: 1px solid rgba(180, 11, 32, 0.08);
  }

  .hero-mobile-note strong {
    display: block;
    margin-bottom: 6px;
    font-size: 0.95rem;
    line-height: 1.35;
    color: var(--text);
  }

  .hero-mobile-note span {
    display: block;
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-soft);
  }
}

@media (max-width: 560px) {
  .hero-mobile-card {
    padding: 24px 16px 18px;
    border-radius: 20px;
  }

  .hero-mobile h1 {
    font-size: clamp(1.85rem, 9vw, 2.4rem);
  }

  .hero-mobile .hero-lead {
    font-size: 0.92rem;
    line-height: 1.64;
  }

  .hero-mobile .hero-actions .btn {
    min-height: 50px;
  }

  .hero-mobile .hero-metric,
  .hero-mobile-note {
    border-radius: 16px;
  }
}

/* =========================================================
   PROBLEM SECTION
========================================================= */
@media (max-width: 768px) {
  .problem-section {
    background:
      radial-gradient(circle at top right, rgba(180, 11, 32, 0.04), transparent 24%),
      linear-gradient(180deg, #fbf9fa 0%, #f4f1f2 100%);
  }

  .problem-section::before {
    top: 14px;
    right: 12px;
    font-size: clamp(2.3rem, 15vw, 4.2rem);
    color: rgba(180, 11, 32, 0.025);
  }

  .problem-section h2.reveal {
    max-width: 10ch;
    margin: 0 0 14px;
    font-size: clamp(2rem, 8.5vw, 2.6rem);
  }

  .problem-section h2.reveal::after {
    width: 62px;
    height: 3px;
    margin-top: 16px;
  }

  .problem-sub {
    max-width: none;
    margin: 0 0 26px;
    font-size: 0.95rem;
    line-height: 1.68;
    color: var(--text-soft);
  }

  .problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .problem-item {
    padding: 22px 18px 18px;
    border-radius: 20px;
  }

  .problem-item::before {
    height: 3px;
  }

  .problem-item::after {
    top: -70px;
    right: -70px;
    width: 130px;
    height: 130px;
    background: radial-gradient(circle, rgba(180, 11, 32, 0.07), transparent 70%);
  }

  .problem-number {
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
    border-radius: 12px;
    font-size: 0.72rem;
    letter-spacing: 0.07em;
  }

  .problem-item h3 {
    margin: 0 0 10px;
    font-size: 1.04rem;
    line-height: 1.18;
    letter-spacing: -0.02em;
  }

  .problem-item p {
    font-size: 0.92rem;
    line-height: 1.62;
  }
}

@media (max-width: 560px) {
  .problem-section h2.reveal {
    font-size: clamp(1.85rem, 9vw, 2.3rem);
  }

  .problem-sub {
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .problem-item {
    padding: 20px 16px 16px;
    border-radius: 18px;
  }

  .problem-number {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
    font-size: 0.68rem;
  }

  .problem-item h3 {
    font-size: 1rem;
  }

  .problem-item p {
    font-size: 0.9rem;
  }
}

/* =========================================================
   STRATEGY SECTION
========================================================= */
@media (max-width: 768px) {
  .strategy-section::before {
    top: 14px;
    right: 12px;
    font-size: clamp(2.2rem, 15vw, 4rem);
    color: rgba(180, 11, 32, 0.025);
  }

  .strategy-section h2.reveal {
    max-width: 10ch;
    margin: 0 0 14px;
    font-size: clamp(2rem, 8.5vw, 2.6rem);
  }

  .strategy-section h2.reveal::after {
    width: 60px;
    height: 3px;
    margin-top: 14px;
  }

  .strategy-sub {
    max-width: none;
    margin: 0 0 26px;
    font-size: 0.95rem;
    line-height: 1.68;
  }

  .strategy-layout {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .strategy-panel {
    padding: 22px 18px;
    border-radius: 20px;
    gap: 12px;
  }

  .strategy-item {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding: 12px 0;
  }

  .strategy-icon {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    font-size: 0.8rem;
  }

  .strategy-text h3 {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .strategy-text p {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .strategy-visual {
    border-radius: 20px;
    overflow: hidden;
    order: 2;
  }

  .strategy-visual img {
    min-height: 240px;
    border-radius: 20px;
  }

  .strategy-badge {
    position: static;
    margin-top: 12px;
    padding: 14px;
    border-radius: 14px;
    background: rgba(180, 11, 32, 0.05);
    border: 1px solid rgba(180, 11, 32, 0.08);
    box-shadow: none;
  }

  .strategy-badge strong {
    font-size: 0.92rem;
    margin-bottom: 4px;
  }

  .strategy-badge span {
    font-size: 0.88rem;
    line-height: 1.5;
  }
}

@media (max-width: 560px) {
  .strategy-section h2.reveal {
    font-size: clamp(1.8rem, 9vw, 2.3rem);
  }

  .strategy-sub {
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .strategy-panel {
    padding: 20px 16px;
  }

  .strategy-item {
    padding: 10px 0;
  }

  .strategy-text h3 {
    font-size: 0.96rem;
  }

  .strategy-text p {
    font-size: 0.9rem;
  }

  .strategy-visual img {
    min-height: 200px;
  }

  .strategy-badge {
    padding: 12px;
  }
}

/* =========================================================
   DIFFERENTIALS SECTION
========================================================= */
@media (max-width: 768px) {
  .differentials-section {
    margin-top: 0;
    margin-bottom: 0;
    background:
      radial-gradient(circle at top left, rgba(180, 11, 32, 0.05), transparent 24%),
      radial-gradient(circle at bottom right, rgba(255, 0, 17, 0.03), transparent 22%),
      linear-gradient(180deg, #fbf9fa 0%, #f3eff1 100%);
  }

  .differentials-section::before {
    top: 14px;
    right: 12px;
    font-size: clamp(2.2rem, 15vw, 4.2rem);
    color: rgba(180, 11, 32, 0.024);
  }

  .differentials-head {
    max-width: none;
    margin-bottom: 28px;
  }

  .differentials-kicker {
    padding: 9px 13px;
    margin-bottom: 14px;
    font-size: 0.66rem;
    letter-spacing: 0.08em;
  }

  .differentials-head h2 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 8.6vw, 2.7rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
  }

  .differentials-head h2::after {
    width: 62px;
    height: 3px;
    margin-top: 14px;
  }

  .differentials-head p {
    max-width: none;
    font-size: 0.95rem;
    line-height: 1.68;
  }

  .differentials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .differential-card {
    padding: 24px 18px 20px;
    border-radius: 20px;
  }

  .differential-card::after {
    top: -78px;
    right: -78px;
    width: 150px;
    height: 150px;
  }

  .differential-card-featured {
    transform: none;
    border-color: rgba(180, 11, 32, 0.16);
    box-shadow:
      0 22px 50px rgba(180, 11, 32, 0.10),
      0 10px 20px rgba(71, 71, 71, 0.05);
  }

  .differential-card-featured:hover {
    transform: translateY(-8px);
  }

  .differential-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border-radius: 16px;
    box-shadow:
      0 14px 26px rgba(180, 11, 32, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.22);
  }

  .differential-icon::before {
    border-radius: 15px;
  }

  .differential-icon svg {
    width: 24px;
    height: 24px;
  }

  .differential-card h3 {
    margin: 0 0 10px;
    font-size: 1.08rem;
    line-height: 1.14;
    letter-spacing: -0.025em;
  }

  .differential-card p {
    font-size: 0.92rem;
    line-height: 1.62;
  }
}

@media (max-width: 560px) {
  .differentials-head h2 {
    font-size: clamp(1.85rem, 9vw, 2.35rem);
  }

  .differentials-head p {
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .differential-card {
    padding: 22px 16px 18px;
    border-radius: 18px;
  }

  .differential-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
    border-radius: 15px;
  }

  .differential-icon svg {
    width: 22px;
    height: 22px;
  }

  .differential-card h3 {
    font-size: 1rem;
  }

  .differential-card p {
    font-size: 0.9rem;
  }
}

/* =========================================================
   AUDIENCE SECTION
========================================================= */
@media (max-width: 768px) {
  .audience-section {
    background-image: url("../img/audience.svg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .audience-section::before {
    background:
      linear-gradient(
        180deg,
        rgba(244, 241, 242, 0.58) 0%,
        rgba(244, 241, 242, 0.42) 28%,
        rgba(244, 241, 242, 0.30) 56%,
        rgba(244, 241, 242, 0.20) 78%,
        rgba(244, 241, 242, 0.14) 100%
      );
  }

  .audience-section::after {
    top: 14px;
    right: 12px;
    font-size: clamp(2.2rem, 15vw, 4.3rem);
    color: rgba(180, 11, 32, 0.022);
  }

  .audience-shell {
    display: block;
    min-height: auto;
  }

  .audience-head {
    max-width: none;
    margin-bottom: 26px;
  }

  .audience-head h2 {
    max-width: 11ch;
    margin: 0 0 12px;
    font-size: clamp(2rem, 8.6vw, 2.7rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
  }

  .audience-head h2::after {
    width: 62px;
    height: 3px;
    margin-top: 14px;
  }

  .audience-head p {
    max-width: none;
    font-size: 0.95rem;
    line-height: 1.68;
    color: rgba(71, 71, 71, 0.88);
  }

  .audience-grid {
    max-width: none;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .audience-item,
  .audience-item-wide {
    transform: none !important;
    padding: 18px 16px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.46);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .audience-item::after {
    top: -70px;
    right: -70px;
    width: 130px;
    height: 130px;
  }

  .audience-item-number {
    width: 34px;
    height: 34px;
    margin-bottom: 12px;
    border-radius: 10px;
    font-size: 0.68rem;
  }

  .audience-item p,
  .audience-item-wide p {
    max-width: none;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(71, 71, 71, 0.96);
  }
}

@media (max-width: 560px) {
  .audience-section {
    background-position: 58% center;
  }

  .audience-head h2 {
    font-size: clamp(1.85rem, 9vw, 2.35rem);
  }

  .audience-head p {
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .audience-item,
  .audience-item-wide {
    padding: 16px 14px 14px;
    border-radius: 18px;
  }

  .audience-item-number {
    width: 32px;
    height: 32px;
    font-size: 0.66rem;
  }

  .audience-item p,
  .audience-item-wide p {
    font-size: 0.88rem;
  }
}

/* =========================================================
   IMPACT / DEPOIMENTOS
========================================================= */
@media (max-width: 768px) {
  .impact-panel {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 22px;
    border-radius: 22px;
    box-shadow: 0 22px 56px rgba(180, 11, 32, 0.18);
  }

  .impact-panel::before {
    top: -100px;
    right: -100px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255,255,255,0.10), transparent 70%);
  }

  .impact-left h2 {
    max-width: 11ch;
    margin: 0 0 12px;
    font-size: clamp(2rem, 8.4vw, 2.7rem);
  }

  .impact-lead {
    max-width: none;
    margin: 0 0 20px;
    font-size: 0.95rem;
    line-height: 1.68;
    color: rgba(255,255,255,0.86);
  }

  .impact-cta-wrap {
    justify-content: stretch;
    margin-top: 0;
  }

  .impact-cta {
    min-width: 100%;
  }

  .impact-cta-white {
    min-height: 52px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 0.9rem;
  }

  .impact-right {
    width: 100%;
  }

  .testimonial-carousel {
    grid-template-columns: 1fr;
    gap: 0;
    touch-action: pan-y;
  }

  .testimonial-arrow {
    display: none;
  }

  .testimonial-track {
    width: 100%;
  }

  .testimonial-card {
    padding: 14px 20px;
    border-radius: 18px;
    background: rgba(255,255,255,0.11);
    border: 1px solid rgba(255,255,255,0.16);
  }

  .testimonial-print {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 14px;
    border-radius: 16px;
    box-shadow:
      0 14px 30px rgba(0,0,0,0.16),
      0 5px 10px rgba(0,0,0,0.06);
  }

  .testimonial-info {
    text-align: center;
  }

  .testimonial-stars {
    margin-bottom: 10px;
    font-size: 0.98rem;
    letter-spacing: 0.12em;
  }

  .testimonial-info strong {
    margin-bottom: 4px;
    font-size: 0.95rem;
    line-height: 1.35;
  }

  .testimonial-info span {
    font-size: 0.86rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.82);
  }

  .testimonial-dots {
    gap: 7px;
    margin-top: 14px;
  }

  .testimonial-dots button {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.34);
  }

  .testimonial-dots button.is-active {
    transform: scale(1.15);
    background: #ffffff;
  }
}

@media (max-width: 560px) {
  .impact-panel {
    padding: 24px 18px;
    border-radius: 20px;
    gap: 18px;
  }

  .impact-left h2 {
    font-size: clamp(1.85rem, 9vw, 2.35rem);
  }

  .impact-lead {
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .impact-cta-white {
    min-height: 50px;
    padding: 0 16px;
    font-size: 0.88rem;
  }

  .testimonial-card {
    padding: 12px 18px;
    border-radius: 16px;
  }

  .testimonial-print {
    border-radius: 14px;
    margin-bottom: 12px;
  }

  .testimonial-stars {
    font-size: 0.92rem;
    letter-spacing: 0.1em;
  }

  .testimonial-info strong {
    font-size: 0.9rem;
  }

  .testimonial-info span {
    font-size: 0.82rem;
  }
}

/* =========================================================
   BOTÃO FLUTUANTE
========================================================= */
@media (max-width: 768px) {
  .floating-lead-btn {
    right: 14px;
    bottom: 14px;
    min-width: 172px;
    min-height: 50px;
    padding: 0 18px;
  }

  .floating-lead-btn__text {
    font-size: 0.88rem;
  }
}

@media (max-width: 560px) {
  .floating-lead-btn {
    right: 12px;
    bottom: 12px;
    min-width: 158px;
    min-height: 48px;
    padding: 0 16px;
  }

  .floating-lead-btn__text {
    font-size: 0.84rem;
  }
}

/* =========================================================
   FOOTER MOBILE
========================================================= */
@media (max-width: 768px) {
  .footer-minimal-shell {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-right {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }

  .footer-dot {
    display: none;
  }

  .logo-footer {
    max-height: 28px;
    max-width: 160px;
  }
}

/* =========================================================
   RESPIRO LATERAL MOBILE
========================================================= */
@media (max-width: 768px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .hero-mobile-card,
  .problem-item,
  .strategy-panel,
  .differential-card,
  .audience-item,
  .audience-item-wide {
    padding-left: 20px;
    padding-right: 20px;
  }

  .testimonial-card {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero-mobile-card,
  .problem-item,
  .strategy-panel,
  .differential-card,
  .audience-item,
  .audience-item-wide,
  .testimonial-card {
    padding-left: 18px;
    padding-right: 18px;
  }
}