/* ============================================================
   RESERVA FÁCIL — Landing Page Principal
   Design System & Styles
   Versão: 2.1.6 — Build: 2026-04-14g
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Brand Colors */
  --color-petrol-900: #0D1F2D;
  --color-petrol-800: #132B3E;
  --color-petrol-700: #1B3A4B;
  --color-petrol-600: #234E64;
  --color-petrol-500: #2C6380;
  --color-petrol-400: #3A7CA5;
  --color-petrol-300: #5B9DC4;

  --color-cyan-600: #008F7A;
  --color-cyan-500: #00BFA6;
  --color-cyan-400: #00E5C3;
  --color-cyan-300: #5EFFE5;
  --color-cyan-200: #B0FFF1;

  /* Neutrals */
  --color-white: #FFFFFF;
  --color-gray-50: #F8FAFB;
  --color-gray-100: #F1F4F6;
  --color-gray-200: #E2E8ED;
  --color-gray-300: #CBD5DE;
  --color-gray-400: #94A3B8;
  --color-gray-500: #64748B;
  --color-gray-600: #475569;
  --color-gray-700: #334155;
  --color-gray-800: #1E293B;
  --color-gray-900: #0F172A;

  /* Semantic */
  --color-success: #10B981;
  --color-warning: #F59E0B;
  --color-error: #EF4444;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, var(--color-petrol-900) 0%, var(--color-petrol-700) 60%, var(--color-petrol-600) 100%);
  --gradient-dark: linear-gradient(180deg, var(--color-petrol-900) 0%, var(--color-petrol-800) 100%);
  --gradient-cyan: linear-gradient(135deg, var(--color-cyan-500) 0%, var(--color-cyan-400) 100%);
  --gradient-card-dark: linear-gradient(145deg, rgba(27, 58, 75, 0.6) 0%, rgba(13, 31, 45, 0.8) 100%);

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Borders & Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.10), 0 8px 20px rgba(0, 0, 0, 0.05);
  --shadow-2xl: 0 25px 60px rgba(0, 0, 0, 0.15);
  --shadow-cyan: 0 4px 20px rgba(0, 191, 166, 0.25);
  --shadow-glow: 0 0 40px rgba(0, 191, 166, 0.15);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Layout */
  --container-max: 1200px;
  --container-wide: 1400px;
  --header-height: 72px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-gray-700);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container--wide {
  max-width: var(--container-wide);
}

.section {
  padding: var(--space-16) 0;
}

.section--dark {
  background: var(--gradient-dark);
  color: var(--color-white);
}

.section--light {
  background-color: var(--color-gray-50);
}

.section--white {
  background-color: var(--color-white);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-cyan-500);
  margin-bottom: var(--space-4);
  padding: var(--space-2) var(--space-4);
  background: rgba(0, 191, 166, 0.1);
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 191, 166, 0.2);
}

.section-title {
  font-size: var(--text-3xl);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}

.section-title--light {
  color: var(--color-white);
}

.section-title--dark {
  color: var(--color-petrol-900);
}

.section-subtitle {
  font-size: var(--text-lg);
  line-height: 1.6;
  max-width: 640px;
  opacity: 0.85;
}

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-base);
  font-weight: 600;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--gradient-cyan);
  color: var(--color-petrol-900);
  box-shadow: var(--shadow-cyan);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 191, 166, 0.35);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--secondary:hover {
  border-color: var(--color-cyan-400);
  color: var(--color-cyan-400);
  background: rgba(0, 229, 195, 0.05);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--color-cyan-500);
  color: var(--color-cyan-500);
}

.btn--outline:hover {
  background: var(--color-cyan-500);
  color: var(--color-white);
}

.btn--dark {
  background: var(--color-petrol-800);
  color: var(--color-white);
}

.btn--dark:hover {
  background: var(--color-petrol-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--lg {
  font-size: var(--text-lg);
  padding: var(--space-5) var(--space-10);
  border-radius: var(--radius-lg);
}

.btn--sm {
  font-size: var(--text-sm);
  padding: var(--space-3) var(--space-6);
}

.btn svg,
.btn i {
  width: 20px;
  height: 20px;
}

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: all var(--transition-base);
  background: transparent;
}

.header.scrolled {
  background: rgba(13, 31, 45, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo img {
  height: 54px;
  width: auto;
}

.header__nav {
  display: none;
  gap: var(--space-1);
}

.header__nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.header__nav a:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
}

.header__cta {
  display: none;
}

.header__mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
}

.header__mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 360px;
  height: 100vh;
  background: var(--color-petrol-900);
  z-index: 1100;
  padding: var(--space-20) var(--space-8);
  transition: right var(--transition-slow);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.mobile-menu__overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__close {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--color-white);
  font-size: var(--text-2xl);
  transition: background var(--transition-fast);
}

.mobile-menu__close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu a {
  font-size: var(--text-lg);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-4) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color var(--transition-fast);
}

.mobile-menu a:hover {
  color: var(--color-cyan-400);
}

.mobile-menu .btn {
  margin-top: var(--space-6);
}

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: calc(var(--header-height) + var(--space-12));
  padding-bottom: var(--space-16);
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 191, 166, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 191, 166, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Grid pattern overlay */
.hero__grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

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

.hero__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

.hero__text {
  max-width: 800px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(0, 191, 166, 0.12);
  border: 1px solid rgba(0, 191, 166, 0.25);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-cyan-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-6);
}

.hero__badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--color-cyan-400);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-30px);
  }

  100% {
    transform: translateY(0px);
  }
}

