/* ==========================================================================
   DESIGN SYSTEM - LCM SOLUÇÕES FINANCEIRAS (PALETA BTG BLUE & LUXO)
   ========================================================================== */

:root {
  /* Cores Base & Cadência BTG Pactual */
  --bg-offwhite: #f8fafc;
  --bg-white: #ffffff;
  --bg-dark: #051329;
  /* BTG Deep Midnight Blue */
  --bg-dark-card: #0a192f;
  /* BTG Royal Navy Surface */
  --bg-btg-blue: #001e62;
  /* BTG Signature Blue */
  --bg-slate: #f1f5f9;

  /* Tipografia & Contrastes */
  --text-main: #051329;
  /* Texto principal em azul marinho profundo BTG */
  --text-muted: #475569;
  --text-light: #64748b;
  --text-white: #f8fafc;
  --text-white-muted: rgba(248, 250, 252, 0.7);

  /* Destaque Luxo (Dourado Champanhe & Azul Real BTG) */
  --accent-gold: #c8a962;
  --accent-gold-hover: #b3924b;
  --accent-gold-soft: rgba(200, 169, 98, 0.14);
  --accent-btg: #003399;
  --border-light: rgba(5, 19, 41, 0.08);
  --border-dark: rgba(248, 250, 252, 0.12);

  /* Fontes */
  --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Transições e Layout */
  --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --max-width: 1280px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-offwhite);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

/* Scroll Offset para Header Fixo */
section[id],
div[id].comparison-column,
#imoveis,
#vitrine,
#comparativo,
#fgts,
#como-funciona,
#sobre,
#simulador,
#autoridade,
#financiamento-column {
  scroll-margin-top: 90px;
}

@media (max-width: 850px) {
  section[id],
  div[id].comparison-column,
  #imoveis,
  #vitrine,
  #comparativo,
  #fgts,
  #como-funciona,
  #sobre,
  #simulador,
  #autoridade,
  #financiamento-column {
    scroll-margin-top: 75px;
  }
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  letter-spacing: -0.04em;
  font-weight: 700;
  line-height: 1.08;
  color: var(--text-main);
}

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

button,
input {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Espaçamentos */
.py-huge {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.py-large {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

@media (max-width: 768px) {
  .py-huge {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .py-large {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

/* Badges & Tags */
.tag-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.tag-gold {
  color: var(--accent-gold);
}

/* Botões Padrão BTG / LCM */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.1rem 2.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.4s var(--transition-smooth);
  white-space: nowrap;
}

.btn-dark {
  background-color: var(--bg-dark);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-dark:hover {
  background-color: var(--bg-btg-blue);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(5, 19, 41, 0.3);
}

.btn-gold {
  background-color: var(--accent-gold);
  color: var(--bg-dark);
  font-weight: 700;
}

.btn-gold:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(200, 169, 98, 0.35);
}

.btn-outline {
  border: 1px solid var(--border-light);
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--text-main);
  background-color: var(--text-main);
  color: var(--text-white);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #051329 0%, #0a2540 100%);
  color: #ffffff;
  border: 1px solid rgba(200, 169, 98, 0.4);
  font-weight: 600;
  padding: 1.1rem 2.2rem;
  box-shadow: 0 10px 30px rgba(5, 19, 41, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  transition: all 0.35s var(--transition-smooth);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #0a2540 0%, #001e62 100%);
  border-color: var(--accent-gold);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(200, 169, 98, 0.3);
}

.btn-wa-icon-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: rgba(37, 211, 102, 0.15);
  border-radius: 50%;
  color: #25D366;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-whatsapp:hover .btn-wa-icon-svg {
  transform: scale(1.1);
  background-color: rgba(37, 211, 102, 0.28);
}

.btn-arrow-icon {
  margin-left: 0.35rem;
  color: var(--accent-gold);
  transition: transform 0.3s ease;
}

.btn-whatsapp:hover .btn-arrow-icon {
  transform: translateX(5px);
}

/* ==========================================================================
   1. HEADER / NAVBAR
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.4s var(--transition-smooth);
  background: transparent;
}

.header.scrolled {
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(5, 19, 41, 0.05);
  box-shadow: 0 10px 30px rgba(5, 19, 41, 0.03);
}

.header.theme-dark {
  background: rgba(5, 19, 41, 0.95) !important;
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  z-index: 1010;
}

.brand-logo {
  max-height: 40px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.brand-logo.logo-fade-out {
  opacity: 0;
  transform: scale(0.95);
}

/* Links do Menu Desktop */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

/* Efeito de Underline Dinâmico */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: width 0.35s var(--transition-smooth), left 0.35s var(--transition-smooth);
}

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

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

/* Modificações Dark Theme no Header */
.header.theme-dark .nav-link {
  color: rgba(248, 250, 252, 0.8);
}

.header.theme-dark .nav-link:hover {
  color: var(--text-white);
}

.header.theme-dark .nav-link::after {
  background-color: var(--accent-gold);
}

/* Ações e CTA do Header */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-cta {
  padding: 0.65rem 1.35rem !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.03em;
  border-radius: 50px !important;
}

/* Hamburger Button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1010;
  padding: 0;
}

.nav-hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  transition: all 0.3s ease;
}

.header.theme-dark .nav-hamburger span {
  background-color: var(--text-white);
}

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

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

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

/* Menu Mobile Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: rgba(5, 19, 41, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 2.5rem 2rem;
  box-sizing: border-box;
  transform: translateY(-20px);
  transition: transform 0.4s var(--transition-smooth);
}

.mobile-menu-overlay.active .mobile-menu-inner {
  transform: translateY(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-logo {
  max-height: 38px;
  width: auto;
}

.mobile-menu-close {
  background: transparent;
  color: var(--text-white);
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(90deg);
  color: var(--accent-gold);
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: auto 0;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-white);
  transition: color 0.3s ease, padding-left 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-link::after {
  content: '→';
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: rgba(200, 169, 98, 0.4);
  transition: transform 0.3s ease, color 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--accent-gold);
  padding-left: 0.5rem;
}

.mobile-nav-link:hover::after {
  color: var(--accent-gold);
  transform: translateX(4px);
}

.mobile-menu-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-cta {
  padding: 0.85rem !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
}

/* Media Queries para responsividade do Header */
@media (max-width: 850px) {
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-cta {
    display: none;
    /* Esconde CTA no header direto para mobile, o hambúrguer assume */
  }
}

/* ==========================================================================
   2. HERO SECTION (OFF-WHITE BASE & MARQUEE BTG BLUE)
   ========================================================================== */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 8.5rem;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  background-color: var(--bg-offwhite);
}

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

.hero>.container {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* Faixa Marquee de Termos Correlatos no Tom Azul BTG (Conectada perfeitamente à Seção Escura) */
.marquee-banner {
  width: 100%;
  background-color: var(--bg-dark);
  /* Azul BTG Deep Midnight #051329 */
  border-top: 1px solid rgba(200, 169, 98, 0.3);
  border-bottom: 1px solid rgba(200, 169, 98, 0.15);
  overflow: hidden;
  padding: 1.25rem 0;
  margin-top: 4.5rem;
  margin-bottom: 0 !important;
  box-shadow: 0 10px 30px rgba(5, 19, 41, 0.15);
  position: relative;
  z-index: 2;
}

.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
  white-space: nowrap;
}

.marquee-content span {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.8vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  /* Dourado Champanhe */
}

.marquee-content .dot {
  color: rgba(248, 250, 252, 0.4);
  font-size: 0.85rem;
}

.hero-header {
  max-width: 1100px;
}

.hero-tag-clean {
  color: var(--accent-gold) !important;
}

.hero-headline {
  font-size: clamp(2rem, 5vw, 4rem);
  text-transform: uppercase;
  color: var(--text-main);
  margin-bottom: 2.5rem;
  line-height: 0.96;
}

.hero-highlight {
  color: var(--accent-gold);
  font-style: italic;
  font-weight: 400;
}

.hero-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: flex-end;
  margin-top: 2.5rem;
}

@media (max-width: 900px) {
  .hero-footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.hero-desc {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   3. SEÇÃO DE AUTORIDADE (OBSIDIAN DARK)
   ========================================================================== */
.authority {
  background-color: var(--bg-dark);
  color: var(--text-white);
  position: relative;
  margin-top: 0 !important;
  padding-top: 6.5rem;
  padding-bottom: 7.5rem;
  z-index: 2;
}

.authority-content {
  max-width: 1150px;
  margin: 0 auto;
}

.authority-statement {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 3.5rem;
  color: var(--text-white);
}

.accent-gold {
  color: var(--accent-gold);
  font-weight: 700;
}

/* Informações LCM (Design Editorial Cardless & Refinado) */
.authority-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3.5rem;
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
  align-items: start;
}

#authMetricsGrid {
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

@media (max-width: 1100px) {
  #authMetricsGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 900px) {
  .authority-metrics-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem;
  }
}

.pillar-card {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 0 !important;
  padding: 2rem 1rem 1rem 0 !important;
  position: relative;
  transition: transform 0.35s var(--transition-smooth);
  box-shadow: none !important;
}

.pillar-card::before {
  content: '' !important;
  display: block !important;
  position: absolute;
  top: -1px;
  left: 0;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
  transition: width 0.4s ease;
}

.pillar-card:hover {
  transform: translateY(-4px) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.pillar-card:hover::before {
  width: 100%;
}

.pillar-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
  margin-bottom: 1.5rem;
}

.pillar-icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(200, 169, 98, 0.08);
  border: 1px solid rgba(200, 169, 98, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  flex-shrink: 0;
}

.pillar-card:hover .pillar-icon-badge {
  transform: scale(1.08) rotate(3deg);
  background: rgba(200, 169, 98, 0.18);
  border-color: var(--accent-gold);
  box-shadow: 0 0 15px rgba(200, 169, 98, 0.2);
}

.pillar-tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  opacity: 0.85;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}

