/* ============================================================
   DiBem — Design System & Landing Page Styles
   Baseado no Style Guide Oficial da Marca
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================
   1. TOKENS / VARIÁVEIS CSS
   ============================================================ */
:root {
  /* Blue */
  --blue-50: #EEF3FF;
  --blue-100: #DFF3FF;
  --blue-200: #B8E9FF;
  --blue-300: #67D3FF;
  --blue-400: #4A9AFF;
  --blue-500: #305DFF;
  --blue-600: #2244D4;
  --blue-700: #1630A8;
  --blue-800: #0C1E7C;
  --blue-900: #060E50;

  /* Red */
  --red-50: #FFF2F2;
  --red-100: #FFD6D5;
  --red-500: #EE1414;
  --red-600: #C20F0F;
  --red-700: #960B0B;

  /* Blue Gray */
  --blue-gray-50: #F0F4F8;
  --blue-gray-100: #D9E2EC;
  --blue-gray-200: #BCCCDC;
  --blue-gray-300: #9FB3C8;
  --blue-gray-400: #829AB1;
  --blue-gray-500: #627D98;
  --blue-gray-600: #486581;
  --blue-gray-700: #334E68;
  --blue-gray-800: #243B53;
  --blue-gray-900: #102A43;

  /* Amber */
  --amber-50: #FFFBEA;
  --amber-100: #FFF3C0;
  --amber-200: #FFE478;
  --amber-500: #FFCC28;
  --amber-600: #D4900A;

  /* Base */
  --white: #FFFFFF;
  --black: #111111;

  /* Typography */
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-py: 56px;
  --section-py-sm: 48px;
  --container-max: 1200px;
  --container-px: 24px;
  --gap-sm: 16px;
  --gap-md: 24px;
  --gap-lg: 32px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(16, 42, 67, 0.08), 0 1px 2px rgba(16, 42, 67, 0.06);
  --shadow-md: 0 4px 16px rgba(16, 42, 67, 0.10), 0 2px 6px rgba(16, 42, 67, 0.06);
  --shadow-lg: 0 12px 40px rgba(16, 42, 67, 0.12), 0 4px 16px rgba(16, 42, 67, 0.08);
  --shadow-blue: 0 8px 32px rgba(48, 93, 255, 0.25);

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #060E50 0%, #1630A8 40%, #305DFF 75%, #67D3FF 100%);
  --gradient-blue: linear-gradient(135deg, #305DFF 0%, #67D3FF 55%, #1630A8 100%);
  --gradient-cta: linear-gradient(135deg, #0C1E7C 0%, #305DFF 100%);

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

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--blue-gray-900);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

section[id] {
  scroll-margin-top: 88px;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

/* ============================================================
   3. LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  width: 100%;
}

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

.section--alt {
  background-color: #F0F4F8;
}

.section--dark {
  background: var(--blue-gray-900);
  color: var(--white);
}

/* ============================================================
   4. TYPOGRAPHY
   ============================================================ */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.heading-lg {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.heading-md {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  line-height: 1.3;
}

.body-lg {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
}

.body-md {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.body-sm {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--blue-500);
  color: var(--white);
  border-color: var(--blue-500);
  box-shadow: none;
}

.btn--primary:hover {
  background: var(--blue-600);
  border-color: var(--blue-600);
  transform: translateY(-2px);
  box-shadow: none;
}

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

.btn--secondary {
  background: var(--white);
  color: var(--blue-600);
  border-color: var(--blue-200);
}

.btn--secondary:hover {
  background: var(--blue-50);
  border-color: var(--blue-400);
  transform: translateY(-1px);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.btn--lg {
  padding: 18px 36px;
  font-size: 16px;
  border-radius: var(--radius-full);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  box-shadow: none;
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
  color: var(--white);
}

/* ============================================================
   6. BADGES & TAGS
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge--blue {
  background: var(--blue-50);
  color: var(--blue-600);
  border: 1px solid var(--blue-200);
}

.badge--amber {
  background: var(--amber-50);
  color: var(--amber-600);
  border: 1px solid var(--amber-200);
}

.badge--red {
  background: var(--red-50);
  color: var(--red-700);
  border: 1px solid var(--red-100);
}

.badge--white {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

/* ============================================================
   7. CARDS
   ============================================================ */
.card {
  background: var(--white);
  border: 1px solid var(--blue-gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--blue-200);
}

.card__icon {
  width: 48px;
  height: 48px;
  background: var(--blue-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue-500);
  flex-shrink: 0;
}

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

.card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-gray-900);
  margin-bottom: 10px;
}

.card__body {
  font-size: 15px;
  color: var(--blue-gray-600);
  line-height: 1.6;
}

/* ============================================================
   8. SECTION HEADER
   ============================================================ */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.section-header .badge {
  margin-bottom: 16px;
}

.section-header .badge,
.hero__eyebrow .badge,
.cta-final__inner > .badge,
.quem-somos__content > .badge,
.solucao__content > .badge,
.nr01__content > .badge,
.problema__header .badge,
.faq__cta-text > .badge,
.facilidades__left .badge {
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  border-radius: 0;
  font-size: 16px;
  letter-spacing: 0.1em;
}

.solucao__content > .badge,
.nr01__content > .badge {
  margin-bottom: 0;
}

.section-header .badge svg,
.hero__eyebrow .badge svg,
.cta-final__inner > .badge svg,
.quem-somos__content > .badge svg,
.facilidades__left .badge svg {
  display: none;
}

.section-header .badge.badge--white,
.hero__eyebrow .badge.badge--white,
.cta-final__inner > .badge.badge--white,
.quem-somos__content > .badge.badge--white,
.faq__cta-text > .badge.badge--white,
.facilidades__left .badge.badge--white {
  color: rgba(255, 255, 255, 0.78);
}

.section-header .badge {
  font-size: 16px;
}

.hero__eyebrow .badge {
  font-size: 16px;
}

.section-header h2 {
  margin-bottom: 16px;
  color: var(--blue-gray-900);
}

.section-header p {
  color: var(--blue-gray-600);
  font-size: 18px;
  line-height: 1.7;
  text-wrap: balance;
}

/* ============================================================
   9. NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: all var(--transition-base);
}

#navbar.transparent {
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(188, 204, 220, 0.8);
  box-shadow: 0 10px 28px rgba(16, 42, 67, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.navbar__inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 84px;
  gap: 28px;
}

.navbar__logo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  position: relative;
}

.navbar__logo-img {
  display: block;
  width: auto;
  height: 38px;
}

.navbar__logo-img--dark {
  display: none;
}

.navbar__logo svg {
  height: 36px;
  width: auto;
}

.navbar__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.navbar__links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color var(--transition-fast);
  letter-spacing: -0.01em;
  position: relative;
  white-space: nowrap;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--blue-300);
  transform: translateX(-50%);
  transition: width var(--transition-base);
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--white);
}

.navbar__links a.active {
  font-weight: 600;
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
  width: 100%;
}

#navbar.scrolled .navbar__links a {
  color: var(--blue-gray-800);
}

#navbar.scrolled .navbar__links a::after {
  background: var(--blue-500);
}

#navbar.scrolled .navbar__links a:hover {
  color: var(--blue-gray-900);
}

#navbar.scrolled .navbar__links a.active {
  color: #305DFF;
  font-weight: 600;
}

#navbar.scrolled .navbar__links a.active::after {
  background: #305DFF;
  width: 100%;
}

.navbar__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-shrink: 0;
}

.navbar__actions .btn {
  min-height: 40px;
}

/* Dropdown Entrar */
.dropdown {
  position: relative;
  display: inline-block;
}

#nav-entrar {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: color var(--transition-fast);
}

#nav-entrar:hover,
.dropdown.open #nav-entrar {
  background: transparent;
  border-color: transparent;
  transform: none;
  color: var(--white);
}

.dropdown-arrow {
  transition: transform var(--transition-fast);
}

.dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

#navbar.scrolled #nav-entrar {
  color: var(--blue-gray-800);
}

#navbar.scrolled #nav-entrar:hover,
#navbar.scrolled .dropdown.open #nav-entrar {
  color: var(--blue-gray-900);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--blue-gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  min-width: 160px;
  display: none;
  flex-direction: column;
  z-index: 1010;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.dropdown.open .dropdown-menu {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--blue-gray-800);
  text-align: left;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.dropdown-menu a:hover {
  background: var(--blue-50);
  color: var(--blue-500);
}

#nav-teste {
  padding: 0 20px;
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.82);
  box-shadow: none;
}

#nav-teste:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

#navbar.scrolled #nav-teste {
  background: #FFCC28;
  color: var(--black);
  border-color: #FFCC28;
  box-shadow: none;
}

#navbar.scrolled #nav-teste:hover {
  background: #F0BD18;
  color: var(--black);
  border-color: #F0BD18;
}

#hero-cta-teste {
  background: #FFCC28;
  color: var(--black);
  border-color: #FFCC28;
  box-shadow: none;
}