.hero__title {
  font-size: var(--text-4xl);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-white);
  letter-spacing: -0.04em;
  margin-bottom: var(--space-6);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.hero__title span {
  background: var(--gradient-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: var(--space-8);
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
}

.hero__bullets {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--space-8);
  margin-top: var(--space-4);
}

@media (max-width: 1100px) {
  .hero__bullets {
    gap: var(--space-4);
  }
}

@media (max-width: 768px) {
  .hero__bullets {
    flex-wrap: wrap;
    gap: var(--space-3);
  }
}

.hero__bullet {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}

.hero__bullet svg {
  width: 18px;
  height: 18px;
  color: var(--color-cyan-400);
  background: rgba(0, 191, 166, 0.1);
  padding: 3px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero__mockup {
  position: relative;
  animation: float 6s ease-in-out infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__mockup img {
  width: 100%;
  max-width: 900px;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.2));
  transform: perspective(1000px) rotateY(-5deg);
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-white);
  font-size: var(--text-sm);
  font-weight: 600;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  z-index: 5;
  pointer-events: none;
  white-space: nowrap;
}

.floating-card svg {
  width: 20px;
  height: 20px;
  color: var(--color-cyan-400);
}

.floating-card--1 {
  top: 15%;
  left: -5%;
  animation: float-card 5s ease-in-out infinite;
}

.floating-card--2 {
  bottom: 25%;
  left: -15%;
  animation: float-card 7s ease-in-out infinite 1s;
}

.floating-card--3 {
  top: 40%;
  right: -10%;
  animation: float-card 6s ease-in-out infinite 0.5s;
}

@keyframes float-card {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(0, -15px);
  }
}

/* ============================================================
   SECTION 2 — DOR UNIVERSAL
   ============================================================ */
.pain-section {
  position: relative;
}

.pain-section .section-title {
  color: var(--color-petrol-900);
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-top: var(--space-10);
}

.pain-card {
  display: flex;
  gap: var(--space-5);
  padding: var(--space-6);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.pain-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gray-300);
}

.pain-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(239, 68, 68, 0.08);
  border-radius: var(--radius-md);
  color: var(--color-error);
}

.pain-card__icon svg {
  width: 24px;
  height: 24px;
}

.pain-card__title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-petrol-900);
  margin-bottom: var(--space-1);
}

.pain-card__desc {
  font-size: var(--text-sm);
  color: var(--color-gray-500);
  line-height: 1.6;
}

/* ============================================================
   SECTION 3 — AUTORIDADE E SEGMENTAÇÃO
   ============================================================ */
.authority-section {
  position: relative;
  overflow: hidden;
  padding-bottom: var(--space-24);
}

.authority-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 1024px) {
  .authority-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-20);
  }
}

.authority-title {
  font-size: var(--text-3xl);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-8);
  color: var(--color-white);
}

@media (min-width: 768px) {
  .authority-title {
    font-size: var(--text-4xl);
  }
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-size: var(--text-base);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 191, 166, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-cyan-400);
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
}

/* Segment Cards */
.segment-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .segment-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .segment-cards {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

@media (min-width: 1280px) {
  .segment-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.segment-card {
  position: relative;
  min-height: 280px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: var(--space-8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
  z-index: 1;
}

.segment-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-slow);
  z-index: -1;
}

.segment-card__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 31, 45, 0.2) 0%, rgba(13, 31, 45, 0.8) 50%, rgba(13, 31, 45, 0.95) 100%);
}

.segment-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-cyan-500);
  box-shadow: var(--shadow-glow);
}

.segment-card:hover .segment-card__bg {
  transform: scale(1.1);
}

.segment-card__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.segment-card__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-cyan-400);
  background: rgba(0, 191, 166, 0.15);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
}

.segment-card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-2);
  line-height: 1.2;
}

.segment-card__desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-6);
  line-height: 1.5;
}

.segment-card .btn {
  width: 100%;
}

/* Stats Row */
.stats-row {
  margin-top: var(--space-20);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  padding: var(--space-10);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-2xl);
  backdrop-filter: blur(10px);
}

@media (min-width: 640px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .stats-row {
    grid-template-columns: repeat(4, 1fr);
    padding: var(--space-12) var(--space-8);
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  justify-content: flex-start;
}

.stat-number {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-cyan-400);
  line-height: 1.2;
  min-height: 1.2em;
  display: flex;
  align-items: center;
}

.stat-title {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.2;
}

.stat-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  font-weight: 500;
}


/* ============================================================
   SEÇÃO — VÍDEO DE APRESENTAÇÃO
   ============================================================ */
