@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ==========================================
   SISTEMA DE DESIGN & VARIÁVEIS
   ========================================== */
:root {
  --font-title: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  
  /* Cores Base (Dark Premium) */
  --bg-primary: #070709;      /* Preto tecnológico profundo e sofisticado */
  --bg-secondary: #121216;    /* Cinza escuro para destaque de cards e blocos */
  --bg-dark: #000000;
  
  --text-primary: #f3f4f6;    /* Branco suave para excelente legibilidade */
  --text-secondary: #9ca3af;  /* Cinza claro para textos de apoio */
  --text-tertiary: #6b7280;   /* Cinza médio */
  --text-light: #ffffff;
  
  /* Cores de Destaque Neon */
  --color-blue: #00a3ff;      /* Ciano/Azul neon elétrico */
  --color-blue-hover: #33b5ff;
  --color-orange: #ff5e00;    /* Laranja neon super vibrante e saturado */
  --color-orange-hover: #ff7d2b;
  --color-green: #2ecc71;     /* Verde de conversão */
  
  /* Efeitos Neon e Glow (Brilhos Dinâmicos) */
  --neon-glow-orange: 0 0 15px rgba(255, 94, 0, 0.6), 0 0 25px rgba(255, 94, 0, 0.3);
  --neon-glow-orange-sutil: 0 0 10px rgba(255, 94, 0, 0.25);
  --neon-glow-blue: 0 0 15px rgba(0, 163, 255, 0.6), 0 0 25px rgba(0, 163, 255, 0.3);
  --neon-glow-green: 0 0 15px rgba(46, 204, 113, 0.6), 0 0 25px rgba(46, 204, 113, 0.3);
  
  /* Efeitos e Bordas Dark */
  --border-glass: rgba(255, 255, 255, 0.07);
  --bg-glass: rgba(7, 7, 9, 0.78);
  --shadow-subtle: 0 4px 30px rgba(0, 0, 0, 0.4);
  --shadow-medium: 0 10px 40px rgba(0, 0, 0, 0.7);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-full: 9999px;
  
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.15s ease;
}