#hero-cta-teste:hover {
  background: #F0BD18;
  color: var(--black);
  border-color: #F0BD18;
  box-shadow: none;
}

#hero-cta-video {
  padding: 0;
  background: transparent;
  color: var(--white);
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  font-size: 15px;
  font-weight: 500;
}

#hero-cta-video:hover {
  background: transparent;
  color: var(--white);
  border-color: transparent;
  transform: none;
  box-shadow: none;
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.navbar__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

#navbar.scrolled .navbar__toggle span {
  background: var(--blue-gray-900);
}

#navbar.scrolled .navbar__logo-img--light,
body:has(.navbar__toggle.open) #navbar .navbar__logo-img--light {
  display: none;
}

#navbar.scrolled .navbar__logo-img--dark,
body:has(.navbar__toggle.open) #navbar .navbar__logo-img--dark {
  display: block;
}

/* Hamburger lines escuras quando menu aberto */
body:has(.navbar__toggle.open) #navbar .navbar__toggle span {
  background: var(--blue-gray-900);
}

/* ============================================================
   10. HERO SECTION
   ============================================================ */
#hero {
  position: relative;
  min-height: 80vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
  isolation: isolate;
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(103, 211, 255, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(48, 93, 255, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(22, 48, 168, 0.2) 0%, transparent 40%);
}

#hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(219, 233, 255, 0.28) 34%, rgba(255,255,255,1) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 64px auto 0;
  padding: 64px var(--container-px);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 620px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  line-height: 62px;
  letter-spacing: -0.03em;
  color: var(--white);
}

.hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 540px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
  flex-wrap: wrap;
}

.hero__trust-icons {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero__trust-icon {
  width: 8px;
  height: 8px;
  background: var(--amber-500);
  border-radius: 50%;
}

.hero__trust p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* Hero visual (right side) */
.hero__right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__collage {
  width: 100%;
  max-width: 620px;
  position: relative;
}

.hero__stat-card,
.hero__list-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 50px rgba(6, 14, 80, 0.18);
}

.hero__image-card {
  border-radius: 20px;
  overflow: hidden;
  border: none;
  box-shadow: none;
}

.hero__stat-card,
.hero__list-card {
  background: rgba(255,255,255,0.96);
  color: var(--blue-gray-900);
}

.hero__stat-card {
  padding: 28px 24px 22px;
}

.hero__stat-label {
  font-size: 15px;
  color: var(--blue-gray-500);
  margin-bottom: 14px;
}

.hero__stat-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.hero__stat-number {
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero__stat-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #dbeafe;
  color: #1d6edb;
  font-size: 13px;
  font-weight: 600;
}

.hero__mini-chart {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 10px;
  height: 160px;
  padding: 0;
}

.hero__mini-bar {
  display: flex;
  flex-direction: column-reverse;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(16, 42, 67, 0.06);
}

.hero__mini-segment {
  display: block;
  width: 100%;
}

.hero__mini-segment--good {
  background: #3B8CF5;
}

.hero__mini-segment--warn {
  background: #facc15;
}

.hero__mini-segment--danger {
  background: #ef4444;
}

.hero__image-card {
  background: rgba(255,255,255,0.08);
  min-height: 0;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.hero__image-card--feature {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 520px;
}

.hero__selo-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  z-index: 3;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 4px 12px rgba(16, 42, 67, 0.12));
}

.hero__stat-card--overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  width: auto;
  z-index: 2;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
}

.hero__stat-card--overlay .hero__stat-label {
  margin-bottom: 6px;
  font-size: 13px;
}

.hero__stat-card--overlay .hero__stat-row {
  margin-bottom: 0;
  gap: 10px;
}

.hero__stat-card--overlay .hero__stat-number {
  font-size: 28px;
}

.hero__stat-card--overlay .hero__stat-badge {
  font-size: 11px;
  padding: 5px 10px;
}

.hero__stat-card--overlay .hero__mini-chart {
  height: 56px;
  gap: 6px;
  padding: 0;
  border-bottom: none;
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 130px;
}

.hero__stat-card--overlay .hero__mini-chart-labels {
  display: none;
}

.hero__list-tabs {
  display: flex;
  gap: 24px;
  padding: 0 4px 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--blue-gray-100);
  font-size: 14px;
  color: var(--blue-gray-500);
}

.hero__list-tabs .active {
  color: var(--blue-500);
  font-weight: 600;
  position: relative;
}

.hero__list-tabs .active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue-500);
}

.hero__list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 4px;
}

.hero__list-item + .hero__list-item {
  border-top: 1px solid var(--blue-gray-100);
}

.hero__list-item strong {
  display: block;
  font-size: 15px;
  line-height: 1.3;
  margin-bottom: 3px;
}

.hero__list-item span {
  display: block;
  font-size: 13px;
  color: var(--blue-gray-500);
}

.hero__list-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(180deg, #ffcc28 0%, #d4900a 100%);
}

.hero__list-avatar--blue {
  background: linear-gradient(180deg, #67d3ff 0%, #305dff 100%);
}

.hero__photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  flex: 1 1 auto;
}

.hero__mockup {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 28px;
  width: 100%;
  max-width: 460px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 32px 80px rgba(6, 14, 80, 0.4);
}

.mockup__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup__dots {
  display: flex;
  gap: 6px;
}

.mockup__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup__dot--red { background: #EE1414; opacity: 0.8; }
.mockup__dot--yellow { background: #FFCC28; opacity: 0.8; }
.mockup__dot--green { background: #22C55E; opacity: 0.8; }

.mockup__title-bar {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
  font-weight: 500;
  flex: 1;
  text-align: center;
}

.mockup__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.mockup__stat {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 16px;
}

.mockup__stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 6px;
}

.mockup__stat-value {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.mockup__stat-value.risk { color: var(--red-500); }
.mockup__stat-value.safe { color: #4ADE80; }
.mockup__stat-value.warn { color: var(--amber-500); }

.mockup__chart {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 12px;
}

.mockup__chart-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
}

.mockup__bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
}

.mockup__bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  transition: height 0.5s ease;
}

.mockup__weeks {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  gap: 4px;
}

.mockup__week-label {
  font-size: 9px;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
  text-align: center;
  flex: 1;
}

.mockup__alert {
  background: rgba(238, 20, 20, 0.12);
  border: 1px solid rgba(238, 20, 20, 0.25);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mockup__alert-dot {
  width: 8px;
  height: 8px;
  background: var(--red-500);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.mockup__alert-text {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* ============================================================
   11. PROBLEMA SECTION
   ============================================================ */
#problema {
  background: var(--white);
  padding: var(--section-py) 0 112px;
}

.problema__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.problema__header {
  margin-bottom: 0;
  text-align: left;
  position: sticky;
  top: 120px;
}

.problema__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.problema__tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f0f4f8;
  color: var(--blue-gray-800);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  border: 1px solid var(--blue-gray-100);
}

.problema__header p,
.problema__header h2,
.problema__header .badge {
  text-align: left;
}

.problema__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.problema__card {
  background: #F0F4F8;
  border: none;
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.problema__card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.problema__number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFCC28;
  color: #000000;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
  border: none;
}

.problema__card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-gray-900);
  line-height: 1.3;
  margin-bottom: 0;
}

.problema__card-body {
  font-size: 14px;
  color: var(--blue-gray-600);
  line-height: 1.6;
}

/* ============================================================
   12. SOLUÇÃO SECTION
   ============================================================ */
#solucao {
  background: var(--white);
  padding: 0 0 112px;
}

.solucao__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.solucao__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.solucao__content {
  order: 2;
}

.solucao__visual {
  order: 1;
}

.solucao__content h2 {
  color: var(--blue-gray-900);
}

.solucao__content p {
  font-size: 17px;
  color: var(--blue-gray-600);
  line-height: 1.7;
}

.solucao__content .solucao__highlight {
  color: var(--blue-gray-800);
  font-weight: 600;
}

.solucao__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.solucao__feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(159, 179, 200, 0.28);
}

.solucao__feature-icon {
  width: 36px;
  height: 36px;
  background: var(--blue-500);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  margin-top: 2px;
}

.solucao__feature-icon svg {
  width: 18px;
  height: 18px;
}

.solucao__feature-content h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-gray-900);
  margin-bottom: 4px;
}

.solucao__feature-content p {
  font-size: 14px;
  color: var(--blue-gray-600);
  line-height: 1.5;
}

.solucao__visual {
  display: flex;
  justify-content: center;
}

.metodologia-card {
  --week-cycle-duration: 3000ms;
  background: var(--white);
  border: 1px solid var(--blue-gray-100);
  border-radius: var(--radius-xl);
  padding: 32px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.metodologia-card__header {
  margin-bottom: 28px;
  text-align: center;
}

.metodologia-card__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--blue-gray-900);
  margin-bottom: 4px;
}

.metodologia-card__subtitle {
  font-size: 14px;
  color: var(--blue-gray-500);
  margin-top: 20px;
  text-align: center;
}