.video-presentation {
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.video-presentation .section-title span {
  background: var(--gradient-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.video-container {
  max-width: 320px !important;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  border: 10px solid var(--color-petrol-800);
  border-radius: 40px;
  background: #000;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), var(--shadow-glow);
  overflow: hidden;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.video-container:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.8), 0 0 60px rgba(0, 191, 166, 0.2);
}

.video-container__inner {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 9 / 16;
  background: #000;
}

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

/* ── Fullscreen: exibir vídeo proporcional (sem corte/distorção) ── */
.video-container__video:-webkit-full-screen {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.video-container__video:-moz-full-screen {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.video-container__video:fullscreen {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Container pai em fullscreen: expandir sem cortar */
.video-container:-webkit-full-screen,
.video-container__inner:-webkit-full-screen {
  width: 100vw;
  height: 100vh;
  max-width: none;
  border-radius: 0;
  aspect-ratio: unset;
}
.video-container:fullscreen,
.video-container__inner:fullscreen {
  width: 100vw;
  height: 100vh;
  max-width: none;
  border-radius: 0;
  aspect-ratio: unset;
}

.video-container__glow {
  display: none;
  /* Removed as shadow-glow is on container */
}

/* Custom Play Overlay — cobre toda a capa e inicia o vídeo ao clicar */
.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  background: transparent;
  transition: opacity 0.3s ease;
}

.video-play-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.video-play-overlay__btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0, 191, 166, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 12px rgba(0, 191, 166, 0.18), 0 8px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, background 0.2s ease;
}

.video-play-overlay:hover .video-play-overlay__btn {
  transform: scale(1.1);
  background: var(--color-cyan-400);
}

.video-play-overlay__btn svg {
  width: 28px;
  height: 28px;
  fill: var(--color-petrol-900);
  margin-left: 4px;
  /* visual centering for play triangle */
}


/* ============================================================
   SECTION 4 — FUNCIONALIDADES
   ============================================================ */
.features-section .section-title {
  color: var(--color-petrol-900);
  font-size: var(--text-5xl);
  letter-spacing: -0.03em;
  line-height: 1.1;
  white-space: nowrap;
}

/* Highlight "operar, vender e crescer" — cor mais saturada para fundo branco */
.features-section .section-title .highlight-cyan {
  color: var(--color-cyan-600);
}

/* Subtítulo: largura máxima ampliada para caber em uma linha */
.features-section .section-subtitle {
  max-width: 900px;
  white-space: nowrap;
}

.features-categories {
  margin-top: var(--space-12);
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

.feature-category__header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.feature-category__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-cyan);
  border-radius: var(--radius-md);
  color: var(--color-petrol-900);
}

.feature-category__icon svg {
  width: 22px;
  height: 22px;
}

.feature-category__name {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-petrol-900);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-gray-200);
  transition: all var(--transition-base);
}

.feature-item:hover {
  border-color: var(--color-cyan-500);
  box-shadow: 0 0 0 3px rgba(0, 191, 166, 0.08);
}

.feature-item__check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 191, 166, 0.1);
  border-radius: var(--radius-sm);
  color: var(--color-cyan-500);
}

.feature-item__check svg {
  width: 16px;
  height: 16px;
}

.feature-item__text {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-gray-700);
  padding-top: 3px;
}

/* ============================================================
   SECTION 5 — PROVA VISUAL
   ============================================================ */
/* ============================================================
   SECTION 5 — PROVA VISUAL (REDESIGN)
   ============================================================ */
.visual-section {
  position: relative;
  overflow: hidden;
}

/* Título principal da seção: destaque com gradiente cyan */
.visual-section__title {
  background: var(--gradient-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: var(--text-5xl);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.visual-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-20);
  margin-top: var(--space-16);
}

.feature-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  align-items: center;
}

.feature-text {
  flex: 1;
  text-align: center;
}

.feature-title {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

.feature-desc {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

.feature-image {
  flex: 1.2;
  position: relative;
  width: 100%;
}

.feature-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform var(--transition-slow);
}

.feature-row:hover .feature-image img {
  transform: scale(1.02);
}

/* Alternating rows for larger screens */
@media (min-width: 1024px) {
  .feature-row {
    flex-direction: row;
    text-align: left;
    gap: var(--space-20);
  }

  .feature-text {
    text-align: left;
  }

  .feature-row:nth-child(even) {
    flex-direction: row-reverse;
  }
}

/* ============================================================
   SECTION 6 — COMO FUNCIONA
   ============================================================ */
.howit-section .section-title {
  color: var(--color-petrol-900);
}

.steps-container {
  margin-top: var(--space-12);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  position: relative;
}

.step {
  display: flex;
  gap: var(--space-6);
  padding: var(--space-6);
  position: relative;
}

.step__number-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.step__number {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-cyan);
  border-radius: 50%;
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--color-petrol-900);
  position: relative;
  z-index: 2;
}

.step__line {
  width: 2px;
  flex-grow: 1;
  background: var(--color-gray-200);
  margin-top: var(--space-2);
}

.step:last-child .step__line {
  display: none;
}

.step__content {
  padding-top: var(--space-2);
}

.step__title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-petrol-900);
  margin-bottom: var(--space-1);
}

.step__desc {
  font-size: var(--text-sm);
  color: var(--color-gray-500);
  line-height: 1.6;
}

/* ============================================================
   SECTION 7 — DIFERENCIAIS
   ============================================================ */

/* Título e subtítulo maiores no desktop */
#diferenciais .section-title {
  font-size: var(--text-5xl);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

#diferenciais .section-subtitle {
  font-size: var(--text-xl);
  max-width: 680px;
  line-height: 1.65;
  opacity: 0.75;
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-top: var(--space-10);
}

.diff-card {
  padding: var(--space-8);
  background: var(--gradient-card-dark);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--transition-base);
}

.diff-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 191, 166, 0.15);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.diff-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 191, 166, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-5);
}

.diff-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-cyan-400);
}

.diff-card__title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.diff-card__desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* ============================================================
   SECTION 8 — MODELO COMERCIAL (PREMIUM DARK)
   ============================================================ */
.pricing-section-premium {
  position: relative;
  overflow: hidden;
  background-color: var(--color-petrol-900);
  padding: var(--space-24) 0;
}

.pricing-section-premium .section-title {
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.pricing-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.pricing-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 191, 166, 0.08) 0%, transparent 70%);
  filter: blur(60px);
  border-radius: 50%;
  opacity: 0.6;
  animation: blob-float 25s infinite alternate;
}

