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

/* ==========================================================================
   1. VARIÁVEIS E CONFIGURAÇÕES GLOBAIS (DESIGN SYSTEM)
   ========================================================================== */
:root {
  --primary-green: #32a354;
  --primary-green-hover: #2a8a47;
  --dark-teal: #14474f;
  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  
  --brand-gradient: linear-gradient(160deg, #32a354 0%, #14474f 100%);
  --brand-gradient-h: linear-gradient(135deg, #32a354 0%, #14474f 100%);
  --text-gradient: linear-gradient(90deg, #86efac 0%, #4ade80 50%, #34d399 100%);
  
  --bg-dark: #090e17;
  --bg-dark-card: #0f172a;
  --bg-dark-card-border: rgba(255, 255, 255, 0.08);
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --text-light-muted: rgba(255, 255, 255, 0.7);
  
  --border-light: #e2e8f0;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
  --shadow-glow-green: 0 0 40px rgba(50, 163, 84, 0.35);
  
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
  --container-max: 1240px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s ease;
}

/* ==========================================================================
   2. RESET E ESTILOS BÁSICOS
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  color: var(--text-main);
  background-color: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

button {
  cursor: pointer;
}

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

.text-gradient {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

/* ==========================================================================
   3. CABEÇALHO E NAVBAR
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo-img {
  height: 60px;
  width: auto;
  transition: filter 0.3s ease, height 0.3s ease;
}

.header.scrolled .logo-img {
  filter: brightness(0);
  height: 50px;
}

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

.nav-link {
  font-weight: 600;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover {
  color: #fff;
  transform: translateY(-2px);
}

.header.scrolled .nav-link {
  color: #475569;
}

.header.scrolled .nav-link:hover {
  color: var(--primary-green);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary-nav {
  background: #ffffff;
  color: #166534;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary-nav:hover {
  background: #f0fdf4;
  transform: scale(1.04);
}

.header.scrolled .btn-primary-nav {
  background: var(--primary-green);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(50, 163, 84, 0.3);
}

.header.scrolled .btn-primary-nav:hover {
  background: var(--primary-green-hover);
}

.btn-hero-primary {
  background: #ffffff;
  color: #166534;
  padding: 16px 36px;
  font-size: 1.1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.btn-hero-primary:hover {
  background: #f0fdf4;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.btn-hero-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 16px 36px;
  font-size: 1.1rem;
}

.btn-hero-outline:hover {
  background: #ffffff;
  color: #166534;
  border-color: #ffffff;
  transform: translateY(-3px);
}

.btn-green {
  background: var(--primary-green);
  color: #ffffff;
  padding: 14px 32px;
}

.btn-green:hover {
  background: var(--primary-green-hover);
  box-shadow: 0 10px 25px rgba(50, 163, 84, 0.35);
  transform: translateY(-2px);
}

.btn-dark {
  background: #0f172a;
  color: #ffffff;
}

.btn-dark:hover {
  background: #1e293b;
  transform: translateY(-2px);
}

.btn-white {
  background: #ffffff;
  color: #166534;
}

.btn-white:hover {
  background: #f0fdf4;
  transform: translateY(-2px);
}

/* Botão Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  height: 3px;
  width: 28px;
  background-color: #ffffff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.header.scrolled .mobile-toggle span {
  background-color: #0f172a;
}

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

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

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

/* ==========================================================================
   4. SEÇÃO HERO
   ========================================================================== */
.hero-section {
  position: relative;
  background-color: var(--bg-dark);
  padding: 160px 0 150px 0;
  overflow: hidden;
  color: #ffffff;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: var(--brand-gradient);
  opacity: 0.65;
  pointer-events: none;
}

.hero-bg-radial-1 {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(50, 163, 84, 0.25), transparent 50%);
  pointer-events: none;
}

.hero-bg-radial-2 {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 70%, rgba(20, 71, 79, 0.4), transparent 50%);
  pointer-events: none;
}

.hero-glow-1 {
  position: absolute;
  top: 20%;
  left: -100px;
  width: 450px;
  height: 450px;
  background: rgba(50, 163, 84, 0.2);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  animation: floatOrb 12s ease-in-out infinite alternate;
}

.hero-glow-2 {
  position: absolute;
  bottom: 10%;
  right: -100px;
  width: 550px;
  height: 550px;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  animation: floatOrb 16s ease-in-out infinite alternate-reverse;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 50px) scale(1.15); }
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: badgePulse 2.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  transition: all 0.3s ease;
}

.badge-tag:hover {
  animation-play-state: paused;
  transform: scale(1.06);
  background: rgba(255, 255, 255, 0.25);
}

@keyframes badgePulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5), 0 4px 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.25);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 24px 6px rgba(74, 222, 128, 0.45), 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 222, 128, 0.8);
    background: rgba(255, 255, 255, 0.22);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0), 0 4px 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.25);
  }
}

.badge-tag-icon {
  width: 9px;
  height: 9px;
  background-color: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 12px #4ade80;
  position: relative;
}

.badge-tag-icon::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #4ade80;
  animation: pulseRadar 2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