.semanas {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.semana {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 104px;
  align-items: center;
  gap: 14px;
  min-height: 112px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: all var(--transition-base);
}

.semana::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(48, 93, 255, 0.12), rgba(103, 211, 255, 0.16));
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
  pointer-events: none;
}

.semana--active {
  background: var(--blue-50);
  border-color: var(--blue-200);
}

.semana--active::before {
  opacity: 1;
  animation: semana-progress var(--week-cycle-duration) linear forwards;
}

.semana--completed {
  background: #eef8f2;
  border-color: #b7e4c7;
}

.semana__number {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.semana--active .semana__number {
  background: var(--blue-500);
  color: var(--white);
}

.semana:not(.semana--active) .semana__number {
  background: var(--blue-gray-100);
  color: var(--blue-gray-500);
}

.semana__info {
  position: relative;
  z-index: 1;
  flex: 1;
}

.semana__label {
  font-size: 16px;
  font-weight: 600;
  color: var(--blue-gray-900);
  margin-bottom: 2px;
}

.semana__desc {
  font-size: 14px;
  color: var(--blue-gray-500);
}

.semana__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  width: 104px;
  min-width: 104px;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  background: #e8f0fb;
  color: var(--blue-gray-600);
  white-space: nowrap;
  justify-self: end;
}

.semana:not(.semana--active):not(.semana--completed) .semana__tag {
  background: #e8f0fb;
  color: var(--blue-gray-600);
}

.semana--active .semana__tag {
  background: var(--blue-500);
  color: var(--white);
}

.semana--completed .semana__number {
  background: #22c55e;
  color: var(--white);
}

.semana--completed .semana__tag {
  background: #dcfce7;
  color: #166534;
}

@keyframes semana-progress {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

/* ============================================================
   13. DIFERENCIAIS SECTION
   ============================================================ */
#diferenciais {
  position: relative;
  background:
    radial-gradient(circle at 18% 24%, rgba(184, 233, 255, 0.16) 0%, transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(74, 154, 255, 0.18) 0%, transparent 26%),
    radial-gradient(circle at 68% 76%, rgba(22, 48, 168, 0.18) 0%, transparent 28%),
    linear-gradient(135deg, #060E50 0%, #1630A8 42%, #305DFF 78%, #67D3FF 100%);
  background-size: auto, auto, auto, auto;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-position: center;
  padding: 112px 0;
  overflow: hidden;
}

#diferenciais .section-header h2 {
  color: var(--white);
}

#diferenciais .section-header p {
  color: rgba(255, 255, 255, 0.75);
}

.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

#diferenciais .card {
  background: var(--white);
  border: 1px solid var(--blue-gray-100);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

#diferenciais .section-header .badge {
  color: #FEBF49;
}

/* ============================================================
   14. COMO FUNCIONA
   ============================================================ */
#como-funciona {
  background: var(--blue-gray-50);
  padding: 112px 0 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: linear-gradient(90deg, var(--blue-200), var(--blue-400), var(--blue-200));
  z-index: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.step__number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  box-shadow: var(--shadow-blue);
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.step:hover .step__number {
  transform: scale(1.08);
}

.step__content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--blue-gray-900);
  margin-bottom: 10px;
}

.step__content p {
  font-size: 15px;
  color: var(--blue-gray-600);
  line-height: 1.6;
}

.como-funciona__image {
  margin: 32px auto 0;
  width: 100%;
}

.como-funciona__img {
  width: 100%;
  height: auto;
  display: block;
  transform: translate3d(0, var(--como-parallax-y, 0px), 0) scale(0.94);
  transform-origin: center bottom;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.como-funciona__image.visible .como-funciona__img {
  transform: translate3d(0, var(--como-parallax-y, 0px), 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .como-funciona__img,
  .como-funciona__image.visible .como-funciona__img {
    transform: none;
    transition: none;
  }
}

/* ============================================================
   15. IMPACTO SECTION (STATS)
   ============================================================ */
#impacto {
  background: var(--white);
  color: var(--blue-gray-900);
  padding: 112px 0;
}

/* Scroll Pinning (Desktop only) */
@media (min-width: 1025px) {
  #impacto.impacto-scroll-wrapper {
    height: 260vh;
    position: relative;
    padding: 0;
  }

  #impacto .impacto__sticky {
    position: sticky;
    top: 96px;
    height: calc(100vh - 96px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
    box-sizing: border-box;
  }

  #impacto .impacto__sticky .container {
    margin-top: auto;
    margin-bottom: auto;
  }

  #impacto .section-header {
    margin-bottom: 24px;
  }
}

.impacto__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
  margin-top: 20px;
}

.impacto__steps {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 16px;
  height: 100%;
}

.impacto__step {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  background: var(--blue-gray-50);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  text-align: left;
  cursor: pointer;
  width: 100%;
  outline: none;
  font-family: inherit;
  transition: all var(--transition-base);
}

.impacto__step:not(.active):hover {
  background: var(--blue-gray-100);
}

.impacto__step.active {
  background: var(--white);
  border-color: #305DFF;
  box-shadow: var(--shadow-md);
}

.impacto__step-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--blue-gray-200);
  color: var(--blue-gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.impacto__step.active .impacto__step-icon {
  background: var(--white);
  border-color: #305DFF;
  color: #305DFF;
}

.impacto__step-text h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-gray-900);
  margin-bottom: 6px;
}

.impacto__step-text p {
  font-size: 14px;
  color: var(--blue-gray-500);
  line-height: 1.5;
}

.impacto__display {
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 18% 24%, rgba(184, 233, 255, 0.16) 0%, transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(74, 154, 255, 0.18) 0%, transparent 26%),
    radial-gradient(circle at 68% 76%, rgba(22, 48, 168, 0.18) 0%, transparent 28%),
    linear-gradient(135deg, #10259C 0%, #1630A8 42%, #305DFF 78%, #67D3FF 100%);
  background-size: 60px 60px, 60px 60px, auto, auto, auto, auto;
  background-repeat: repeat, repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  background-position: center;
  border-radius: var(--radius-xl);
  padding: 24px;
  border: none;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.impacto__stats-group {
  display: none;
  opacity: 0;
  width: 100%;
  transform: translateY(10px);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.impacto__stats-group.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.impacto__stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stat-card {
  background: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.stat-card:hover {
  transform: translateY(-2px);
}

.stat-card__number {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 800;
  color: var(--blue-500);
  line-height: 1.2;
}

.stat-card__number--text {
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.2;
}

.stat-card__label {
  font-size: 14px;
  color: var(--blue-gray-600);
  line-height: 1.5;
  flex-grow: 1;
}

.stat-card__source {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--blue-gray-400);
  font-weight: 600;
}

/* ============================================================
   16. PLANOS SECTION
   ============================================================ */
#planos {
  background: var(--blue-gray-50);
}

.planos__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.plano-card {
  background: var(--white);
  border: 2px solid var(--blue-gray-100);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.plano-card--featured {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(48, 93, 255, 0.08), var(--shadow-lg);
}

.plano-card__badge {
  position: absolute;
  top: -1px;
  right: 28px;
  background: var(--blue-500);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.plano-card__icon {
  width: 56px;
  height: 56px;
  background: var(--blue-50);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-500);
}

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

.plano-card--featured .plano-card__icon {
  background: var(--blue-500);
  color: var(--white);
}

.plano-card__name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-500);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 4px;
}

.plano-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--blue-gray-900);
}

.plano-card__desc {
  font-size: 15px;
  color: var(--blue-gray-600);
  line-height: 1.6;
}

.plano-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.plano-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--blue-gray-700);
}