.pricing-blob--1 {
  top: -20%;
  left: -10%;
}

.pricing-blob--2 {
  bottom: -20%;
  right: -10%;
  animation-delay: -7s;
}

@keyframes blob-float {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  100% {
    transform: translate(100px, 50px) rotate(90deg) scale(1.2);
  }
}

.pricing-premium-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-top: var(--space-12);
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .pricing-premium-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pricing-premium-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  display: flex;
  gap: var(--space-6);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

.pricing-premium-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 191, 166, 0.3);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.pricing-premium-card__icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 191, 166, 0.1);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cyan-400);
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.pricing-premium-card:hover .pricing-premium-card__icon {
  background: var(--gradient-cyan);
  color: var(--color-petrol-900);
  transform: rotate(10deg);
}

.pricing-premium-card__icon svg {
  width: 28px;
  height: 28px;
}

.pricing-premium-card__title {
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: var(--space-2);
  letter-spacing: -0.02em;
}

.pricing-premium-card__desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.pricing-cta-container {
  position: relative;
  z-index: 2;
}

.pricing-cta-note {
  margin-top: var(--space-5);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

/* ============================================================
   SECTION 9 — FAQ
   ============================================================ */
.faq-section {
  background-color: #f8fafc;
  /* Cinza ultra-claro conforme solicitado */
  padding: var(--space-20) 0;
  border-top: 1px solid var(--color-gray-100);
}

.faq-container {
  max-width: 850px;
  margin: var(--space-12) auto 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.faq-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.faq-card:hover {
  border-color: var(--color-cyan-300);
  box-shadow: var(--shadow-md);
}

.faq-card.active {
  border-color: var(--color-cyan-500);
  box-shadow: 0 10px 30px rgba(0, 191, 166, 0.08);
}

.faq-question {
  width: 100%;
  padding: var(--space-6) var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  background: none;
  border: none;
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-petrol-900);
  cursor: pointer;
}

.faq-card.active .faq-question {
  color: var(--color-cyan-600);
}

.faq-question__icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-400);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card.active .faq-question__icon {
  transform: rotate(180deg);
  color: var(--color-cyan-500);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer__inner {
  padding: 0 var(--space-8) var(--space-8);
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--color-gray-500);
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
}

.faq-card.active .faq-answer__inner {
  opacity: 1;
  transform: translateY(0);
}

/* Bloco de Suporte (FAQ Footer) */
.faq-support {
  margin-top: var(--space-16);
  text-align: center;
}

.faq-support__content {
  background: var(--color-white);
  padding: var(--space-10) var(--space-12);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--color-gray-100);
  box-shadow: 0 30px 60px rgba(13, 31, 45, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

@media (min-width: 992px) {
  .faq-support__content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: var(--space-8) var(--space-12);
  }
}

.faq-support__text h3 {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-petrol-900);
  margin-bottom: var(--space-1);
}

.faq-support__text p {
  font-size: var(--text-base);
  color: var(--color-gray-500);
}

.faq-support .btn {
  white-space: nowrap;
}

/* Garante espaçamento interno do botão dentro do card no mobile */
@media (max-width: 768px) {
  .faq-support__content {
    padding: var(--space-8) var(--space-6);
  }

  .faq-support .btn {
    width: 100%;
    box-sizing: border-box;
    white-space: normal;
    font-size: var(--text-base);
    padding: var(--space-4) var(--space-6);
  }
}

/* ============================================================
   SECTION 10 — CTA FINAL
   ============================================================ */
.cta-final {
  position: relative;
  overflow: hidden;
  padding: var(--space-20) 0;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 191, 166, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-final__content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-final__title {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}

.cta-final__subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-10);
}

.cta-final__trust {
  margin-top: var(--space-8);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6);
}

.cta-final__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
}

.cta-final__trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-cyan-400);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-petrol-900);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: var(--space-10) 0;
  text-align: center;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.footer__logo {
  height: 90px;
  width: auto;
  opacity: 0.92;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  transition: opacity 0.2s ease;
}

.footer__logo:hover {
  opacity: 1;
}

.footer__text {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 768px) {
  .footer__text {
    font-size: 0.72rem;
    letter-spacing: -0.01em;
    padding: 0 var(--space-4);
  }
}

.footer__text a {
  color: var(--color-cyan-400);
}

/* ============================================================
   SECTION 6 — INTERACTIVE FEATURES
   ============================================================ */
.interactive-section {
  padding: var(--space-20) 0;
  background-color: var(--color-white);
}

.interactive-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-16);
  align-items: center;
}

@media (min-width: 1024px) {
  .interactive-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-24);
  }
}

/* Mockup & Floating Widgets */
.interactive-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--space-10) 0;
}

.mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 720px;
}

.mockup-wrapper.floating {
  animation: float-main 6s ease-in-out infinite;
}

@keyframes float-main {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-30px);
  }
}

.mockup-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 40px 100px rgba(0, 0, 0, 0.2));
  border-radius: var(--radius-xl);
}

/* Glassmorphism Widgets */
.i-widget {
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-petrol-900);
  z-index: 10;
  white-space: nowrap;
}

.i-widget__icon {
  width: 24px;
  height: 24px;
  background: var(--gradient-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-petrol-900);
  flex-shrink: 0;
}

.i-widget__icon svg {
  width: 12px;
  height: 12px;
}

.i-widget--1 {
  top: 10%;
  left: -5%;
}

.i-widget--2 {
  top: 40%;
  right: -5%;
}

