/* ==========================================================================
   CSS DESIGN SYSTEM — REGISTRO DE MARCA (VICTOR / MV9 MARCAS)
   Baseado no BRAND.md e PRD — Estética Clean Jurídico Digital
   ========================================================================== */

/* --- 1. DESIGN TOKENS --- */
:root {
  /* Colors - BRAND.md & PRD */
  --color-navy: #081B33;
  --color-navy-deep: #0B1F3A;
  --color-blue-primary: #1557B0;
  --color-blue-brand: #1557D6;
  --color-blue-soft: #EAF3FF;
  --color-blue-light: #F4F8FF;
  --color-white: #FFFFFF;
  --color-graphite: #0F172A;
  --color-graphite-soft: #1E293B;
  --color-gray-text: #334155;
  --color-gray-muted: #475569;
  --color-border: #E2E8F0;
  --color-border-subtle: #CBD5E1;

  /* CTA Colors */
  --color-green-whatsapp: #19C463;
  --color-green-action: #16C784;
  --color-green-hover: #0B8F5B;
  --color-green-light: #E6F8F0;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --container-max: 1200px;
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;
  --spacing-4xl: 96px;

  /* Border Radius */
  --radius-button: 8px;
  --radius-card: 12px;
  --radius-special: 16px;
  --radius-badge: 50px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow-card: 0 4px 20px rgba(15, 23, 42, 0.08);
  --shadow-card-hover: 0 10px 30px rgba(15, 23, 42, 0.12);
  --shadow-cta: 0 4px 14px rgba(25, 196, 99, 0.35);
  --shadow-cta-hover: 0 6px 20px rgba(25, 196, 99, 0.45);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  color: var(--color-graphite);
  background-color: var(--color-white);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

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

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

/* --- 3. LAYOUT & CONTAINERS --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.section {
  padding-top: var(--spacing-3xl);
  padding-bottom: var(--spacing-3xl);
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .section {
    padding-top: var(--spacing-4xl);
    padding-bottom: var(--spacing-4xl);
  }
}

/* Section Background Alternation */
.bg-white {
  background-color: var(--color-white);
}

.bg-soft-blue {
  background-color: var(--color-blue-soft);
}

.bg-light-blue {
  background-color: var(--color-blue-light);
}

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

.bg-navy-deep {
  background-color: var(--color-navy-deep);
  color: var(--color-white);
}

/* --- 4. TYPOGRAPHY & UTILITIES --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-graphite);
}

.bg-navy h1, .bg-navy h2, .bg-navy h3,
.bg-navy-deep h1, .bg-navy-deep h2, .bg-navy-deep h3 {
  color: var(--color-white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-blue-primary);
  background-color: var(--color-blue-soft);
  padding: 6px 14px;
  border-radius: var(--radius-badge);
  margin-bottom: var(--spacing-md);
  border: 1px solid rgba(21, 87, 176, 0.15);
}

.eyebrow-dark {
  color: #60A5FA;
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.eyebrow-center {
  margin-left: auto;
  margin-right: auto;
  display: inline-flex;
}

h1.hero-title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--spacing-md);
  color: var(--color-graphite);
}

h2.section-title {
  font-size: clamp(24px, 3.8vw, 40px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: var(--spacing-sm);
}

.section-subtitle {
  font-size: clamp(15px, 2vw, 19px);
  color: var(--color-gray-text);
  margin-bottom: var(--spacing-xl);
  max-width: 720px;
}

.bg-navy .section-subtitle,
.bg-navy-deep .section-subtitle {
  color: #94A3B8;
}

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

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.highlight-blue {
  color: var(--color-blue-primary);
}

.bg-navy .highlight-blue,
.bg-navy-deep .highlight-blue {
  color: #60A5FA;
}

/* --- 5. BUTTONS & CTAS (MOBILE FIRST & ZERO LEAKS) --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(14px, 3.8vw, 16px);
  line-height: 1.25;
  padding: 14px 20px;
  border-radius: var(--radius-button);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  min-height: 48px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  word-break: break-word;
  overflow-wrap: break-word;
}

.btn-primary {
  background-color: var(--color-green-whatsapp);
  color: var(--color-white);
  box-shadow: var(--shadow-cta);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: var(--color-green-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-cta-hover);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--color-blue-primary);
  color: var(--color-blue-primary);
}

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

.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-lg {
  font-size: clamp(15px, 4vw, 18px);
  padding: 16px 24px;
  min-height: 54px;
}

.header .btn {
  width: auto;
  min-height: 38px;
  padding: 8px 14px;
  font-size: 13px;
  border-radius: 30px;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .header .btn span {
    font-size: 12px;
  }
  .btn {
    padding: 12px 16px;
  }
}

.cta-microcopy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-gray-muted);
  margin-top: 10px;
}

.bg-navy .cta-microcopy,
.bg-navy-deep .cta-microcopy {
  color: #94A3B8;
}

/* --- 6. HEADER --- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  padding: 12px 0;
  transition: padding var(--transition-fast);
}

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

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

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-graphite-soft);
  transition: color var(--transition-fast);
  padding: 6px 4px;
}

.nav-link:hover {
  color: var(--color-blue-primary);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-navy);
  transition: all var(--transition-fast);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-right .btn {
  padding: 10px 18px;
  font-size: 14px;
  min-height: 40px;
}

@media (max-width: 991px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 20px 32px;
    display: none;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .header-right .btn span {
    display: none;
  }

  .header-right .btn {
    padding: 8px 12px;
    min-height: 38px;
  }
}

/* --- 7. DOBRA 01 — HERO --- */
.hero {
  padding-top: var(--spacing-2xl);
  padding-bottom: var(--spacing-3xl);
  background: linear-gradient(180deg, #F8FAFC 0%, var(--color-white) 100%);
  overflow: hidden;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.hero-content {
  display: contents;
}

.hero-content .eyebrow { order: 1; }
.hero-title { order: 2; }
.hero-subtitle { order: 3; }
.hero-cta-wrapper { order: 4; }
.hero-photo-box { order: 5; margin-bottom: 0; }
.hero-proof-bar { order: 6; }

@media (min-width: 992px) {
  .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
    text-align: left;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 100%;
    order: unset;
  }

  .hero-content .eyebrow { order: unset; margin-left: 0; margin-right: auto; }
  .hero-title { order: unset; }
  .hero-subtitle { order: unset; margin-left: 0; }
  .hero-cta-wrapper { order: unset; justify-content: flex-start; }
  .hero-btn-main { margin-left: 0; }
  .hero-photo-box { order: unset; margin-bottom: 0; }
  .hero-proof-bar { order: unset; justify-content: flex-start; }

  .unified-proof-badge {
    align-items: flex-start;
    text-align: left;
  }
}

.hero-title {
  font-size: clamp(26px, 4.5vw, 40px);
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(16px, 2.2vw, 19px);
  color: #475569;
  line-height: 1.5;
  margin: 0 auto 20px;
  max-width: 580px;
  font-weight: 500;
}

.hero-cta-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: var(--spacing-lg);
}

.hero-btn-main {
  width: 100%;
  max-width: 440px;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 50px;
  background-color: var(--color-green-action);
  box-shadow: 0 8px 24px rgba(25, 196, 99, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hero-btn-main:hover {
  background-color: var(--color-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(25, 196, 99, 0.45);
}

.hero-photo-box {
  width: 100%;
  max-width: 480px;
  margin: 0 auto var(--spacing-md);
  position: relative;
}

.hero-photo-container {
  position: relative;
  border-radius: var(--radius-special);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(8, 27, 51, 0.12);
  background: linear-gradient(180deg, #E2E8F0 0%, #CBD5E1 100%);
  border: 1px solid var(--color-border);
}

.hero-victor-img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.inpi-floating-card {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.9);
  text-align: left;
}

.inpi-badge-header {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.inpi-official-logo {
  height: 34px;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

.inpi-badge-text {
  font-size: 12px;
  color: #334155;
  line-height: 1.4;
  margin: 0;
  font-weight: 500;
}

.hero-proof-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 18px;
}

.unified-proof-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--color-white);
  padding: 12px 24px;
  border-radius: 40px;
  box-shadow: 0 4px 20px rgba(8, 27, 51, 0.08);
  border: 1px solid var(--color-border);
  text-align: center;
  max-width: 100%;
}

.proof-badge-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.google-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.reclame-trust-item {
  display: flex;
  align-items: center;
}

.reclame-mini-logo {
  height: 22px;
  width: auto;
  display: block;
  object-fit: contain;
}

.badge-divider {
  color: #CBD5E1;
  font-weight: 300;
  font-size: 16px;
}

.google-svg-logo {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.stars {
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1;
}

.rating-text {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.3;
}

.stars {
  letter-spacing: 2px;
}

.hero-badge-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  color: var(--color-navy);
}

.hero-badge-desc {
  font-size: 12px;
  color: var(--color-gray-text);
}

/* --- 8. DOBRA 02 — QUEBRA DE CRENÇAS --- */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

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

.myth-card {
  background-color: var(--color-white);
  border-radius: var(--radius-card);
  padding: var(--spacing-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.myth-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--spacing-md);
}

.myth-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: #FEF2F2;
  color: #EF4444;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 18px;
}

.myth-title {
  font-size: 20px;
  font-weight: 700;
}

.myth-text {
  font-size: 15px;
  color: var(--color-gray-text);
  line-height: 1.6;
}

.myth-status {
  margin-top: auto;
  padding-top: var(--spacing-md);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #DC2626;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.statement-box {
  background: var(--color-blue-soft);
  border-left: 4px solid var(--color-blue-primary);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  padding: var(--spacing-lg);
  margin-top: var(--spacing-2xl);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-navy);
}

/* --- 9. DOBRA 03 — O PROBLEMA REAL --- */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

@media (min-width: 992px) {
  .problem-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

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

.problem-item {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 16px 20px;
  border-radius: var(--radius-button);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 15px;
  color: var(--color-graphite-soft);
}

.problem-item-icon {
  color: var(--color-blue-primary);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* --- 10. DOBRA 04 — MECANISMO / TIMELINE --- */
.timeline {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--spacing-lg);
  background-color: var(--color-white);
  border-radius: var(--radius-card);
  padding: var(--spacing-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  align-items: flex-start;
  transition: transform var(--transition-fast);
}

.timeline-step:hover {
  transform: translateX(4px);
  border-color: var(--color-blue-primary);
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-card);
  background-color: var(--color-blue-soft);
  color: var(--color-blue-primary);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 15px;
  color: var(--color-gray-text);
}

/* --- 11. DOBRA 05 — DIFERENCIAIS --- */
.grid-2x2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

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

.diff-card {
  background-color: var(--color-white);
  border-radius: var(--radius-card);
  padding: var(--spacing-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.diff-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--color-blue-soft);
  color: var(--color-blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
}

.diff-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.diff-card p {
  font-size: 15px;
  color: var(--color-gray-text);
}

/* --- 12. DOBRA 06 — VICTOR / AUTORIDADE --- */
.authority-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

@media (min-width: 992px) {
  .authority-grid {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

.authority-image-box {
  background-color: var(--color-navy-deep);
  border-radius: var(--radius-special);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.authority-person-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-card);
  display: block;
}

.authority-content h2 {
  color: var(--color-white);
}

.authority-bio {
  font-size: 16px;
  color: #CBD5E1;
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
}

.authority-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: var(--spacing-xl);
}

.authority-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--color-white);
  font-weight: 500;
}

.authority-icon {
  color: #60A5FA;
  flex-shrink: 0;
}

/* --- 13. DOBRA 07 — PROVA SOCIAL (AVALIAÇÕES GOOGLE) --- */
.google-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-md);
}