.plano-card__feature-check {
  width: 20px;
  height: 20px;
  background: var(--blue-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.plano-card--featured .plano-card__feature-check {
  background: var(--blue-500);
}

.plano-card__feature-check svg {
  width: 12px;
  height: 12px;
  color: var(--blue-500);
}

.plano-card--featured .plano-card__feature-check svg {
  color: var(--white);
}

.plano-card__cta {
  width: 100%;
}

/* ============================================================
   17. NR-01 SECTION
   ============================================================ */
#nr01 {
  background: #ffffff;
  padding: 112px 0;
}

.nr01__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.nr01__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nr01__content--solution {
  gap: 20px;
}

.nr01__content--risks {
  gap: 20px;
}

.nr01__content-title {
  color: var(--blue-gray-900);
  margin: 0;
}

.nr01__content h2 {
  color: var(--blue-gray-900);
}

.nr01__content p {
  font-size: 17px;
  color: var(--blue-gray-600);
  line-height: 1.7;
}

.nr01__risks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nr01__risk {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 96px;
  padding: 16px 20px;
  background: var(--blue-gray-50);
  border: none;
  border-radius: var(--radius-lg);
  width: 100%;
  box-sizing: border-box;
  transition: all var(--transition-base);
}

.nr01__risk:hover {
  background: var(--blue-gray-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.nr01__risk-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #FEBF49;
  color: var(--black);
  flex-shrink: 0;
}

.nr01__risk-icon {
  width: 14px;
  height: 14px;
  color: inherit;
  flex-shrink: 0;
}

.nr01__risk-text {
  font-size: 16px;
  color: var(--blue-gray-800);
  font-weight: 500;
  line-height: 1.5;
}

.nr01__solution {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nr01__sol-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 96px;
  padding: 16px 20px;
  background: var(--blue-gray-50);
  border: none;
  border-radius: var(--radius-lg);
  width: 100%;
  box-sizing: border-box;
  transition: all var(--transition-base);
}

.nr01__sol-item:hover {
  background: var(--blue-gray-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.nr01__sol-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #22C55E;
  color: var(--white);
  flex-shrink: 0;
}

.nr01__sol-icon {
  width: 13px;
  height: 13px;
  color: inherit;
  flex-shrink: 0;
}

.nr01__sol-text {
  font-size: 16px;
  color: var(--blue-gray-800);
  font-weight: 500;
  line-height: 1.5;
}

.nr01__visual {
  display: flex;
  justify-content: center;
}

.nr01__selo-img {
  max-width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 10px 25px rgba(16, 42, 67, 0.08));
}

.compliance-badge {
  background: var(--blue-gray-50);
  border: 1px solid var(--blue-gray-100);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  max-width: 360px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.compliance-badge__icon {
  width: 80px;
  height: 80px;
  background: var(--blue-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--white);
}

.compliance-badge__icon svg {
  width: 40px;
  height: 40px;
}

.compliance-badge__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--blue-gray-900);
  margin-bottom: 8px;
}

.compliance-badge__subtitle {
  font-size: 14px;
  color: var(--blue-gray-600);
  line-height: 1.5;
  margin-bottom: 24px;
}

.compliance-badge__items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.compliance-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--blue-gray-700);
  font-weight: 500;
}

.compliance-item__dot {
  width: 8px;
  height: 8px;
  background: var(--blue-500);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   18. FAQ SECTION
   ============================================================ */
#faq {
  background: var(--blue-gray-50);
  padding: 112px 0;
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__item {
  background: var(--white);
  border: 1px solid #eaecf0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(16, 24, 40, 0.05);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.faq__item.active {
  border-color: #eaecf0;
  box-shadow: 0 1px 3px rgba(16, 24, 40, 0.05);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 32px;
  cursor: pointer;
  user-select: none;
  background: transparent;
  border: none;
  width: 100%;
}

.faq__question-text {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--blue-gray-900);
  line-height: 1.4;
  flex: 1;
  text-align: left;
}

.faq__icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-gray-500);
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.faq__item.active .faq__icon {
  transform: rotate(180deg);
  color: var(--blue-gray-900);
}

.faq__icon svg {
  width: 20px;
  height: 20px;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
}

.faq__item.active .faq__answer {
  max-height: 400px;
}

.faq__answer-inner {
  padding: 0 32px 24px;
  font-size: 16px;
  color: var(--blue-gray-600);
  line-height: 1.7;
}
/* ============================================================
   FAQ CTA BANNER (dentro do FAQ em index.html e sobre.html)
   ============================================================ */
.faq__cta-banner {
  margin-top: 64px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #1D6EE8 0%, #3B8CF5 45%, #64B0FF 100%);
  position: relative;
  overflow: hidden;
}

.faq__cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 60%, rgba(103, 211, 255, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(48, 93, 255, 0.14) 0%, transparent 40%);
  pointer-events: none;
}

.faq__cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  z-index: 1;
}

.faq__cta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 56px 48px;
}

.faq__cta-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin: 0;
}

.faq__cta-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
}

.faq__cta-text .btn--primary {
  background: #FFCC28;
  color: #102A43;
  border-color: #FFCC28;
}

.faq__cta-text .btn--primary:hover {
  background: #FFD84D;
  border-color: #FFD84D;
}

.faq__cta-image {
  height: 100%;
  min-height: 260px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  position: relative;
}

.faq__cta-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Sobre page — hero top padding to clear fixed navbar */
.sobre-hero {
  padding-top: calc(96px + 112px);
}

/* ============================================================
   19. CTA FINAL
   ============================================================ */
#cta-final {
  background: #305DFF url('public/assets/cta-gradient.svg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

#cta-final::before {
  content: none;
}

.cta-final__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.cta-final__inner h2 {
  color: var(--white);
  font-size: clamp(32px, 4vw, 52px);
}

.cta-final__inner p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.7;
}

.cta-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.cta-final__lgpd {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.cta-final__lgpd svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ============================================================
   20. FOOTER
   ============================================================ */
#footer {
  background: var(--blue-gray-900);
  color: var(--white);
  padding: 64px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: none;
  margin-bottom: 32px;
}

.footer__brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer__logo {
  display: block;
  height: 38px;
  width: auto;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.footer__social a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
}

.footer__social svg {
  width: 18px;
  height: 18px;
}

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   21. ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }

.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* ============================================================
   22. RESPONSIVE
   ============================================================ */

/* Large tablets */
@media (max-width: 1024px) {
  :root {
    --section-py: 80px;
  }

  html,
  section[id] {
    scroll-padding-top: 84px;
    scroll-margin-top: 84px;
  }

  .navbar__inner {
    height: 78px;
    gap: 18px;
  }

  .navbar__links {
    gap: 20px;
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 96px;
    padding-bottom: 64px;
    text-align: center;
    margin: 0 auto;
  }

  .hero__collage {
    max-width: 680px;
    margin: 0 auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__trust {
    justify-content: center;
  }

  .problema__grid,
  .diferenciais__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .cta-final__inner {
    padding: 56px 40px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

/* Tablets */
@media (max-width: 768px) {
  :root {
    --section-py: 64px;
    --container-px: 16px;
  }

  #problema,
  #diferenciais,
  #faq,
  #facilidades,
  #como-funciona,
  #quem-somos,
  #nr01 {
    padding: var(--section-py) 0;
  }

  #solucao {
    padding: 0 0 var(--section-py);
  }

  .navbar__links,
  .navbar__actions {
    display: none;
  }

  .navbar__toggle {
    display: flex;
  }

  .navbar__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    height: 72px;
  }

  #navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(188, 204, 220, 0.9);
    box-shadow: 0 8px 24px rgba(16, 42, 67, 0.08);
  }

  .navbar__logo-img {
    height: 34px;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .section-header p {
    font-size: 16px;
  }

  .hero__content {
    padding: 88px var(--container-px) 56px;
    gap: 32px;
    text-align: left;
  }

  .hero__left,
  .hero__right {
    width: 100%;
  }

  .hero__collage {
    max-width: 560px;
  }

  .hero__image-card--feature {
    min-height: 440px;
  }

  .hero__title {
    max-width: 12ch;
  }

  .hero__subtitle {
    max-width: none;
    font-size: 16px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__trust {
    justify-content: flex-start;
  }

  .solucao__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .problema__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .nr01__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .steps::before {
    display: none;
  }

  .planos__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .problema__grid,
  .diferenciais__grid {
    grid-template-columns: 1fr;
  }

  .social-proof__quotes,
  .stats__grid {
    grid-template-columns: 1fr;
  }

  .impacto__category-label {
    align-items: flex-start;
    line-height: 1.5;
  }

  .testimonial-card__author {
    align-items: flex-start;
  }

  .cta-final__inner {
    padding: 40px 24px;
  }

  .cta-final__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-final__actions .btn {
    width: 100%;
  }

  .footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 560px) {
  .hero__stat-card,
  .hero__image-card {
    border-radius: 16px;
  }

  .hero__image-card--feature {
    aspect-ratio: 0.9 / 1.08;
    min-height: 0;
  }

  .hero__mini-chart {
    gap: 10px;
    height: 128px;
    padding: 0 6px 2px;
  }

  .hero__mini-chart-labels {
    gap: 10px;
    font-size: 11px;
  }

  .hero__stat-card--overlay {
    top: 16px;
    left: 16px;
    width: min(240px, calc(100% - 32px));
    padding: 20px 16px 16px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  :root {
    --section-py: 56px;
  }

  html,
  section[id] {
    scroll-padding-top: 76px;
    scroll-margin-top: 76px;
  }

  .hero__title {
    font-size: 36px;
    line-height: 1.05;
  }

  .stats__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .btn--lg {
    padding: 16px 28px;
    font-size: 15px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .hero__stat-card,
  .hero__image-card {
    border-radius: 18px;
  }

  .hero__image-card--feature {
    min-height: 320px;
  }

  .hero__mini-chart {
    height: 132px;
  }

  .hero__content {
    padding-top: 84px;
    padding-bottom: 48px;
  }

  .hero__eyebrow .badge,
  .hero__trust p {
    font-size: 12px;
  }

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

  .mockup__weeks {
    gap: 2px;
  }

  .social-proof {
    padding: 56px 0;
  }
}

/* ============================================================
   23. MOBILE NAV MENU
   ============================================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: var(--blue-900);
  display: flex;
  flex-direction: column;
  padding: 100px 32px 40px;
  gap: 24px;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color var(--transition-fast);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 20px;
}

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

.mobile-menu .btn {
  margin-top: 12px;
  justify-content: center;
}

/* ============================================================
   24. SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--blue-gray-50);
}

::-webkit-scrollbar-thumb {
  background: var(--blue-gray-300);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--blue-500);
}

/* ============================================================
   25. SELECTION
   ============================================================ */
::selection {
  background: var(--blue-500);
  color: var(--white);
}

/* ============================================================
   26. SOCIAL PROOF BAR
   ============================================================ */
.social-proof {
  background: var(--white);
  padding: 12px 0 64px;
}

.social-proof__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.social-proof__label {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-gray-900);
}

.social-proof__quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.social-proof__quote {
  background: #F5F7FA;
  border: 0;
  border-radius: 26px;
  min-height: 360px;
  padding: 30px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all var(--transition-base);
  box-shadow: none;
}

.social-proof__quote:hover {
  background: #F5F7FA;
}

.social-proof__quote > svg {
  color: #305DFF !important;
}

.social-proof__quote p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--blue-gray-900);
  line-height: 1.55;
  font-style: italic;
  flex: 1;
  margin: 0;
}