/* ==========================================
   RESET & CONFIGURAÇÕES GERAIS
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ==========================================
   UTILITÁRIOS
   ========================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  overflow: hidden;
}

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

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

.tag-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-title);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
  .section {
    padding: 100px 0;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 48px;
  font-weight: 400;
}

/* ==========================================
   BOTÕES PREMIUM
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  will-change: transform;
}

.btn:active {
  transform: scale(0.98);
}
.btn-primary {
  background-color: var(--color-blue);
  color: var(--text-light);
}

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

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  border-color: var(--color-orange);
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
  box-shadow: var(--neon-glow-orange-sutil);
}

.btn-whatsapp {
  background-color: var(--color-green);
  color: var(--text-light);
}

.btn-whatsapp:hover {
  background-color: #2ecc71;
  transform: translateY(-2px);
  box-shadow: var(--neon-glow-green);
}

.btn-orange {
  background-color: var(--color-orange);
  color: var(--text-light);
}

.btn-orange:hover {
  background-color: var(--color-orange-hover);
  transform: translateY(-2px);
  box-shadow: var(--neon-glow-orange);
}

/* ==========================================
   CABEÇALHO (HEADER)
   ========================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 56px;
  background-color: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  transition: var(--transition-smooth);
}

.header.scrolled {
  background-color: rgba(7, 7, 9, 0.92);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 10px rgba(255, 94, 0, 0.1);
  border-bottom: 1px solid rgba(255, 94, 0, 0.2);
}

.header-container {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
}

.logo-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 28px;
  background: rgba(255, 102, 0, 0.07);
  border-radius: 8px;
  flex-shrink: 0;
}

.logo-icon {
  width: 22px;
  height: 18px;
  stroke: var(--text-primary);
}

.logo-text {
  display: flex;
  align-items: baseline;
  gap: 0px;
  line-height: 1;
}

.logo-info {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-orange);
  letter-spacing: -0.03em;
}

.logo-facil {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.nav {
  display: none;
}

.nav-list {
  display: flex;
  gap: 28px;
}



.nav-link {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  letter-spacing: -0.01em;
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-orange);
  text-shadow: var(--neon-glow-orange-sutil);
}

.header-cta {
  display: none;
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: block;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
  stroke: var(--text-primary);
  stroke-width: 2px;
}

@media (min-width: 768px) {
  .nav {
    display: block;
  }
  .header-cta {
    display: block;
  }
  .menu-toggle {
    display: none;
  }
}

/* Menu Mobile Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 56px;
  left: 0;
  width: 100%;
  height: calc(100vh - 56px);
  background-color: var(--bg-primary);
  z-index: 99;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-link {
  font-family: var(--font-title);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-primary);
}

.mobile-menu-cta {
  margin-top: auto;
  width: 100%;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  background-color: var(--bg-primary);
  position: relative;
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 60px;
}

@media (min-width: 768px) {
  .hero {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

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

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
  }
}

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

@media (min-width: 992px) {
  .hero-content {
    text-align: left;
  }
}

.hero-title {
  font-family: var(--font-title);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

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

@media (min-width: 576px) {
  .hero-ctas {
    flex-direction: row;
  }
}

@media (min-width: 992px) {
  .hero-ctas {
    justify-content: flex-start;
  }
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}


.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 1 / 1;
  transition: var(--transition-smooth);
  background-color: #121216;
}

.hero-image-wrapper:hover {
  border-color: rgba(255, 94, 0, 0.4);
  box-shadow: var(--neon-glow-orange);
}

.hero-image-wrapper img,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image-wrapper img {
  transition: transform 12s ease;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 7, 9, 0.5) 0%, rgba(7, 7, 9, 0) 100%);
  pointer-events: none;
}

.hero-image-wrapper:hover img {
  transform: scale(1.05);
}

/* Círculos decorativos de background */
.hero-bg-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(0, 102, 204, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

/* ==========================================
   SEÇÃO MARCAS ATENDIDAS
   ========================================== */
.brands {
  padding: 40px 0;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.brands-title {
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-tertiary);
  text-align: center;
  margin-bottom: 28px;
}

.brands-slider {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-tertiary);
  padding: 10px 20px;
  filter: grayscale(1);
  opacity: 0.55;
  transition: var(--transition-smooth);
}

.brand-item:hover {
  filter: grayscale(0);
  opacity: 1;
  color: var(--text-primary);
}

/* ==========================================
   SEÇÃO DIFERENCIAIS
   ========================================== */
.features {
  background-color: var(--bg-secondary);
}

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

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

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



.feature-card {
  background-color: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-subtle);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--neon-glow-orange-sutil);
  border-color: rgba(255, 94, 0, 0.3);
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: rgba(0, 163, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(0, 163, 255, 0.15);
}

.feature-icon-box svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-blue);
  stroke-width: 1.8px;
  fill: none;
}

.feature-card:nth-child(even) .feature-icon-box {
  background-color: rgba(255, 94, 0, 0.12);
  box-shadow: 0 0 10px rgba(255, 94, 0, 0.15);
}

.feature-card:nth-child(even) .feature-icon-box svg {
  stroke: var(--color-orange);
}

.feature-card-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.feature-card-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================
   SEÇÃO SERVIÇOS
   ========================================== */
.services {
  background-color: var(--bg-primary);
}

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

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

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

.service-card {
  background-color: var(--bg-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--neon-glow-orange-sutil);
  border-color: rgba(255, 94, 0, 0.3);
}

.service-image {
  height: 200px;
  overflow: hidden;
  position: relative;
  background-color: #121216;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

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

.service-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.service-description {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-footer {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-blue);
  gap: 4px;
}

.service-footer svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-blue);
  stroke-width: 2.2px;
  transition: transform 0.2s ease;
}

.service-card:hover .service-footer svg {
  transform: translateX(4px);
}

/* ==========================================
   SEÇÃO TELA DIVISORA (SOBRE A ECONOMIA / COMPONENTE)
   ========================================== */
