/* ==========================================================================
   BRUTATEC — LANDING PAGE DE ALTA CONVERSÃO
   Nova Direção de Arte: Leveza, Equilíbrio Visual e Ritmo Comercial
   Inspirado na Clareza e Ritmo de Leitura da Blips
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & RESET
   -------------------------------------------------------------------------- */
:root {
  /* Paleta Revisada */
  --color-navy: #12233E;
  --color-navy-deep: #1B3156;
  --color-graphite: #1E232B;
  --color-soft-black: #181B20;
  --color-light-bg: #EEF2F6;
  --color-light-bg-alt: #F8FAFC;
  --color-white: #FFFFFF;
  --color-yellow: #F4C61A;
  --color-yellow-hover: #FFD53D;
  --color-text-secondary: #5F6B7A;
  --color-border-subtle: #D8DEE6;
  --color-border-light: #E9EDF2;

  /* Cores de Apoio & Feedback */
  --color-whatsapp: #25D366;
  --color-whatsapp-hover: #1EBE5B;
  --color-yellow-subtle: rgba(244, 198, 26, 0.12);

  /* Tipografia */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Espaçamentos e Estrutura */
  --container-max-width: 1240px;
  --header-height: 84px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Sombras Elegantes & Suaves */
  --shadow-subtle: 0 2px 8px rgba(18, 35, 62, 0.04);
  --shadow-card: 0 10px 30px rgba(18, 35, 62, 0.06);
  --shadow-card-hover: 0 18px 40px rgba(18, 35, 62, 0.12);
  --shadow-btn-yellow: 0 6px 20px rgba(244, 198, 26, 0.38);
  --shadow-deep: 0 20px 50px rgba(18, 35, 62, 0.22);

  /* Transições Suaves */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-white);
  color: var(--color-graphite);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button, input, textarea, select {
  font-family: inherit;
}

/* --------------------------------------------------------------------------
   2. TIPOGRAFIA & UTILITÁRIOS
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-navy);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.text-yellow {
  color: #D9A404 !important;
}

.text-yellow-brand {
  color: var(--color-yellow) !important;
}

.text-white {
  color: var(--color-white) !important;
}

.text-secondary {
  color: var(--color-text-secondary) !important;
}

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section-padding {
  padding: 88px 0;
  position: relative;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 56px 0;
  }
}

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

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

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-navy);
  background: var(--color-yellow-subtle);
  border: 1px solid rgba(244, 198, 26, 0.35);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-eyebrow.eyebrow-light {
  color: var(--color-yellow);
  background: rgba(244, 198, 26, 0.15);
  border-color: rgba(244, 198, 26, 0.35);
}

.section-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-yellow);
}

.section-title {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  margin-bottom: 16px;
  color: var(--color-navy);
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--color-text-secondary);
  max-width: 620px;
  line-height: 1.6;
}

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

/* Blocos de Fundo com Ritmo */
.bg-light-gray {
  background-color: var(--color-light-bg);
}

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

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

.bg-navy-deep h1,
.bg-navy-deep h2,
.bg-navy-deep h3,
.bg-navy-deep h4 {
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   3. BOTÕES COMERCIAIS & CTAs
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-yellow {
  background-color: var(--color-yellow);
  color: #111111;
  box-shadow: var(--shadow-btn-yellow);
  font-weight: 800;
}

.btn-yellow:hover {
  background-color: var(--color-yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(244, 198, 26, 0.45);
}

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

.btn-navy {
  background-color: var(--color-navy);
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(18, 35, 62, 0.2);
}

.btn-navy:hover {
  background-color: var(--color-navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(18, 35, 62, 0.3);
}

.btn-outline-navy {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-border-subtle);
}

.btn-outline-navy:hover {
  background: var(--color-light-bg);
  border-color: var(--color-navy);
  color: var(--color-navy);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
  background: #FFFFFF;
  color: var(--color-navy);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 34px;
  font-size: 1.02rem;
  min-height: 54px;
}

.btn-full {
  width: 100%;
}

.btn-whatsapp {
  background-color: var(--color-whatsapp);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: var(--color-whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* --------------------------------------------------------------------------
   4. HEADER (LEVE, ELEGANTE E TRANSLÚCIDO)
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-normal);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border-light);
}

.header.scrolled {
  background: #FFFFFF;
  box-shadow: 0 4px 20px rgba(18, 35, 62, 0.08);
  height: 74px;
}

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

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo img {
  height: 38px;
  width: auto;
  transition: var(--transition-fast);
}

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

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-graphite);
  letter-spacing: 0.01em;
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-yellow);
  transition: var(--transition-fast);
}

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

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle-btn {
  display: none;
  background: none;
  border: 1px solid var(--color-border-subtle);
  color: var(--color-navy);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: var(--transition-fast);
}