.social-proof__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 10px;
  border-top: 0;
}

.social-proof__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}

.social-proof__author-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.social-proof__author strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-gray-900);
}

.social-proof__author span {
  font-size: 13px;
  color: var(--blue-gray-500);
  line-height: 1.4;
}

/* ============================================================
   27. FACILIDADES
   ============================================================ */
#facilidades {
  background: #ffffff;
  padding: 112px 0;
}

.facilidades__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 64px;
  align-items: stretch;
}

.facilidades__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.facilidades__left .badge {
  align-self: flex-start;
}

.facilidades__left h2 {
  margin: 0;
  color: var(--blue-gray-900);
}

.facilidades__desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--blue-gray-600);
  margin: 0;
}

.facilidades__middle {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}

.facilidades__image-container {
  width: 100%;
  max-width: 420px;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(16, 42, 67, 0.1);
  margin: 0;
}

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

.facilidades__right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
}

.facilidade-item {
  display: flex;
  flex-direction: column;
}

.facilidade-item__icon {
  width: 40px;
  height: 40px;
  background: var(--blue-gray-50);
  border: 1px solid var(--blue-gray-100);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #305DFF;
  flex-shrink: 0;
  margin-bottom: 20px;
}

.facilidade-item__icon svg {
  width: 20px;
  height: 20px;
}

.facilidade-item__title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--blue-gray-900);
  margin: 0 0 6px 0;
}

.facilidade-item__body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--blue-gray-600);
  margin: 0;
}



/* ============================================================
   29. TESTIMONIALS CAROUSEL
   ============================================================ */
.testimonials__wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.testimonials__track {
  display: flex;
  transition: transform var(--transition-slow);
  width: 100%;
}

.testimonial-card {
  min-width: 100%;
  background: var(--white);
  border: 1px solid var(--blue-gray-100);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  box-shadow: var(--shadow-md);
}

.testimonial-card__quote {
  flex-shrink: 0;
}

.testimonial-card__text {
  font-size: 20px;
  line-height: 1.7;
  color: var(--blue-gray-800);
  font-style: italic;
  font-weight: 400;
  quotes: none;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--blue-gray-100);
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-blue);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-gray-900);
}

.testimonial-card__role {
  font-size: 13px;
  color: var(--blue-gray-500);
  margin-top: 2px;
}

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.testimonials__nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--blue-gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-gray-600);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.testimonials__nav:hover {
  background: var(--blue-50);
  border-color: var(--blue-300);
  color: var(--blue-500);
  transform: scale(1.05);
}

.testimonials__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-gray-200);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  padding: 0;
}

.testimonials__dot.active {
  background: var(--blue-500);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   30. QUEM SOMOS
   ============================================================ */
.quem-somos__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.quem-somos__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.quem-somos__content p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
}

.quem-somos__content strong {
  color: var(--white);
}

.quem-somos__list {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.quem-somos__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quem-somos__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.55;
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.quem-somos__item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
}