@keyframes pulseRadar {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-subtitle strong {
  color: #86efac;
  font-weight: 700;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Mockup Hero Interativo */
.hero-mockup-wrapper {
  position: relative;
}

.hero-mockup-card {
  position: relative;
  transition: transform 0.6s ease;
}

.hero-mockup-card:hover {
  transform: scale(1.03);
}

.mockup-main-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Badge Flutuante Economia Real */
.floating-stat-badge {
  position: absolute;
  right: -30px;
  bottom: -80px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.7);
  width: 260px;
  color: #0f172a;
  z-index: 20;
  animation: floatBadge 5s ease-in-out infinite;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.stat-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.stat-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(50, 163, 84, 0.4);
}

.stat-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
}

.stat-subtitle {
  font-size: 0.75rem;
  color: var(--primary-green);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.stat-subtitle::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--primary-green);
  border-radius: 50%;
  animation: pulseDot 2s infinite;
}

.stat-indicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  border: 1px solid #f1f5f9;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 0.05em;
}

.stat-pill {
  background: #dcfce7;
  color: #15803d;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Gráfico de barras mini */
.mini-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 80px;
  padding: 8px 10px 0 10px;
  background: #f8fafc;
  border-radius: var(--radius-md);
  border: 1px solid #f1f5f9;
  gap: 8px;
}

.chart-bar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  height: 100%;
  justify-content: flex-end;
  gap: 6px;
}

.chart-bar {
  width: 100%;
  background: #cbd5e1;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.chart-bar.active {
  background: linear-gradient(to top, #10b981, #34d399);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.chart-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: #94a3b8;
  font-family: monospace;
}

/* Curva divisória de seção */
.section-wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.section-wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
  fill: var(--bg-light);
}

/* ==========================================================================
   5. SEÇÃO DESAFIOS (A DOR DO MERCADO)
   ========================================================================== */
.section-dor {
  padding: 100px 0;
  background-color: var(--bg-light);
  position: relative;
}

.section-header-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.section-tag {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary-green);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.15rem;
  color: #64748b;
  line-height: 1.6;
}

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

.problem-card {
  background: #ffffff;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
  border-color: transparent;
}

.problem-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.problem-card:hover .problem-icon-wrapper {
  transform: scale(1.1);
}

.problem-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.problem-card .subtitle-tag {
  color: var(--primary-green);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.problem-card p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.55;
}

/* ==========================================================================
   6. SEÇÃO A SOLUÇÃO: ENERGYS
   ========================================================================== */
.section-solucao {
  padding: 110px 0;
  background-color: #ffffff;
}

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

.solucao-text .section-tag {
  margin-bottom: 12px;
}

.solucao-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 20px;
}

.solucao-text p {
  font-size: 1.15rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 30px;
}

.solucao-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #334155;
  font-size: 1rem;
}

.check-icon {
  width: 22px;
  height: 22px;
  color: var(--primary-green);
  flex-shrink: 0;
}

/* Grade Visual 2x2 com Animações Vivas */
.solucao-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.visual-box {
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.visual-box:hover {
  transform: translateY(-8px) scale(1.03) !important;
  box-shadow: 0 20px 45px rgba(50, 163, 84, 0.2);
}

/* Card 1: Barras de Consumo Animadas */
.visual-box-bars {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  animation: floatBox1 5s ease-in-out infinite;
}

.bars-anim-wrapper {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 65px;
  width: 65px;
  justify-content: center;
}

.bar-col {
  width: 14px;
  background: #94a3b8;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.bar-col-1 {
  height: 40%;
  animation: barHeight1 3s ease-in-out infinite alternate;
}

.bar-col-2 {
  height: 80%;
  background: var(--primary-green);
  animation: barHeight2 2.4s ease-in-out infinite alternate;
}

.bar-col-3 {
  height: 60%;
  animation: barHeight3 3.6s ease-in-out infinite alternate;
}

@keyframes barHeight1 {
  0% { height: 25%; }
  50% { height: 65%; }
  100% { height: 35%; }
}

@keyframes barHeight2 {
  0% { height: 85%; }
  50% { height: 45%; }
  100% { height: 95%; }
}

@keyframes barHeight3 {
  0% { height: 50%; }
  50% { height: 85%; }
  100% { height: 60%; }
}

/* Card 2: Raio de Energia */
.visual-box-bolt {
  background: var(--primary-green);
  color: #ffffff;
  animation: floatBox2 4.5s ease-in-out infinite;
  box-shadow: 0 10px 30px rgba(50, 163, 84, 0.3);
}

.bolt-anim-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bolt-anim-wrapper svg {
  animation: boltPulse 2.4s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.6));
}

.bolt-glow-ring {
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  animation: boltRing 2.4s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
  pointer-events: none;
}

@keyframes boltPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4)); }
  50% { transform: scale(1.12); filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.9)); }
}

@keyframes boltRing {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Card 3: Logo Energys com Shimmer */
.visual-box-logo {
  background: var(--brand-gradient);
  color: #ffffff;
  animation: logoBreath 6s ease-in-out infinite;
  box-shadow: 0 12px 35px rgba(20, 71, 79, 0.35);
}

.logo-shimmer-wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 8px;
}

.logo-shimmer-wrapper img {
  max-height: 65px;
  width: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.visual-box-logo::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  animation: logoShimmerSweep 4.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 3;
}