.mobile-toggle-btn:hover {
  border-color: var(--color-yellow);
  background: var(--color-light-bg);
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 310px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -10px 0 30px rgba(18, 35, 62, 0.15);
  z-index: 1001;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border-light);
}

.mobile-drawer-header img {
  height: 32px;
}

.mobile-close-btn {
  background: none;
  border: none;
  color: var(--color-graphite);
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-navy);
  display: block;
}

.mobile-nav-link:hover {
  color: var(--color-yellow);
}

.mobile-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(18, 35, 62, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
}

.mobile-drawer-backdrop.active {
  display: block;
}

/* --------------------------------------------------------------------------
   5. HERO SECTION — FULL WIDTH CINEMATOGRÁFICO COM COMPOSIÇÃO INTEGRADA
   -------------------------------------------------------------------------- */
.hero-cinematic-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 36px);
  padding-bottom: 60px;
  background-color: #0A0D12;
  overflow: hidden;
}

.hero-cinematic-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: 72% center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Overlay Cinematográfico: Vinheta Suave e Gradiente Editorial à Esquerda */
.hero-cinematic-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    /* Vinheta lateral esquerda para leitura primorosa */
    linear-gradient(to right,
      rgba(10, 13, 18, 0.96) 0%,
      rgba(10, 13, 18, 0.92) 28%,
      rgba(10, 13, 18, 0.72) 46%,
      rgba(10, 13, 18, 0.25) 66%,
      rgba(10, 13, 18, 0.04) 100%),
    /* Sombra sutil superior para o header */
    linear-gradient(to bottom,
      rgba(10, 13, 18, 0.6) 0%,
      transparent 22%),
    /* Sombra inferior suave no rodapé do hero */
    linear-gradient(to top,
      rgba(10, 13, 18, 0.5) 0%,
      transparent 18%);
  pointer-events: none;
}

.hero-cinematic-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  align-items: center;
  min-height: 70vh;
}

/* Área Editorial de Leitura */
.hero-cinematic-content {
  flex: 0 0 100%;
  max-width: 620px;
  position: relative;
  z-index: 3;
}

.hero-cinematic-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: rgba(244, 198, 26, 0.15);
  border: 1px solid rgba(244, 198, 26, 0.45);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}

.hero-cinematic-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-yellow);
  box-shadow: 0 0 10px rgba(244, 198, 26, 0.8);
}

.hero-cinematic-headline {
  font-size: clamp(2.3rem, 4.3vw, 3.7rem);
  line-height: 1.08;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.7);
}

.hero-cinematic-headline span.highlight {
  color: var(--color-yellow);
  text-shadow: 0 3px 22px rgba(244, 198, 26, 0.4);
}

.hero-cinematic-subheadline {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.6;
  color: #E2E8F0;
  margin-bottom: 32px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-cinematic-bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 20px;
  list-style: none;
  margin-bottom: 36px;
}

.hero-cinematic-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.96rem;
  font-weight: 600;
  color: #F8FAFC;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}

