/* ================================
   FINANCIAMENTO ST MOTORS
   Design: Cinza Escuro + Branco
   ================================ */

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

a {
  text-decoration: none;
}

:root {
  /* ===========================
     PALETA DE CORES - ST MOTORS
     =========================== */

  /* Identidade da Marca */
  --color-primary: #4f9e21;
  --color-primary-hover: #68a744;
  --color-primary-dark: #3a6126;
  --color-primary-light: #8BC96A;

  /* Backgrounds */
  --color-bg-primary: #FFFFFF;
  --color-bg-secondary: #FAFAF8;
  --color-bg-dark: #0F0F0F;
  --color-bg-dark-secondary: #1A1A1A;

  /* Textos */
  --color-text-primary: #1A1A1A;
  --color-text-secondary: #6B6B6B;
  --color-text-tertiary: #999999;
  --color-text-light: #FAFAF8;

  /* Bordas */
  --color-border-light: #E5E5E5;
  --color-border-medium: #CCCCCC;
  --color-border-dark: #2A2A2A;

  /* Social Media Colors */
  --color-whatsapp: #25D366;
  --color-facebook: #1877F2;
  --color-instagram: #c71fa3;
  --color-google-maps: #EA4335;
  --color-google: #4285F4;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Layout */
  --header-height: 72px;
  --header-height-mobile: 64px;
  --max-width-container: 1280px;
  --max-width-search: 680px;
  --transition-speed: 0.3s;
  --transition-ease: cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-index Scale */
  --z-cookie-consent: 10001;
  --z-header: 1000;
  --z-overlay: 998;
  --z-mobile-menu: 999;
  --z-location-badge: 100;
  --z-skip-link: 10000;
}

/* ===========================
   HTML & BODY
   =========================== */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  line-height: 1.6;
  color: var(--color-text-light);
  overflow-x: hidden;
  min-height: 100vh;
  /* Background: Cinza Escuro Gradiente */
  background: linear-gradient(135deg, 
    var(--color-bg-dark-secondary) 0%, 
    var(--color-bg-dark) 50%, 
    var(--color-bg-dark-secondary) 100%);
  background-attachment: fixed;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--color-primary);
  color: var(--color-bg-primary);
  padding: var(--spacing-sm) var(--spacing-md);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  z-index: var(--z-skip-link);
  transition: top var(--transition-speed) var(--transition-ease);
  border-radius: 0 0 8px 0;
}

/* ================================
   UTILITY CLASSES
   ================================ */
.hide-mobile {
  display: none;
}

.image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  min-height: 300px;
  text-align: center;
}

.image-placeholder__text {
  font-size: var(--font-size-sm);
  color: rgba(250, 250, 248, 0.6);
  line-height: 1.8;
}

/* ================================
   MAIN CONTAINER
   ================================ */
.financing-page {
  max-width: var(--max-width-container);
  margin: 0 auto;
  padding: calc(var(--header-height-mobile) + var(--spacing-lg)) var(--spacing-sm) var(--spacing-lg);
}

/* ================================
   SECTION UTILITIES
   ================================ */
.section-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary-light);
  margin-bottom: var(--spacing-xs);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-md);
}

.section-intro {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  line-height: 1.6;
  color: rgba(250, 250, 248, 0.75);
  max-width: 700px;
  margin: 0 auto var(--spacing-lg) auto;
  text-align: center;
}

/* ================================
   HERO FINANCING SECTION - CINZA ESCURO
   ================================ */
.hero-financing {
  padding: var(--spacing-2xl) 0;
  text-align: center;
}

.hero-financing__container {
  max-width: 800px;
  margin: 0 auto var(--spacing-xl);
}

.hero-financing__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: 0.5rem 1rem;
  background: rgba(79, 158, 33, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(79, 158, 33, 0.3);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary-light);
  margin-bottom: var(--spacing-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-financing__badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hero-financing__title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-sm);
}

.hero-financing__title .highlight {
  color: var(--color-primary-light);
  position: relative;
  display: inline-block;
  text-shadow: 0 0 30px rgba(139, 201, 106, 0.5);
}

