/*
Theme Name: Global Nexus Solar Landing
Theme URI: https://globalnexus.com.br
Author: Global Nexus
Author URI: https://globalnexus.com.br
Description: Landing page premium para integradores solares - Sistema de qualificação de leads
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: globalnexus-solar
Tags: landing-page, solar, marketing, business, one-page
*/

/* ================================
   DESIGN SYSTEM - CSS VARIABLES
   ================================ */

:root {
  /* Premium Navy & White Theme */
  --background: #ffffff;
  --foreground: #0f172a;
  
  --card: #ffffff;
  --card-foreground: #0f172a;
  
  /* Deep Navy Blue - Primary Brand Color */
  --primary: #1a2744;
  --primary-foreground: #ffffff;
  
  /* Light Blue-Gray for Secondary Elements */
  --secondary: #f1f5f9;
  --secondary-foreground: #0f172a;
  
  /* Muted tones */
  --muted: #e2e8f0;
  --muted-foreground: #64748b;
  
  /* Accent - Refined Blue */
  --accent: #3b82f6;
  --accent-foreground: #ffffff;
  
  --destructive: #ef4444;
  --border: #e2e8f0;
  
  /* Navy Scale */
  --navy-900: #0a1628;
  --navy-800: #1a2744;
  --navy-700: #2a3a5a;
  --navy-600: #3d4f6f;
  --navy-500: #536a8a;
  
  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #0a1628 0%, #2a3a5a 100%);
  --gradient-subtle: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  --gradient-accent: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(10, 22, 40, 0.03);
  --shadow-md: 0 4px 6px -1px rgba(10, 22, 40, 0.05), 0 2px 4px -2px rgba(10, 22, 40, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(10, 22, 40, 0.08), 0 4px 6px -4px rgba(10, 22, 40, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(10, 22, 40, 0.1), 0 8px 10px -6px rgba(10, 22, 40, 0.05);
  --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.15);
  
  /* Border Radius */
  --radius: 0.75rem;
  --radius-sm: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
}

/* ================================
   RESET & BASE STYLES
   ================================ */

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
}

/* ================================
   TYPOGRAPHY
   ================================ */

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--foreground);
}

h1 {
  font-size: clamp(1.875rem, 5vw, 3.75rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}

p {
  font-family: 'Inter', sans-serif;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.font-display {
  font-family: 'Playfair Display', serif;
}

.font-body {
  font-family: 'Inter', sans-serif;
}

/* ================================
   LAYOUT
   ================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

section {
  padding: 2rem 1rem; /* Era 3rem - Reduzimos o espaço em celulares */
}

@media (min-width: 768px) {
  section {
    padding: 2.5rem 1rem; /* Era 4rem - Reduzimos o espaço em PC */
  }
}

/* ================================
   BUTTONS
   ================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
}

@media (min-width: 640px) {
  .btn {
    width: auto;
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

.btn-hero {
  background: var(--accent);
  color: var(--accent-foreground);
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.5rem;
  font-size: 0.9375rem;
  border-radius: var(--radius-lg);
}

@media (min-width: 640px) {
  .btn-hero {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
  }
}

.btn-hero:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-glow);
}

.btn-hero:active {
  transform: scale(0.98);
}

.btn-inverted {
  background: var(--background);
  color: var(--foreground);
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.5rem;
  font-size: 0.9375rem;
  border-radius: var(--radius-lg);
}

@media (min-width: 640px) {
  .btn-inverted {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
  }
}

.btn-inverted:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-xl);
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: rgba(26, 39, 68, 0.9);
  box-shadow: var(--shadow-lg);
}

/* ================================
   CARDS
   ================================ */

.card {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-premium {
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .card-premium {
    padding: 2rem;
  }
}

.card-accent {
  background: rgba(59, 130, 246, 0.05);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow);
}

/* ================================
   HEADER
   ================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  padding: 1rem 0;
}

@media (min-width: 768px) {
  .site-header {
    padding: 1.5rem 0;
  }
}

.site-header .container {
  display: flex;
  justify-content: center;
}

.site-logo {
  height: 2rem;
  width: auto;
}

@media (min-width: 768px) {
  .site-logo {
    height: 3rem;
  }
}

/* ================================
   HERO SECTION
   ================================ */

.hero-section {
  position: relative;
  min-height: auto; /* IMPORTANTE: Remove a obrigação de tela cheia */
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; <--- REMOVIDO para o texto subir */
  
  /* Espaço do topo (considerando o menu fixo) */
  padding-top: 7rem; 
  padding-bottom: 3rem;
  
  background: var(--gradient-subtle);
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-section {
    padding-top: 9rem; /* Ajuste fino para Desktop */
    padding-bottom: 4rem;
  }
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: radial-gradient(circle at 1px 1px, var(--primary) 1px, transparent 0);
  background-size: 40px 40px;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
  padding: 0 0.5rem;
}

.hero-title {
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto 0.75rem;
}

.hero-subtitle .highlight {
  color: var(--accent);
  font-weight: 600;
}

.hero-tagline {
  font-size: 1rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-tagline {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
  }
}

/* ================================
   PROBLEM SECTION
   ================================ */

.problem-section {
  background: var(--background);
}

.problem-list {
  list-style: none;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .problem-list {
    margin-bottom: 3rem;
  }
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem;
  background: rgba(241, 245, 249, 0.5);
  border-radius: var(--radius);
  border: 1px solid rgba(226, 232, 240, 0.5);
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .problem-item {
    gap: 1rem;
    padding: 1rem;
  }
}

.problem-item:hover {
  box-shadow: var(--shadow-md);
}

.problem-icon {
  color: var(--destructive);
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

@media (min-width: 768px) {
  .problem-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.problem-text {
  font-size: 1rem;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .problem-text {
    font-size: 1.125rem;
  }
}

/* ================================
   SOLUTION SECTION
   ================================ */

.solution-section {
  background: rgba(241, 245, 249, 0.3);
}

.solution-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .solution-grid {
    gap: 1.5rem;
  }
}

.solution-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, 0.5);
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .solution-card {
    flex-direction: row;
    gap: 1.5rem;
    padding: 2rem;
  }
}