@keyframes logoShimmerSweep {
  0% { left: -60%; }
  35%, 100% { left: 140%; }
}

@keyframes logoBreath {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

/* Card 4: Smartphone com Onda de Conectividade */
.visual-box-phone {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #64748b;
  animation: floatBox3 5.5s ease-in-out infinite;
}

.phone-anim-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-signal-wave {
  position: absolute;
  top: -10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--primary-green);
  animation: phoneWave 2s ease-out infinite;
  pointer-events: none;
}

@keyframes phoneWave {
  0% { transform: scale(0.3); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Animações de Flutuação */
@keyframes floatBox1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes floatBox2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
}

@keyframes floatBox3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Utilitários de Cor de Texto */
.text-white {
  color: #ffffff !important;
}

.text-light-muted {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* ==========================================================================
   7. SEÇÃO VÍDEO DE DEMONSTRAÇÃO
   ========================================================================== */
.section-video {
  padding: 120px 0;
  background-color: #070c14;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.section-video::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(50, 163, 84, 0.05) 50%, transparent 75%);
  pointer-events: none;
  z-index: 1;
}

.section-video .container {
  position: relative;
  z-index: 2;
}

.section-video .section-tag {
  color: #4ade80;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.25);
  padding: 6px 18px;
  border-radius: var(--radius-full);
}

.section-video .section-title {
  color: #ffffff !important;
  font-size: 3.1rem;
  letter-spacing: -0.02em;
  margin-top: 16px;
  margin-bottom: 18px;
}

.section-video .section-desc {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 1.2rem;
  max-width: 740px;
  margin: 0 auto;
}

/* Card Container com Borda Iluminada Neon */
.video-container-card {
  position: relative;
  max-width: 980px;
  margin: 50px auto 0 auto;
  border-radius: var(--radius-xl);
  padding: 4px;
  background: linear-gradient(135deg, rgba(50, 163, 84, 0.6), rgba(20, 71, 79, 0.4), rgba(16, 185, 129, 0.6));
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 50px rgba(50, 163, 84, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.video-container-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.7), 0 0 65px rgba(50, 163, 84, 0.35);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 4px);
  background: #000000;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 14, 23, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.video-overlay:hover .btn-play-pulse {
  transform: scale(1.15);
  box-shadow: 0 0 45px rgba(50, 163, 84, 0.85);
}

.video-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.btn-play-pulse {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, #32a354, #10b981);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(50, 163, 84, 0.6);
  margin-bottom: 20px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-play-pulse::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid rgba(74, 222, 128, 0.6);
  animation: playPulseRadar 2.2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

@keyframes playPulseRadar {
  0% { transform: scale(0.85); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.btn-play-pulse svg {
  margin-left: 5px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.overlay-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  letter-spacing: -0.01em;
}

.overlay-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 6px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* ==========================================================================
   8. SEÇÃO DIFERENCIAIS
   ========================================================================== */
.section-diferenciais {
  padding: 120px 0;
  background-color: #070c14;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.section-diferenciais::before {
  content: "";
  position: absolute;
  top: 0;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(50, 163, 84, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.section-diferenciais::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 71, 79, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}

.diferencial-card {
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(74, 222, 128, 0.25);
  border-radius: var(--radius-xl);
  padding: 42px 32px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.diferencial-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(50, 163, 84, 0.5);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4), 0 0 35px rgba(50, 163, 84, 0.2);
}

.diferencial-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  background: rgba(50, 163, 84, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4ade80;
  margin-bottom: 28px;
  transition: all 0.35s ease;
  box-shadow: 0 0 25px rgba(50, 163, 84, 0.18);
  position: relative;
}

.diferencial-card:hover .diferencial-icon {
  background: rgba(50, 163, 84, 0.35);
  border-color: #4ade80;
  color: #ffffff;
  transform: scale(1.12);
  box-shadow: 0 0 35px rgba(74, 222, 128, 0.5);
}

.diferencial-card h4 {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #ffffff;
}

.diferencial-card p {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Micro-Animações dos Ícones */
/* 1. Smartphone / App (Tilt e Respiração) */
.card-anim-app .diferencial-icon svg {
  animation: appTilt 4s ease-in-out infinite;
}

@keyframes appTilt {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(-6deg) scale(1.06); }
  75% { transform: rotate(6deg) scale(1.06); }
}

/* 2. Gestão Centralizada (Pulso de Métricas) */
.card-anim-gestao .diferencial-icon svg {
  animation: gestaoPulse 3.2s ease-in-out infinite;
}

@keyframes gestaoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12) translateY(-2px); }
}

/* 3. Estrutura B2B (Elevação e Crescimento) */
.card-anim-b2b .diferencial-icon svg {
  animation: b2bElevate 4s ease-in-out infinite;
}

@keyframes b2bElevate {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px) scale(1.08); }
}

/* 4. Dashboard (Pulso Analítico) */
.card-anim-dash .diferencial-icon svg {
  animation: dashPulse 3.6s ease-in-out infinite;
}

@keyframes dashPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1) rotate(2deg); }
}

/* 5. Mercado Brasileiro / Energia (Fagulha Elétrica) */
.card-anim-energy .diferencial-icon svg {
  animation: energySpark 2.4s ease-in-out infinite;
}