@media (min-width: 768px) {
  .google-testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
  }
}

.google-card {
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.google-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

.google-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

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

.avatar-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--color-white);
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avatar-blue { background-color: #1A73E8; }
.avatar-green { background-color: #188038; }
.avatar-red { background-color: #D93025; }

.user-details {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0;
}

.user-meta {
  font-size: 12px;
  color: #94A3B8;
}

.google-card-logo {
  flex-shrink: 0;
}

.google-card-stars {
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.verified-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #1A73E8;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}

.verified-dot::after {
  content: "✓";
  color: white;
  font-size: 9px;
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.google-card-quote {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--color-graphite-soft);
  margin: 0;
  font-style: normal;
}

.btn-google-reviews {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--color-white);
  color: var(--color-navy);
  border: 1.5px solid #CBD5E1;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
  transition: all var(--transition-normal);
  width: auto;
  max-width: 320px;
  margin: 0 auto;
}

.btn-google-reviews:hover {
  border-color: #1A73E8;
  color: #1A73E8;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(26, 115, 232, 0.15);
}

/* --- 14. DOBRA 08 — CUSTO DA INAÇÃO --- */
.inaction-card {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-deep) 100%);
  border-radius: var(--radius-special);
  padding: var(--spacing-2xl);
  color: var(--color-white);
  box-shadow: var(--shadow-card-hover);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.assets-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: var(--spacing-lg) 0;
}

.asset-tag {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: var(--radius-badge);
  font-size: 14px;
  font-weight: 600;
  color: #E2E8F0;
}

.warning-callout {
  background-color: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: var(--radius-card);
  padding: var(--spacing-lg);
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.warning-callout h3 {
  color: #FCA5A5;
  font-size: 20px;
  margin-bottom: 6px;
}

/* --- 15. DOBRA 09 — COMPARATIVO --- */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.comparison-card {
  background-color: var(--color-white);
  border-radius: var(--radius-card);
  padding: var(--spacing-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.comparison-card.pro {
  border: 2px solid var(--color-blue-primary);
  background-color: var(--color-white);
  box-shadow: var(--shadow-card-hover);
  position: relative;
}

.pro-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: var(--color-blue-primary);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-badge);
}

.comparison-title {
  font-size: 22px;
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-sm);
  border-bottom: 1px solid var(--color-border);
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.icon-cross {
  color: #EF4444;
  font-weight: 800;
}

.icon-check {
  color: var(--color-green-action);
  font-weight: 800;
}

/* --- 16. DOBRA 10 — FAQ ACCORDION --- */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: var(--color-blue-primary);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-graphite);
  cursor: pointer;
  gap: 16px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--color-blue-soft);
  color: var(--color-blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background-color: var(--color-blue-primary);
  color: var(--color-white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
  padding: 0 24px;
}

.faq-answer-content {
  padding-bottom: 20px;
  font-size: 15px;
  color: var(--color-gray-text);
  line-height: 1.65;
}

/* --- 17. DOBRA 11 — OFERTA / ENTREGÁVEIS --- */
.deliverables-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 1060px;
  margin: 0 auto var(--spacing-2xl);
}