.i-widget--3 {
  bottom: 20%;
  left: -8%;
}

.i-widget--4 {
  bottom: 0%;
  right: 5%;
}

@media (max-width: 1024px) {
  .i-widget--1 {
    left: 0%;
  }

  .i-widget--2 {
    right: 0%;
  }

  .i-widget--3 {
    left: 0%;
  }

  .i-widget--4 {
    right: 5%;
  }
}

@keyframes floating {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.floating-widget {
  animation: floating 4s ease-in-out infinite;
}

/* Content & Cards */
.interactive-title {
  font-size: var(--text-3xl);
  font-weight: 900;
  color: var(--color-petrol-900);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-8);
  text-wrap: balance;
}

.interactive-title span {
  display: block;
  background: var(--gradient-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  padding: 4px 0;
}

@media (min-width: 1024px) {
  .interactive-title {
    font-size: 3.2rem;
    max-width: 100%;
  }
}

.interactive-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

@media (min-width: 640px) {
  .interactive-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.i-card {
  background: var(--color-gray-50);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: all var(--transition-base);
}

.i-card:hover {
  transform: translateY(-5px);
  background: var(--color-white);
  border-color: var(--color-cyan-500);
  box-shadow: var(--shadow-lg);
}

.i-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  flex-shrink: 0;
}

.i-card__icon svg {
  width: 24px;
  height: 24px;
}

/* Dynamic Gradients for Icons */
.i-card__icon--finance {
  background: linear-gradient(135deg, #FF6B6B 0%, #D63031 100%);
}

.i-card__icon--sales {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.i-card__icon--loyalty {
  background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
}

.i-card__icon--value {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.i-card__title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-petrol-900);
}

.i-card__desc {
  font-size: var(--text-xs);
  line-height: 1.6;
  color: var(--color-gray-500);
}


/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ============================================================
   RESPONSIVE — Tablet
   ============================================================ */
@media (min-width: 640px) {
  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero__actions {
    flex-direction: row;
    align-items: center;
  }

  .section-title {
    font-size: var(--text-4xl);
  }

  .hero__title {
    font-size: var(--text-5xl);
  }
}

/* ============================================================
   RESPONSIVE — Desktop
   ============================================================ */
@media (min-width: 1024px) {
  .section {
    padding: var(--space-24) 0;
  }

  .header__nav {
    display: flex;
  }

  .header__cta {
    display: inline-flex;
  }

  .header__mobile-toggle {
    display: none;
  }

  .hero {
    min-height: 100vh;
    padding-top: var(--header-height);
  }

  .hero__content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }

  .hero__title {
    font-size: var(--text-5xl);
  }

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

  .verticals-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vertical-card .btn {
    width: auto;
  }

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

  .visual-grid {
    grid-template-columns: 2fr 1fr;
    gap: var(--space-6);
    align-items: center;
  }

  .steps-container {
    flex-direction: row;
    gap: 0;
  }

  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: var(--space-6) var(--space-4);
  }

  .step__number-wrapper {
    flex-direction: row;
    width: 100%;
    justify-content: center;
    margin-bottom: var(--space-4);
  }

  .step__line {
    width: auto;
    height: 2px;
    flex-grow: 1;
    margin-top: 0;
    margin-left: var(--space-2);
  }

  .step:last-child .step__line {
    display: none;
  }

  .step__number {
    flex-shrink: 0;
  }

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

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: var(--text-4xl);
  }

  .cta-final__title {
    font-size: var(--text-5xl);
  }
}

/* ============================================================
   RESPONSIVE — Large Desktop
   ============================================================ */
@media (min-width: 1280px) {
  .hero__title {
    font-size: var(--text-6xl);
  }

  .container {
    padding: 0 var(--space-8);
  }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {

  .header,
  .mobile-menu,
  .mobile-menu__overlay {
    display: none !important;
  }

  .section {
    page-break-inside: avoid;
  }
}

/* ============================================================
   SECTION 6 — QUICK SETUP (REDESIGN)
   ============================================================ */
.setup-section {
  padding: var(--space-24) 0;
  background: radial-gradient(circle at top right, rgba(0, 191, 166, 0.03), transparent),
    var(--color-gray-50);
  overflow: visible;
}

.setup-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-16);
  align-items: center;
}

@media (min-width: 1024px) {
  .setup-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-24);
  }
}

.setup-visual {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1000px;
  overflow: visible;
}

.setup-visual__wrapper {
  position: relative;
  width: 100%;
  max-width: 680px;
  z-index: 2;
}

.setup-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.15));
  border-radius: var(--radius-xl);
  transition: transform var(--transition-slow);
}

.setup-visual:hover .setup-img {
  transform: rotateX(2deg) rotateY(-2deg) scale(1.01);
}

.setup-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(0, 191, 166, 0.12) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(40px);
}

/* Floating Widgets V2 */
.setup-widget {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-petrol-900);
  z-index: 10;
  white-space: nowrap;
}

.setup-widget__icon {
  width: 24px;
  height: 24px;
  background: var(--gradient-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-petrol-900);
  flex-shrink: 0;
}

.setup-widget__icon svg {
  width: 12px;
  height: 12px;
}

.setup-widget--1 {
  top: 12%;
  left: 2%;
}

.setup-widget--2 {
  top: 45%;
  right: 2%;
}

.setup-widget--3 {
  bottom: 22%;
  left: 2%;
}

.setup-widget--4 {
  bottom: 5%;
  right: 2%;
}