.micro-repair-showcase {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.micro-repair-showcase .hero-bg-glow {
  background: radial-gradient(circle, rgba(255, 102, 0, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
}

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

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

.showcase-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: scale(1.22); /* Zoom in de leve para aproximar o técnico e o microscópio */
  transform-origin: center center;
  display: block;
}

.showcase-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.showcase-tag {
  color: var(--color-orange);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.showcase-title {
  font-family: var(--font-title);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .showcase-title {
    font-size: 2.75rem;
  }
}

.showcase-text {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-tertiary);
  margin-bottom: 24px;
}

.showcase-highlight-box {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.showcase-highlight-number {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-orange);
  line-height: 1;
}

.showcase-highlight-label {
  font-size: 0.9375rem;
  color: var(--text-light);
  font-weight: 500;
  line-height: 1.4;
}

/* ==========================================
   SEÇÃO DEPOIMENTOS
   ========================================== */
.testimonials {
  background-color: var(--bg-secondary);
}

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

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

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



.testimonial-card {
  background-color: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 94, 0, 0.25);
  box-shadow: var(--neon-glow-orange-sutil);
}

.testimonial-stars {
  color: #ffb800;
  font-size: 1.15rem;
  margin-bottom: 20px;
  text-shadow: 0 0 8px rgba(255, 184, 0, 0.5);
}

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
  flex-grow: 1;
}

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

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 94, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-orange);
  text-transform: uppercase;
  border: 1px solid rgba(255, 94, 0, 0.2);
}

.testimonial-user-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-user-info {
  font-size: 0.75rem;
  color: var(--text-tertiary);
}

/* ==========================================
   SEÇÃO CONTATO / FORMULÁRIO / MAPA
   ========================================== */
.contact {
  background-color: var(--bg-primary);
}

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

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-title {
  font-family: var(--font-title);
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.contact-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.6;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}



.contact-item-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background-color: rgba(0, 163, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0, 163, 255, 0.1);
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-blue);
  stroke-width: 1.8px;
  fill: none;
}

.contact-item-content h4 {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.contact-item-content p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Mapa Estilizado */
.map-container {
  width: 100%;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Formulário Premium */
.contact-form-box {
  background-color: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-subtle);
}

.form-title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background-color: #1a1a1f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(255, 94, 0, 0.15), var(--neon-glow-orange-sutil);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.btn-form-submit {
  width: 100%;
  margin-top: 8px;
}

/* ==========================================
   SEÇÃO FAQ (ACORDEÃO ACESSÍVEL)
   ========================================== */