.quem-somos__item-dot {
  width: 8px;
  height: 8px;
  background: var(--blue-400);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

/* ============================================================
   31. RESPONSIVE — NOVAS SEÇÕES
   ============================================================ */
@media (max-width: 1024px) {
  .social-proof__quotes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    margin: 0;
  }

  .facilidades__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .facilidades__image-container {
    aspect-ratio: 4 / 3;
    max-height: 360px;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .quem-somos__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .testimonial-card {
    padding: 32px;
  }

  .testimonial-card__text {
    font-size: 17px;
  }

  .impacto__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .impacto__display {
    min-height: auto;
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .social-proof__quotes {
    grid-template-columns: 1fr;
  }

  .social-proof__quote {
    min-height: 0;
    padding: 24px;
  }

  .stats__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .impacto__stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stat-card {
    padding: 20px;
  }

  .impacto__step {
    padding: 16px;
    gap: 16px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .testimonial-card__text {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .facilidade-card__step {
    font-size: 48px;
  }
}

/* ============================================================
   32. SHADCN-INSPIRED VISUAL LAYER
   Mantem HTML puro e a mesma estrutura, ajustando a linguagem
   visual para superfícies, bordas e contraste no estilo shadcn.
   ============================================================ */

:root {
  --blue-50: #f8fafc;
  --blue-100: #f1f5f9;
  --blue-200: #e2e8f0;
  --blue-300: #cbd5e1;
  --blue-400: #94a3b8;
  --blue-500: #0f172a;
  --blue-600: #020617;
  --blue-700: #020617;
  --blue-800: #020617;
  --blue-900: #020617;

  --red-50: #fef2f2;
  --red-100: #fee2e2;
  --red-500: #dc2626;
  --red-600: #b91c1c;
  --red-700: #991b1b;

  --blue-gray-50: #F0F4F8;
  --blue-gray-100: #e2e8f0;
  --blue-gray-200: #cbd5e1;
  --blue-gray-300: #94a3b8;
  --blue-gray-400: #64748b;
  --blue-gray-500: #475569;
  --blue-gray-600: #334155;
  --blue-gray-700: #1e293b;
  --blue-gray-800: #0f172a;
  --blue-gray-900: #020617;

  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-500: #d97706;
  --amber-600: #b45309;

  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 18px 40px rgba(15, 23, 42, 0.10);
  --shadow-blue: 0 10px 30px rgba(2, 6, 23, 0.16);

  --gradient-hero: radial-gradient(circle at top, rgba(59, 130, 246, 0.14), transparent 28%), linear-gradient(180deg, #0f172a 0%, #020617 100%);
  --gradient-blue: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  --gradient-cta: linear-gradient(180deg, #111827 0%, #020617 100%);
}

body {
  background: #ffffff;
  color: var(--blue-gray-900);
}

.display-xl,
.display-lg,
.display-md,
.heading-lg,
.heading-md,
.hero__title,
.card__title,
.problema__card-title,
.step__content h3,
.metodologia-card__title,
.testimonial-card__name,
.compliance-badge__title,
.faq__question-text {
  letter-spacing: -0.03em;
}

.btn {
  min-height: 44px;
  border-radius: 999px;
  box-shadow: none;
}

.btn--primary {
  background: #0f172a;
  color: #f8fafc;
  border-color: #0f172a;
  box-shadow: none;
}

.btn--primary:hover {
  background: #020617;
  border-color: #020617;
  box-shadow: none;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #f8fafc;
  border-color: rgba(226, 232, 240, 0.22);
  backdrop-filter: blur(10px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(226, 232, 240, 0.34);
}

.badge {
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.badge--blue,
.badge--amber,
.badge--red {
  background: transparent;
  border: none;
  padding: 0;
  color: #305DFF;
}

.badge--white {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(188, 204, 220, 0.8);
  box-shadow: 0 10px 28px rgba(16, 42, 67, 0.08);
  backdrop-filter: blur(18px);
}

.navbar__links a {
  color: rgba(255, 255, 255, 0.88);
}

.navbar__links a:hover,
.navbar__links a.active {
  color: #ffffff;
}

#hero {
  background:
    linear-gradient(135deg, #060E50 0%, #1630A8 42%, #305DFF 78%, #67D3FF 100%);
  border-bottom: 0;
}

.hero__bg-pattern {
  background-image:
    radial-gradient(circle at 18% 24%, rgba(184, 233, 255, 0.16) 0%, transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(74, 154, 255, 0.18) 0%, transparent 26%),
    radial-gradient(circle at 68% 76%, rgba(22, 48, 168, 0.18) 0%, transparent 28%);
}

.hero__grid-lines {
  display: none;
}

.hero__subtitle {
  color: rgba(239, 243, 255, 0.84);
}

.hero__mockup,
.cta-final__inner,
.testimonial-card,
.card,
.problema__card,
.facilidade-card,
.metodologia-card,
.compliance-badge,
.faq__item,
.solucao__feature,
.stat-item {
  border-style: solid;
}

.mobile-menu {
  border: none;
}

#cta-final,
#footer {
  border: none;
}

.hero__mockup {
  background: rgba(15, 23, 42, 0.72);
  border-color: rgba(148, 163, 184, 0.18);
  box-shadow: 0 20px 50px rgba(2, 6, 23, 0.35);
}

.mockup__stat,
.mockup__chart {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(148, 163, 184, 0.14);
}

.mockup__title-bar,
.mockup__stat-label,
.mockup__chart-label,
.mockup__week-label {
  color: rgba(203, 213, 225, 0.52);
}

.mockup__alert {
  background: rgba(127, 29, 29, 0.28);
  border-color: rgba(248, 113, 113, 0.28);
}

.mockup__alert-text {
  color: rgba(248, 250, 252, 0.78);
}

.card,
.facilidade-card,
.compliance-badge,
.testimonial-card {
  background: #ffffff;
  border-color: var(--blue-gray-200);
  box-shadow: var(--shadow-sm);
}

.metodologia-card {
  background: #F0F4F8;
  border: none;
  box-shadow: none;
}

.metodologia-card .semana--active {
  background: #e2ebff;
  border-color: #cbdcff;
}

.metodologia-card .semana--active .semana__number {
  background: #305DFF;
  color: var(--white);
}

.problema__card {
  background: #F0F4F8;
  border: none;
  box-shadow: none;
}

.card:hover,
.facilidade-card:hover,
.testimonial-card:hover,
.faq__item.active,
.metodologia-card,
.compliance-badge {
  box-shadow: var(--shadow-md);
}

.problema__card::before {
  display: none;
}

.facilidade-card__step {
  color: #e2e8f0;
}

.problema__number {
  background: #FFCC28;
  color: #000000;
}

.card__icon,
.facilidade-card__icon,
.solucao__feature-icon,
.compliance-badge__icon {
  background: #f8fafc;
  border: 1px solid var(--blue-gray-200);
  color: var(--blue-gray-800);
}

.card__icon {
  color: #305DFF;
}

.solucao__feature,
.semana,
.semana--active {
  background: #ffffff;
  border: none;
  box-shadow: none;
}

/* Overrides removed to allow custom card backgrounds */

.step {
  background: transparent;
  border: none;
  box-shadow: none;
}

.quem-somos__item {
  background: #ffffff;
  border: 1px solid var(--blue-gray-200);
  box-shadow: var(--shadow-sm);
}

.semana__label {
  color: var(--blue-gray-900);
}

.semana__desc {
  color: var(--blue-gray-500);
}

.semana__tag {
  background: #FFCC28;
  color: #000;
}

.semana--active .semana__tag {
  background: #FFCC28;
  color: #000;
}

.semana--active .semana__number,
.semana__tag {
  background: #0f172a;
  color: #f8fafc;
  box-shadow: none;
}

.step__number {
  background: #FFCC28;
  color: #000;
  box-shadow: none;
}

.semana:not(.semana--active) .semana__number {
  background: #f8fafc;
  color: var(--blue-gray-700);
  border: 1px solid var(--blue-gray-200);
}

.steps::before {
  background: linear-gradient(90deg, transparent 0%, var(--blue-gray-100) 18%, var(--blue-gray-100) 82%, transparent 100%);
}

#footer {
  position: relative;
  background: #0d1f3f;
}

#cta-final {
  position: relative;
  background: #305DFF url('public/assets/cta-gradient.svg') center/cover no-repeat;
}

#footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

.testimonial-card {
  border-radius: 20px;
}

.faq__icon {
  background: transparent;
  border: none;
  color: var(--blue-gray-500);
}

.faq__item.active .faq__icon {
  background: transparent;
  border-color: transparent;
  color: var(--blue-gray-900);
}

.cta-final__inner {
  max-width: 820px;
  padding: 56px 48px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.14);
  backdrop-filter: blur(10px);
}

.cta-final__inner p,
.cta-final__lgpd {
  color: rgba(226, 232, 240, 0.72);
}

.mobile-menu {
  background: rgba(2, 6, 23, 0.96);
}

.mobile-menu a {
  color: rgba(248, 250, 252, 0.82);
  border-bottom-color: rgba(148, 163, 184, 0.14);
}

#quem-somos.sobre-hero--light {
  background: #ffffff;
}

.quem-somos__item {
  background: rgba(255,255,255,0.04);
  border-color: rgba(148, 163, 184, 0.16);
}

.quem-somos__item:hover {
  background: rgba(255,255,255,0.07);
}

.footer__inner {
  border-bottom-color: rgba(148, 163, 184, 0.14);
}

.footer__links a,
.footer__brand p,
.footer__bottom p,
.footer__legal a {
  color: rgba(203, 213, 225, 0.66);
}

.footer__links a:hover,
.footer__legal a:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .cta-final__inner {
    padding: 32px 20px;
    border-radius: 22px;
  }

  .hero__mockup {
    border-radius: 20px;
  }
}

/* ============================================================
   Yellow CTA reused across sections
   ============================================================ */
.cta-teste {
  background: #FFCC28 !important;
  color: #000 !important;
  border-color: #FFCC28 !important;
  margin-top: 32px;
  align-self: flex-start;
}

.cta-teste:hover {
  background: #FFD84D !important;
  border-color: #FFD84D !important;
  color: #000 !important;
}

.cta-teste-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.cta-teste-wrap .cta-teste {
  margin-top: 0;
  align-self: center;
}

/* Quando o pai já tem gap (flex column), descontar o gap pra ficar exato 32 */
.facilidades__left .cta-teste,
.solucao__content .cta-teste {
  margin-top: 16px;
}

/* ============================================================
   SOBRE — Hero light + mosaic + permite cards
   ============================================================ */
.sobre-hero--light {
  background: #ffffff;
  padding-top: calc(96px + 32px);
  padding-bottom: 80px;
}

.sobre-hero__header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.sobre-hero__header .badge {
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  border-radius: 0;
  font-size: 16px;
  letter-spacing: 0.1em;
}

.sobre-hero__header h1 {
  color: var(--blue-gray-900);
  margin: 0;
  font-size: clamp(32px, 4vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.sobre-hero__slider {
  display: flex;
  gap: 18px;
  margin-bottom: 64px;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.sobre-hero__slider.is-dragging {
  cursor: grabbing;
}

.sobre-hero__track {
  display: flex;
  gap: 18px;
  width: max-content;
  flex-shrink: 0;
  animation: sobreHeroMarquee 48s linear infinite;
  will-change: transform;
}

.sobre-hero__slider:hover .sobre-hero__track {
  animation-play-state: paused;
}

.sobre-hero__photo {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #F0F4F8;
  width: 320px;
  flex: 0 0 auto;
}

.sobre-hero__photo--wide {
  width: 520px;
  aspect-ratio: 16 / 10;
}

.sobre-hero__photo--tall {
  width: 280px;
  aspect-ratio: 3 / 4;
}

.sobre-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

@keyframes sobreHeroMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 18px));
  }
}

.sobre-hero__copy {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  font-size: 16px;
  line-height: 1.7;
  color: var(--blue-gray-700);
}

.sobre-hero__copy strong { color: var(--blue-gray-900); }

.sobre-cases {
  max-width: 720px;
  margin: 40px auto 0;
  display: flex;
  justify-content: center;
}

.sobre-cases__art {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

#permite {
  background: #ffffff;
  padding-top: 8px;
  padding-bottom: 72px;
}

#permite .container {
  max-width: 768px;
}

#permite .section-header {
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: left;
  align-items: flex-start;
}

/* Cards "A DiBem permite" */
.permite__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.permite__card {
  background: #F0F4F8;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: none;
  box-shadow: none;
}

.permite__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #ffffff;
  color: #305DFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.permite__icon svg {
  width: 22px;
  height: 22px;
}

.permite__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-gray-900);
  margin: 0;
}

.permite__body {
  font-size: 14px;
  color: var(--blue-gray-600);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .sobre-hero__slider,
  .sobre-hero__track { gap: 14px; }
  .sobre-hero__photo { width: 260px; }
  .sobre-hero__photo--wide { width: 420px; }
  .sobre-hero__photo--tall { width: 230px; }
  .sobre-cases {
    max-width: 720px;
  }
  #permite .container {
    max-width: 768px;
  }
  .permite__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .sobre-hero__slider,
  .sobre-hero__track { gap: 12px; }
  .sobre-hero__photo,
  .sobre-hero__photo--wide,
  .sobre-hero__photo--tall {
    width: 280px;
    aspect-ratio: 16 / 10;
  }
  .sobre-cases {
    margin-top: 32px;
    max-width: 100%;
  }
  .sobre-cases__art {
    width: 100%;
  }
  #permite .container {
    max-width: 100%;
  }
  .permite__grid { grid-template-columns: 1fr; }
}