.deliverable-card {
  background-color: var(--color-white);
  border-radius: var(--radius-card);
  padding: 20px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .deliverable-card {
    width: calc(50% - 10px);
  }
}

@media (min-width: 992px) {
  .deliverables-grid {
    gap: 24px;
  }
  .deliverable-card {
    width: calc(33.333% - 16px);
  }
}

.deliverable-num {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background-color: var(--color-blue-soft);
  color: var(--color-blue-primary);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.deliverable-card h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.deliverable-card p {
  font-size: 13px;
  color: var(--color-gray-muted);
}

/* --- 18. DOBRA 12 — CTA FINAL --- */
.cta-final-box {
  background: linear-gradient(135deg, var(--color-navy-deep) 0%, var(--color-navy) 100%);
  border-radius: var(--radius-special);
  padding: var(--spacing-3xl) var(--spacing-xl);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  max-width: 960px;
  margin: 0 auto;
}

.cta-final-box h2 {
  color: var(--color-white);
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: var(--spacing-md);
}

.cta-final-box p {
  color: #CBD5E1;
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto var(--spacing-xl);
}

/* --- 19. MOBILE STICKY WHATSAPP BAR --- */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 10px 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

.mobile-sticky-bar.visible {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .mobile-sticky-bar {
    display: none !important;
  }
}

.mobile-sticky-bar .btn {
  width: 100%;
  padding: 14px;
  font-size: 15px;
}

/* --- 19.1 FLOATING WHATSAPP BUTTON (RIGHT SIDE WIDGET) --- */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: var(--color-green-whatsapp);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(25, 196, 99, 0.45);
  z-index: 999;
  transition: transform 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
  animation: pulseGlow 2.5s infinite;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
  background-color: var(--color-green-hover);
  box-shadow: 0 10px 28px rgba(25, 196, 99, 0.6);
}