.pillar-text {
  font-size: 0.92rem;
  color: var(--text-white-muted);
  line-height: 1.75;
}

/* ==========================================================================
   3A. SEÇÃO DE IMÓVEIS (PORTFÓLIO DE AQUISIÇÃO PATRIMONIAL)
   ========================================================================== */
.properties-section {
  background-color: var(--bg-offwhite);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(5, 19, 41, 0.05);
}

.property-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 3.5rem;
}

@media (max-width: 1200px) {
  .property-categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 680px) {
  .property-categories-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

.property-cat-card {
  background: var(--bg-white);
  border: 1px solid rgba(5, 19, 41, 0.08);
  border-radius: 22px;
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.4s var(--transition-smooth);
  box-shadow: 0 8px 24px rgba(5, 19, 41, 0.03);
}

.property-cat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.75rem;
  right: 1.75rem;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(5, 19, 41, 0.12), transparent);
  transition: background 0.4s ease;
}

.property-cat-card:hover {
  transform: translateY(-7px);
  border-color: rgba(200, 169, 98, 0.4);
  box-shadow: 0 20px 45px rgba(5, 19, 41, 0.08);
}

.property-cat-card:hover::before {
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.property-cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.property-cat-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(5, 19, 41, 0.04);
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

.property-cat-card:hover .property-cat-icon {
  background: var(--bg-dark);
  color: var(--accent-gold);
  transform: scale(1.06);
}

.property-cat-num {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(5, 19, 41, 0.2);
}

.property-cat-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  background-color: rgba(200, 169, 98, 0.12);
  color: #80621d;
  margin-bottom: 0.85rem;
}

.property-cat-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}

.property-cat-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.property-cat-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.property-cat-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.86rem;
  color: var(--text-main);
  line-height: 1.4;
}

.p-check {
  color: var(--accent-gold);
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1;
  flex-shrink: 0;
}

.property-cat-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(5, 19, 41, 0.06);
}

.property-cat-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  transition: all 0.3s ease;
}

.property-cat-link svg {
  color: var(--accent-gold);
  transition: transform 0.3s ease;
}

.property-cat-card:hover .property-cat-link {
  color: var(--accent-gold);
}

.property-cat-card:hover .property-cat-link svg {
  transform: translateX(4px);
}

/* Banner Editorial de Imóveis */
.property-editorial-banner {
  margin-top: 3.5rem;
  background: var(--bg-dark);
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
  border: 1px solid rgba(200, 169, 98, 0.2);
  box-shadow: 0 20px 50px rgba(5, 19, 41, 0.2);
}

@media (max-width: 960px) {
  .property-editorial-banner {
    grid-template-columns: 1fr;
  }
}

.editorial-banner-content {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 600px) {
  .editorial-banner-content {
    padding: 2.25rem 1.75rem;
  }
}

.editorial-banner-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.editorial-banner-desc {
  font-size: 1rem;
  color: var(--text-white-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.editorial-pillars-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 600px) {
  .editorial-pillars-mini {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.editorial-pillar-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.pillar-mini-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: -0.02em;
}

.pillar-mini-text {
  font-size: 0.8rem;
  color: var(--text-white-muted);
  line-height: 1.4;
}

.editorial-banner-media {
  position: relative;
  min-height: 320px;
}

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

.editorial-media-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(5, 19, 41, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(200, 169, 98, 0.4);
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  color: var(--text-white);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.editorial-media-badge .badge-icon {
  color: var(--accent-gold);
}

/* CTA Box da Seção de Imóveis */
.property-section-cta {
  margin-top: 3rem;
}

.cta-inner-box {
  background: var(--bg-white);
  border: 1px solid rgba(5, 19, 41, 0.08);
  border-radius: 20px;
  padding: 2.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: 0 10px 30px rgba(5, 19, 41, 0.03);
}

.cta-text-side {
  max-width: 600px;
}

.cta-box-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.cta-box-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.cta-buttons-side {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   3B. PAINEL DE SOLUÇÕES PATRIMONIAIS (DESIGN EDITORIAL PRIVATE BANKING)
   ========================================================================== */
.property-showcase {
  background-color: var(--bg-offwhite);
  position: relative;
  overflow: hidden;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

@media (max-width: 1024px) {
  .solution-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.solution-panel {
  background: var(--bg-white);
  border: 1px solid rgba(5, 19, 41, 0.08);
  border-radius: 24px;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.4s var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.solution-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(5, 19, 41, 0.15), transparent);
  transition: background 0.4s ease;
}

.solution-panel:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 169, 98, 0.4);
  box-shadow: 0 25px 50px rgba(5, 19, 41, 0.09);
}

.solution-panel:hover::before {
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

/* Modalidade em Destaque (Consórcio Estruturado) */
.solution-panel.solution-featured {
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  border: 2px solid var(--accent-gold);
  box-shadow: 0 16px 40px rgba(200, 169, 98, 0.15);
}

.solution-featured-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-gold), #b89345);
  color: var(--bg-dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.35rem 1.1rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(200, 169, 98, 0.3);
}

.solution-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.solution-icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(5, 19, 41, 0.05);
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

.solution-icon-circle.gold {
  background: rgba(200, 169, 98, 0.15);
  color: #927429;
}

.solution-panel:hover .solution-icon-circle {
  background: var(--bg-dark);
  color: var(--accent-gold);
  transform: scale(1.06);
}

.solution-num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(5, 19, 41, 0.2);
}

.solution-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.85rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.badge-blue {
  background-color: rgba(5, 19, 41, 0.06);
  color: var(--bg-dark);
}

.badge-gold {
  background-color: rgba(200, 169, 98, 0.15);
  color: #80621d;
}

.solution-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.solution-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.solution-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.solution-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.45;
}

.feat-check {
  color: var(--bg-dark);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
}

.feat-check.gold {
  color: #927429;
}

.solution-panel-footer {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(5, 19, 41, 0.06);
}

.solution-cta-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 1.35rem;
  border-radius: 12px;
  background-color: var(--bg-offwhite);
  border: 1px solid rgba(5, 19, 41, 0.12);
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.35s var(--transition-smooth);
}

.solution-cta-btn.btn-gold-solid {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #b89345 100%);
  color: var(--bg-dark);
  border: none;
  box-shadow: 0 8px 20px rgba(200, 169, 98, 0.25);
}

.solution-cta-btn.btn-gold-solid:hover {
  background: linear-gradient(135deg, #d6b86e 0%, var(--accent-gold) 100%);
  box-shadow: 0 12px 28px rgba(200, 169, 98, 0.4);
}

.solution-cta-btn svg {
  transition: transform 0.3s ease;
}

.solution-cta-btn:hover {
  border-color: var(--bg-dark);
  background-color: var(--bg-dark);
  color: var(--text-white);
}

.solution-cta-btn:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
   4. COMO FUNCIONA (PROCESSO EDITORIAL)
   ========================================================================== */
.process {
  background-color: var(--bg-offwhite);
}

.section-top {
  margin-bottom: 3rem;
  text-align: center;
}

.section-headline {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-main);
}