.hero-cinematic-bullet-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-yellow);
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(244, 198, 26, 0.45);
}

.hero-cinematic-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-cinematic-ctas .btn-yellow {
  box-shadow: 0 8px 24px rgba(244, 198, 26, 0.4);
}

.hero-cinematic-ctas .btn-yellow:hover {
  box-shadow: 0 12px 30px rgba(244, 198, 26, 0.6);
  transform: translateY(-2px);
}

.hero-cinematic-ctas .btn-outline-white {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-color: rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
}

.hero-cinematic-ctas .btn-outline-white:hover {
  background: #FFFFFF;
  color: var(--color-navy);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.hero-cinematic-microcopy {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #CBD5E1;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-cinematic-microcopy svg {
  color: var(--color-yellow);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   6. FAIXA DE CONFIANÇA (BRANCA, CLARA E OBJETIVA)
   -------------------------------------------------------------------------- */
.trust-clean-strip {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border-light);
  padding: 28px 0;
  position: relative;
  z-index: 10;
}

.trust-clean-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-clean-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-clean-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: var(--color-light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.trust-clean-item:hover .trust-clean-icon {
  background-color: var(--color-yellow);
  color: #111111;
}

.trust-clean-title {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: 0.02em;
}

.trust-clean-desc {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  line-height: 1.35;
}

/* --------------------------------------------------------------------------
   7. LINHA DE EQUIPAMENTOS (CARDS COMERCIAIS LEVES EM FUNDO CLARO)
   -------------------------------------------------------------------------- */
.products-clean-section {
  background-color: var(--color-light-bg);
}

.products-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-pill-clean {
  background: #FFFFFF;
  border: 1px solid var(--color-border-subtle);
  color: var(--color-text-secondary);
  padding: 9px 22px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-pill-clean:hover,
.filter-pill-clean.active {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(18, 35, 62, 0.2);
}

.products-clean-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card-clean {
  background: #FFFFFF;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
  position: relative;
  box-shadow: var(--shadow-subtle);
}

.product-card-clean:hover {
  transform: translateY(-6px);
  border-color: rgba(18, 35, 62, 0.25);
  box-shadow: var(--shadow-card-hover);
}

.product-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #FFFFFF;
  color: var(--color-navy);
  border: 1px solid var(--color-border-subtle);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.product-card-clean-img-box {
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  padding: 28px 20px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid var(--color-border-light);
}

.product-card-clean-img-box img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  transition: transform 0.35s ease;
  filter: drop-shadow(0 8px 14px rgba(18, 35, 62, 0.1));
}

.product-card-clean:hover .product-card-clean-img-box img {
  transform: scale(1.05);
}

.product-card-clean-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-clean-category {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-secondary);
  margin-bottom: 6px;
}

.product-clean-name {
  font-size: 1.32rem;
  color: var(--color-navy);
  margin-bottom: 10px;
}

.product-clean-desc {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
}

.product-clean-specs {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 16px;
  background: var(--color-light-bg);
  border-radius: var(--radius-sm);
}

.product-clean-spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

.product-clean-spec-row span:first-child {
  color: var(--color-text-secondary);
}

.product-clean-spec-row span:last-child {
  font-weight: 700;
  color: var(--color-navy);
}

.product-card-clean-cta {
  margin-top: auto;
}

/* --------------------------------------------------------------------------
   8. SEÇÃO CONSULTIVA (AZUL PROFUNDO ELEGANTE COM ALTA LEVEZA)
   -------------------------------------------------------------------------- */
.advisory-clean-section {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-deep) 100%);
  color: #FFFFFF;
}

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

.advisory-clean-factors {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.factor-clean-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition-fast);
}

.factor-clean-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-yellow);
  transform: translateX(4px);
}

.factor-clean-icon {
  color: var(--color-yellow);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.factor-clean-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: #FFFFFF;
}

.advisory-clean-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(10px);
}