.floating-tooltip {
  position: absolute;
  right: 70px;
  background-color: var(--color-navy);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease, transform 200ms ease;
  transform: translateX(10px);
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.floating-whatsapp-btn:hover .floating-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(25, 196, 99, 0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(25, 196, 99, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(25, 196, 99, 0);
  }
}

@media (max-width: 768px) {
  .floating-whatsapp-btn {
    bottom: 80px;
    right: 18px;
    width: 52px;
    height: 52px;
  }
  .floating-whatsapp-btn svg {
    width: 26px;
    height: 26px;
  }
}

/* --- 20. FOOTER --- */
.footer {
  background-color: var(--color-navy-deep);
  color: #94A3B8;
  padding: var(--spacing-2xl) 0 var(--spacing-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

.logo-wrapper {
  display: inline-flex;
  align-items: center;
  background-color: var(--color-navy);
  padding: 10px 22px;
  border-radius: 12px;
  transition: all var(--transition-fast);
}

.logo-wrapper:hover {
  opacity: 0.95;
  transform: scale(1.02);
}

.header-logo {
  height: 66px;
  width: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 768px) {
  .header-logo {
    height: 56px;
  }
  .logo-wrapper {
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
  .header-logo {
    height: 50px;
  }
  .logo-wrapper {
    padding: 6px 14px;
  }
}

.footer-logo-wrapper {
  display: inline-block;
  margin-bottom: 16px;
  transition: opacity var(--transition-fast);
}

.footer-logo-wrapper:hover {
  opacity: 0.95;
}

.footer-logo {
  height: 82px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-2xl);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1.3fr 1fr;
    gap: 32px;
  }
}

.footer-brand p {
  color: #CBD5E1;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.footer-desc {
  font-size: 13px !important;
  color: #94A3B8 !important;
  max-width: 320px;
}

.oab-tag {
  display: inline-block;
  color: #60A5FA;
  font-weight: 700;
  font-size: 13px;
  margin-top: 2px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: #CBD5E1;
}

.footer-contact-list strong {
  color: var(--color-white);
}

.contact-subtext {
  font-size: 12.5px;
  color: #94A3B8;
  margin-top: 4px;
  line-height: 1.4;
}

.footer-title {
  color: var(--color-white);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.footer-bottom {
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 13px;
  color: #64748B;
}

/* --- 21. UTILITIES --- */
.svg-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

/* --- 22. DOBRA DIAGNÓSTICO & REGULARIZAÇÃO --- */
.eyebrow-urgent {
  background-color: #FEF2F2;
  color: #DC2626;
  border-color: #FCA5A5;
}

.diagnosis-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
}

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

@media (min-width: 1024px) {
  .diagnosis-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.diagnosis-card {
  background-color: var(--color-white);
  border-radius: var(--radius-card);
  padding: var(--spacing-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

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

.diagnosis-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  width: fit-content;
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.badge-warning {
  background-color: #FEF2F2;
  color: #DC2626;
  border: 1px solid #FECACA;
}

.badge-alert {
  background-color: #FFFBEB;
  color: #D97706;
  border: 1px solid #FDE68A;
}

.badge-info {
  background-color: var(--color-blue-soft);
  color: var(--color-blue-primary);
  border: 1px solid #BFDBFE;
}

.diagnosis-icon {
  font-size: 28px;
  margin-bottom: var(--spacing-xs);
  line-height: 1;
}

.diagnosis-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.diagnosis-card p {
  font-size: 14.5px;
  color: var(--color-gray-text);
  line-height: 1.6;
  margin: 0;
}

.diagnosis-cta-box {
  background: linear-gradient(135deg, var(--color-navy) 0%, #0F2D54 100%);
  border-radius: var(--radius-special);
  padding: var(--spacing-xl);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  box-shadow: 0 12px 32px rgba(11, 31, 58, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 992px) {
  .diagnosis-cta-box {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: var(--spacing-2xl);
  }
}

.diagnosis-cta-content {
  max-width: 580px;
}

.diagnosis-cta-content h3 {
  font-size: clamp(20px, 3vw, 24px);
  color: var(--color-white);
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.3;
}

.diagnosis-cta-content p {
  font-size: clamp(14px, 1.8vw, 16px);
  color: #CBD5E1;
  margin: 0;
  line-height: 1.5;
}

.diagnosis-cta-action {
  width: 100%;
  max-width: 420px;
  flex-shrink: 0;
}

.diagnosis-cta-action .btn {
  width: 100%;
}