.section-sub {
  margin: 0 auto;
}

/* Grid editorial horizontal — 4 colunas */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  position: relative;
}

/* Linha horizontal dourada sutil que conecta todas as colunas */
.process-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(200, 169, 98, 0.3) 15%,
      rgba(200, 169, 98, 0.3) 85%,
      transparent 100%);
}

.process-step {
  padding: 2.5rem 2.25rem 2rem;
  position: relative;
  transition: background 0.4s ease;
}

/* Acento dourado individual no topo — cresce no hover */
.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2.25rem;
  width: 36px;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.process-step:hover::before {
  width: calc(100% - 4.5rem);
}

.process-step:hover {
  background: rgba(200, 169, 98, 0.03);
}

/* Separadores verticais sutis entre colunas */
.process-step+.process-step {
  border-left: 1px solid rgba(5, 19, 41, 0.06);
}

/* Numeração tipográfica grande — estilo relatório financeiro */
.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  color: rgba(200, 169, 98, 0.18);
  line-height: 1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.04em;
  transition: color 0.4s ease;
}

.process-step:hover .step-num {
  color: rgba(200, 169, 98, 0.35);
}

/* Título da etapa */
.step-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.process-step:hover .step-title {
  color: var(--bg-btg-blue);
}

/* Texto descritivo */
.step-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.72;
}

/* Ocultar elementos do layout anterior */
.process-sequence {
  display: none;
}

.step-indicator {
  display: none;
}

.step-num-circle {
  display: none;
}

.step-connector {
  display: none;
}

.step-icon-wrap {
  display: none;
}

.step-content {
  display: contents;
}

/* Responsivo */
@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step:nth-child(3) {
    border-left: none;
  }

  .process-step:nth-child(n+3) {
    border-top: 1px solid rgba(5, 19, 41, 0.06);
  }
}

@media (max-width: 640px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    padding: 2rem 0;
  }

  .process-step::before {
    left: 0;
  }

  .process-step:hover::before {
    width: 100%;
  }

  .process-step+.process-step {
    border-left: none;
    border-top: 1px solid rgba(5, 19, 41, 0.06);
  }

  .step-num {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .step-title {
    font-size: 1.1rem;
  }
}

/* ==========================================================================
   5. O SIMULADOR INTERATIVO (NÚCLEO DE CONVERSÃO - DESIGN PREMIUM BTG)
   ========================================================================== */
.simulator-section {
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.simulator-card {
  max-width: 960px;
  margin: 0 auto;
  background: var(--bg-offwhite);
  border-radius: 28px;
  padding: 3.5rem 3rem;
  border: 1px solid rgba(5, 19, 41, 0.08);
  box-shadow: 0 25px 60px -15px rgba(5, 19, 41, 0.07);
  position: relative;
  overflow: hidden;
}

.simulator-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--bg-btg-blue), var(--accent-gold), var(--bg-btg-blue));
}

@media (max-width: 640px) {
  .simulator-card {
    padding: 2rem 1.25rem;
    border-radius: 20px;
  }
}

.sim-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.sim-headline {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.sim-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
}

/* Container do Indicador de Progresso (Stepper Responsivo) */
.sim-progress-wrapper {
  margin-bottom: 3rem;
}

.sim-progress-header-mobile {
  display: none;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
}

.mobile-step-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-gold);
}

.mobile-step-title {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
}

.sim-progress-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0 1rem;
}

.progress-bar-track {
  position: absolute;
  top: 18px;
  left: 3.5rem;
  right: 3.5rem;
  height: 3px;
  background-color: var(--border-light);
  z-index: 1;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--bg-dark), var(--accent-gold));
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 999px;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  z-index: 2;
  cursor: default;
  transition: all 0.3s ease;
}

.step-num-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--bg-white);
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-light);
  transition: all 0.3s var(--transition-smooth);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.step-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  transition: color 0.3s ease;
  white-space: nowrap;
}

.progress-step.active .step-num-badge {
  background-color: var(--bg-dark);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(200, 169, 98, 0.35);
}

.progress-step.active .step-label {
  color: var(--text-main);
  font-weight: 700;
}

.progress-step.completed .step-num-badge {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--bg-dark);
}

/* Painéis das Etapas */
.sim-step-panel {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.sim-step-panel.active {
  display: block;
  opacity: 1;
}

.panel-header-badge {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.step-counter-pill {
  padding: 0.25rem 0.65rem;
  background-color: var(--bg-dark);
  color: var(--accent-gold);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-display);
  flex-shrink: 0;
}

.step-panel-title {
  font-size: 1.3rem;
  color: var(--text-main);
  margin-bottom: 0;
  line-height: 1.3;
}

.step-hint {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 400;
}

/* Selector de Bens (Cards de Escolha) */
.asset-selector-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 850px) {
  .asset-selector-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 550px) {
  .asset-selector-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

.asset-btn {
  background-color: var(--bg-white);
  border: 1.5px solid var(--border-light);
  border-radius: 20px;
  padding: 1.5rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
}

.asset-btn:hover {
  border-color: var(--text-main);
  transform: translateY(-3px);
}

.asset-btn.active {
  background-color: var(--bg-dark);
  border-color: var(--accent-gold);
  color: var(--text-white);
  box-shadow: 0 14px 28px rgba(12, 13, 15, 0.15);
}

.asset-icon-svg {
  width: 34px;
  height: 34px;
  margin-bottom: 0.85rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease, transform 0.3s ease;
}

.asset-icon-svg svg {
  width: 28px;
  height: 28px;
}

.asset-btn:hover .asset-icon-svg {
  color: var(--accent-gold);
  transform: scale(1.08);
}

.asset-btn.active .asset-icon-svg {
  color: var(--accent-gold);
}

.asset-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.asset-sub {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.3;
}

.asset-btn.active .asset-sub {
  color: var(--text-white-muted);
}

/* Selector de Faixa de Valor (Cards Financeiros) */
.region-selector-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.region-btn {
  background-color: var(--bg-white);
  border: 1.5px solid var(--border-light);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.region-btn:hover {
  border-color: var(--bg-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(5, 19, 41, 0.08);
}

.region-btn.active {
  background-color: var(--bg-dark);
  border-color: var(--accent-gold);
  color: var(--text-white);
  box-shadow: 0 16px 32px rgba(5, 19, 41, 0.18);
}

.region-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  width: 100%;
}

.region-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background-color: var(--bg-slate);
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.region-btn.active .region-tag {
  background-color: rgba(200, 169, 98, 0.2);
  color: var(--accent-gold);
}

.region-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--bg-slate);
  color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.region-btn.active .region-check {
  background-color: var(--accent-gold);
  color: var(--bg-dark);
}

.region-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.region-btn.active .region-name {
  color: var(--text-white);
}

.region-sub {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.4;
}

.region-btn.active .region-sub {
  color: var(--text-white-muted);
}

/* Slider Interativo Dinâmico */
.slider-wrapper {
  margin-bottom: 2rem;
}

.sim-range-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-gold-soft) 0%, var(--border-light) 100%);
  outline: none;
  cursor: pointer;
  transition: background 0.1s linear;
}

.sim-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 3px solid var(--accent-gold);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(5, 19, 41, 0.3), 0 0 0 6px rgba(200, 169, 98, 0.12);
  transition: transform 0.25s var(--transition-smooth), box-shadow 0.25s ease;
}

.sim-range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.18);
  box-shadow: 0 4px 20px rgba(5, 19, 41, 0.4), 0 0 0 8px rgba(200, 169, 98, 0.18);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* --- STEP 3: HINT DE SUBTÍTULO --- */
.step-panel-hint {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-top: 0.35rem;
  line-height: 1.5;
}