.solution-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.solution-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background: rgba(59, 130, 246, 0.1);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .solution-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
  }
}

.solution-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent);
}

@media (min-width: 768px) {
  .solution-icon {
    width: 1.75rem;
    height: 1.75rem;
  }
}

.solution-step {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.375rem;
}

@media (min-width: 768px) {
  .solution-step {
    gap: 0.75rem;
    margin-bottom: 0.5rem;
  }
}

.solution-step-number {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(59, 130, 246, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
}

.solution-title {
  font-size: 1.125rem;
}

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

.solution-description {
  color: var(--muted-foreground);
  line-height: 1.6;
  font-size: 0.9375rem;
}

@media (min-width: 768px) {
  .solution-description {
    font-size: 1rem;
  }
}

/* ================================
   COMPARISON SECTION
   ================================ */

.comparison-section {
  background: var(--background);
}

.comparison-grid {
  display: grid;
  gap: 1rem;
}

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

.comparison-card {
  position: relative;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
  .comparison-card {
    padding: 2rem;
  }
}

.comparison-card-without {
  background: rgba(241, 245, 249, 0.2);
  border: 2px solid var(--border);
}

.comparison-card-with {
  background: rgba(59, 130, 246, 0.05);
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-glow);
}

.comparison-label {
  position: absolute;
  top: -0.75rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
}

@media (min-width: 768px) {
  .comparison-label {
    left: 1.5rem;
    padding: 0.25rem 1rem;
    font-size: 0.875rem;
  }
}

.comparison-label-without {
  background: var(--background);
  color: var(--muted-foreground);
  border: 1px solid var(--border);
}

.comparison-label-with {
  background: var(--accent);
  color: var(--accent-foreground);
}

.comparison-list {
  list-style: none;
  margin-top: 1rem;
}

.comparison-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0;
}

@media (min-width: 768px) {
  .comparison-item {
    gap: 0.75rem;
    padding: 0.5rem 0;
  }
}