@keyframes energySpark {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 3px rgba(74, 222, 128, 0.4)); }
  50% { transform: scale(1.18); filter: drop-shadow(0 0 16px rgba(74, 222, 128, 0.95)); }
}

/* 6. Alertas Preventivos (Balanço de Sino) */
.card-anim-alert .diferencial-icon svg {
  animation: bellSwing 3.8s ease-in-out infinite;
  transform-origin: top center;
}

@keyframes bellSwing {
  0%, 65%, 100% { transform: rotate(0); }
  70% { transform: rotate(14deg); }
  75% { transform: rotate(-12deg); }
  80% { transform: rotate(8deg); }
  85% { transform: rotate(-5deg); }
  90% { transform: rotate(0); }
}

/* ==========================================================================
   9. SEÇÃO BENEFÍCIOS
   ========================================================================== */
.section-beneficios {
  padding: 120px 0;
  background-color: #ffffff;
  position: relative;
}

.beneficio-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-top: 3px solid transparent;
  border-radius: var(--radius-xl);
  padding: 42px 30px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  position: relative;
}

.beneficio-card:hover {
  transform: translateY(-10px);
  border-color: rgba(50, 163, 84, 0.35);
  border-top-color: var(--primary-green);
  box-shadow: 0 20px 45px rgba(50, 163, 84, 0.14);
}

.beneficio-icon {
  width: 78px;
  height: 78px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid rgba(74, 222, 128, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  margin-bottom: 26px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 22px rgba(50, 163, 84, 0.12);
}

.beneficio-card:hover .beneficio-icon {
  background: linear-gradient(135deg, #32a354, #10b981);
  color: #ffffff;
  transform: scale(1.1) rotate(4deg);
  box-shadow: 0 12px 30px rgba(50, 163, 84, 0.35);
}

.beneficio-card h4 {
  font-size: 1.45rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.beneficio-card:hover h4 {
  color: var(--primary-green);
}

.beneficio-card p {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.6;
}

/* Micro-Animações dos 6 Benefícios */
/* 1. Redução de Custos (Cifrão Flutuante) */
.card-beneficio-custos .beneficio-icon svg {
  animation: coinBounce 3.6s ease-in-out infinite;
}

@keyframes coinBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px) scale(1.08); }
}

/* 2. Eficiência na Gestão (Alvo / Foco) */
.card-beneficio-gestao .beneficio-icon svg {
  animation: targetPulse 3.2s ease-in-out infinite;
}

@keyframes targetPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

/* 3. Tempo Hábil (Relógio com Pulso) */
.card-beneficio-tempo .beneficio-icon svg {
  animation: clockTick 4.2s ease-in-out infinite;
}

@keyframes clockTick {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(10deg); }
  75% { transform: rotate(-8deg); }
}

/* 4. Alertas Inteligentes (Sino Ativo) */
.card-beneficio-alertas .beneficio-icon svg {
  animation: alertBellSwing 3.6s ease-in-out infinite;
  transform-origin: top center;
}

@keyframes alertBellSwing {
  0%, 65%, 100% { transform: rotate(0); }
  70% { transform: rotate(12deg); }
  75% { transform: rotate(-10deg); }
  80% { transform: rotate(6deg); }
  85% { transform: rotate(-3deg); }
  90% { transform: rotate(0); }
}

/* 5. Sustentabilidade (Folha com Balanço Orgânico) */
.card-beneficio-esg .beneficio-icon svg {
  animation: leafSway 4s ease-in-out infinite;
  transform-origin: bottom left;
}

@keyframes leafSway {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(9deg) scale(1.08); }
}

/* 6. Decisões Estratégicas (Crescimento de Gráfico) */
.card-beneficio-estrategia .beneficio-icon svg {
  animation: chartGrowth 3.5s ease-in-out infinite;
}

@keyframes chartGrowth {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(3px, -3px) scale(1.08); }
}

/* ==========================================================================
   10. SEÇÃO SEGMENTOS (SPOTLIGHT CARDS)
   ========================================================================== */
.section-segmentos {
  padding: 110px 0;
  background-color: var(--bg-light);
}