.faq {
  background-color: var(--bg-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-item {
  background-color: var(--bg-primary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item.active {
  border-color: rgba(255, 94, 0, 0.25);
  box-shadow: var(--neon-glow-orange-sutil);
}

.faq-header {
  width: 100%;
  background: none;
  border: none;
  padding: 24px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-title);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.faq-header:hover {
  background-color: rgba(255, 255, 255, 0.02);
}

.faq-icon {
  width: 20px;
  height: 20px;
  stroke: var(--text-secondary);
  stroke-width: 2px;
  fill: none;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  stroke: var(--color-orange);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-body {
  padding: 0 24px 24px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* ==========================================
   FOOTER (RODAPÉ)
   ========================================== */
.footer {
  background-color: var(--bg-primary);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

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

.footer-brand p {
  margin-top: 16px;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-title);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-link-item {
  margin-bottom: 10px;
}

.footer-link-item a:hover {
  color: var(--color-blue);
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-secondary);
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-social-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.footer-social-icon:hover {
  border-color: var(--text-primary);
  background-color: rgba(0, 0, 0, 0.02);
  color: var(--text-primary);
}

.footer-social-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.8px;
  fill: none;
}

/* ==========================================
   BOTÃO FLUTUANTE DO WHATSAPP
   ========================================== */
.whatsapp-floating {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: var(--color-green);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(52, 199, 89, 0.4);
  z-index: 99;
  transition: var(--transition-smooth);
  color: var(--text-light);
}

.whatsapp-floating:hover {
  background-color: #2bb14e;
  transform: scale(1.08) translateY(-4px);
  box-shadow: 0 10px 24px rgba(52, 199, 89, 0.5);
}

.whatsapp-floating svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* ==========================================
   SISTEMA DE ANIMAÇÕES DE SCROLL - PREMIUM
   ========================================== */

/* Estado inicial oculto de todos os elementos animáveis */
[data-anime] {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Direção padrão: de baixo para cima */
[data-anime],
[data-anime="up"] {
  transform: translateY(50px);
}

/* Da esquerda para a direita */
[data-anime="left"] {
  transform: translateX(-60px);
}

/* Da direita para a esquerda */
[data-anime="right"] {
  transform: translateX(60px);
}

/* Apenas fade (sem movimento) */
[data-anime="fade"] {
  transform: none;
}

/* Escala (zoom in suave) */
[data-anime="scale"] {
  transform: scale(0.85);
}

/* Estado ANIMADO (visível) - para todos os tipos */
[data-anime].animated {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* ── Stagger para filhos dentro de containers ── */
/* Quando o PAI tem data-anime-stagger, os FILHOS animam em cascata */
[data-anime-stagger] > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-anime-stagger].animated > *:nth-child(1)  { opacity: 1; transform: none; transition-delay: 0.05s; }
[data-anime-stagger].animated > *:nth-child(2)  { opacity: 1; transform: none; transition-delay: 0.15s; }
[data-anime-stagger].animated > *:nth-child(3)  { opacity: 1; transform: none; transition-delay: 0.25s; }
[data-anime-stagger].animated > *:nth-child(4)  { opacity: 1; transform: none; transition-delay: 0.35s; }
[data-anime-stagger].animated > *:nth-child(5)  { opacity: 1; transform: none; transition-delay: 0.45s; }
[data-anime-stagger].animated > *:nth-child(6)  { opacity: 1; transform: none; transition-delay: 0.55s; }
[data-anime-stagger].animated > *:nth-child(7)  { opacity: 1; transform: none; transition-delay: 0.65s; }
[data-anime-stagger].animated > *:nth-child(8)  { opacity: 1; transform: none; transition-delay: 0.75s; }

/* Delays para elementos individuais com data-anime */
[data-anime][data-delay="1"] { transition-delay: 0.1s; }
[data-anime][data-delay="2"] { transition-delay: 0.2s; }
[data-anime][data-delay="3"] { transition-delay: 0.3s; }
[data-anime][data-delay="4"] { transition-delay: 0.4s; }
[data-anime][data-delay="5"] { transition-delay: 0.5s; }
[data-anime][data-delay="6"] { transition-delay: 0.6s; }
[data-anime][data-delay="7"] { transition-delay: 0.7s; }

/* ==========================================
   BARRA DE REPUTAÇÃO ANIMADA
   ========================================== */


.reputation-bar-section {
  background-color: var(--bg-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 0;
}

.reputation-bar-container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.reputation-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.reputation-number {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-orange);
  line-height: 1;
  text-shadow: var(--neon-glow-orange-sutil);
}

.reputation-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reputation-stars {
  font-size: 1rem;
  color: var(--color-orange);
  letter-spacing: 2px;
  text-shadow: var(--neon-glow-orange-sutil);
}

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

.reputation-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-orange);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-shadow: var(--neon-glow-orange-sutil);
}

.reputation-bars-wrapper {
  flex: 1;
  min-width: 220px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reputation-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reputation-bar-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  width: 32px;
  flex-shrink: 0;
  text-align: right;
}

.reputation-bar-track {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.reputation-bar-fill {
  height: 100%;
  border-radius: var(--radius-full);
  width: 0%;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reputation-bar-pct {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  width: 32px;
  flex-shrink: 0;
}

/* ==========================================
   SLIDER ANTES E DEPOIS
   ========================================== */
.before-after-section {
  background-color: var(--bg-secondary);
}

.before-after-slider {
  position: relative;
  width: 100%;
  max-width: 500px; /* Reduzido de 860px para 500px para acomodar imagens verticais de forma elegante */
  margin: 40px auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  cursor: ew-resize;
  user-select: none;
  aspect-ratio: 3 / 4; /* Alterado de 16/9 para 3/4, combinando perfeitamente com fotos de celular verticais e removendo zoom excessivo */
  border: 1px solid rgba(255, 255, 255, 0.08);
  container-type: inline-size; /* Mantém container queries para alinhamento de pixel perfeito das imagens */
}

.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ba-after {
  width: 50%;
  border-right: 3px solid var(--color-orange);
  z-index: 2;
}

.ba-before img,
.ba-after img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100cqw !important; /* Evita que a imagem encolha ou achate quando o divisor é arrastado */
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  transform-origin: center center; /* Zoom a partir do centro exato da imagem */
  transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Efeito hidráulico super amortecido e suave de zoom */
}

.ba-label {
  position: absolute;
  bottom: 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  color: white;
  pointer-events: none;
  z-index: 4;
}

.ba-label-before {
  right: 16px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.1);
}

.ba-label-after {
  left: 16px;
  background: var(--color-orange);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 2px 8px rgba(255, 94, 0, 0.25);
}


.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: #121216;
  border: 2px solid var(--color-orange);
  box-shadow: 0 0 10px rgba(255, 94, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
  z-index: 10;
  transition: var(--transition-smooth);
}

.ba-handle:hover {
  box-shadow: var(--neon-glow-orange);
  transform: translate(-50%, -50%) scale(1.08);
}

.ba-handle svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-orange);
  stroke-width: 2.5;
}

/* ==========================================
   BARRA DE URGÊNCIA
   ========================================== */
.urgency-bar {
  background: linear-gradient(90deg, #070709 0%, #121216 100%);
  border-top: 2px solid var(--color-orange);
  border-bottom: 2px solid var(--color-orange);
  padding: 14px 0;
}

.urgency-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
}

.urgency-icon {
  font-size: 1.2rem;
  animation: pulse-icon 1.5s infinite;
}

@keyframes pulse-icon {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.urgency-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.urgency-text strong {
  color: var(--color-orange);
  font-size: 1.1rem;
  font-family: var(--font-title);
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.urgency-cta {
  display: inline-block;
  background: var(--color-orange);
  color: white;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.urgency-cta:hover {
  background: var(--color-orange-hover);
  transform: translateY(-1px);
}

/* ==========================================
   POPUP DE SAÍDA (EXIT INTENT)
   ========================================== */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  z-index: 9000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.exit-popup-overlay.active {
  opacity: 1;
  pointer-events: all;
}



.exit-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -44%) scale(0.95);
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  width: 92%;
  max-width: 480px;
  z-index: 9001;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.exit-popup.active {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
  border-color: rgba(255, 94, 0, 0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.7), var(--neon-glow-orange);
}

.exit-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text-tertiary);
  transition: color 0.2s;
}

.exit-popup-close:hover { color: var(--text-primary); }

.exit-popup-close svg {
  width: 20px;
  height: 20px;
}

.exit-popup-badge {
  display: inline-block;
  background: rgba(255, 94, 0, 0.12);
  color: var(--color-orange);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255, 94, 0, 0.3);
  box-shadow: var(--neon-glow-orange-sutil);
}

.exit-popup-title {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.exit-popup-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 8px;
}

.exit-popup-stars {
  font-size: 1.1rem;
  color: var(--color-orange);
  margin-bottom: 4px;
}

.exit-popup-stars span {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-left: 6px;
}

.exit-popup-skip {
  display: block;
  background: none;
  border: none;
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--text-tertiary);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.exit-popup-skip:hover { color: var(--text-secondary); }

@media (max-width: 480px) {
  .exit-popup { padding: 32px 20px; }
  .exit-popup-title { font-size: 1.3rem; }
  .reputation-bar-container { flex-direction: column; }

}

/* ==========================================
   BARRA DE CERTIFICAÇÕES E GARANTIAS (AUTORIDADE)
   ========================================== */
.trust-badges-section {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 36px 0;
  position: relative;
  overflow: hidden;
}

.trust-badges-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  justify-content: center;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background-color: var(--bg-primary);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.trust-badge-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 94, 0, 0.25);
  box-shadow: var(--neon-glow-orange-sutil);
}