.hero-financing__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.5;
  color: rgba(250, 250, 248, 0.75);
  margin-bottom: var(--spacing-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-financing__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  font-size: 0.9375rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-text-light);
  transition: all var(--transition-speed) var(--transition-ease);
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(79, 158, 33, 0.4);
  transform: translateY(-2px);
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary-light);
  flex-shrink: 0;
}

.hero-financing__image-wrapper {
  margin: var(--spacing-2xl) auto 0;
  max-width: 1000px;
}

/* ================================
   SCORE SECTION - FUNDO BRANCO
   ================================ */
.score-section {
  padding: var(--spacing-3xl) 0;
  background: var(--color-bg-primary);
  border-radius: 24px;
  margin-bottom: var(--spacing-2xl);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.score-section__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.score-section__content {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

/* Textos em seções brancas */
.score-section .section-eyebrow {
  color: var(--color-primary);
}

.score-section .section-title {
  color: var(--color-text-primary);
}

.score-section .section-intro {
  color: var(--color-text-secondary);
}

.score-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

.score-card {
  padding: var(--spacing-lg);
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border-light);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all var(--transition-speed) var(--transition-ease);
}

.score-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(79, 158, 33, 0.15);
  border-color: var(--color-primary);
}

.score-card__header {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.score-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
  border-radius: 50%;
  margin-bottom: var(--spacing-sm);
  box-shadow: 0 4px 16px rgba(79, 158, 33, 0.25);
}

.score-card__icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.score-card__title {
  font-size: 1.375rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin-bottom: 0.25rem;
}

.score-card__range {
  font-size: 0.9375rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-primary);
}

.score-card__benefits {
  list-style: none;
  padding: 0;
}

.score-card__benefits li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

.score-card__benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 1rem;
  height: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234f9e21' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ================================
   ANALYSIS SECTION - CINZA ESCURO
   ================================ */
.analysis-section {
  padding: var(--spacing-3xl) 0;
}

.analysis-section__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.analysis-section__content {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.analysis-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

.analysis-item {
  padding: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: all var(--transition-speed) var(--transition-ease);
}

.analysis-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(79, 158, 33, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.analysis-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(79, 158, 33, 0.2) 0%, rgba(79, 158, 33, 0.1) 100%);
  border-radius: 50%;
  margin-bottom: var(--spacing-md);
}

.analysis-item__icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-primary-light);
}

.analysis-item__title {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-light);
  margin-bottom: var(--spacing-xs);
}

.analysis-item__description {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(250, 250, 248, 0.75);
}

/* ================================
   BENEFITS SECTION - FUNDO BRANCO
   ================================ */
.benefits-section {
  padding: var(--spacing-3xl) 0;
  background: var(--color-bg-primary);
  border-radius: 24px;
  margin-bottom: var(--spacing-2xl);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.benefits-section__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.benefits-section__header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

/* Textos em seções brancas */
.benefits-section .section-eyebrow {
  color: var(--color-primary);
}

.benefits-section .section-title {
  color: var(--color-text-primary);
}

.benefits-section .section-intro {
  color: var(--color-text-secondary);
}

.benefits-section__image-wrapper {
  margin-bottom: var(--spacing-2xl);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

.benefit-card {
  position: relative;
  padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-lg) 5rem;
  background: var(--color-bg-secondary);
  border-radius: 16px;
  border-left: 4px solid var(--color-primary);
  transition: all var(--transition-speed) var(--transition-ease);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.benefit-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(79, 158, 33, 0.12);
  background: var(--color-bg-primary);
}

.benefit-card__number {
  position: absolute;
  top: var(--spacing-lg);
  left: var(--spacing-lg);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  opacity: 0.15;
  line-height: 1;
}

.benefit-card__title {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-xs);
}

.benefit-card__description {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

/* ================================
   STEPS SECTION - CINZA ESCURO
   ================================ */
.steps-section {
  padding: var(--spacing-3xl) 0;
}

.steps-section__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.steps-section__header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.steps-timeline {
  position: relative;
  padding-left: var(--spacing-lg);
}

.steps-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  box-shadow: 0 0 10px rgba(79, 158, 33, 0.5);
}