.comparison-icon-x {
  width: 1rem;
  height: 1rem;
  color: var(--destructive);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .comparison-icon-x {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.comparison-icon-check {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .comparison-icon-check {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.comparison-item-text {
  font-family: 'Inter', sans-serif;
  color: var(--foreground);
  font-size: 0.9375rem;
}

@media (min-width: 768px) {
  .comparison-item-text {
    font-size: 1rem;
  }
}

.comparison-highlight {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .comparison-highlight {
    margin-top: 3rem;
    font-size: 1.5rem;
  }
}

.comparison-highlight .accent {
  color: var(--accent);
}

/* ================================
   RESULTS SECTION
   ================================ */

.results-section {
  background: var(--gradient-hero);
  color: var(--primary-foreground);
}

.results-section h2,
.results-section p {
  color: var(--primary-foreground);
}

.results-subtitle {
  opacity: 0.7;
}

.results-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.result-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .result-card {
    padding: 2rem;
  }
}

.result-card:hover {
  background: rgba(255, 255, 255, 0.15);
}

.result-type {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.6;
}

@media (min-width: 768px) {
  .result-type {
    font-size: 0.875rem;
  }
}

.result-highlight {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .result-highlight {
    font-size: 2.5rem;
  }
}

.result-description {
  opacity: 0.8;
  margin-top: 0.25rem;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .result-description {
    font-size: 1rem;
  }
}

/* ================================
   PROCESS SECTION
   ================================ */

.process-section {
  background: rgba(241, 245, 249, 0.3);
}

.process-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
}

.process-card {
  padding: 1.5rem;
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, 0.5);
}

@media (min-width: 768px) {
  .process-card {
    padding: 2rem;
  }
}

.process-weeks {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
}

.process-title {
  font-size: 1.25rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .process-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.process-list {
  list-style: none;
}

.process-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.375rem 0;
}

@media (min-width: 768px) {
  .process-item {
    gap: 0.75rem;
    padding: 0.5rem 0;
  }
}

.process-check {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

@media (min-width: 768px) {
  .process-check {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.process-item-text {
  font-family: 'Inter', sans-serif;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .process-item-text {
    font-size: 1rem;
  }
}

.bonuses-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .bonuses-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

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

.bonus-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius);
}

@media (min-width: 768px) {
  .bonus-item {
    gap: 0.75rem;
    padding: 1rem;
  }
}

.bonus-icon {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .bonus-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.bonus-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .bonus-text {
    font-size: 0.875rem;
  }
}

/* ================================
   QUALIFICATION SECTION
   ================================ */

.qualification-section {
  background: var(--background);
}

.qualification-list {
  list-style: none;
  max-width: 48rem;
  margin: 0 auto;
}

.qualification-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .qualification-item {
    gap: 1rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
  }
}

.qualification-item:hover {
  background: rgba(59, 130, 246, 0.1);
}

.qualification-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .qualification-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.qualification-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .qualification-text {
    font-size: 1.125rem;
  }
}

/* ================================
   NEXT STEP SECTION
   ================================ */

.next-step-section {
  background: var(--gradient-hero);
  color: var(--primary-foreground);
}

.next-step-section h2,
.next-step-section p {
  color: var(--primary-foreground);
}

.next-step-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .next-step-subtitle {
    font-size: 1.5rem;
  }
}

.next-step-description {
  font-size: 1rem;
  opacity: 0.7;
}

@media (min-width: 768px) {
  .next-step-description {
    font-size: 1.125rem;
  }
}

.next-step-grid {
  display: grid;
  gap: 0.75rem;
  max-width: 48rem;
  margin: 0 auto 2rem;
  text-align: left;
}

@media (min-width: 640px) {
  .next-step-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
  }
}

.next-step-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
}

@media (min-width: 768px) {
  .next-step-item {
    gap: 0.75rem;
    padding: 1rem;
  }
}

.next-step-icon {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .next-step-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.next-step-text {
  font-family: 'Inter', sans-serif;
  opacity: 0.9;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .next-step-text {
    font-size: 1rem;
  }
}

.next-step-note {
  font-style: italic;
  opacity: 0.6;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .next-step-note {
    margin-bottom: 2.5rem;
    font-size: 1rem;
  }
}

/* ================================
   FINAL CTA SECTION
   ================================ */

.final-cta-section {
  background: var(--background);
}

.final-cta-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.final-cta-options {
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .final-cta-options {
    margin-bottom: 3rem;
  }
}

.final-cta-option {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .final-cta-option {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
  }
}

.final-cta-option strong {
  color: var(--foreground);
}

.final-cta-box {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .final-cta-box {
    padding: 2rem;
    margin-bottom: 2.5rem;
  }
}

.final-cta-box h3 {
  color: var(--primary-foreground);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .final-cta-box h3 {
    font-size: 1.5rem;
  }
}

.final-cta-box p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
}