.segmentos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.segmento-card {
  position: relative;
  padding: 48px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.segmento-card:hover {
  transform: scale(1.015);
}

.segmento-card.card-condo {
  background: #ffffff;
  color: #0f172a;
}

.segmento-card.card-condo:hover {
  box-shadow: 0 25px 60px rgba(50, 163, 84, 0.15);
}

.segmento-card.card-hotel {
  background: var(--brand-gradient);
  color: #ffffff;
}

.segmento-card.card-hotel:hover {
  box-shadow: 0 25px 60px rgba(50, 163, 84, 0.35);
}

.spotlight-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.segmento-card:hover .spotlight-overlay {
  opacity: 1;
}

.segmento-content {
  position: relative;
  z-index: 2;
}

.segmento-icon-box {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-condo .segmento-icon-box {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid rgba(74, 222, 128, 0.45);
  color: var(--primary-green);
  box-shadow: 0 10px 25px rgba(50, 163, 84, 0.12);
}

.card-hotel .segmento-icon-box {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.segmento-card:hover .segmento-icon-box {
  transform: scale(1.1) translateY(-4px);
}

.card-condo:hover .segmento-icon-box {
  background: linear-gradient(135deg, #32a354, #10b981);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(50, 163, 84, 0.3);
}

.card-hotel:hover .segmento-icon-box {
  background: #ffffff;
  color: #166534;
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.35);
}

.segmento-card h3 {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.segmento-card .segmento-subtitle {
  font-size: 1.15rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

.card-condo .segmento-subtitle {
  color: #64748b;
}

.card-hotel .segmento-subtitle {
  color: rgba(255, 255, 255, 0.85);
}

.segmento-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.segmento-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.15rem;
  font-weight: 600;
}

.btn-segmento {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: var(--radius-lg);
}

/* ==========================================================================
   11. SEÇÃO APP ENERGYS
   ========================================================================== */
.section-app {
  padding: 120px 0;
  background-color: #ffffff;
  overflow: hidden;
}

.app-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.app-text h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 20px;
}

.app-text p {
  font-size: 1.2rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 36px;
}

.app-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.app-features-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #334155;
}

.app-check-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #dcfce7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  flex-shrink: 0;
}

.app-mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.app-mockup-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  background: rgba(50, 163, 84, 0.15);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.app-mockup-img {
  max-width: 340px;
  width: 100%;
  border-radius: 36px;
  box-shadow: 0 25px 60px rgba(50, 163, 84, 0.2);
  animation: floatPhone 6s ease-in-out infinite;
}

@keyframes floatPhone {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ==========================================================================
   12. SEÇÃO FAQ (PERGUNTAS FREQUENTES)
   ========================================================================== */
.section-faq {
  padding: 110px 0;
  background-color: var(--bg-light);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: border-color 0.3s ease;
}

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

.faq-question {
  width: 100%;
  padding: 24px 30px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
  background: transparent;
  transition: color 0.2s ease;
}

.faq-item:hover .faq-question {
  color: var(--primary-green);
}

.faq-icon-chevron {
  width: 22px;
  height: 22px;
  color: #94a3b8;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon-chevron {
  transform: rotate(180deg);
  color: var(--primary-green);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 30px;
}

.faq-answer p {
  padding-bottom: 24px;
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.65;
}

/* ==========================================================================
   13. SEÇÃO CTA FINAL (CARD PANORÂMICO LUMINOSO)
   ========================================================================== */
.section-cta {
  padding: 110px 0 130px 0;
  background: #070c14;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.cta-banner-card {
  position: relative;
  background: linear-gradient(145deg, rgba(20, 71, 79, 0.95) 0%, rgba(15, 23, 42, 0.98) 50%, rgba(50, 163, 84, 0.9) 100%);
  border-radius: var(--radius-xl);
  padding: 85px 45px;
  border: 1px solid rgba(74, 222, 128, 0.4);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6), 0 0 65px rgba(50, 163, 84, 0.28);
  overflow: hidden;
  text-align: center;
}

.cta-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.22) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

.cta-badge {
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(74, 222, 128, 0.45);
}