.step-item {
  position: relative;
  display: flex;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
}

.step-item:last-child {
  margin-bottom: 0;
}

.step-item__marker {
  flex-shrink: 0;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
  border-radius: 50%;
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
  color: white;
  box-shadow: 
    0 4px 12px rgba(79, 158, 33, 0.4),
    0 0 0 4px rgba(79, 158, 33, 0.2);
}

.step-item__content {
  flex: 1;
  padding-top: 0.25rem;
}

.step-item__title {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-light);
  margin-bottom: var(--spacing-xs);
}

.step-item__description {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(250, 250, 248, 0.75);
}

/* ================================
   SIMULATION LINK SECTION - CINZA ESCURO
   ================================ */
.simulation-link-section {
  padding: var(--spacing-3xl) 0;
}

.simulation-link-section__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.simulation-glass-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-xl) var(--spacing-lg);
  background: linear-gradient(135deg, 
    rgba(91, 236, 6, 0.15) 0%, 
    rgba(52, 126, 9, 0.08) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(87, 207, 18, 0.3);
  border-radius: 20px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.simulation-glass-link::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(79, 158, 33, 0.15) 50%,
    transparent 70%
  );
  transform: translateX(-100%) translateY(-100%) rotate(45deg);
  transition: transform 0.8s ease;
}

.simulation-glass-link:hover::before {
  transform: translateX(100%) translateY(100%) rotate(45deg);
}

.simulation-glass-link:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, 
    rgba(79, 158, 33, 0.2) 0%, 
    rgba(79, 158, 33, 0.12) 100%);
  border-color: rgba(79, 158, 33, 0.5);
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 0 0 4px rgba(79, 158, 33, 0.2);
}

.simulation-glass-link:active {
  transform: translateY(-3px);
}

.simulation-glass-link:focus-visible {
  outline: 3px solid rgba(79, 158, 33, 0.6);
  outline-offset: 4px;
}

.simulation-glass-link__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
  border-radius: 16px;
  box-shadow: 
    0 4px 16px rgba(79, 158, 33, 0.4),
    0 0 0 3px rgba(79, 158, 33, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.simulation-glass-link:hover .simulation-glass-link__icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 
    0 8px 24px rgba(79, 158, 33, 0.5),
    0 0 0 6px rgba(79, 158, 33, 0.25);
}

.simulation-glass-link__icon svg {
  width: 28px;
  height: 28px;
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.simulation-glass-link__content {
  flex: 1;
  min-width: 0;
}

.simulation-glass-link__title {
  font-size: clamp(1.125rem, 3vw, 1.375rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-light);
  margin-bottom: 0.375rem;
  transition: color 0.3s ease;
}

.simulation-glass-link:hover .simulation-glass-link__title {
  color: var(--color-primary-light);
}

.simulation-glass-link__description {
  font-size: clamp(0.875rem, 2vw, 0.9375rem);
  line-height: 1.5;
  color: rgba(250, 250, 248, 0.75);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.simulation-glass-link__arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(79, 158, 33, 0.2);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.simulation-glass-link:hover .simulation-glass-link__arrow {
  background: var(--color-primary);
  transform: translateX(4px);
}

.simulation-glass-link__arrow svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary-light);
  transition: color 0.3s ease;
}

.simulation-glass-link:hover .simulation-glass-link__arrow svg {
  color: white;
}

/* ================================
   CTA FINAL SECTION - FUNDO BRANCO
   ================================ */
.cta-final-section {
  padding: var(--spacing-3xl) 0;
}

.cta-final-section__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.cta-glass-card {
  padding: var(--spacing-2xl) var(--spacing-lg);
  background: var(--color-bg-primary);
  border-radius: 24px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-glass-card__content {
  margin-bottom: var(--spacing-lg);
}

.cta-glass-card__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
}