.advisory-clean-box h3 {
  font-size: 1.4rem;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.advisory-clean-box p {
  color: #D2D8E2;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* --------------------------------------------------------------------------
   9. FORMULÁRIO CENTRAL LEADLOVERS (DESTAQUE NO MEIO COM MÁXIMA LEVEZA)
   -------------------------------------------------------------------------- */
.form-clean-section {
  background: linear-gradient(180deg, var(--color-navy) 0%, #152642 100%);
  color: #FFFFFF;
  position: relative;
  padding: 96px 0;
}

.form-clean-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 52px;
  align-items: center;
}

.form-clean-info h2 {
  color: #FFFFFF;
}

.form-clean-info p {
  color: #CFD7E3;
}

.form-clean-benefits {
  list-style: none;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-clean-benefit-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.form-clean-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-yellow);
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

.form-clean-benefit-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: #FFFFFF;
}

.form-clean-benefit-text span {
  font-size: 0.88rem;
  color: #B5C0D0;
}

/* Card Branco Refinado do Formulário */
.form-clean-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-deep);
  border: 1px solid var(--color-border-subtle);
  position: relative;
  color: var(--color-graphite);
}

.form-clean-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 4px;
  background: var(--color-yellow);
  border-radius: 4px;
}

.form-clean-card-header {
  margin-bottom: 24px;
}

.form-clean-card-title {
  font-size: 1.5rem;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.form-clean-card-subtitle {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
}

.form-clean-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-clean-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-navy);
}

.form-control.form-ll {
  width: 100%;
  height: 52px;
  background: var(--color-light-bg-alt);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-sm);
  color: var(--color-graphite);
  padding: 0 16px;
  font-size: 1rem;
  transition: var(--transition-fast);
  outline: none;
}

textarea.form-control.form-ll {
  height: auto;
  min-height: 96px;
  padding: 12px 16px;
  resize: vertical;
}

.form-control.form-ll:focus {
  border-color: var(--color-navy);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(18, 35, 62, 0.08);
}

.form-control.form-ll::placeholder {
  color: #94A3B8;
  font-size: 0.9rem;
}

.form-clean-submit-btn {
  height: 54px;
  font-size: 1.05rem;
  font-weight: 800;
  margin-top: 8px;
}

.form-clean-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  margin-top: 14px;
}

.form-clean-security svg {
  color: var(--color-navy);
}

/* --------------------------------------------------------------------------
   10. APLICAÇÕES (CARDS CLAROS, IMAGENS REAIS E LEITURA RÁPIDA)
   -------------------------------------------------------------------------- */
.apps-clean-section {
  background-color: var(--color-white);
}

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

.app-clean-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
}

.app-clean-card:hover {
  transform: translateY(-5px);
  border-color: rgba(18, 35, 62, 0.3);
  box-shadow: var(--shadow-card-hover);
}

.app-clean-img-box {
  position: relative;
  height: 200px;
  overflow: hidden;
  background-color: var(--color-light-bg);
}

.app-clean-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.app-clean-card:hover .app-clean-img-box img {
  transform: scale(1.06);
}

.app-clean-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(18, 35, 62, 0.85);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
}

.app-clean-body {
  padding: 20px;
  flex-grow: 1;
}

.app-clean-title {
  font-size: 1.2rem;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.app-clean-desc {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   11. DIFERENCIAIS (BLOCO DE BENEFÍCIOS OBJETIVOS)
   -------------------------------------------------------------------------- */
.diff-clean-section {
  background-color: var(--color-light-bg);
}

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

.diff-clean-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-subtle);
}

.diff-clean-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-yellow);
  box-shadow: var(--shadow-card);
}

.diff-clean-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--color-yellow-subtle);
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.diff-clean-title {
  font-size: 1.22rem;
  color: var(--color-navy);
  margin-bottom: 10px;
}