.cta-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.18;
  color: #ffffff !important;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  max-width: 760px;
  margin: 0 auto 42px auto;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.btn-cta-primary {
  background: #ffffff;
  color: #166534;
  font-size: 1.15rem;
  font-weight: 800;
  padding: 18px 38px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-cta-primary:hover {
  background: #f0fdf4;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
}

.btn-cta-whatsapp {
  background: #22c55e;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
  padding: 18px 38px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-cta-whatsapp:hover {
  background: #16a34a;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 35px rgba(34, 197, 94, 0.55);
}

/* Selos de Confiança */
.cta-trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

/* ==========================================================================
   14. RODAPÉ (FOOTER)
   ========================================================================== */
.footer {
  background: var(--brand-gradient);
  color: #ffffff;
  padding: 90px 0 35px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand .footer-logo {
  height: 65px;
  width: auto;
  margin-bottom: 24px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  max-width: 380px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #ffffff;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.footer-links a:hover {
  color: #86efac;
  transform: translateX(4px);
}

.footer-contact-list li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.footer-bottom {
  padding-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

.footer-lgpd-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.footer-lgpd-link:hover {
  color: #86efac;
}

.studiodess-credit {
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.studiodess-credit a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  font-weight: 400;
  transition: all 0.2s ease;
}

.studiodess-credit a:hover {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
}

/* ==========================================================================
   15. CHATBOT WHATSAPP & BOTÃO FLUTUANTE
   ========================================================================== */
.whatsapp-float-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #22c55e;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
  z-index: 999;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
}

.whatsapp-float-btn:hover {
  transform: scale(1.12);
  background-color: #16a34a;
}

.whatsapp-float-btn::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(34, 197, 94, 0.5);
  animation: pulseRing 2.2s infinite;
}

@keyframes pulseRing {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Modal Chatbot */
.chat-modal-overlay {
  position: fixed;
  bottom: 105px;
  right: 28px;
  width: 380px;
  max-width: calc(100vw - 40px);
  height: 540px;
  background: #ffffff;
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.chat-modal-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chat-header {
  background: var(--brand-gradient);
  padding: 18px 22px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-info h5 {
  font-size: 1.05rem;
  font-weight: 700;
}

.chat-info span {
  font-size: 0.75rem;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 4px;
}

.chat-info span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #4ade80;
  border-radius: 50%;
}

.chat-close-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease;
}

.chat-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.chat-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  background-color: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-msg {
  display: flex;
  gap: 10px;
  animation: fadeInMsg 0.3s ease;
}

@keyframes fadeInMsg {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-msg.bot {
  justify-content: flex-start;
}

.chat-msg.bot .msg-bubble {
  background: #ffffff;
  color: #334155;
  border-radius: 18px 18px 18px 0;
  border: 1px solid #f1f5f9;
  box-shadow: var(--shadow-sm);
  padding: 14px 18px;
  font-size: 0.95rem;
  max-width: 85%;
  line-height: 1.45;
}

.chat-msg.user {
  justify-content: flex-end;
}

.chat-msg.user .msg-bubble {
  background: var(--primary-green);
  color: #ffffff;
  border-radius: 18px 18px 0 18px;
  padding: 12px 18px;
  font-size: 0.95rem;
  max-width: 85%;
  box-shadow: 0 4px 12px rgba(50, 163, 84, 0.25);
}

.chat-options-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.chat-option-btn {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--primary-green);
  color: var(--primary-green);
  font-weight: 700;
  font-size: 0.85rem;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chat-option-btn:hover {
  background: var(--primary-green);
  color: #ffffff;
  transform: scale(1.05);
}

.btn-open-whatsapp {
  margin-top: 12px;
  width: 100%;
  background: #22c55e;
  color: #ffffff;
  padding: 14px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(34, 197, 94, 0.35);
  transition: all 0.2s ease;
}

.btn-open-whatsapp:hover {
  background: #16a34a;
  transform: translateY(-2px);
}

.chat-input-area {
  padding: 14px;
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
  display: flex;
  gap: 8px;
}

.chat-input-field {
  flex: 1;
  background: #f1f5f9;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 0.95rem;
  color: #334155;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.chat-input-field:focus {
  background: #ffffff;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(50, 163, 84, 0.15);
}

.chat-send-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--primary-green);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.chat-send-btn:hover {
  background: var(--primary-green-hover);
}

.chat-send-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ==========================================================================
   16. RESPONSIVIDADE (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  .badge-tag {
    margin-left: auto;
    margin-right: auto;
  }
  
  .cards-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cards-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .solucao-grid, .app-grid, .segmentos-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 40px 30px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-link {
    color: #0f172a !important;
    font-size: 1.25rem;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .btn-primary-nav {
    display: none;
  }
  
  .hero-title {
    font-size: 2.3rem;
  }
  
  .hero-subtitle {
    font-size: 1.05rem;
  }
  
  .cards-grid-4, .cards-grid-3 {
    grid-template-columns: 1fr;
  }
  
  .floating-stat-badge {
    position: static;
    width: 100%;
    margin-top: 20px;
  }
  
  .section-title {
    font-size: 2.1rem;
  }
  
  .cta-title {
    font-size: 2.2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
  
  .footer-brand p {
    margin: 0 auto;
  }
  
  .chat-modal-overlay {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    border-radius: 0;
  }
}

/* ==========================================================================
   17. PÁGINA LGPD & POLÍTICA DE PRIVACIDADE
   ========================================================================== */
.legal-page-body {
  background-color: #f8fafc;
}

.legal-hero {
  padding: 160px 0 80px 0;
  background: var(--brand-gradient);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.legal-hero::before {
  content: "";
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(50, 163, 84, 0.25) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.legal-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.legal-hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 18px 0 20px 0;
}

.legal-hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 28px;
}

.legal-meta-tags {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.meta-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 500;
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.legal-content-section {
  padding: 70px 0 110px 0;
}

.legal-layout {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 48px;
  align-items: start;
}

/* Sidebar de Navegação */
.legal-sidebar {
  position: sticky;
  top: 110px;
}

.legal-nav-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
}

.legal-nav-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.legal-toc {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toc-link {
  font-size: 0.88rem;
  color: #64748b;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  line-height: 1.35;
  font-weight: 500;
}

.toc-link:hover {
  background: #f0fdf4;
  color: var(--primary-green);
  transform: translateX(4px);
}

/* Artigo e Blocos */
.legal-article {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.legal-card-block {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 42px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  scroll-margin-top: 110px;
}

.legal-block-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
}

.legal-block-num {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary-green);
  background: rgba(50, 163, 84, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.legal-card-block h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0f172a;
}

.legal-card-block p {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 18px;
}

.legal-card-block p:last-child {
  margin-bottom: 0;
}

.legal-list {
  margin: 16px 0 20px 20px;
  color: #475569;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.02rem;
  line-height: 1.6;
}

.legal-list strong {
  color: #0f172a;
}

/* Feature Grid nos Dados Coletados */
.legal-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}

.legal-feature-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: #f8fafc;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
}

.legal-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: #ecfdf5;
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.legal-feature-item h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.legal-feature-item p {
  font-size: 0.92rem !important;
  color: #64748b !important;
  line-height: 1.5 !important;
  margin-bottom: 0 !important;
}

/* Caixa de Destaque WhatsApp */
.legal-highlight-box {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid rgba(74, 222, 128, 0.45);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin: 20px 0 24px 0;
}

.highlight-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #22c55e;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.legal-highlight-box h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #14532d;
  margin-bottom: 6px;
}

.legal-highlight-box p {
  font-size: 0.98rem !important;
  color: #166534 !important;
  line-height: 1.55 !important;
  margin-bottom: 0 !important;
}

/* Bases Legais */
.legal-bases-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 20px;
}

.legal-base-badge {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: #f8fafc;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-green);
}

.base-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-green);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  flex-shrink: 0;
}