/* Remove shadows from all cards */
.card,
.card:hover,
.problema__card,
.problema__card:hover,
.facilidade-card,
.facilidade-card:hover,
.metodologia-card,
.testimonial-card,
.testimonial-card:hover,
.compliance-badge,
.plano-card,
.social-proof__quote,
.stat-item {
  box-shadow: none;
}

/* ============================================================
   RESPONSIVE POLISH — Mobile + Tablet
   Aplicado por último para sobrepor regras anteriores.
   ============================================================ */

/* TABLET (769–1024) */
@media (min-width: 769px) and (max-width: 1024px) {
  :root { --section-py: 88px; }

  .container { padding: 0 32px; }

  .section { padding: 88px 0; }

  #facilidades,
  #nr01,
  #cta-final { padding: 88px 0; }
  #impacto { padding: 88px 0 0; }

  .hero__left {
    text-align: center;
    align-items: center;
    max-width: 720px;
    margin: 0 auto;
  }
  .hero__eyebrow { justify-content: center; }
  .hero__subtitle { max-width: 600px; }
  .hero__actions { justify-content: center; }

  .hero__title { font-size: 52px; line-height: 1.1; }
  .hero__subtitle { font-size: 17px; }

  .display-md { font-size: 36px; line-height: 1.15; }

  .nr01__selo-img {
    width: min(70vw, 380px);
    max-width: min(70vw, 380px);
    max-height: none;
  }

  .nr01__inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .nr01__content--risks { order: 1; }
  .nr01__content--solution { order: 2; }
  .nr01__visual {
    order: 3;
    grid-column: 1 / -1;
    justify-content: center;
    margin-top: 8px;
  }

  .problema__layout,
  .solucao__inner,
  .nr01__inner,
  .facilidades__inner,
  .hero__content { gap: 40px; }

  .solucao__inner {
    grid-template-columns: 1fr !important;
  }
  .solucao__content { order: 1 !important; }
  .solucao__visual { order: 2 !important; }

  .problema__layout {
    display: flex !important;
    flex-direction: column;
    gap: 20px;
  }
  .problema__header {
    display: contents;
  }
  .problema__header > .badge { order: 1; margin-bottom: 0 !important; }
  .problema__header > h2 { order: 2; margin: 0 !important; }
  .problema__header > .problema__tags { order: 3; }
  .problema__header > p { order: 4; margin: 0 !important; }
  .problema__grid { order: 5; margin-top: 8px; }
  .problema__header > .cta-teste { order: 6; margin-top: 8px; }
  .problema__tag { font-size: 11px; padding: 6px 10px; }

  .diferenciais__grid,
  .permite__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .section-header { margin-bottom: 32px; }

  /* Impacto — usar a mesma versão do mobile no tablet */
  .impacto__steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .impacto__display { display: none; }

  .impacto__step {
    width: 100%;
    text-align: left;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 18px 20px !important;
  }
  .impacto__step-icon { margin-bottom: 0; }

  .impacto__steps .impacto__stats-group {
    display: none !important;
    margin-top: -12px;
    margin-bottom: 0;
    padding: 4px 14px 14px;
    background: #305DFF;
    border-radius: 0 0 16px 16px;
  }
  .impacto__steps .impacto__stats-group.active {
    display: block !important;
  }
  .impacto__steps .impacto__stats-grid {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }
  .impacto__steps .stat-card {
    padding: 14px 16px;
    background: #ffffff;
    border-radius: 12px;
  }

  .impacto__step.active {
    background: #305DFF !important;
    border: none !important;
    border-radius: 16px 16px 0 0 !important;
    box-shadow: none !important;
  }
  .impacto__step.active .impacto__step-text h3 {
    color: #ffffff !important;
  }
  .impacto__step.active .impacto__step-text p {
    color: rgba(255, 255, 255, 0.78) !important;
  }
  .impacto__step.active .impacto__step-icon {
    background: rgba(255, 255, 255, 0.16) !important;
    border-color: rgba(255, 255, 255, 0.24) !important;
    color: #ffffff !important;
  }

  .sobre-hero__slider,
  .sobre-hero__track { gap: 14px; }
  .sobre-hero__photo { width: 260px; }
  .sobre-hero__photo--wide { width: 420px; aspect-ratio: 16 / 10; }
  .sobre-hero__photo--tall { width: 230px; }

  /* Hero stat overlay no fundo da imagem */
  .hero__stat-card--overlay {
    top: auto !important;
    bottom: 24px !important;
  }
}