.diff-clean-desc {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   12. COMPARADOR TÉCNICO (TABELA CLARA & CARDS RESPONSIVOS)
   -------------------------------------------------------------------------- */
.comparator-clean-section {
  background-color: var(--color-white);
}

.comparator-clean-wrapper {
  background: #FFFFFF;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  box-shadow: var(--shadow-card);
}

.comparator-clean-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 780px;
}

.comparator-clean-table th,
.comparator-clean-table td {
  padding: 16px 22px;
  border-bottom: 1px solid var(--color-border-light);
}

.comparator-clean-table th {
  background: var(--color-light-bg);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--color-navy);
}

.comparator-clean-table th.col-highlight {
  background: #FFF9E6;
  color: var(--color-navy);
  border-top: 3px solid var(--color-yellow);
}

.comparator-clean-table td.col-highlight {
  background: #FFFDF7;
}

.comparator-clean-table td {
  font-size: 0.92rem;
  color: var(--color-graphite);
}

.comparator-clean-table td.spec-title {
  font-weight: 700;
  color: var(--color-navy);
  background: var(--color-light-bg-alt);
  width: 220px;
}

.comparator-clean-table tr:hover td {
  background-color: #F8FAFC;
}

/* Comparador Mobile */
.comparator-clean-mobile {
  display: none;
  flex-direction: column;
  gap: 16px;
}

.comparator-clean-mobile-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-subtle);
}

.comparator-clean-mobile-card.highlight {
  border-color: var(--color-yellow);
  border-width: 2px;
}

.comparator-clean-mobile-card h4 {
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: var(--color-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.comparator-clean-mobile-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border-light);
  font-size: 0.9rem;
}

.comparator-clean-mobile-row span:first-child {
  color: var(--color-text-secondary);
}

.comparator-clean-mobile-row span:last-child {
  font-weight: 700;
  color: var(--color-navy);
}

/* --------------------------------------------------------------------------
   13. FAQ (ACCORDION LIMPO EM FUNDO BRANCO)
   -------------------------------------------------------------------------- */
.faq-clean-section {
  background-color: var(--color-light-bg);
}

.faq-clean-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-clean-item {
  background: #FFFFFF;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-clean-item.active {
  border-color: var(--color-navy);
  box-shadow: var(--shadow-card);
}

.faq-clean-question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  transition: var(--transition-fast);
}

.faq-clean-question-btn:hover {
  color: #0E1B30;
}

.faq-clean-toggle-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-clean-item.active .faq-clean-toggle-icon {
  transform: rotate(45deg);
  background: var(--color-yellow);
  color: #111111;
}

.faq-clean-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  background: #FAFAFC;
}

.faq-clean-answer-content {
  padding: 0 26px 22px 26px;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   14. CTA FINAL & RODAPÉ
   -------------------------------------------------------------------------- */
.final-clean-cta-section {
  position: relative;
  padding: 88px 0;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-deep) 100%);
  color: #FFFFFF;
  overflow: hidden;
}

.final-clean-cta-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.final-clean-cta-grid h2 {
  color: #FFFFFF;
}

.final-clean-cta-grid p {
  color: #D2D8E2;
}

.final-clean-cta-btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.final-clean-cta-img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.final-clean-cta-img {
  max-width: 440px;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.35));
}

/* Footer */
.footer-clean {
  background-color: var(--color-soft-black);
  color: #FFFFFF;
  padding: 72px 0 28px 0;
}

.footer-clean-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 52px;
}

.footer-clean-brand img {
  height: 36px;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
}

.footer-clean-brand p {
  font-size: 0.9rem;
  color: #94A3B8;
  line-height: 1.6;
  max-width: 320px;
}

.footer-clean-heading {
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: 18px;
}

.footer-clean-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-clean-link {
  font-size: 0.9rem;
  color: #94A3B8;
}

.footer-clean-link:hover {
  color: var(--color-yellow);
  padding-left: 4px;
}

.footer-clean-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #94A3B8;
  margin-bottom: 12px;
}