/* --- STEP 3: INVESTMENT INPUT CARD --- */
.investment-input-card {
  background: linear-gradient(135deg, var(--bg-white) 0%, #f0f4f8 100%);
  border: 1.5px solid var(--border-light);
  border-radius: 20px;
  padding: 1.25rem 1.75rem;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.investment-input-card:focus-within {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(200, 169, 98, 0.1), 0 8px 24px rgba(5, 19, 41, 0.06);
}

.investment-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.investment-label svg {
  color: var(--accent-gold);
  flex-shrink: 0;
}

.investment-input-wrapper {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.investment-input-wrapper .currency-symbol {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
}

.investment-value-input {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-main);
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  letter-spacing: -0.02em;
}

/* --- STEP 3: DASHBOARD KPI PREMIUM (GLASSMORPHISM) --- */
.live-calc-card--premium {
  background: linear-gradient(145deg, rgba(248, 250, 252, 0.95) 0%, rgba(241, 245, 249, 0.9) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(200, 169, 98, 0.2);
  border-radius: 24px;
  padding: 1.75rem 2rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 1.25rem;
  box-shadow:
    0 1px 2px rgba(5, 19, 41, 0.04),
    0 8px 32px rgba(5, 19, 41, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
}

.high-profile-warning {
  display: none;
  width: 100%;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.25rem;
  background: rgba(200, 169, 98, 0.08);
  border: 1px solid rgba(200, 169, 98, 0.35);
  border-radius: 12px;
  color: var(--accent-gold);
  font-size: 0.82rem;
  margin-top: 0.5rem;
  box-sizing: border-box;
  z-index: 2;
}

.high-profile-warning.active {
  display: flex !important;
}

.live-calc-card--premium::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(200, 169, 98, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.calc-kpi-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  flex: 1;
  min-width: 0;
}

.calc-kpi-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  flex-shrink: 0;
  transition: transform 0.3s var(--transition-smooth);
}

.calc-kpi-item:hover .calc-kpi-icon {
  transform: scale(1.08);
}

.calc-kpi-icon--gold {
  background: linear-gradient(135deg, rgba(200, 169, 98, 0.15) 0%, rgba(200, 169, 98, 0.06) 100%);
  color: var(--accent-gold);
}

.calc-kpi-icon--blue {
  background: linear-gradient(135deg, rgba(0, 30, 98, 0.12) 0%, rgba(0, 30, 98, 0.04) 100%);
  color: var(--bg-btg-blue);
}

.calc-kpi-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.calc-kpi-content .calc-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.calc-kpi-content .calc-val {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
}

.calc-note {
  font-size: 0.62rem;
  color: var(--text-light);
  margin-top: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

/* --- STEP 3: CHIPS MODERNOS --- */
.chips-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-top: 2rem;
  margin-bottom: 0.85rem;
}

.quick-value-chips {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.chip-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: var(--bg-white);
  border: 1.5px solid var(--border-light);
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s var(--transition-smooth);
}

.chip-btn svg {
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.chip-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(200, 169, 98, 0.12);
}

.chip-btn:hover svg {
  opacity: 1;
}

.chip-btn.active {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #0a192f 100%);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  box-shadow: 0 4px 16px rgba(5, 19, 41, 0.2);
}

.chip-btn.active svg {
  opacity: 1;
}

/* Campos de Formuário de Contato */
.contact-form-fields {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.quiz-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quiz-input-line-group {
  position: relative;
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border-light);
  border-radius: 16px;
  background: var(--bg-white);
  padding: 0.85rem 1.25rem;
  transition: all 0.3s ease;
}

.quiz-input-line-group:focus-within {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 4px var(--accent-gold-soft);
}

.input-icon-left {
  color: var(--text-light);
  display: flex;
  align-items: center;
  margin-right: 0.85rem;
  transition: color 0.3s ease;
}

.quiz-input-line-group:focus-within .input-icon-left {
  color: var(--accent-gold);
}

.quiz-input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
}

/* Input Minimalista de Linha */
.input-line-group {
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--border-light);
  padding: 0.5rem 0;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s ease;
}

.input-line-group:focus-within {
  border-color: var(--accent-gold);
}

.currency-symbol {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-right: 1rem;
}

.input-line {
  width: 100%;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-main);
}

/* Painel de Resumo / Ficha de Solicitação */
.summary-box {
  background-color: var(--bg-white);
  border-radius: 24px;
  padding: 2.25rem;
  margin-bottom: 2.5rem;
  border: 1px solid var(--border-light);
  box-shadow: 0 15px 35px rgba(5, 19, 41, 0.04);
}

.summary-box-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.sum-status-badge {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-gold);
  background-color: var(--accent-gold-soft);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--accent-gold);
}

.sum-date {
  font-size: 0.8rem;
  color: var(--text-light);
}

.summary-grid-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.summary-row {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed var(--border-light);
}

.sum-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.sum-val {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-main);
}

.summary-msg-preview {
  margin-top: 1.25rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.summary-msg-preview p {
  margin-top: 0.5rem;
  padding: 1rem 1.25rem;
  background-color: var(--bg-offwhite);
  border-radius: 14px;
  font-style: italic;
  color: var(--text-main);
  border-left: 3px solid var(--accent-gold);
  line-height: 1.5;
}

.step-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.step-actions.flex-between {
  justify-content: space-between;
}

/* ==========================================================================
   6. PROVA SOCIAL / AVALIAÇÕES (CARROSSEL SOFISTICADO PRIVATE BANKING)
   ========================================================================== */
.quote-section {
  background-color: var(--bg-dark);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.quote-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.feedback-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  font-weight: 700;
  color: var(--text-white);
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}

.feedback-section-sub {
  font-size: 1.05rem;
  color: var(--text-white-muted);
  margin-bottom: 3.5rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.feedback-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 1.5rem 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

@keyframes feedbackScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.feedback-track {
  display: flex;
  gap: 1.75rem;
  width: max-content;
  will-change: transform;
  animation: feedbackScroll 45s linear infinite;
}

.feedback-marquee:hover .feedback-track {
  animation-play-state: paused;
}

/* Card de Depoimento Glassmorphism Luxury */
.feedback-card {
  width: 380px;
  background: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  flex-shrink: 0;
  transition: all 0.4s var(--transition-smooth);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.feedback-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.feedback-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 169, 98, 0.35);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.45);
}

.feedback-card:hover::before {
  opacity: 1;
}

.feedback-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.15rem;
}

.feedback-user-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.user-avatar-badge {
  position: relative;
  overflow: hidden;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(200, 169, 98, 0.25), rgba(0, 30, 98, 0.8));
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-avatar-badge img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.feedback-user-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
}

.feedback-user-meta {
  font-size: 0.75rem;
  color: var(--accent-gold);
  display: block;
}

.feedback-stars {
  color: var(--accent-gold);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}

.feedback-text {
  font-size: 0.93rem;
  color: var(--text-white-muted);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.25rem;
}

/* Moldura Refinada da Prova Social (Mensagem do WhatsApp) */
.feedback-proof-wrapper {
  cursor: pointer;
}

.feedback-proof-thumb {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(5, 19, 41, 0.7);
  height: 110px;
}

.feedback-proof-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.82;
  filter: brightness(0.9);
  transition: all 0.35s ease;
}

.proof-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 19, 41, 0.65);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: var(--text-white);
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feedback-proof-wrapper:hover .feedback-proof-thumb img {
  transform: scale(1.05);
  opacity: 1;
}

.feedback-proof-wrapper:hover .proof-overlay {
  opacity: 1;
}

/* Modal Lightbox */
.proof-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.proof-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.proof-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 19, 41, 0.85);
  backdrop-filter: blur(10px);
}

.proof-modal-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 85vh;
}

.proof-modal-content img {
  max-width: 100%;
  max-height: 82vh;
  border-radius: 16px;
  border: 1px solid rgba(200, 169, 98, 0.4);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.proof-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 640px) {
  .feedback-card {
    width: 310px;
    padding: 1.35rem;
  }
}

/* ==========================================================================
   7. RODAPÉ REFINADO E CONSULTIVO
   ========================================================================== */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-white);
  border-top: 1px solid var(--border-dark);
}

.footer-hero-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 4rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid var(--border-dark);
  flex-wrap: wrap;
  gap: 2.5rem;
}

.footer-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  text-transform: none;
  line-height: 1.25;
  color: var(--text-white);
  letter-spacing: -0.02em;
  font-weight: 600;
  max-width: 700px;
}

.footer-subtitle {
  font-size: 1.05rem;
  color: var(--text-white-muted);
  margin-top: 0.75rem;
  font-weight: 400;
  max-width: 580px;
  line-height: 1.6;
}

.title-gold {
  color: var(--accent-gold);
  font-style: normal;
  font-weight: 600;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border-dark);
}

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

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

.logo-white {
  color: var(--text-white);
  margin-bottom: 1.25rem;
}

.footer-brand-desc {
  font-size: 0.95rem;
  color: var(--text-white-muted);
  max-width: 320px;
}

.footer-heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

.footer-link-list {
  list-style: none;
}

.footer-link-list li {
  margin-bottom: 0.85rem;
}