@media (min-width: 768px) {
  .final-cta-box p {
    font-size: 1rem;
  }
}

.final-cta-limit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.8125rem;
  margin-top: 1.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .final-cta-limit {
    flex-direction: row;
    font-size: 0.875rem;
    margin-top: 2rem;
  }
}

.final-cta-limit-icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* ================================
   FOOTER
   ================================ */

.site-footer {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .site-footer {
    padding: 3rem 0;
  }
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .site-footer .container {
    gap: 1.5rem;
  }
}

.footer-logo {
  height: 1.5rem;
  width: auto;
  opacity: 0.8;
}

@media (min-width: 768px) {
  .footer-logo {
    height: 2rem;
  }
}

.footer-copyright {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  opacity: 0.6;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-copyright {
    font-size: 0.875rem;
  }
}

/* ================================
   MODAL - LEAD CAPTURE
   ================================ */

.lead-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(10, 22, 40, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.lead-modal-overlay.active {
  display: flex;
}

.lead-modal {
  position: relative;
  width: 100%;
  max-width: 28rem;
  background: var(--card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.lead-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--muted-foreground);
  border-radius: 9999px;
  transition: all 0.2s ease;
}

.lead-modal-close:hover {
  background: var(--secondary);
  color: var(--foreground);
}

.lead-modal-header {
  padding: 2rem 2rem 1rem;
  text-align: center;
}

.lead-modal-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.lead-modal-header p {
  font-size: 0.9375rem;
}

.lead-modal-body {
  padding: 1rem 2rem 2rem;
}

/* Form Step Visibility */
.lead-form-step {
  display: none;
}

.lead-form-step.active {
  display: block;
}

/* Form Elements */
.lead-form-group {
  margin-bottom: 1rem;
}

.lead-form-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.lead-form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--foreground);
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.lead-form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.lead-form-input::placeholder {
  color: var(--muted-foreground);
}

/* Radio Options */
.lead-radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.lead-radio-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--secondary);
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
}

.lead-radio-option:hover {
  border-color: var(--accent);
}

.lead-radio-option.selected {
  border-color: var(--accent);
  background: rgba(59, 130, 246, 0.1);
}

.lead-radio-option input {
  display: none;
}

.lead-radio-circle {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid var(--border);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.lead-radio-option.selected .lead-radio-circle {
  border-color: var(--accent);
  background: var(--accent);
}

.lead-radio-option.selected .lead-radio-circle::after {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background: white;
  border-radius: 9999px;
}

.lead-radio-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--foreground);
}

/* Progress Indicator */
.lead-modal-progress {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.lead-modal-progress-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--border);
  transition: all 0.2s ease;
}

.lead-modal-progress-dot.active {
  background: var(--accent);
  width: 1.5rem;
}

/* Submit Button in Modal */
.lead-form-submit {
  width: 100%;
  padding: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-foreground);
  background: var(--accent);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 1rem;
}

.lead-form-submit:hover {
  background: #2563eb;
  box-shadow: var(--shadow-lg);
}

.lead-form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ================================
   ANIMATIONS
   ================================ */

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-fade-up {
  animation: fadeUp 0.6s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

.animation-delay-100 { animation-delay: 100ms; }
.animation-delay-200 { animation-delay: 200ms; }
.animation-delay-300 { animation-delay: 300ms; }
.animation-delay-400 { animation-delay: 400ms; }
.animation-delay-500 { animation-delay: 500ms; }

/* ================================
   UTILITIES
   ================================ */

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

.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }

.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }

.mx-auto { margin-left: auto; margin-right: auto; }
@media (max-width: 768px) {
    /* ... outros códigos ... */

    /* Controle o tamanho da logo no celular aqui */
    .site-logo {
        max-height: 50px; /* Aumente ou diminua esse valor se precisar */
        width: auto;
    }
}