@media (max-width: 1024px) {
  .setup-widget {
    padding: var(--space-2) var(--space-3);
    font-size: var(--text-xs);
  }

  .setup-widget--1 {
    left: 0;
  }

  .setup-widget--2 {
    right: 0;
  }

  .setup-widget--3 {
    left: 0;
  }
}

@keyframes float-widget-v2 {

  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-15px) rotate(1deg);
  }
}

.floating-widget-v2 {
  animation: float-widget-v2 5s ease-in-out infinite;
}

/* Timeline V2 */
.setup-timeline {
  position: relative;
  margin: var(--space-12) 0;
  padding-left: var(--space-4);
}

.setup-timeline__line {
  position: absolute;
  top: 0;
  left: 38px;
  /* Alinhado ao centro do ícone (16px padding + 22px metade do ícone) */
  bottom: 0;
  width: 2px;
  background: var(--color-gray-100);
  overflow: hidden;
  border-radius: var(--radius-full);
}

.setup-timeline__line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-cyan);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 2s cubic-bezier(0.65, 0, 0.35, 1);
}

.setup-section.visible .setup-timeline__line::after {
  transform: scaleY(1);
}

.setup-step {
  position: relative;
  display: flex;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
  z-index: 2;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.6s ease;
}

.setup-section.visible .setup-step {
  opacity: 1;
  transform: translateX(0);
}

.setup-step__icon {
  width: 44px;
  height: 44px;
  background: var(--color-white);
  border: 2px solid var(--color-gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--color-petrol-900);
  flex-shrink: 0;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.setup-section.visible .setup-step__icon {
  border-color: var(--color-cyan-400);
  background: var(--color-white);
  box-shadow: 0 0 20px rgba(0, 191, 166, 0.25);
}

.setup-step h3 {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-petrol-900);
  margin-bottom: var(--space-2);
  letter-spacing: -0.02em;
}

.setup-step p {
  font-size: var(--text-base);
  color: var(--color-gray-500);
  line-height: 1.5;
}

/* Progress delays */
.setup-step:nth-child(2) {
  transition-delay: 0.1s;
}

.setup-step:nth-child(3) {
  transition-delay: 0.2s;
}

.setup-step:nth-child(4) {
  transition-delay: 0.3s;
}

.setup-step:nth-child(5) {
  transition-delay: 0.4s;
}

.setup-step:nth-child(6) {
  transition-delay: 0.5s;
}

/* Content refinement */
.setup-content .section-title {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-6);
  letter-spacing: -0.04em;
}

.setup-cta-wrapper {
  margin-top: var(--space-12);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
}

.setup-btn {
  padding: var(--space-5) var(--space-12);
  font-size: var(--text-lg);
  letter-spacing: 0.05em;
  box-shadow: 0 15px 40px rgba(0, 191, 166, 0.3);
  border-radius: var(--radius-xl);
}

.setup-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.setup-btn:hover::after {
  left: 100%;
}

.setup-cta-note {
  font-size: var(--text-sm);
  color: var(--color-gray-500);
  font-weight: 600;
  padding-left: var(--space-2);
}

/* ============================================================
   SECTION 8.5 — CONVERSÃO FINAL (PRÉ-FAQ - COMPACTA)
   ============================================================ */
.conversion-section {
  position: relative;
  overflow: hidden;
  padding: var(--space-6) 0 var(--space-16);
  background-color: var(--color-white);
}

.conversion-section__content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 2;
}

.conversion-logo {
  display: block;
  height: 320px;
  width: auto;
  margin: var(--space-6) auto 0;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.08));
}

/* Título da seção de conversão maior no desktop */
.conversion-section .section-title {
  font-size: var(--text-5xl);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

/* Destaques no fundo branco: cyan-600 para melhor contraste */
.conversion-section .section-title .highlight-cyan {
  color: var(--color-cyan-600);
}

.conversion-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
  opacity: 0.3;
  pointer-events: none;
}

.conversion-bg-shape--2 {
  bottom: -5%;
  left: -5%;
  width: 180px;
  height: 180px;
  background: rgba(0, 191, 166, 0.08);
}

.conv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  max-width: 480px;
  margin: var(--space-8) auto;
}

.conv-card {
  background: var(--color-white);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-100);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: var(--space-5);
}

.conv-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-cyan-500);
  box-shadow: var(--shadow-md);
}

.conv-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 191, 166, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cyan-500);
  flex-shrink: 0;
}

.conv-card__icon svg {
  width: 22px;
  height: 22px;
}

.conv-card__content {
  flex: 1;
}

.conv-card__title {
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--color-petrol-900);
  margin-bottom: 2px;
  line-height: 1.2;
}

.conv-card__desc {
  font-size: var(--text-xs);
  color: var(--color-gray-500);
  line-height: 1.4;
}

.conversion-cta-block {
  margin-top: var(--space-6);
}

/* Pulse Animation for CTA */
@keyframes btn-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 191, 166, 0.4);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(0, 191, 166, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 191, 166, 0);
  }
}

.btn--pulse {
  animation: btn-pulse 2s infinite;
}

.btn--pulse:hover {
  animation: none;
}

/* ============================================================
   CLASSE UTILITÁRIA GLOBAL — HIGHLIGHT
   ============================================================ */
.highlight-cyan {
  color: var(--color-cyan-400);
}

/* ============================================================
   BOTÃO FLUTUANTE WHATSAPP (GLOBAL)
   ============================================================ */
.whatsapp-float {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  left: auto !important;
  top: auto !important;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  z-index: 99999 !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  isolation: isolate;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateZ(0);
  -webkit-transform: scale(1.1) translateZ(0);
  box-shadow: 0 6px 32px rgba(37, 211, 102, 0.6);
}