.footer-link-list a {
  color: var(--text-white-muted);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2.5rem;
  font-size: 0.84rem;
  color: var(--text-white-muted);
  border-top: 1px solid var(--border-dark);
  flex-wrap: wrap;
  gap: 1.5rem;
}

.copyright-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.bar-separator {
  color: var(--accent-gold);
  opacity: 0.6;
}

.legal-badges {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.legal-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--text-white-muted);
  transition: all 0.3s ease;
}

.legal-badge-item svg {
  color: var(--accent-gold);
  flex-shrink: 0;
}

.legal-badge-item:hover {
  border-color: var(--accent-gold);
  color: var(--text-white);
  background: rgba(200, 169, 98, 0.08);
}

/* ==========================================================================
   8. OTIMIZAÇÃO ULTRA-MOBILE E ADAPTABILIDADE MULTI-DISPOSITIVO
   ========================================================================== */

/* Ajuste Global para Prevenir Overflow Horizontal */
body,
html {
  width: 100%;
  overflow-x: hidden;
}

/* Breakpoint Tablet & Telas Intermediárias (<= 1024px) */
@media (max-width: 1024px) {
  .hero-header {
    max-width: 100%;
  }

  .hero-footer-grid {
    gap: 3rem;
  }
}

/* Breakpoint Tablet Pequeno & Celulares Grandes (<= 850px) */
@media (max-width: 850px) {
  .header {
    padding: 1.1rem 0;
  }

  .logo {
    font-size: 1.15rem;
  }

  .logo-sub {
    display: none;
    /* Esconde subtítulo secundário do logo no mobile para evitar sobreposição */
  }

  .nav-links {
    display: none;
  }

  .btn-dark.wa-btn-trigger {
    padding: 0.65rem 1.1rem;
    font-size: 0.82rem;
  }

  .hero-headline {
    font-size: clamp(2.4rem, 8vw, 4.5rem);
  }

  .authority-statement {
    font-size: clamp(1.8rem, 5vw, 3rem);
  }

  .authority-metrics-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

/* Breakpoint Celulares Médios (<= 640px) */
@media (max-width: 640px) {
  .container {
    padding: 0 1.25rem;
  }

  .py-huge {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .py-large {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    height: 100dvh;
    /* Enquadramento cirúrgico de 100dvh na primeira dobra no mobile */
    padding-top: 4.8rem;
    /* Liberação precisa da barra de navegação superior */
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    /* Elimina 100% de qualquer vazamento visual da segunda seção */
    box-sizing: border-box;
  }

  .hero>.container {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Centraliza o bloco de manifesto coeso no espaço vertical */
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .hero-header {
    display: block;
    /* Layout em bloco coeso: tag, título, texto e botões permanecem unidos */
    width: 100%;
  }

  .hero-tag-clean {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    margin-bottom: 0.85rem;
  }

  .hero-headline {
    font-size: clamp(2.1rem, 7.8vw, 3.4rem);
    /* Presença visual marcante de boutique financeira */
    margin-bottom: 1rem;
    line-height: 0.98;
    letter-spacing: -0.03em;
  }

  .hero-footer-grid {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .hero-desc {
    font-size: clamp(0.95rem, 3.4vw, 1.08rem);
    line-height: 1.5;
    color: var(--text-muted);
  }

  .hero-cta-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    margin-top: 1.25rem;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
    padding: 0.95rem 1.4rem;
    font-size: 0.9rem;
  }

  .marquee-banner {
    margin-top: auto;
    /* Ancoragem precisa no limite inferior de 100dvh */
    margin-bottom: 0 !important;
    padding: 0.85rem 0;
    flex-shrink: 0;
  }


  .simulator-card {
    padding: 2rem 1.15rem;
    border-radius: 20px;
  }

  .sim-headline {
    font-size: 1.75rem;
  }

  .sim-sub {
    font-size: 0.9rem;
  }

  .sim-progress-wrapper {
    margin-bottom: 2rem;
  }

  .sim-progress-header-mobile {
    display: flex;
  }

  .sim-progress-bar {
    padding: 0 0.5rem;
  }

  .progress-bar-track {
    top: 15px;
    left: 1.5rem;
    right: 1.5rem;
  }

  .step-label {
    display: none;
    /* Esconde texto abaixo das bolinhas no mobile para eliminar sobreposição totalmente */
  }

  .step-num-badge {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .panel-header-badge {
    gap: 0.6rem;
    margin-bottom: 1.5rem;
  }

  .step-counter-pill {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
  }

  .step-panel-title {
    font-size: 1.15rem;
  }

  .step-hint {
    display: block;
    margin-left: 0;
    margin-top: 0.2rem;
  }

  .region-selector-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .region-btn {
    padding: 1.15rem;
    border-radius: 16px;
  }

  .region-name {
    font-size: 1.15rem;
  }

  .live-calc-card,
  .live-calc-card--premium {
    flex-direction: column;
    padding: 1.25rem;
    gap: 1rem;
    border-radius: 18px;
  }

  .calc-divider,
  .calc-kpi-divider {
    width: 100%;
    height: 1px;
    background: var(--border-light);
  }

  .calc-val,
  .calc-kpi-content .calc-val {
    font-size: 1.15rem;
  }

  .investment-value-input {
    font-size: 1.6rem;
  }

  .investment-input-card {
    padding: 1rem 1.25rem;
  }

  .summary-box {
    padding: 1.25rem;
    border-radius: 18px;
  }

  .summary-grid-details {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .sum-val {
    font-size: 1.05rem;
  }

  .summary-msg-preview p {
    font-size: 0.82rem;
    padding: 0.75rem 0.9rem;
  }

  .step-actions.flex-between {
    flex-direction: column-reverse;
    gap: 0.85rem;
    width: 100%;
  }

  .step-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .editorial-quote {
    font-size: clamp(1.35rem, 5.5vw, 2.2rem);
    margin-bottom: 1.75rem;
  }

  .footer-hero-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.75rem;
  }

  .footer-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* Breakpoint Celulares Compactos (<= 500px) */
@media (max-width: 500px) {
  .asset-selector-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

  .asset-btn {
    padding: 1.1rem 0.4rem;
    border-radius: 16px;
  }

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

  .asset-name {
    font-size: 0.9rem;
  }

  .asset-sub {
    font-size: 0.68rem;
  }

  .currency-symbol {
    font-size: 1.5rem;
    margin-right: 0.4rem;
  }

  .input-line {
    font-size: 1.6rem;
  }

  .quick-value-chips {
    gap: 0.4rem;
  }

  .chip-btn {
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
  }

  .floating-wa-btn {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 52px;
    height: 52px;
  }

  .floating-wa-btn svg {
    width: 24px;
    height: 24px;
  }
}

/* Breakpoint Telas Muito Pequenas (<= 360px) */
@media (max-width: 360px) {
  .asset-selector-grid {
    grid-template-columns: 1fr;
  }

  .hero-headline {
    font-size: 1.85rem;
  }

  .btn {
    padding: 0.9rem 1.4rem;
    font-size: 0.88rem;
  }
}

/* ==========================================================================
   NICHED REAL ESTATE COMPONENTS (PIVOT IMÓVEIS)
   ========================================================================== */

/* 1. BARRA DE BUSCA DE IMÓVEIS (PROPERTY SEARCH BAR) */
.property-search-section {
  background-color: var(--bg-offwhite);
  padding: 4.5rem 0 2rem 0;
  /* Removido overlap da faixa marquee, adicionado espaçamento premium */
  position: relative;
  z-index: 10;
}

.search-bar-wrapper {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 2.25rem 2.5rem;
  box-shadow: 0 20px 45px rgba(5, 19, 41, 0.04);
}

.search-bar-form {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr;
  gap: 2.5rem;
  align-items: flex-end;
}

.search-field {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.search-field-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.custom-dropdown {
  position: relative;
  width: 100%;
}

.custom-dropdown-selected {
  width: 100%;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-main);
  background: transparent;
  border-bottom: 2px solid var(--border-light);
  padding: 0.35rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  transition: border-color 0.3s ease;
}

.custom-dropdown-selected:hover {
  border-color: var(--accent-gold);
}

.custom-dropdown-selected span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropdown-arrow {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--text-main);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

.custom-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
  stroke: var(--accent-gold);
}

.custom-dropdown.active .custom-dropdown-selected {
  border-color: var(--accent-gold);
}

.custom-dropdown.error .custom-dropdown-selected {
  border-color: #ef4444 !important;
}

.custom-dropdown-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  margin-top: 0.5rem;
  padding: 0.5rem 0;
  list-style: none;
  z-index: 999;
  box-shadow: 0 15px 40px rgba(5, 19, 41, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-dropdown.active .custom-dropdown-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.custom-dropdown-options li {
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
  text-align: left;
}

.custom-dropdown-options li:hover {
  background-color: var(--bg-offwhite);
  color: var(--accent-gold);
  padding-left: 1.75rem;
}

.custom-dropdown-options li.placeholder {
  color: var(--text-muted);
}

.custom-dropdown-options li.selected {
  background-color: var(--bg-offwhite);
  color: var(--accent-gold);
  font-weight: 650;
}

.search-btn {
  height: 52px;
  width: 100%;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 2. VITRINE DE IMÓVEIS (PROPERTY VITRINE) */
.property-showcase {
  background-color: var(--bg-offwhite);
  border-bottom: 1px solid var(--border-light);
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
  margin-top: 3.5rem;
}

.property-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.45s var(--transition-smooth);
}

.property-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(5, 19, 41, 0.05);
}

.property-image-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.property-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--transition-smooth);
}

.property-card:hover .property-image {
  transform: scale(1.06);
}

.property-info {
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.property-card-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-gold);
  margin-bottom: 0.65rem;
}

.property-card-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.property-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.property-card-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-main);
  border-top: 1px solid var(--border-light);
  padding-top: 1.25rem;
  margin-top: auto;
  margin-bottom: 1.5rem;
}