.legal-base-badge strong {
  display: block;
  font-size: 1.02rem;
  color: #0f172a;
  margin-bottom: 4px;
}

.legal-base-badge p {
  font-size: 0.92rem !important;
  color: #64748b !important;
  margin-bottom: 0 !important;
}

/* Direitos */
.rights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 22px;
}

.right-item {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
}

.right-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-green);
  margin-top: 6px;
  flex-shrink: 0;
}

.right-item strong {
  display: block;
  font-size: 1rem;
  color: #0f172a;
  margin-bottom: 4px;
}

.right-item p {
  font-size: 0.9rem !important;
  color: #64748b !important;
  line-height: 1.45 !important;
  margin-bottom: 0 !important;
}

/* DPO Card */
.dpo-card {
  border: 2px solid rgba(50, 163, 84, 0.35);
  background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
}

.dpo-contact-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  padding: 24px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
}

.dpo-contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.dpo-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ecfdf5;
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dpo-contact-row span {
  display: block;
  font-size: 0.85rem;
  color: #64748b;
}

.dpo-contact-row a {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-green);
}

.dpo-contact-row a:hover {
  text-decoration: underline;
}

.btn-outline-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  backdrop-filter: blur(8px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-outline-nav:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-whatsapp-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-full);
  background: #22c55e;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-whatsapp-nav:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.45);
}

/* Estado da Navbar Fixa ao rolar */
.header.scrolled .btn-outline-nav {
  color: #334155;
  border-color: #cbd5e1;
  background: #f8fafc;
}

.header.scrolled .btn-outline-nav:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
  color: var(--primary-green);
}

@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }
  
  .legal-sidebar {
    position: static;
  }
  
  .legal-feature-grid, .rights-grid {
    grid-template-columns: 1fr;
  }
  
  .legal-hero-title {
    font-size: 2.3rem;
  }
  
  .legal-card-block {
    padding: 26px 20px;
  }
}

@media (max-width: 600px) {
  .legal-hero {
    padding: 130px 0 50px 0;
  }
  
  .legal-hero-title {
    font-size: 2rem;
  }
  
  .btn-outline-nav {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
  
  .btn-whatsapp-nav {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
}

/* ==========================================================================
   18. LANDING PAGES DE ALTA CONVERSÃO (LP CONDOMÍNIOS & LP HOTÉIS)
   ========================================================================== */
.lp-hero {
  position: relative;
  padding: 160px 0 100px 0;
  background: var(--brand-gradient);
  color: #ffffff;
  overflow: hidden;
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.lp-hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 20px 0;
}

.lp-hero-subtitle {
  font-size: 1.22rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  margin-bottom: 34px;
}

.lp-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.lp-trust-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-mini-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

/* Calculadora Interativa */
.lp-calc-wrapper {
  position: relative;
}

.lp-calc-card {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
  padding: 38px 32px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25), 0 0 40px rgba(50, 163, 84, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #0f172a;
}

.calc-badge {
  display: inline-block;
  background: rgba(50, 163, 84, 0.12);
  color: var(--primary-green);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.calc-header h3 {
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.25;
  color: #0f172a;
  margin-bottom: 8px;
}

.calc-header p {
  font-size: 0.92rem;
  color: #64748b;
  margin-bottom: 24px;
}

.calc-slider-box {
  background: #f8fafc;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  margin-bottom: 22px;
}

.slider-val-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.slider-val-display span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
}

.slider-val-display strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-green);
}

.calc-range-slider {
  width: 100%;
  height: 8px;
  border-radius: var(--radius-full);
  background: #e2e8f0;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.calc-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-green);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(50, 163, 84, 0.4);
  transition: transform 0.15s ease;
}

.calc-range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.slider-minmax {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 8px;
}

.calc-result-box {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid rgba(74, 222, 128, 0.4);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  margin-bottom: 22px;
}

.result-label {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #166534;
  margin-bottom: 6px;
}

.result-number {
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1.1;
  color: #15803d;
  margin-bottom: 8px;
}

.result-footnote {
  font-size: 0.75rem;
  color: #166534;
  opacity: 0.85;
}

.btn-calc-cta {
  width: 100%;
  background: var(--primary-green);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 16px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(50, 163, 84, 0.35);
  transition: all 0.25s ease;
}

.btn-calc-cta:hover {
  background: var(--primary-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(50, 163, 84, 0.45);
}

/* Seção Vilões */
.section-viloes {
  padding: 100px 0;
  background-color: #ffffff;
}

.vilao-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all 0.3s ease;
}

.vilao-card:hover {
  transform: translateY(-8px);
  border-color: rgba(50, 163, 84, 0.35);
  box-shadow: var(--shadow-md);
}