/* MOBILE (≤768) */
@media (max-width: 768px) {
  :root {
    --section-py: 60px;
    --container-px: 20px;
  }

  .sobre-hero--light {
    padding-top: calc(96px + 44px) !important;
  }

  /* Section paddings consistentes — 60px no mobile */
  #hero { min-height: 0; padding: 0; }
  .hero__content { padding: 88px var(--container-px) 60px; gap: 32px; }
  #facilidades { padding: 60px 0; }
  #nr01 { padding: 60px 0; }
  #cta-final { padding: 30px 0; }

  .section { padding: 60px 0; }

  /* Typography scale */
  .hero__title {
    font-size: 42px !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em;
  }
  .hero__subtitle { font-size: 16px; line-height: 1.6; }

  .display-md {
    font-size: 28px !important;
    line-height: 1.2 !important;
    letter-spacing: -0.015em;
  }

  .display-lg { font-size: 32px; line-height: 1.15; }
  .display-xl { font-size: 36px; line-height: 1.1; }
  .heading-lg { font-size: 22px; line-height: 1.25; }

  /* Body text */
  body, p { font-size: 15px; }
  .problema__card-title,
  .card__title,
  .permite__title,
  .facilidade-card__title { font-size: 18px; }
  .problema__card-body,
  .card__body,
  .permite__body { font-size: 14px; line-height: 1.6; }

  /* Section header rítmico */
  .section-header {
    margin-bottom: 28px;
    padding: 0 4px;
  }
  .section-header .badge,
  .badge { font-size: 13px !important; letter-spacing: 0.08em; }

  /* Hero stat overlay — manter compacto e dentro */
  .hero__stat-card--overlay {
    top: auto !important;
    bottom: 16px !important;
    left: 16px;
    right: 16px;
    padding: 14px 16px;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .hero__stat-card--overlay .hero__mini-chart {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    height: 44px;
  }
  .hero__stat-card--overlay .hero__stat-number { font-size: 24px; }

  /* CTA buttons full-width onde fizer sentido visualmente */
  .hero__actions .btn,
  .cta-teste {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 15px;
  }
  .btn--lg { padding: 14px 22px; font-size: 15px; }

  /* Grids stack — garantir */
  .problema__layout,
  .solucao__inner,
  .nr01__inner,
  .facilidades__inner,
  .hero__content,
  .impacto__layout,
  .quem-somos__inner { grid-template-columns: 1fr !important; gap: 28px; }

  /* Solução: no mobile, texto vem primeiro, card depois */
  .solucao__content { order: 1 !important; }
  .solucao__visual { order: 2 !important; }

  /* Facilidades: ordem mobile — texto > cards > imagem */
  .facilidades__left { order: 1; }
  .facilidades__right { order: 2; }
  .facilidades__middle { order: 3; }
  .facilidades__image-container {
    max-width: none !important;
    width: 100%;
    aspect-ratio: auto;
    height: auto;
    min-height: calc((100vw - 2 * var(--container-px, 20px)) * 4 / 3 + 80px);
  }
  .facilidades__img { height: 100%; width: 100%; object-fit: cover; display: block; }

  /* Social proof — autor compacto */
  .social-proof__inner { gap: 16px !important; }
  .social-proof__author-text {
    gap: 2px;
  }
  .social-proof__author strong { font-size: 14px; line-height: 1.3; }
  .social-proof__author span { font-size: 12px; line-height: 1.3; }

  /* Gap social-proof → problema reduzido pela metade */
  .social-proof { padding-bottom: 0 !important; }
  #problema { padding-top: 24px !important; }

  /* NR-01: selo vai pro final e reduz no mobile */
  .nr01__inner { display: flex !important; flex-direction: column; gap: 28px; }
  .nr01__inner > *:nth-child(1) { order: 1; }
  .nr01__inner > *:nth-child(3) { order: 2; }
  .nr01__inner > *:nth-child(2) { order: 3; }
  .nr01__visual { width: 100%; justify-content: center; }
  .nr01__selo-img {
    width: min(70vw, 320px) !important;
    max-width: min(70vw, 320px) !important;
    height: auto !important;
    max-height: none !important;
  }

  /* NR-01: reduzir gap entre título e cards */
  .nr01__content { gap: 12px !important; }
  .nr01__content h3 { margin-bottom: 0 !important; }
  .nr01__risks, .nr01__solution { gap: 12px !important; }

  /* Solução: esconder os números das semanas no mobile */
  .semana__number { display: none !important; }
  .semana { grid-template-columns: minmax(0, 1fr) 104px; }
  .semana { padding: 14px 16px !important; }

  /* FAQ: mais compacto */
  .faq__list { gap: 10px; }
  .faq__question { padding: 14px 18px !important; }
  .faq__question-text { font-size: 15px !important; }
  .faq__answer-inner { padding: 0 18px 16px !important; font-size: 14px; line-height: 1.55; }

  /* Impacto: manter só o espaçamento de cima antes da NR-01 */
  #impacto { padding: 60px 0 0 !important; }
  #impacto .impacto__sticky { padding: 0 !important; }

  /* MOBILE MENU — branco, desliza de cima, X no toggle */
  .mobile-menu {
    background: #ffffff !important;
    transform: translateY(-100%) !important;
    padding: 88px 24px 32px !important;
    gap: 4px !important;
  }
  .mobile-menu.open {
    transform: translateY(0) !important;
  }
  .mobile-menu a {
    font-size: 17px !important;
    font-weight: 600 !important;
    color: var(--blue-gray-900) !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08) !important;
    padding: 16px 4px !important;
  }
  .mobile-menu a:hover { color: #305DFF !important; }
  .mobile-menu .btn {
    margin-top: 16px !important;
    background: #FFCC28 !important;
    color: #000 !important;
    border-color: #FFCC28 !important;
    box-shadow: none !important;
    padding: 14px 22px !important;
    font-size: 15px !important;
    border-bottom: none !important;
  }
  .mobile-menu .btn:hover {
    background: #FFD84D !important;
    border-color: #FFD84D !important;
    color: #000 !important;
  }

  /* Hamburger → X transform */
  .navbar__toggle {
    position: relative;
    width: 36px;
    height: 36px;
    padding: 0;
    z-index: 1001;
  }
  .navbar__toggle span {
    position: absolute;
    left: 7px;
    width: 22px;
    height: 2px;
    background: var(--blue-gray-900);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
  }
  .navbar__toggle span:nth-child(1) { top: 12px; }
  .navbar__toggle span:nth-child(2) { top: 17px; }
  .navbar__toggle span:nth-child(3) { top: 22px; }
  #navbar:not(.scrolled) .navbar__toggle span { background: #fff; }
  .navbar__toggle.open span { background: var(--blue-gray-900) !important; }
  .navbar__toggle.open span:nth-child(1) { top: 17px; transform: rotate(45deg); }
  .navbar__toggle.open span:nth-child(2) { opacity: 0; }
  .navbar__toggle.open span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

  /* Problema: cards vêm antes do CTA no mobile */
  .problema__layout {
    display: flex !important;
    flex-direction: column;
    gap: 20px;
  }
  .problema__header {
    display: contents;
  }
  .problema__header > .badge { order: 1; margin-bottom: 0 !important; }
  .problema__header > h2 { order: 2; margin: 0 !important; }
  .problema__header > .problema__tags { order: 3; }
  .problema__header > p { order: 4; margin: 0 !important; }
  .problema__grid { order: 5; margin-top: 8px; }
  .problema__header > .cta-teste { order: 6; margin-top: 8px; }
  .problema__tag { font-size: 13px; padding: 8px 12px; }

  /* Impacto — accordion no mobile */
  .impacto__steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .impacto__display { display: none; }

  .impacto__step {
    width: 100%;
    text-align: left;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 18px 20px !important;
  }
  .impacto__step-icon { margin-bottom: 0; }

  .impacto__steps .impacto__stats-group {
    display: none !important;
    margin-top: -12px;
    margin-bottom: 0;
    padding: 4px 14px 14px;
    background: #305DFF;
    border-radius: 0 0 16px 16px;
  }
  .impacto__steps .impacto__stats-group.active {
    display: block !important;
  }
  .impacto__steps .impacto__stats-grid {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }
  .impacto__steps .stat-card {
    padding: 14px 16px;
    background: #ffffff;
    border-radius: 12px;
  }

  /* Step ATIVO em azul */
  .impacto__step.active {
    background: #305DFF !important;
    border: none !important;
    border-radius: 16px 16px 0 0 !important;
    box-shadow: none !important;
  }
  .impacto__step.active .impacto__step-text h3 {
    color: #ffffff !important;
  }
  .impacto__step.active .impacto__step-text p {
    color: rgba(255, 255, 255, 0.78) !important;
  }
  .impacto__step.active .impacto__step-icon {
    background: rgba(255, 255, 255, 0.16) !important;
    border-color: rgba(255, 255, 255, 0.24) !important;
    color: #ffffff !important;
  }

  .problema__grid,
  .diferenciais__grid,
  .facilidades__grid,
  .permite__grid,
  .social-proof__quotes,
  .stats__grid { grid-template-columns: 1fr !important; gap: 16px; }

  /* Cards padding mais enxuto */
  .problema__card,
  .card,
  .facilidade-card,
  .metodologia-card,
  .permite__card,
  .social-proof__quote { padding: 22px; }

  /* Metodologia card — número menor pra caber */
  .semana__number { width: 44px; height: 44px; font-size: 15px; }
  .metodologia-card__title { font-size: 22px; }
  .semana__label { font-size: 15px; }
  .semana__desc { font-size: 13px; }

  .sobre-hero__slider,
  .sobre-hero__track { gap: 12px; }
  .sobre-hero__photo,
  .sobre-hero__photo--wide,
  .sobre-hero__photo--tall {
    width: 280px;
    aspect-ratio: 16 / 10;
  }
  .sobre-hero__header { margin-bottom: 32px; }
  .sobre-hero__slider { margin-bottom: 40px; }

  /* CTA final layout stack */
  .faq__cta-inner {
    grid-template-columns: 1fr !important;
  }
  .faq__cta-text {
    padding: 36px 24px 0 !important;
    margin: 0 !important;
    gap: 16px;
  }
  .faq__cta-title { font-size: 22px !important; line-height: 1.3; }

  /* Imagem aparece abaixo do botão no mobile */
  .faq__cta-image {
    display: block !important;
    min-height: 200px;
    height: 200px;
    margin: 24px 24px 24px;
    border-radius: 12px;
    flex-shrink: 0;
  }

  .faq__cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
  }

  #como-funciona {
    overflow: hidden;
    padding-bottom: 0 !important;
  }

  .como-funciona__image {
    width: 100vw;
    margin: 32px calc(50% - 50vw) 0;
    --como-parallax-y: 0px;
  }

  .como-funciona__img {
    transform: translate3d(0, 0px, 0) scale(1);
  }

  .como-funciona__image.visible .como-funciona__img {
    transform: translate3d(0, 0px, 0) scale(1);
  }

  /* Footer enxuto */
  .footer__inner { gap: 32px; }
  .footer__brand p { font-size: 13px; }

  /* Hero CTA fix gap + centralizar conteúdo */
  .hero__left {
    gap: 14px;
    text-align: center;
    align-items: center;
    max-width: none;
  }
  .hero__eyebrow { justify-content: center; }
  .hero__actions { width: 100%; justify-content: center; }

  /* Navbar links escondidos no mobile já tem toggle */
  .container { padding: 0 var(--container-px); }
}

/* MOBILE SMALL (≤480) */
@media (max-width: 480px) {
  .hero__title { font-size: 36px !important; }
  .display-md { font-size: 24px !important; }
  .hero__content { padding: 88px 18px 60px; }
  .section { padding: 60px 0; }
  #facilidades, #nr01 { padding: 60px 0; }
  #cta-final { padding: 30px 0; }
}

/* ============================================================
   Social Proof Slider — Tablet + Mobile
   ============================================================ */
@media (max-width: 1024px) {
  .social-proof .container {
    padding-left: 0;
    padding-right: 0;
  }
  .social-proof__inner > .social-proof__label {
    padding: 0 var(--container-px, 20px);
  }

  .social-proof__quotes {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 16px !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--container-px, 20px);
    -webkit-overflow-scrolling: touch;
    padding: 4px var(--container-px, 20px) 16px var(--container-px, 20px);
    margin: 0;
    scrollbar-width: none;
  }
  .social-proof__quotes::-webkit-scrollbar { display: none; }

  .social-proof__quote {
    flex: 0 0 82%;
    max-width: 82%;
    scroll-snap-align: start;
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .social-proof__quote {
    flex: 0 0 86%;
    max-width: 86%;
  }
}

/* ============================================================
   VIDEO MODAL
   ============================================================ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 24px;
}

.video-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(8px);
}

.video-modal__container {
  position: relative;
  width: 100%;
  max-width: 960px;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2001;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-modal.open .video-modal__container {
  transform: scale(1);
}

.video-modal__close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 2002;
}

.video-modal__close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.08) rotate(90deg);
}

.video-modal__close svg {
  width: 20px;
  height: 20px;
}

.video-modal__body {
  width: 100%;
}

.video-modal__ratio {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.video-modal__ratio iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 991px) {
  .video-modal__close {
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
  }
}