.property-card-price small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.property-card-btn {
  width: 100%;
  padding: 1rem;
  text-align: center;
  border-radius: 999px;
  font-weight: 650;
  font-size: 0.9rem;
  border: 1px solid var(--border-light);
  color: var(--text-main);
  background-color: transparent;
  transition: all 0.35s ease;
  cursor: pointer;
}

.property-card:hover .property-card-btn {
  background-color: var(--bg-dark);
  color: var(--text-white);
  border-color: var(--bg-dark);
}

/* 3. COMPARATIVO CONSÓRCIO X FINANCIAMENTO - SPLIT LAYOUT REFINADO */
.bg-dark {
  background-color: var(--bg-dark) !important;
  color: var(--text-white) !important;
}

.acquisition-comparison {
  position: relative;
  overflow: hidden;
}

.comparison-split-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3.5rem;
  margin-top: 4rem;
  margin-bottom: 5rem;
  align-items: stretch;
}

.comparison-column {
  display: flex;
  flex-direction: column;
}

.comparison-column.de-emphasized {
  opacity: 0.7;
}

.comparison-column.emphasized {
  opacity: 1;
}

.column-header {
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1.5rem;
}

.column-title {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.column-subtitle {
  font-size: 0.88rem;
  color: var(--text-white-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comparison-list-modern {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.comparison-item-modern {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  margin: -1.25rem -1.5rem;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: background 0.4s var(--transition-smooth), border-color 0.4s var(--transition-smooth), box-shadow 0.4s var(--transition-smooth);
}

.comparison-column.de-emphasized .comparison-item-modern:hover {
  background: rgba(255, 255, 255, 0.015);
  border-color: rgba(255, 255, 255, 0.04);
}

.comparison-column.emphasized .comparison-item-modern:hover {
  background: rgba(200, 169, 98, 0.03);
  border-color: rgba(200, 169, 98, 0.15);
  box-shadow: 0 10px 30px rgba(200, 169, 98, 0.02);
  transform: translateY(-2px);
}

.comparison-column.emphasized .comparison-item-modern:hover .item-icon.check-gold {
  transform: scale(1.12);
  background-color: var(--accent-gold);
  color: var(--bg-dark);
  box-shadow: 0 0 12px rgba(200, 169, 98, 0.4);
}

.item-icon {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.6rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s var(--transition-smooth);
}

.item-icon.check-cross {
  background-color: rgba(255, 255, 255, 0.04);
  color: var(--text-white-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.item-icon.check-gold {
  background-color: var(--accent-gold-soft);
  color: var(--accent-gold);
  border: 1px solid rgba(200, 169, 98, 0.3);
}

.item-text h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 650;
  color: var(--text-white);
  margin-bottom: 0.35rem;
}

.item-text p {
  font-size: 0.92rem;
  color: var(--text-white-muted);
  line-height: 1.5;
}

.comparison-vertical-divider {
  width: 1px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.12) 20%, rgba(255, 255, 255, 0.12) 80%, rgba(255, 255, 255, 0.02));
}

.comparison-metrics-grid {
  border-top: 1px solid var(--border-dark);
  padding-top: 4.5rem;
}

/* 4. ADICIONAL ESTILOS QUESTIONÁRIO IMOBILIÁRIO */
.region-selector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
  margin-bottom: 3rem;
}

.region-btn {
  background-color: var(--bg-white);
  border: 1.5px solid var(--border-light);
  border-radius: 20px;
  padding: 1.75rem 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.35s var(--transition-smooth);
}

.region-btn:hover {
  border-color: var(--text-main);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(5, 19, 41, 0.03);
}

.region-btn.active {
  background-color: var(--bg-dark);
  border-color: var(--bg-dark);
  color: var(--text-white);
  box-shadow: 0 16px 32px rgba(5, 19, 41, 0.16);
}

.region-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.region-sub {
  font-size: 0.78rem;
  color: var(--text-light);
}

.region-btn.active .region-sub {
  color: var(--text-white-muted);
}

.contact-form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.quiz-form-group {
  display: flex;
  flex-direction: column;
}

.quiz-input-line-group {
  margin-bottom: 0 !important;
  padding: 0.85rem 1.25rem !important;
  border-radius: 12px !important;
}

.quiz-input {
  font-size: 1rem !important;
  font-weight: 500 !important;
  padding: 0 !important;
  color: var(--text-main) !important;
}

.quiz-input::placeholder {
  color: var(--text-light) !important;
  font-weight: 400 !important;
  opacity: 0.75;
}

/* RESPONSIVIDADE E BREAKPOINTS (SOBREPOSIÇÃO ADAPTADA) */

@media (max-width: 1024px) {
  .search-bar-form {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .search-btn {
    grid-column: 1 / -1;
  }

  .property-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }

  .region-selector-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 850px) {
  .property-search-section {
    margin-top: 0;
    padding-top: 3.5rem;
  }

  .search-bar-wrapper {
    padding: 1.75rem;
    border-radius: 20px;
  }

  .comparison-split-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .comparison-vertical-divider {
    display: none;
  }
}

@media (max-width: 640px) {
  .search-bar-form {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .property-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .region-selector-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  .contact-form-fields {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .quiz-input {
    font-size: 1.25rem !important;
  }

  .region-btn {
    padding: 1.35rem 0.5rem;
  }

  .region-name {
    font-size: 1.05rem;
  }

  /* Ajustes do Simulador para telas móveis */
  .progress-step .step-label {
    display: none;
    /* Oculta textos para não quebrar ou vazar */
  }

  .sim-progress-bar {
    gap: 0.5rem;
    padding-bottom: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .progress-line {
    width: 25px;
    /* Linha conectora mais curta */
  }

  .step-panel-title {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
  }

  .quick-value-chips {
    justify-content: center;
  }

  .step-actions {
    display: flex;
    gap: 0.75rem;
    width: 100%;
  }

  .step-actions .btn {
    flex: 1;
    text-align: center;
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
  }

  .asset-selector-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  .asset-selector-grid .asset-btn:last-child {
    grid-column: span 2;
    /* Centraliza o 5º tipo de imóvel */
  }
}

@media (max-width: 500px) {
  .region-selector-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

  .region-btn {
    border-radius: 16px;
    padding: 1.15rem 0.4rem;
  }

  .region-name {
    font-size: 0.95rem;
  }

  .region-sub {
    font-size: 0.72rem;
  }

  .asset-selector-grid {
    gap: 0.65rem;
  }
}

@media (max-width: 360px) {
  .region-selector-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   9. SOBRE A LCM — REFATORAÇÃO DE METAS E PARCEIROS (ESTILO BOUTIQUE)
   ========================================================================== */
#sobre .authority-metrics-grid {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 3rem;
  gap: 0;
}

#sobre .auth-metric {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
  padding: 2rem 3rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
}

#sobre .auth-metric:last-child {
  border-right: none !important;
}

#sobre .auth-metric::before {
  display: none !important;
}

#sobre .metric-title {
  font-size: 1.45rem;
  margin-top: 0.5rem;
  margin-bottom: 0.85rem;
}

/* responsive overrides for clean grid */
@media (max-width: 900px) {
  #sobre .authority-metrics-grid {
    grid-template-columns: 1fr;
  }

  #sobre .auth-metric {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 2rem 1.5rem;
  }

  #sobre .auth-metric:last-child {
    border-bottom: none !important;
  }
}