.trust-badge-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.trust-badge-icon-wrap.ciano {
  background-color: rgba(0, 163, 255, 0.12);
  color: var(--color-blue);
  border: 1px solid rgba(0, 163, 255, 0.2);
  box-shadow: 0 0 10px rgba(0, 163, 255, 0.1);
}

.trust-badge-icon-wrap.laranja {
  background-color: rgba(255, 94, 0, 0.12);
  color: var(--color-orange);
  border: 1px solid rgba(255, 94, 0, 0.2);
  box-shadow: 0 0 10px rgba(255, 94, 0, 0.1);
}

.trust-badge-item:hover .trust-badge-icon-wrap.ciano {
  box-shadow: var(--neon-glow-blue);
  transform: scale(1.05);
}

.trust-badge-item:hover .trust-badge-icon-wrap.laranja {
  box-shadow: var(--neon-glow-orange);
  transform: scale(1.05);
}

.trust-badge-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.trust-badge-content h4 {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.trust-badge-content p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* ==========================================
   SEÇÃO SIMULADOR DE ECONOMIA (CRO)
   ========================================== */
.simulator-section {
  background-color: var(--bg-primary);
}

.simulator-box {
  background-color: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: var(--shadow-medium);
}

.simulator-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 20px;
}

.simulator-tab {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  color: var(--text-secondary);
  border-radius: var(--radius-full);
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.simulator-tab:hover {
  color: var(--text-primary);
  border-color: var(--color-orange);
  background-color: rgba(255, 94, 0, 0.02);
}

.simulator-tab.active {
  background-color: var(--color-orange);
  color: white;
  border-color: var(--color-orange);
  box-shadow: var(--neon-glow-orange-sutil);
}

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

@media (min-width: 992px) {
  .simulator-content {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.simulator-chart {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.chart-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chart-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.chart-track {
  width: 100%;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.chart-fill {
  height: 100%;
  border-radius: var(--radius-full);
  transition: width 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 0%;
}

.chart-fill.autorizada {
  background: linear-gradient(90deg, #3a3a44 0%, #5a5a66 100%);
}

.chart-fill.infofacil {
  background: linear-gradient(90deg, var(--color-orange) 0%, #ff8c00 100%);
  box-shadow: var(--neon-glow-orange-sutil);
}

.chart-price {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
}

.simulator-results {
  background-color: var(--bg-primary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-subtle);
}

.result-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.result-savings {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-orange);
  margin-bottom: 16px;
  line-height: 1;
  text-shadow: var(--neon-glow-orange-sutil);
}

.result-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 24px;
}

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

@media (max-width: 576px) {
  .simulator-box {
    padding: 24px 16px;
  }
}

/* ==========================================
   GRADE DE FOTOS - CONFORTO E TANGIBILIDADE
   ========================================== */
.conforto-gallery {
  width: 100%;
}

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

.gallery-photo-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.gallery-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.photo-info-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(7, 7, 9, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  padding: 12px 16px;
  opacity: 0.85;
  transition: var(--transition-fast);
}

.photo-info-overlay span {
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.02em;
}

.gallery-photo-item:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(255, 94, 0, 0.35);
  box-shadow: var(--neon-glow-orange-sutil);
}

.gallery-photo-item:hover img {
  transform: scale(1.06);
}

.gallery-photo-item:hover .photo-info-overlay {
  opacity: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(255, 94, 0, 0.7) 100%);
}

@media (max-width: 991px) {
  .showcase-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    gap: 10px;
  }
  .photo-info-overlay {
    padding: 8px 10px;
  }
  .photo-info-overlay span {
    font-size: 0.72rem;
  }
}