.vilao-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: #fee2e2;
  color: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.vilao-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.vilao-card p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.55;
}

/* Seção Passos */
.section-passos {
  padding: 100px 0;
  background-color: #f8fafc;
}

.passos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.passo-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all 0.3s ease;
}

.passo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-green);
}

.passo-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary-green);
  opacity: 0.3;
  margin-bottom: 12px;
}

.passo-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.passo-card p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
}

/* Seção Comparativo */
.section-comparativo {
  padding: 100px 0;
  background-color: #ffffff;
}

.comparativo-card-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.comparativo-col {
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  position: relative;
}

.comparativo-col.sem-energys {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.comparativo-col.sem-energys h3 {
  font-size: 1.4rem;
  color: #ef4444;
  margin-bottom: 24px;
}

.comparativo-col.com-energys {
  background: var(--brand-gradient);
  color: #ffffff;
  border: 2px solid rgba(74, 222, 128, 0.4);
  box-shadow: 0 20px 45px rgba(50, 163, 84, 0.2);
}

.comparativo-col.com-energys h3 {
  font-size: 1.4rem;
  color: #86efac;
  margin-bottom: 24px;
}

.badge-recomendado {
  position: absolute;
  top: -14px;
  right: 28px;
  background: #22c55e;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

.comparativo-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparativo-col li {
  font-size: 1.02rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.comparativo-col.sem-energys li {
  color: #475569;
}

.comparativo-col.com-energys li {
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 1024px) {
  .lp-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .lp-hero-actions {
    justify-content: center;
  }
  
  .lp-trust-row {
    align-items: center;
  }
  
  .passos-grid {
    grid-template-columns: 1fr;
  }
  
  .comparativo-card-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .lp-hero-title {
    font-size: 2.3rem;
  }
  
  .lp-hero-subtitle {
    font-size: 1.05rem;
  }
}

/* ==========================================================================
   19. TEMA ESCURO NOTURNO / EXECUTIVO (LP HOTELARIA & RESORTS)
   ========================================================================== */
body.lp-hoteis-page {
  background-color: #070c14;
  color: #f8fafc;
}

.lp-hero-hoteis {
  background: radial-gradient(circle at 80% 20%, rgba(50, 163, 84, 0.18) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(20, 71, 79, 0.35) 0%, transparent 60%),
              linear-gradient(165deg, #091b15 0%, #061118 50%, #04080e 100%);
}

.lp-hoteis-page .lp-calc-card {
  background: rgba(13, 21, 37, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(50, 163, 84, 0.4);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 35px rgba(50, 163, 84, 0.2);
  color: #ffffff;
}

.lp-hoteis-page .calc-header h3 {
  color: #ffffff;
}

.lp-hoteis-page .calc-header p {
  color: #94a3b8;
}

.lp-hoteis-page .calc-slider-box {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-hoteis-page .slider-val-display span {
  color: #94a3b8;
}

.lp-hoteis-page .slider-val-display strong {
  color: #4ade80;
  text-shadow: 0 0 16px rgba(74, 222, 128, 0.35);
}

.lp-hoteis-page .calc-range-slider {
  background: #1e293b;
}

.lp-hoteis-page .calc-result-box {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.25) 100%);
  border: 1px solid rgba(52, 211, 153, 0.45);
}

.lp-hoteis-page .result-label {
  color: #86efac;
}

.lp-hoteis-page .result-number {
  color: #4ade80;
  text-shadow: 0 0 24px rgba(74, 222, 128, 0.45);
}

.lp-hoteis-page .result-footnote {
  color: #a7f3d0;
  opacity: 0.9;
}

/* Seções da LP Hotelaria em Dark Mode */
.lp-hoteis-page .section-viloes {
  background-color: #090e17;
}

.lp-hoteis-page .section-viloes .section-title {
  color: #ffffff;
}

.lp-hoteis-page .section-viloes .section-subtitle {
  color: #94a3b8;
}

.lp-hoteis-page .vilao-card {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.lp-hoteis-page .vilao-card:hover {
  border-color: rgba(50, 163, 84, 0.5);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(50, 163, 84, 0.2);
}

.lp-hoteis-page .vilao-card h4 {
  color: #f8fafc;
}

.lp-hoteis-page .vilao-card p {
  color: #94a3b8;
}

.lp-hoteis-page .section-passos {
  background-color: #05080f;
}

.lp-hoteis-page .section-passos .section-title {
  color: #ffffff;
}

.lp-hoteis-page .passo-card {
  background: #0d1524;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.lp-hoteis-page .passo-card:hover {
  border-color: var(--primary-green);
  box-shadow: 0 15px 40px rgba(50, 163, 84, 0.2);
}

.lp-hoteis-page .passo-card h4 {
  color: #ffffff;
}

.lp-hoteis-page .passo-card p {
  color: #94a3b8;
}

.lp-hoteis-page .passo-number {
  color: #4ade80;
  opacity: 0.4;
}

/* Barra de Navegação no Dark Mode de Hotéis */
.lp-hoteis-page .header.scrolled {
  background: rgba(7, 12, 20, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
}

.lp-hoteis-page .header.scrolled .logo-img {
  filter: none;
}