/* Partners Marquee CSS */
.partners-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 3rem 0;
  margin-top: 4.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.partners-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  animation: partnersScroll 22s linear infinite;
}

.partners-track img {
  height: 40px;
  width: auto;
  object-fit: contain;
  margin: 0 3.5rem;
  filter: grayscale(100%) opacity(0.5);
  transition: all 0.4s ease;
  cursor: pointer;
}

.partners-track img:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}

@keyframes partnersScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Botão Flutuante do WhatsApp */
.floating-wa-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 998;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.floating-wa-btn svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.floating-wa-btn:hover {
  transform: scale(1.08) translateY(-3px);
  background-color: #20ba5a;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.55);
}

.floating-wa-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: inherit;
  opacity: 0.5;
  z-index: -1;
  animation: waPulse 2s infinite;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

@media (max-width: 640px) {
  .floating-wa-btn {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 52px;
    height: 52px;
  }

  .floating-wa-btn svg {
    width: 26px;
    height: 26px;
  }
}

/* ==========================================================================
   10. TELA DE CARREGAMENTO (PRELOADER PREMIUM 3D)
   ========================================================================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background-color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.preloader-logo-wrapper {
  perspective: 1000px;
}

/* Efeito de Rotação e Flutuação 3D com Projeção de Sombras */
.preloader-logo {
  max-width: 170px;
  width: auto;
  height: auto;
  animation: logo3DFloat 3s ease-in-out infinite;
  transform-style: preserve-3d;
}

@keyframes logo3DFloat {

  0%,
  100% {
    transform: rotateY(-12deg) rotateX(10deg) translateY(0px) scale(0.96);
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.5)) drop-shadow(0 2px 3px rgba(200, 169, 98, 0.1));
  }

  50% {
    transform: rotateY(12deg) rotateX(-4deg) translateY(-10px) scale(1.02);
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.3)) drop-shadow(0 6px 15px rgba(200, 169, 98, 0.28));
  }
}

/* Texto Carregando */
.preloader-text {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  text-shadow: 0 2px 10px rgba(200, 169, 98, 0.15);
}

/* Animação de Onda nos Três Pontos */
.dot-bounce {
  display: inline-block;
  animation: dotBouncing 1.2s infinite ease-in-out;
  margin-left: 2px;
}

.dot-bounce:nth-child(1) {
  animation-delay: 0s;
}

.dot-bounce:nth-child(2) {
  animation-delay: 0.18s;
}

.dot-bounce:nth-child(3) {
  animation-delay: 0.36s;
}

@keyframes dotBouncing {

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

  50% {
    transform: translateY(-7px);
    opacity: 1;
    color: var(--text-white);
  }
}

/* ==========================================================================
   BOTÕES SOCIAIS - RODAPÉ
   ========================================================================== */
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border-dark);
  color: var(--text-white-muted);
  background: transparent;
  transition: all 0.35s var(--transition-smooth);
}

.social-btn:hover {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
  transform: scale(1.12);
  box-shadow: 0 0 16px rgba(200, 169, 98, 0.25);
}

/* ==========================================================================
   SELECT PREMIUM - FORMULÁRIO DO SIMULADOR
   ========================================================================== */
.select-premium {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 0.5rem center !important;
  background-size: 14px !important;
  padding-right: 2rem !important;
}

.select-premium:focus {
  outline: none;
  border-color: var(--accent-gold);
}

/* ==========================================================================
   10. LAYOUT DE VÍDEOS VERTICAIS PREMIUM & LIGHTBOX MODAL
   ========================================================================== */

/* Grid do Simulador com Vídeo */
.simulator-grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1320px;
  margin: 0 auto;
  align-items: stretch;
}

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

/* Grid do Sobre com Vídeo */
.about-grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

@media (min-width: 992px) {
  .about-grid-layout {
    grid-template-columns: 1.5fr 1.1fr;
  }
}

/* Card de Vídeo Vertical */
.video-portrait-card {
  background: rgba(5, 19, 41, 0.02);
  border: 1px solid rgba(5, 19, 41, 0.06);
  border-radius: 28px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.4s var(--transition-smooth);
  box-shadow: 0 15px 40px rgba(5, 19, 41, 0.02);
  height: 100%;
  justify-content: center;
}

/* Variação Escura do Card (Seção Sobre) */
.video-portrait-card--dark {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.video-portrait-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 169, 98, 0.4);
  box-shadow: 0 25px 60px rgba(200, 169, 98, 0.1);
}

.video-portrait-card--dark:hover {
  border-color: rgba(200, 169, 98, 0.5);
  box-shadow: 0 25px 60px rgba(200, 169, 98, 0.15);
}

.video-card-tag {
  margin-bottom: 0.75rem !important;
  font-size: 0.75rem;
}

.video-card-title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.video-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 290px;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.video-portrait-card--dark .video-card-desc {
  color: var(--text-white-muted);
}

/* Moldura de Smartphone Premium */
.video-device-frame {
  position: relative;
  width: 100%;
  max-width: 260px;
  aspect-ratio: 9/16;
  border-radius: 38px;
  background-color: #000000;
  border: 10px solid #101827; /* Moldura escura do device */
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18), 
              0 0 0 2px rgba(200, 169, 98, 0.25);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s var(--transition-smooth);
}

.video-portrait-card:hover .video-device-frame {
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.25), 
              0 0 0 3px rgba(200, 169, 98, 0.7);
  transform: scale(1.02);
}

/* Detalhe do Entalhe de Câmera (Notch) */
.video-device-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 16px;
  background-color: #101827;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 10;
}

/* Reflexo de Vidro Diagonal */
.video-device-glare {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
              rgba(255, 255, 255, 0.15) 0%, 
              rgba(255, 255, 255, 0.05) 25%, 
              transparent 25.1%, 
              transparent 100%);
  z-index: 6;
  pointer-events: none;
}

/* Tag de vídeo do preview */
.preview-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.8);
  transition: filter 0.4s ease;
}

.video-device-frame:hover .preview-video {
  filter: brightness(0.95);
}

/* Película overlay com play button */
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, 
              rgba(5, 19, 41, 0.6) 0%, 
              rgba(5, 19, 41, 0.1) 50%, 
              rgba(5, 19, 41, 0.3) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 5;
  transition: all 0.3s ease;
}

.video-device-frame:hover .video-overlay {
  background: linear-gradient(to top, 
              rgba(5, 19, 41, 0.4) 0%, 
              transparent 60%, 
              rgba(5, 19, 41, 0.2) 100%);
}

/* Botão de Play Translúcido */
.video-play-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 2px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  transition: all 0.4s var(--transition-smooth);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.play-svg {
  width: 18px;
  height: 18px;
  margin-left: 3px;
  transition: transform 0.3s ease;
}

.video-device-frame:hover .video-play-btn {
  background: var(--accent-gold);
  color: var(--bg-dark);
  transform: scale(1.12);
  box-shadow: 0 10px 30px rgba(200, 169, 98, 0.45);
}

.video-device-frame:hover .play-svg {
  transform: scale(1.05);
}

/* Duração do vídeo no mockup */
.video-duration {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background-color: rgba(5, 19, 41, 0.75);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.05em;
  z-index: 6;
}