.cta-glass-card__description {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  line-height: 1.6;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto var(--spacing-xl);
}

.cta-whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.125rem 2.5rem;
  background: linear-gradient(135deg, var(--color-whatsapp) 0%, #1ebe57 100%);
  color: white;
  font-size: 1.0625rem;
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  border-radius: 50px;
  box-shadow:
    0 4px 16px rgba(37, 211, 102, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.4) inset;
  transition: all var(--transition-speed) var(--transition-ease);
  min-height: 56px;
  position: relative;
  overflow: hidden;
}

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

.cta-whatsapp-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 24px rgba(37, 211, 102, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}

.cta-whatsapp-button:hover::before {
  left: 100%;
}

.cta-whatsapp-button:active {
  transform: translateY(0);
}

.cta-whatsapp-button:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.5);
  outline-offset: 4px;
}

.cta-whatsapp-button__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.cta-whatsapp-button__text {
  position: relative;
  z-index: 1;
}

.simulation-info {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
  padding: var(--spacing-md);
  background: rgba(79, 158, 33, 0.08);
  border: 1px solid rgba(79, 158, 33, 0.2);
  border-radius: 12px;
  text-align: left;
}

.simulation-info svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  margin-top: 0.125rem;
}

.simulation-info__text {
  font-size: var(--font-size-sm);
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.simulation-info__text strong {
  color: var(--color-text-primary);
  font-weight: var(--font-weight-semibold);
}

/* ================================
   ACESSIBILIDADE GLOBAL
   ================================ */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* ================================
   MEDIA QUERIES
   ================================ */

/* RESPONSIVE - TABLET */
@media screen and (min-width: 768px) {
  :root {
    --header-height-mobile: 72px;
  }

  .hide-mobile {
    display: inline;
  }

  .financing-page {
    padding: calc(var(--header-height) + var(--spacing-2xl)) var(--spacing-lg) var(--spacing-2xl);
  }

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

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

  .steps-timeline {
    padding-left: var(--spacing-2xl);
  }

  .steps-timeline::before {
    left: 19px;
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .simulation-link-section {
    padding: calc(var(--spacing-3xl) * 1.2) 0;
  }

  .simulation-glass-link {
    padding: var(--spacing-2xl) var(--spacing-xl);
  }

  .simulation-glass-link__icon {
    width: 72px;
    height: 72px;
  }

  .simulation-glass-link__icon svg {
    width: 32px;
    height: 32px;
  }
}

/* MOBILE: Layout vertical para simulation link */
@media screen and (max-width: 767px) {
  .simulation-glass-link {
    flex-direction: column;
    text-align: center;
    padding: var(--spacing-lg);
  }

  .simulation-glass-link__icon {
    width: 56px;
    height: 56px;
  }

  .simulation-glass-link__icon svg {
    width: 24px;
    height: 24px;
  }

  .simulation-glass-link__arrow {
    width: 44px;
    height: 44px;
    margin-top: var(--spacing-sm);
  }

  .simulation-glass-link__arrow svg {
    width: 20px;
    height: 20px;
  }

  .simulation-glass-link:hover .simulation-glass-link__arrow {
    transform: translateY(4px);
  }
}

/* DESKTOP (1024px+) */
@media screen and (min-width: 1024px) {
  .financing-page {
    padding: calc(var(--header-height) + var(--spacing-3xl)) var(--spacing-xl) var(--spacing-3xl);
  }

  .hero-financing {
    padding: var(--spacing-3xl) 0;
  }

  .cta-glass-card {
    padding: var(--spacing-3xl) var(--spacing-2xl);
  }
}

/* ================================
   ACESSIBILIDADE - MOTION & CONTRASTE
   ================================ */

/* Reduzir movimento */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Alto contraste */
@media (prefers-contrast: high) {
  .score-card,
  .analysis-item,
  .benefit-card {
    border: 2px solid var(--color-primary);
  }

  .cta-whatsapp-button {
    border: 2px solid #1ebe57;
  }

  .trust-item {
    border: 2px solid rgba(79, 158, 33, 0.5);
  }
}