/* ============================================================
   ELEMENTOS EXCLUSIVOS MOBILE — padrão oculto no desktop
   ============================================================ */
/* Imagem duplicada que só aparece no mobile (seção "Como funciona") */
/* Por padrão SEMPRE oculta — só aparece dentro da media query mobile */
.setup-img--mobile-only {
  display: none !important;
  visibility: hidden !important;
}

/* No desktop: garantir visibilidade do visual principal */
@media screen and (min-width: 769px) {
  .setup-img--mobile-only {
    display: none !important;
    visibility: hidden !important;
  }

  .setup-visual {
    display: flex !important;
  }
}

/* Botão de fidelização que aparece somente no mobile após a imagem */
.feature-btn--mobile-only {
  display: none !important;
}

/* ============================================================
   RESPONSIVE — MOBILE (max-width: 768px)
   Todos os ajustes abaixo afetam APENAS o mobile.
   ============================================================ */
@media (max-width: 768px) {

  /* ── 1. HERO — Título centralizado e distribuído ── */
  .hero {
    overflow-x: hidden;
  }

  .hero .container,
  .hero .container--wide {
    overflow-x: hidden;
    max-width: 100vw;
    padding-left: var(--space-5);
    padding-right: var(--space-5);
  }

  .hero__title {
    font-size: 1.65rem;
    text-align: center;
    text-wrap: balance;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .hero__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
  }

  .hero__badge {
    align-self: center;
  }

  .hero__subtitle {
    text-align: center;
    max-width: 100%;
    width: 100%;
  }

  .hero__actions {
    align-items: center;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
    font-size: var(--text-sm);
    padding: var(--space-4) var(--space-6);
    letter-spacing: -0.01em;
  }

  /* ── 2. HERO — Bullets: ocultar "Sem mensalidade fixa", dois lado a lado ── */
  .hero__bullet--hide-mobile {
    display: none;
  }

  .hero__bullets {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center;
    gap: var(--space-4) !important;
    width: 100%;
    overflow: visible;
  }

  /* Bullet único visível no mobile: centralizado */
  .hero__bullet {
    white-space: nowrap;
    font-size: var(--text-xs);
    justify-content: center;
    text-align: center;
  }

  /* Mockup mais próximo dos botões (bullets ocultos = menos espaço) */
  .hero__mockup {
    margin-top: calc(var(--space-8) * -1);
  }

  /* Ocultar nota abaixo do botão 'Quero entender o modelo' no mobile */
  .pricing-cta-note--hide-mobile {
    display: none !important;
  }

  /* ── 3. HERO — Mockup: remover perspectiva 3D e conter dentro da tela ── */
  .hero__mockup {
    overflow: hidden;
    padding: 0;
    width: 100%;
    max-width: 100%;
  }

  .hero__mockup img {
    width: 100%;
    max-width: 100%;
    transform: none !important;
    -webkit-transform: none !important;
  }

  .floating-card {
    max-width: calc(50vw - 20px);
    white-space: normal;
    font-size: 0.7rem;
    padding: var(--space-2) var(--space-3);
    gap: var(--space-2);
  }

  .floating-card svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }

  .floating-card--1 {
    left: 0;
    top: 10%;
  }

  .floating-card--2 {
    left: 0;
    bottom: 28%;
  }

  .floating-card--3 {
    right: 0;
    top: 38%;
  }

  /* ── 4. SEÇÃO INTERATIVA — Widgets menores (não tapam a imagem) ── */
  .i-widget {
    font-size: 0.6rem;
    padding: 4px 8px;
    gap: 5px;
    border-radius: var(--radius-md);
  }

  .i-widget__icon {
    width: 18px;
    height: 18px;
  }

  .i-widget__icon svg {
    width: 9px;
    height: 9px;
  }

  .i-widget--1 {
    left: 0;
  }

  .i-widget--2 {
    right: 0;
  }

  .i-widget--3 {
    left: 0;
  }

  .i-widget--4 {
    right: 0;
  }

  /* ── 5. SEÇÃO VÍDEO — Título centralizado, maior e distribuído ── */
  .video-presentation .section-title {
    text-align: center;
    text-wrap: balance;
    font-size: var(--text-3xl);
    line-height: 1.2;
  }

  /* ── 5b. SEÇÃO VÍDEO — Botão CTA responsivo ── */
  .video-cta {
    padding: 0 var(--space-5);
    box-sizing: border-box;
    width: 100%;
  }

  .video-cta .btn {
    width: 100%;
    white-space: nowrap;
    text-align: center;
    display: flex;
    justify-content: center;
    font-size: var(--text-sm);
    padding: var(--space-4) var(--space-4);
    letter-spacing: -0.01em;
  }

  /* ── 6. FUNCIONALIDADES — Título centralizado + highlight ── */
  .features-section .section-title {
    text-align: center;
    text-wrap: balance;
    font-size: var(--text-4xl);
    line-height: 1.15;
    white-space: normal;
  }

  .features-section .section-subtitle {
    white-space: normal;
    max-width: 100%;
  }

  /* Highlight de "operar, vender e crescer" em fundo branco */
  .features-section .section-title .highlight-cyan {
    color: var(--color-cyan-600);
  }

  /* ── 7. PROVA VISUAL — Título inteiro em cor de destaque, centralizado ── */
  .visual-section__title {
    color: var(--color-cyan-400) !important;
    -webkit-text-fill-color: var(--color-cyan-400) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    text-align: center;
    text-wrap: balance;
    font-size: var(--text-4xl);
    line-height: 1.15;
  }

  /* Títulos de subseção (Otimize / Fidelize) — maiores no mobile */
  .visual-section .feature-title {
    font-size: var(--text-2xl);
    font-weight: 800;
    line-height: 1.2;
  }

  /* ── 8. PROVA VISUAL Row 1 — Otimize seu Tempo: texto à esq, sem botão ── */
  .visual-section .feature-row:first-child .feature-text {
    text-align: left;
  }

  .visual-section .feature-row:first-child .feature-text .btn {
    display: none;
  }

  .visual-section .feature-row:first-child .feature-title,
  .visual-section .feature-row:first-child .feature-desc {
    text-align: left;
  }

  /* ── 9. PROVA VISUAL Row 2 — Fidelize: texto à esq, botão após imagem ── */
  .visual-section .feature-row:nth-child(2) .feature-text {
    text-align: left;
  }

  .visual-section .feature-row:nth-child(2) .feature-title,
  .visual-section .feature-row:nth-child(2) .feature-desc {
    text-align: left;
  }

  .feature-btn--desktop-only {
    display: none !important;
  }

  /* Centraliza o container da imagem + botão mobile */
  .visual-section .feature-row:nth-child(2) .feature-image {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .feature-btn--mobile-only {
    display: inline-flex !important;
    margin-top: 1.5rem;
  }

  /* ── 10. SEÇÃO INTERATIVA — Mockup move para abaixo dos cards ── */
  .interactive-grid {
    display: flex;
    flex-direction: column;
  }

  .interactive-content {
    order: 1;
  }

  .interactive-mockup {
    order: 2;
  }

  .interactive-title {
    font-size: var(--text-4xl);
    line-height: 1.15;
    text-align: left;
    text-wrap: balance;
  }

  /* ── 11. DIFERENCIAIS — Título maior no mobile ── */
  #diferenciais .section-title {
    font-size: var(--text-4xl);
    line-height: 1.15;
    text-wrap: balance;
  }

  /* ── 12. SETUP — Imagem mobile-only visível; original oculto ── */
  .setup-img--mobile-only {
    display: block !important;
    visibility: visible !important;
    width: 100%;
    margin-top: var(--space-8);
    border-radius: var(--radius-xl);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
  }

  /* Ocultar a imagem original no mobile (dentro do setup-visual) */
  .setup-visual {
    display: none;
  }

  /* ── 13. SETUP — Label, título e descrição centralizados ── */
  .setup-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .setup-content__title {
    text-align: center;
    text-wrap: balance;
    font-size: var(--text-2xl);
  }

  .setup-content .section-subtitle {
    text-align: center;
  }

  /* Steps da timeline: texto à esquerda (sobrescreve o center do pai) */
  .setup-step h3,
  .setup-step p {
    text-align: left;
  }

  /* ── 14. SETUP — Botão "COMEÇAR AGORA" e frases centralizados ── */
  .setup-cta-wrapper {
    align-items: center;
    text-align: center;
  }

  /* ── 15. MODELO COMERCIAL — Título centralizado + highlight já no HTML ── */
  .pricing-section__title {
    text-align: center;
    text-wrap: balance;
    font-size: var(--text-4xl);
    line-height: 1.15;
  }

  /* ── 16. PRÉ-FAQ — Reduz espaço superior da seção e da logo no mobile ── */
  .conversion-section {
    padding-top: var(--space-4); /* era space-16 (4rem) → agora space-4 (1rem) */
  }

  .conversion-logo {
    height: auto;
    width: 70%;
    max-width: 280px;
    margin-top: 0;
  }

  /* ── 17. PRÉ-FAQ — Título maior + highlight mais escuro no fundo branco ── */
  .conversion-section .section-title {
    text-wrap: balance;
    font-size: var(--text-4xl);
    line-height: 1.15;
  }

  /* Destaque "hoje", "organizado" e "profissional" — cor mais escura para contraste no fundo branco */
  .conversion-section .section-title .highlight-cyan {
    color: var(--color-cyan-600);
  }

  /* ── 18. FAQ — Borda de destaque nos cards ── */
  .faq-card--featured {
    border-color: var(--color-cyan-500);
    box-shadow: 0 0 0 2px rgba(0, 191, 166, 0.12);
  }

  /* ── 19. FAQ — Widget "Ainda ficou com dúvida?" com borda de destaque ── */
  .faq-support__content {
    border: 2px solid var(--color-cyan-500);
    box-shadow: 0 0 0 4px rgba(0, 191, 166, 0.08);
  }

  /* ── 20. CTA FINAL — Título centralizado + highlights já no HTML ── */
  .cta-final__title {
    text-wrap: balance;
    font-size: var(--text-2xl);
    text-align: center;
  }

  /* ── 21. CTA FINAL — Ocultar "Implantação assistida" no mobile ── */
  .cta-trust-hide-mobile {
    display: none;
  }

  /* ── Ajustes gerais de seção no mobile ── */
  .section-title {
    text-wrap: balance;
  }

  /* ── SEÇÃO DOR — Título maior no mobile ── */
  .pain-section .section-title {
    font-size: var(--text-4xl);
    line-height: 1.15;
  }

  /* ── Seção de authority/segmentação: label e título centralizados ── */
  .authority-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .authority-title {
    text-align: center;
    text-wrap: balance;
    font-size: var(--text-4xl);
    line-height: 1.15;
  }

  .benefit-list {
    align-items: flex-start;
  }

}