/* Chamada de ação inferior */
.video-card-action {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-card-action::after {
  content: ' →';
  transition: transform 0.3s ease;
}

.video-portrait-card:hover .video-card-action {
  color: var(--accent-gold-hover);
}

.video-portrait-card:hover .video-card-action::after {
  transform: translateX(4px);
}


/* ==========================================================================
   MODAL LIGHTBOX DE VÍDEO VERTICAL (PORTRAIT LIGHTBOX)
   ========================================================================== */
.premium-video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(5, 19, 41, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.video-modal-container {
  position: relative;
  width: 90%;
  max-width: 400px; /* Limitador vertical para o vídeo 9:16 */
  aspect-ratio: 9/16;
  max-height: 85vh; /* Evita estourar o viewport verticalmente */
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: scale(0.9);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-video-modal.active .video-modal-container {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(5, 19, 41, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s ease;
}

.video-modal-close:hover {
  background-color: var(--accent-gold);
  color: var(--bg-dark);
  transform: rotate(90deg);
}

.video-modal-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
}

.video-modal-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Spinner de Carregamento */
.video-modal-loader {
  position: absolute;
  inset: 0;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: opacity 0.3s ease;
}

.video-modal-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  width: 45px;
  height: 45px;
  border: 3px solid rgba(200, 169, 98, 0.1);
  border-top-color: var(--accent-gold);
  border-radius: 50%;
  animation: spin 1s infinite linear;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 480px) {
  .video-modal-container {
    max-width: 100%;
    width: 95%;
    max-height: 80vh;
  }
}

/* ==========================================================================
   11. SEÇÃO INTERMEDIÁRIA DE ESTRATÉGIA NO COMPARATIVO (ESTILO PREMIUM)
   ========================================================================== */
.strategy-difference-section {
  margin-top: 5rem;
  margin-bottom: 5rem;
  text-align: center;
}

.strategy-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.strategy-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.strategy-header .strategy-line:first-child {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12));
}

.strategy-header .strategy-line:last-child {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent);
}

.strategy-title {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.strategy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .strategy-grid {
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
  }
}

.strategy-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 2.5rem 2.25rem;
  text-align: left;
  transition: all 0.4s var(--transition-smooth);
}

.strategy-card--featured {
  background: rgba(200, 169, 98, 0.02);
  border: 1px solid rgba(200, 169, 98, 0.12);
  box-shadow: 0 15px 35px rgba(200, 169, 98, 0.02);
}

.strategy-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(255, 255, 255, 0.1);
}

.strategy-card--featured:hover {
  background: rgba(200, 169, 98, 0.04);
  border-color: rgba(200, 169, 98, 0.25);
  box-shadow: 0 20px 45px rgba(200, 169, 98, 0.06);
}

.strategy-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.strategy-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.strategy-card-list li {
  font-size: 0.95rem;
  color: var(--text-white-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  line-height: 1.4;
}

.strategy-check {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1;
  flex-shrink: 0;
}

.strategy-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0 auto;
  transition: all 0.3s ease;
}

.strategy-grid:hover .strategy-vs {
  border-color: rgba(200, 169, 98, 0.3);
  transform: rotate(90deg);
  background-color: rgba(200, 169, 98, 0.03);
}

.vs-cross {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text-white-muted);
  font-weight: 600;
}

.strategy-grid:hover .vs-cross {
  color: var(--accent-gold);
}

/* Disclaimer legal do rodapé do comparativo */
.comparison-disclaimer {
  margin-top: 3.5rem;
  text-align: center;
}

.comparison-disclaimer p {
  font-size: 0.78rem;
  color: var(--text-white-muted);
  font-style: italic;
  opacity: 0.6;
}

/* Novos estilos de cabeçalho moderno e rodapés de logotipos no comparativo */
.column-header-modern {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1.5rem;
}

.header-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white-muted);
  flex-shrink: 0;
}

.header-icon-circle--featured {
  background: rgba(200, 169, 98, 0.05);
  border-color: rgba(200, 169, 98, 0.2);
  color: var(--accent-gold);
}

.header-text-block {
  display: flex;
  flex-direction: column;
}

.header-main-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.header-sub-title {
  font-size: 0.82rem;
  color: var(--text-white-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.15rem;
}

/* Logos no canto inferior do card */
.column-partners-grid {
  margin-top: auto; /* Empurra para o fundo da coluna flex */
  padding-top: 2rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.06);
}

.partners-grid-title {
  display: block;
  font-size: 0.72rem;
  color: var(--text-white-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.85rem;
}

.partners-logos-mini {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.partners-logos-mini img {
  height: 20px;
  object-fit: contain;
  opacity: 0.35;
  filter: grayscale(1);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.comparison-column.emphasized .partners-logos-mini img {
  filter: none;
  opacity: 0.45;
}

.partners-logos-mini img:hover {
  opacity: 0.85;
  filter: none;
}

/* Animação de pulso temporária para destacar a coluna de Financiamento */
@keyframes columnPulseHighlight {
  0% {
    transform: scale(1);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
  }
  30% {
    transform: scale(1.025);
    box-shadow: 0 15px 50px rgba(200, 169, 98, 0.15);
    border-color: rgba(200, 169, 98, 0.4);
    background-color: rgba(255, 255, 255, 0.02);
  }
  60% {
    transform: scale(0.985);
    box-shadow: 0 10px 35px rgba(200, 169, 98, 0.08);
    border-color: rgba(200, 169, 98, 0.25);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
  }
}

.pulse-highlight {
  animation: columnPulseHighlight 1.2s ease-in-out;
  position: relative;
  z-index: 10;
  opacity: 1 !important; /* Força opacidade máxima enquanto pulsa */
}

/* --- ESTILOS ADICIONAIS DO SIMULADOR E EFEITO COMPARAR --- */

.calc-initial-view {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem 0;
  box-sizing: border-box;
}

.calc-kpi-item--centered {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  width: 100%;
}

.calc-kpi-item--centered .calc-kpi-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
}

.calc-kpi-item--centered .calc-kpi-icon svg {
  width: 26px;
  height: 26px;
}

.calc-kpi-item--centered .calc-kpi-content {
  align-items: center;
}

.calc-kpi-item--centered .calc-val {
  font-size: 2.2rem;
  margin-top: 0.25rem;
}

.calc-compare-action {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}

.btn-compare {
  background: transparent;
  border: 1.5px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 0.75rem 1.75rem;
  border-radius: 14px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.btn-compare:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
  box-shadow: 0 8px 24px rgba(200, 169, 98, 0.25);
  transform: translateY(-2px);
}

.btn-compare--outline {
  border-color: rgba(5, 19, 41, 0.15);
  color: var(--text-muted);
  font-size: 0.88rem;
  padding: 0.55rem 1.25rem;
  margin-top: 1.5rem;
}

.btn-compare--outline:hover {
  background: rgba(5, 19, 41, 0.05);
  color: var(--text-main);
  box-shadow: none;
  transform: translateY(-1px);
  border-color: rgba(5, 19, 41, 0.25);
}

.calc-comparison-view {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 0;
  box-sizing: border-box;
}

.comparison-row-sim {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  align-items: stretch;
  margin-bottom: 2rem;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .comparison-row-sim {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
}

.compare-col-sim {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 18px;
  background: rgba(5, 19, 41, 0.02);
  border: 1px solid rgba(5, 19, 41, 0.05);
  transition: all 0.3s ease;
  position: relative;
  box-sizing: border-box;
}

.compare-col-sim--featured {
  background: rgba(200, 169, 98, 0.04);
  border: 1.5px solid rgba(200, 169, 98, 0.25);
  box-shadow: 0 10px 30px rgba(200, 169, 98, 0.04);
  transform: scale(1.02);
}

.compare-col-sim:hover {
  background: rgba(5, 19, 41, 0.04);
}

.compare-col-sim--featured:hover {
  background: rgba(200, 169, 98, 0.06);
  box-shadow: 0 12px 35px rgba(200, 169, 98, 0.08);
}

.compare-label-sim {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.compare-val-sim {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.35rem;
  color: var(--text-main);
}

.compare-val-sim.text-gold {
  font-size: 1.95rem;
  color: var(--accent-gold);
}

.compare-note-sim {
  font-size: 0.65rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.compare-divider-sim {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(5, 19, 41, 0.08), transparent);
  align-self: center;
}

@media (min-width: 768px) {
  .compare-divider-sim {
    width: 1px;
    height: 90px;
    background: linear-gradient(180deg, transparent, rgba(5, 19, 41, 0.08), transparent);
  }
}

.featured-badge-sim {
  position: absolute;
  top: -12px;
  background: var(--accent-gold);
  color: var(--bg-dark);
  font-size: 0.6rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(200, 169, 98, 0.2);
}

.compare-advantage-banner {
  width: 100%;
  box-sizing: border-box;
  background: rgba(200, 169, 98, 0.05);
  border: 1px solid rgba(200, 169, 98, 0.2);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
}

.advantage-banner-icon {
  color: var(--accent-gold);
  font-size: 1.1rem;
  animation: pulseGold 2s infinite ease-in-out;
}

.advantage-banner-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.4;
}

@keyframes pulseGold {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); opacity: 0.8; }
}

#calcInitialView.hidden,
#calcComparisonView.hidden {
  display: none !important;
}