.footer-clean-contact-item svg {
  color: var(--color-yellow);
  flex-shrink: 0;
}

.footer-clean-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: #64748B;
}

/* --------------------------------------------------------------------------
   15. WHATSAPP FLUTUANTE & STICKY MOBILE BAR
   -------------------------------------------------------------------------- */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background-color: var(--color-whatsapp);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.4);
  z-index: 999;
  cursor: pointer;
  transition: var(--transition-normal);
}

.floating-whatsapp-btn:hover {
  transform: scale(1.08);
  background-color: var(--color-whatsapp-hover);
}

.floating-whatsapp-btn svg {
  width: 32px;
  height: 32px;
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: var(--color-navy);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  box-shadow: var(--shadow-card);
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition-fast);
}

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

.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--color-border-subtle);
  padding: 10px 16px;
  z-index: 998;
  backdrop-filter: blur(10px);
  box-shadow: 0 -4px 20px rgba(18, 35, 62, 0.08);
}

.mobile-sticky-bar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mobile-sticky-bar .btn {
  padding: 12px 14px;
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   16. RESPONSIVIDADE
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-cinematic-section {
    min-height: 85vh;
  }

  .hero-cinematic-bg {
    background-position: 68% center;
  }

  .hero-cinematic-overlay {
    background:
      linear-gradient(to right,
        rgba(10, 13, 18, 0.97) 0%,
        rgba(10, 13, 18, 0.90) 45%,
        rgba(10, 13, 18, 0.55) 75%,
        rgba(10, 13, 18, 0.20) 100%),
      linear-gradient(to bottom,
        rgba(10, 13, 18, 0.6) 0%,
        transparent 22%),
      linear-gradient(to top,
        rgba(10, 13, 18, 0.5) 0%,
        transparent 18%);
  }

  .hero-cinematic-content {
    max-width: 540px;
  }

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

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

  .advisory-clean-grid {
    grid-template-columns: 1fr;
  }

  .form-clean-grid {
    grid-template-columns: 1fr;
  }

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

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

  .final-clean-cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .final-clean-cta-btns {
    justify-content: center;
  }

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

@media (max-width: 768px) {
  .nav-desktop,
  .header-actions .btn {
    display: none;
  }

  .mobile-toggle-btn {
    display: flex;
  }

  .hero-cinematic-section {
    padding-top: calc(var(--header-height) + 24px);
    padding-bottom: 48px;
    min-height: 88vh;
  }

  .hero-cinematic-bg {
    background-position: 70% 36%;
  }

  .hero-cinematic-overlay {
    background:
      linear-gradient(to bottom,
        rgba(10, 13, 18, 0.95) 0%,
        rgba(10, 13, 18, 0.88) 55%,
        rgba(10, 13, 18, 0.55) 80%,
        rgba(10, 13, 18, 0.85) 100%);
  }

  .hero-cinematic-headline {
    font-size: 2.15rem;
  }

  .hero-cinematic-bullets {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 10px;
  }

  .hero-cinematic-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-cinematic-ctas .btn {
    width: 100%;
  }

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

  .products-clean-grid {
    grid-template-columns: 1fr;
  }

  .advisory-clean-factors {
    grid-template-columns: 1fr;
  }

  .form-clean-card {
    padding: 28px 20px;
  }

  .apps-clean-grid {
    grid-template-columns: 1fr;
  }

  .diff-clean-grid {
    grid-template-columns: 1fr;
  }

  .comparator-clean-wrapper {
    display: none;
  }

  .comparator-clean-mobile {
    display: flex;
  }

  .final-clean-cta-btns {
    flex-direction: column;
    width: 100%;
  }

  .final-clean-cta-btns .btn {
    width: 100%;
  }

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

  .footer-clean-bottom {
    flex-direction: column;
    text-align: center;
    padding-bottom: 70px;
  }

  .floating-whatsapp-btn {
    display: none;
  }

  .mobile-sticky-bar {
    display: block;
  }
}
