/* ===== RESET E CONFIGURAÇÕES BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Cores principais - Azul e Branco */
  --primary: #2563EB;
  --primary-light: #3B82F6;
  --primary-dark: #1D4ED8;
  --secondary: #FFFFFF;
  --accent: #2563EB;
  
  /* Cores de fundo */
  --background: #FFFFFF;
  --background-light: #F8FAFC;
  --background-glass: rgba(255, 255, 255, 0.95);
  --background-card: rgba(248, 250, 252, 0.9);
  
  /* Cores de texto */
  --text-main: #1E293B;
  --text-secondary: #475569;
  --text-muted: #64748B;
  --text-dark: #FFFFFF;
  
  /* Cores de borda e sombra */
  --border: rgba(37, 99, 235, 0.2);
  --border-light: rgba(37, 99, 235, 0.1);
  --shadow-sm: 0 2px 8px rgba(37, 99, 235, 0.1);
  --shadow-md: 0 4px 16px rgba(37, 99, 235, 0.15);
  --shadow-lg: 0 8px 32px rgba(37, 99, 235, 0.2);
  --shadow-glow: 0 0 20px rgba(37, 99, 235, 0.3);
  
  /* Gradientes */
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  --gradient-dark: linear-gradient(135deg, var(--secondary) 0%, var(--background-light) 100%);
  --gradient-text: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  
  /* Transições */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
  
  /* Tipografia */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Animações */
  --animation-fade-in: fadeIn 0.6s ease-out forwards;
  --animation-slide-up: slideUp 0.6s ease-out forwards;
}

/* ===== ELEMENTOS BASE ===== */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Respeitar preferências de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-primary);
  background: var(--background);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Ocultar scrollbar mas manter funcionalidade de scroll */
html {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE e Edge */
}

html::-webkit-scrollbar {
  display: none; /* Chrome, Safari e Opera */
}

body {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE e Edge */
}

body::-webkit-scrollbar {
  display: none; /* Chrome, Safari e Opera */
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 40% 40%, rgba(37, 99, 235, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--background);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader > .loader-logo,
#preloader > .loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  animation: pulse 2s infinite;
  margin-bottom: 0;
}

.loader-text-lamob {
  color: #2563EB;
  font-weight: bold;
  font-size: 1.3rem;
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 1.2rem;
  display: block;
  text-align: center;
}

.loader {
  width: 38px !important;
  height: 38px !important;
  border: 3px solid var(--primary);
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
  margin-top: 0;
  display: block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

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

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

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

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

/* ===== DESTAQUES VISUAIS EM TEXTO ===== */
.emphasis {
  color: var(--primary);
  font-weight: 700;
  position: relative;
}

.emphasis::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
  opacity: 0.3;
}

.emphasis-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient-primary);
  z-index: 9999;
  transition: width 0.1s ease-out;
  box-shadow: var(--shadow-glow);
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #0B2F6B 0%, #091B48 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.9rem 0;
  min-height: 88px;
  box-shadow: 0 6px 24px rgba(9, 27, 72, 0.35);
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: hidden;
}

header.scrolled {
  background: linear-gradient(135deg, #0B2F6B 0%, #091B48 100%);
  box-shadow: 0 8px 28px rgba(9, 27, 72, 0.45);
}

/* Estado azul quando rolando para baixo */
header.scrolling-down {
  background: linear-gradient(135deg, #0B2F6B 0%, #091B48 100%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 6px 20px rgba(9, 27, 72, 0.4) !important;
}

/* Estado azul quando rolando para cima */
header.scrolling-up {
  background: linear-gradient(135deg, #0B2F6B 0%, #091B48 100%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 10px 30px rgba(9, 27, 72, 0.5) !important;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: hidden;
}

/* ===== LANGUAGE SELECTOR ===== */
.language-selector {
  position: relative;
  display: inline-block;
  margin-left: 1rem;
}

.language-btn {
  background: transparent;
  border: 1px solid var(--text-dark);
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.language-btn:hover {
  background: var(--background-light);
  color: var(--text-main);
  border-color: var(--background-light);
}

.language-btn svg {
  width: 16px;
  height: 16px;
  transition: var(--transition);
}

.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--background-light);
  border: 1px solid var(--border);
  border-radius: 5px;
  box-shadow: var(--shadow-md);
  min-width: 150px;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
}

.language-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.language-option:last-child {
  border-bottom: none;
}

.language-option:hover {
  background: var(--primary);
  color: var(--text-dark);
}

.language-option.active {
  background: var(--primary);
  color: var(--text-dark);
}

.language-flag {
  width: 20px;
  height: 15px;
  border-radius: 2px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .language-selector {
    margin-left: 0.5rem;
  }
  
  .language-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
  
  .language-dropdown {
    min-width: 120px;
  }
}

.logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: var(--transition);
}

.logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(37, 99, 235, 0.5));
}

.logo-text {
  font-family: 'Montserrat', 'Inter', Arial, sans-serif;
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #2563EB 0%, #2563EB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(37, 99, 235, 0.15));
  transition: filter 0.2s;
  display: inline-block;
  line-height: 1;
}
.logo-text:hover {
  filter: drop-shadow(0 4px 16px rgba(37, 99, 235, 0.35));
}
.loader-logo .logo-text {
  font-size: 2.5rem;
}

/* Social icons in header */
.header-social { display:flex; gap: 0.75rem; align-items:center; }
.header-social .nav-link { padding: 0.4rem; border-radius: 8px; }
.header-social .nav-link::after { display:none; }
.header-social .social-link { color: var(--text-dark); display:inline-flex; align-items:center; justify-content:center; }
.header-social .social-link:hover { background: rgba(255,255,255,0.08); }



nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

.nav-link:hover {
  color: var(--background-light);
}

.nav-link.btn-menu {
  background: #0B2F6B; /* Azul escuro para o botão Baixar App */
  color: var(--text-dark) !important;
  border-radius: 25px;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 4px 14px rgba(11, 47, 107, 0.35);
  transition: var(--transition);
}

.nav-link.btn-menu:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 47, 107, 0.45);
  color: var(--text-dark) !important;
  background: #0A2A5F;
}

.nav-link.btn-menu::after {
  display: none;
}

/* ===== BOTÕES ===== */
.btn {
  background: var(--gradient-primary);
  color: var(--text-dark);
  padding: 0.65rem 1.2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
  color: var(--text-dark);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #ffffff; /* Branco contornado */
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  position: relative;
  padding: 0;
  background: #fff;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  position: relative;
  z-index: 2;
}

/* Hero Left Side - White Background */
.hero-left {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 3rem 4rem;
  position: relative;
  z-index: 3;
  overflow: hidden;
}

.hero-left::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 8s ease-in-out infinite;
}

.hero-left::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 10s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes pulse-glow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.hero-text-content {
  max-width: 550px;
  text-align: left;
  position: relative;
  z-index: 2;
}

.hero-text-content h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  animation: title-shimmer 3s ease-in-out infinite;
  position: relative;
}

.hero-text-content h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
  border-radius: 2px;
  animation: underline-expand 2s ease-out;
}

@keyframes title-shimmer {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes underline-expand {
  0% {
    width: 0;
  }
  100% {
    width: 80px;
  }
}

.hero-text-content p {
  font-size: 1.1rem;
  color: #475569;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-cta-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* Download App Button - Primary Blue */
.btn-download-app {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #FFFFFF;
  border: none;
  padding: 1.2rem 2.5rem;
  border-radius: 16px;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
  position: relative;
  overflow: hidden;
}

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

.btn-download-app:hover::before {
  left: 100%;
}

.btn-download-app:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.45);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.btn-download-app:active {
  transform: translateY(-2px);
}

/* Free Trial Button - Secondary Gray */
.btn-free-trial {
  background: linear-gradient(135deg, #F1F5F9 0%, #E2E8F0 100%);
  color: #475569;
  border: 2px solid rgba(203, 213, 225, 0.5);
  padding: 1.2rem 2.5rem;
  border-radius: 16px;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(148, 163, 184, 0.15);
  position: relative;
  overflow: hidden;
}

.btn-free-trial::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
  transition: left 0.5s;
}

.btn-free-trial:hover::before {
  left: 100%;
}

.btn-free-trial:hover {
  background: linear-gradient(135deg, #E2E8F0 0%, #CBD5E1 100%);
  border-color: #CBD5E1;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(148, 163, 184, 0.25);
  color: #334155;
}

.btn-free-trial:active {
  transform: translateY(-2px);
}

/* Hero Right Side - Blue/Red Background with Graphics */
.hero-right {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
}

/* Animated Waves */
.waves-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  overflow: hidden;
  z-index: 1;
  opacity: 0.6;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
  animation: wave-animation 15s linear infinite;
}

.wave-1 {
  animation-duration: 12s;
  animation-delay: 0s;
  opacity: 0.7;
}

.wave-2 {
  animation-duration: 15s;
  animation-delay: -2s;
  opacity: 0.5;
}

.wave-3 {
  animation-duration: 18s;
  animation-delay: -4s;
  opacity: 0.3;
}

@keyframes wave-animation {
  0% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(-25%) translateY(-10px);
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}

/* City Skyline */
.city-skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  padding: 0 2rem;
  z-index: 1;
  opacity: 0.15;
}

.building {
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  animation: building-glow 4s ease-in-out infinite;
}

.building::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: rgba(255, 255, 255, 0.3);
}

.building-1 {
  width: 40px;
  height: 80px;
  animation-delay: 0s;
}

.building-2 {
  width: 50px;
  height: 110px;
  animation-delay: 0.5s;
}

.building-3 {
  width: 45px;
  height: 95px;
  animation-delay: 1s;
}

.building-4 {
  width: 55px;
  height: 130px;
  animation-delay: 1.5s;
}

.building-5 {
  width: 40px;
  height: 85px;
  animation-delay: 2s;
}

@keyframes building-glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
  }
}

/* Floating Particles */
.particles-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: particle-float 8s infinite ease-in-out;
}

.particle:nth-child(1) {
  left: 10%;
  top: 20%;
  animation-delay: 0s;
  width: 6px;
  height: 6px;
}

.particle:nth-child(2) {
  left: 30%;
  top: 40%;
  animation-delay: 1.5s;
  width: 4px;
  height: 4px;
}

.particle:nth-child(3) {
  left: 60%;
  top: 15%;
  animation-delay: 3s;
  width: 5px;
  height: 5px;
}

.particle:nth-child(4) {
  left: 80%;
  top: 50%;
  animation-delay: 4.5s;
  width: 3px;
  height: 3px;
}

.particle:nth-child(5) {
  left: 20%;
  top: 70%;
  animation-delay: 2s;
  width: 5px;
  height: 5px;
}

.particle:nth-child(6) {
  left: 70%;
  top: 75%;
  animation-delay: 5s;
  width: 4px;
  height: 4px;
}

@keyframes particle-float {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-30px) translateX(20px);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-60px) translateX(-10px);
    opacity: 0.6;
  }
  75% {
    transform: translateY(-30px) translateX(15px);
    opacity: 0.9;
  }
}

/* Road Path */
.road-path {
  position: absolute;
  bottom: 20%;
  left: -10%;
  width: 120%;
  height: 8px;
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(-5deg);
  border-radius: 4px;
  animation: road-flow 3s linear infinite;
}

.road-path::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.4) 0px,
    rgba(255, 255, 255, 0.4) 20px,
    transparent 20px,
    transparent 40px
  );
  transform: translateY(-50%);
  animation: road-dash 1s linear infinite;
}

@keyframes road-flow {
  0% {
    transform: rotate(-5deg) translateX(0);
  }
  100% {
    transform: rotate(-5deg) translateX(-40px);
  }
}

@keyframes road-dash {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 40px 0;
  }
}

.hero-graphics {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 600px;
  overflow: visible;
}

/* Decorative Shapes */
.decorative-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.shape-cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  opacity: 0.3;
}

.shape-cloud.shape-1 {
  width: 120px;
  height: 80px;
  top: 10%;
  right: 10%;
  border-radius: 60px 60px 60px 60px / 50px 50px 50px 50px;
}

.shape-cloud.shape-2 {
  width: 150px;
  height: 100px;
  top: 60%;
  right: 5%;
  border-radius: 75px 75px 75px 75px / 60px 60px 60px 60px;
}

.shape-leaf {
  position: absolute;
  background: rgba(37, 99, 235, 0.4);
  opacity: 0.2;
  border-radius: 0 100% 0 100%;
}

.shape-leaf.pattern-1 {
  width: 80px;
  height: 120px;
  top: 20%;
  left: 5%;
  transform: rotate(-30deg);
}

.shape-leaf.pattern-2 {
  width: 100px;
  height: 140px;
  bottom: 15%;
  left: 10%;
  transform: rotate(45deg);
}

/* Phone Container */
.phone-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.phone-container::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: phone-glow 2s ease-in-out infinite;
}

@keyframes phone-glow {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.phone-device {
  width: 220px;
  height: 380px;
  background: #fff;
  border-radius: 35px;
  padding: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #1E293B;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
}

.phone-map {
  width: 100%;
  height: 100%;
  position: relative;
  background: #94A3B8;
}

.map-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
}

.map-route {
  position: absolute;
  top: 40%;
  left: 10%;
  width: 80%;
  height: 8px;
  border-top: 3px dashed #FFD700;
  transform: rotate(-15deg);
}

.location-pin {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  border: 2px solid #fff;
}

.location-pin.pin-1 {
  top: 30%;
  left: 15%;
}

.location-pin.pin-2 {
  top: 55%;
  right: 20%;
}

.location-pin::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

/* Motorcycle Illustration - Moto Estilizada e Clara (NÃO TRATOR) */
.motorcycle-illustration {
  position: absolute;
  bottom: 15%;
  left: 10%;
  z-index: 2;
  width: 100px;
  height: 60px;
  animation: motorcycle-ride 4s ease-in-out infinite;
  animation-delay: 0.5s;
}

@keyframes motorcycle-ride {
  0%, 100% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
  25% {
    transform: translateX(5px) translateY(-3px) rotate(-2deg);
  }
  50% {
    transform: translateX(10px) translateY(-5px) rotate(-1deg);
  }
  75% {
    transform: translateX(5px) translateY(-3px) rotate(-2deg);
  }
}

.motorcycle-body {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 4;
}

/* Chassi da moto - estrutura principal MUITO estreita (característica de moto) */
.motorcycle-body::before {
  content: '';
  position: absolute;
  bottom: 18px;
  left: 15px;
  width: 60px;
  height: 6px;
  background: linear-gradient(135deg, #2C3E50 0%, #1E293B 100%);
  border-radius: 3px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  z-index: 1;
  transform: rotate(-2deg);
}

/* Tanque de combustível - BEM compacto e arredondado (característico de moto) */
.motorcycle-tank {
  position: absolute;
  top: 5px;
  left: 28px;
  width: 30px;
  height: 25px;
  background: linear-gradient(135deg, #1E293B 0%, #2C3E50 100%);
  border-radius: 15px 15px 5px 5px;
  box-shadow: 
    inset 0 2px 8px rgba(0, 0, 0, 0.3),
    0 2px 8px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.motorcycle-tank::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  width: 26px;
  height: 15px;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.4) 0%, rgba(255, 140, 0, 0.2) 100%);
  border-radius: 10px;
  border: 1px solid rgba(255, 140, 0, 0.3);
}

/* Banco da moto - mais fino e estilizado */
.motorcycle-seat {
  position: absolute;
  top: 15px;
  left: 20px;
  width: 55px;
  height: 14px;
  background: linear-gradient(135deg, #FF8C00 0%, #FF6B00 100%);
  border-radius: 6px 10px 3px 3px;
  box-shadow: 
    0 2px 8px rgba(255, 140, 0, 0.5),
    inset 0 1px 3px rgba(255, 255, 255, 0.2);
  z-index: 3;
}

.motorcycle-seat::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0 0 3px 3px;
}

/* Guidão - MUITO visível e característico de moto (curvado para frente) */
.motorcycle-handlebars {
  position: absolute;
  top: 0px;
  left: 55px;
  width: 38px;
  height: 24px;
  z-index: 5;
}

.motorcycle-handlebars::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 5px;
  border: 3px solid #1E293B;
  border-bottom: none;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
}

.motorcycle-handlebars::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 12px;
  background: #1E293B;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Farol - menor e mais compacto */
.motorcycle-headlight {
  position: absolute;
  top: -2px;
  left: 78px;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, #FFD700 0%, #FFA500 100%);
  border-radius: 50%;
  border: 2px solid #1E293B;
  box-shadow: 
    0 0 18px rgba(255, 215, 0, 0.9),
    inset 0 0 10px rgba(255, 255, 255, 0.6),
    0 2px 6px rgba(0, 0, 0, 0.4);
  animation: headlight-glow 2s ease-in-out infinite;
  z-index: 6;
}

@keyframes headlight-glow {
  0%, 100% {
    box-shadow: 
      0 0 18px rgba(255, 215, 0, 0.9),
      inset 0 0 10px rgba(255, 255, 255, 0.6),
      0 2px 6px rgba(0, 0, 0, 0.4);
  }
  50% {
    box-shadow: 
      0 0 26px rgba(255, 215, 0, 1),
      inset 0 0 15px rgba(255, 255, 255, 0.8),
      0 2px 8px rgba(0, 0, 0, 0.5);
  }
}

.motorcycle-headlight::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

/* Rodas da moto - GRANDES e bem visíveis (característica de moto esportiva) */
.motorcycle-wheels {
  position: absolute;
  bottom: -5px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 3px;
  z-index: 1;
}

.motorcycle-wheel {
  width: 28px;
  height: 28px;
  background: #1E293B;
  border-radius: 50%;
  border: 3px solid #fff;
  position: relative;
  box-shadow: 
    0 3px 10px rgba(0, 0, 0, 0.4),
    inset 0 0 10px rgba(0, 0, 0, 0.3);
}

.motorcycle-wheel::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.3);
}

.motorcycle-wheel::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.4) 0px,
    rgba(255, 255, 255, 0.4) 3px,
    transparent 3px,
    transparent 6px
  );
  border-radius: 2px;
}

/* Rodas traseira e dianteira com tamanhos diferentes */
.motorcycle-wheels .motorcycle-wheel:first-child {
  margin-right: auto;
}

.motorcycle-wheels .motorcycle-wheel:last-child {
  margin-left: auto;
}

/* Car Illustration - Carro BAIXO e Esportivo (NÃO ÔNIBUS - Ônibus são ALTOS) */
.car-illustration {
  position: absolute;
  bottom: 18%;
  right: 15%;
  z-index: 2;
  width: 100px;
  height: 38px;
  display: block;
  visibility: visible;
  opacity: 1;
  animation: car-drive 4s ease-in-out infinite;
  animation-delay: 1s;
}

@keyframes car-drive {
  0%, 100% {
    transform: translateX(0) translateY(0);
  }
  25% {
    transform: translateX(10px) translateY(-5px);
  }
  50% {
    transform: translateX(20px) translateY(-10px);
  }
  75% {
    transform: translateX(10px) translateY(-5px);
  }
}

.car-illustration::before {
  content: '';
  position: absolute;
  top: -25px;
  left: -25px;
  right: -25px;
  bottom: -25px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: car-light 3s ease-in-out infinite;
}

@keyframes car-light {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

/* Carroceria do carro - MUITO BAIXA e esportiva (ônibus são altos, carro é baixo) */
.car-body {
  width: 95px;
  height: 32px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  border-radius: 16px 16px 5px 5px;
  position: relative;
  display: block;
  visibility: visible;
  opacity: 1;
  box-shadow: 
    0 5px 20px rgba(255, 215, 0, 0.5),
    inset 0 2px 5px rgba(255, 255, 255, 0.3),
    inset 0 -2px 5px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

/* Para-brisa - MUITO menor (carros têm janelas pequenas, ônibus têm janelas grandes) */
.car-body::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 10px;
  width: 35px;
  height: 15px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.4) 0%, rgba(30, 41, 59, 0.2) 100%);
  border-radius: 8px 5px 0 0;
  border: 2px solid rgba(30, 41, 59, 0.5);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Janela traseira - MUITO menor (carros têm janelas pequenas) */
.car-body::after {
  content: '';
  position: absolute;
  top: 6px;
  right: 10px;
  width: 25px;
  height: 15px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.4) 0%, rgba(30, 41, 59, 0.2) 100%);
  border-radius: 5px 8px 0 0;
  border: 2px solid rgba(30, 41, 59, 0.5);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Rodas do carro - menores e proporcionais */
.car-wheels {
  position: absolute;
  bottom: -10px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 8px;
  z-index: 1;
  visibility: visible;
  opacity: 1;
}

.wheel {
  width: 24px;
  height: 24px;
  background: #1E293B;
  border-radius: 50%;
  border: 3px solid #fff;
  position: relative;
  display: block;
  visibility: visible;
  opacity: 1;
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.5),
    inset 0 0 12px rgba(0, 0, 0, 0.4);
}

.wheel::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 
    inset 0 0 4px rgba(0, 0, 0, 0.3),
    0 0 4px rgba(255, 255, 255, 0.5);
}

/* Detalhes dos raios da roda */
.wheel::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: 
    repeating-conic-gradient(
      from 0deg,
      transparent 0deg 30deg,
      rgba(255, 255, 255, 0.2) 30deg 35deg,
      transparent 35deg 60deg
    );
  border-radius: 50%;
  opacity: 0.6;
}

/* Location Pin with WiFi */
.location-pin-wifi {
  position: absolute;
  top: 15%;
  right: 25%;
  z-index: 1;
  width: 50px;
  height: 50px;
  background: #FF8C00;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pin-pulse 2s ease-in-out infinite;
}

@keyframes pin-pulse {
  0%, 100% {
    transform: rotate(-45deg) scale(1);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
  }
  50% {
    transform: rotate(-45deg) scale(1.1);
    box-shadow: 0 4px 25px rgba(255, 140, 0, 0.6);
  }
}

.location-pin-wifi::before {
  content: '';
  position: absolute;
  width: 70px;
  height: 70px;
  border: 2px solid rgba(255, 140, 0, 0.3);
  border-radius: 50%;
  animation: pin-ring 2s ease-out infinite;
}

@keyframes pin-ring {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.lamob-logo-pin {
  width: 32px;
  height: 32px;
  object-fit: contain;
  transform: rotate(45deg);
  z-index: 2;
  position: relative;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Decorative Plant */
.decorative-plant {
  position: absolute;
  bottom: 12%;
  right: 8%;
  z-index: 1;
  width: 30px;
  height: 40px;
  background: var(--primary);
  border-radius: 15px 15px 0 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.decorative-plant::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 25px;
  background: var(--primary-dark);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

/* Curved Separator */
.hero-curve-separator {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #FFFFFF;
  clip-path: ellipse(100% 100% at 50% 0%);
  z-index: 1;
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Additional Creative Elements */
.shape-leaf {
  animation: leaf-sway 6s ease-in-out infinite;
}

.shape-leaf.pattern-1 {
  animation-delay: 0s;
}

.shape-leaf.pattern-2 {
  animation-delay: 3s;
}

@keyframes leaf-sway {
  0%, 100% {
    transform: rotate(-30deg) translateY(0);
  }
  25% {
    transform: rotate(-25deg) translateY(-10px);
  }
  50% {
    transform: rotate(-35deg) translateY(-5px);
  }
  75% {
    transform: rotate(-28deg) translateY(-15px);
  }
}

.shape-cloud {
  animation: cloud-drift 20s ease-in-out infinite;
}

.shape-cloud.shape-1 {
  animation-delay: 0s;
}

.shape-cloud.shape-2 {
  animation-delay: 10s;
}

@keyframes cloud-drift {
  0%, 100% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(30px) translateY(-15px);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
  }
  
  .hero-left {
    padding: 6rem 2rem 3rem;
    min-height: 50vh;
  }
  
  .hero-right {
    min-height: 50vh;
    padding: 4rem 2rem 3rem;
  }
  
  .hero-graphics {
    height: 400px;
    width: 400px;
    max-width: 400px;
    overflow: visible;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.2);
    margin: 0 auto;
  }
  
  .phone-device {
    width: 180px;
    height: 310px;
  }
}

@media (max-width: 768px) {
  .hero-left {
    padding: 5rem 1.5rem 2rem;
  }
  
  .hero-right {
    padding: 3rem 1rem 4rem;
    overflow: visible;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-text-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-text-content p {
    font-size: 1rem;
  }
  
  .hero-cta-buttons {
    flex-direction: column;
    gap: 1.2rem;
  }
  
  .btn-download-app,
  .btn-free-trial {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
  }
  
  .hero-graphics {
    height: 450px;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    border-radius: 0;
    box-shadow: none;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .phone-device {
    width: 150px;
    height: 260px;
  }
  
  .location-pin-wifi {
    top: 12%;
    right: 18%;
    transform: rotate(-45deg) scale(0.75);
  }
  
  .decorative-plant {
    bottom: 10%;
    right: 5%;
    transform: scale(0.7);
  }
  
  .phone-container {
    position: absolute;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(0.85) !important;
    z-index: 10;
    max-width: 90vw;
    max-height: 90vh;
    margin: 0;
  }
  
  .waves-container {
    height: 100px;
  }
  
  .city-skyline {
    height: 80px;
    opacity: 0.1;
  }
  
  .building {
    transform: scale(0.7);
  }
  
  .particle {
    display: none;
  }
  
  .particle:nth-child(1),
  .particle:nth-child(2) {
    display: block;
  }
}

/* Imagens responsivas globais */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Garantir que containers não excedam a largura da viewport */
.container,
.section,
.header-container,
.footer-content {
  max-width: 100%;
  overflow-x: hidden;
}

/* Melhorias para orientação landscape em mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    padding: 3rem 1rem 2rem;
    background-size: cover;
    background-position: center center;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
    margin-top: 0;
  }
  
  .hero-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  header {
    min-height: 52px;
  }
  
  .header-container {
    min-height: 52px;
  }
}

/* Melhorias adicionais para tablets */
@media (min-width: 601px) and (max-width: 900px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 1.05rem;
  }
  
  .destaques-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .trust-metrics {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .diferenciais-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Ajustes para telas muito grandes */
@media (min-width: 1441px) {
  .header-container,
  .section {
    max-width: 1400px;
  }
  
  .hero-content {
    max-width: 900px;
  }
}

/* Melhorias de acessibilidade e usabilidade em touch devices */
@media (hover: none) and (pointer: coarse) {
  .btn,
  .nav-link,
  .destaque-chip,
  .step,
  .diferencial {
    min-height: 44px;
    min-width: 44px;
  }
  
  .hamburger {
    min-width: 44px;
    min-height: 44px;
  }
  
  .whatsapp-float,
  #scrollTopBtn {
    min-width: 48px;
    min-height: 48px;
  }
}

/* Legacy hero styles removed - using new hero-container layout */

/* ===== HERO CONTENT - Para páginas secundárias ===== */
.hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Background decorativo para hero-simple (páginas secundárias) */
.hero-simple::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.hero-simple::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 10s ease-in-out infinite;
  animation-delay: 2s;
  pointer-events: none;
  z-index: 1;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  position: relative;
}

.hero-content p {
  font-size: 1.15rem;
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-content .btn {
  display: inline-block;
}

/* ===== SEÇÕES GERAIS ===== */
.section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  animation: var(--animation-fade-in);
}

/* ===== DESTAQUES ===== */
.destaques {
  padding: 2.5rem 2rem 3rem;
}

.destaques-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  align-items: center;
  justify-content: center;
}



.destaque-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
  color: #0B2F6B;
  font-weight: 700;
  text-align: center;
}

.destaque-chip {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.destaque-chip:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 28px rgba(9, 27, 72, 0.3);
  border-color: var(--primary);
}

@media (max-width: 600px) {
  .destaques {
    padding: 2rem 1rem 2.2rem;
  }
  .destaques-container {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .destaque-chip {
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

/* ===== SOBRE SECTION ===== */
.sobre {
  background: linear-gradient(to bottom, #F1F5F9, #F8FAFC);
  position: relative;
}

.sobre-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.sobre-text h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.sobre-text p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.sobre-img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  position: relative;
}

.sobre-img img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.2);
  transition: var(--transition);
  display: block;
  object-fit: cover;
}

.sobre-img img:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(37, 99, 235, 0.3);
}

.sobre-img video {
  width: 100%;
  height: 100%;
  max-width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.2);
  transition: var(--transition);
  display: block;
  object-fit: cover;
}

.sobre-img video:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(37, 99, 235, 0.3);
}

/* ===== COMO FUNCIONA SECTION ===== */
.como-funciona {
  background: var(--background);
}

.como-funciona h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 3rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.step {
  background: var(--background-card);
  backdrop-filter: blur(10px);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: var(--animation-slide-up) 0.6s ease-out forwards;
}

.step:nth-child(1) {
  animation-delay: 0.1s;
}

.step:nth-child(2) {
  animation-delay: 0.2s;
}

.step:nth-child(3) {
  animation-delay: 0.3s;
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.step:hover::before {
  transform: scaleX(1);
}

.step:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.step img {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid transparent;
}

.step:hover img {
  transform: scale(1.1) rotate(5deg);
  border-color: var(--primary-light);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.step h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.step p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== DIFERENCIAIS SECTION ===== */
.diferenciais {
  background: linear-gradient(to bottom, #E0E8F5, #F1F5F9);
  position: relative;
}

.diferenciais h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 3rem;
}

.diferenciais-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.diferencial {
  background: var(--background-card);
  backdrop-filter: blur(10px);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: var(--animation-slide-up) 0.6s ease-out forwards;
}

.diferencial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.diferencial:nth-child(1) {
  animation-delay: 0.1s;
}

.diferencial:nth-child(2) {
  animation-delay: 0.2s;
}

.diferencial:nth-child(3) {
  animation-delay: 0.3s;
}

.diferencial:nth-child(4) {
  animation-delay: 0.4s;
}

.diferencial:nth-child(5) {
  animation-delay: 0.5s;
}

.diferencial:nth-child(6) {
  animation-delay: 0.6s;
}

.diferencial:hover::before {
  transform: scaleX(1);
}

.diferencial:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.diferencial h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.diferencial p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== DEPOIMENTOS SECTION ===== */
.depoimentos {
  background: var(--background);
}

.depoimentos h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 3rem;
}

.depoimentos-list {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 1rem 0;
  scroll-snap-type: x mandatory;
}

.depoimentos-list::-webkit-scrollbar {
  height: 8px;
}

.depoimentos-list::-webkit-scrollbar-track {
  background: var(--background-light);
  border-radius: 4px;
}

.depoimentos-list::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

.depoimentos-list img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  scroll-snap-align: start;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.depoimentos-list img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.depoimentos-texto {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.depoimento-item {
  background: #F8FAFC;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(37, 99, 235, 0.10);
  padding: 2rem 1.5rem;
  max-width: 320px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.depoimento-frase {
  font-size: 1.1rem;
  color: #1E293B;
  font-style: italic;
  margin-bottom: 1rem;
  text-align: center;
}
.depoimento-nome {
  color: #2563EB;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
}

/* ===== TRUST SECTION (ABAIXO DOS DEPOIMENTOS) ===== */
.trust { background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%); }
.trust-wrap { max-width: 1200px; margin: 0 auto; padding: 3rem 2rem; }
.trust-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: start; }
.trust-metrics { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.trust-metric { 
  background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
  border: 2px solid rgba(37, 99, 235, 0.1);
  border-radius: 24px;
  text-align: center;
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible;
}

.trust-metric::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  z-index: 0;
}

.trust-metric:hover::before {
  transform: scaleX(1);
}

.trust-metric:hover { 
  transform: translateY(-8px); 
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.2);
}

.trust-count { 
  display: block;
  font-size: 42px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  white-space: nowrap;
  overflow: visible;
  width: 100%;
  padding: 0 0.5rem;
}

.trust-metric p { 
  margin-top: 6px;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.trust-testimonials { display: grid; gap: 20px; }
.trust-card { 
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  color: #fff;
  border: 2px solid rgba(37, 99, 235, 0.2);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.trust-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 120px;
  color: rgba(37, 99, 235, 0.15);
  font-family: Georgia, serif;
  line-height: 1;
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(37, 99, 235, 0.4);
}

.trust-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.trust-card h4 { 
  margin-top: 10px;
  font-weight: 700;
  opacity: 0.95;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .trust-metrics {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .trust-metrics {
    grid-template-columns: 1fr 1fr;
  }
  .trust-count {
    font-size: 30px;
    white-space: nowrap;
    overflow: visible;
    padding: 0 0.3rem;
  }
}
@media (max-width: 700px) {
  .depoimentos-texto {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
  .depoimento-item {
    max-width: 95vw;
    width: 100%;
  }
}



/* ===== CONTATO SECTION ===== */
.contato {
  background: var(--background-light);
  position: relative;
}

.contato-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contato-info h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.contato-info p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.contato-form {
  background: var(--background-card);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.contato-form:hover {
  box-shadow: var(--shadow-lg);
}

.contato-form input,
.contato-form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-main);
  font-family: var(--font-primary);
  transition: var(--transition);
}

.contato-form input:focus,
.contato-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contato-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contato-form button {
  background: var(--gradient-primary);
  color: var(--text-dark);
  padding: 1rem 2rem;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.contato-form button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===== FOOTER ===== */
footer {
  background: #F8FAFC;
  color: var(--text-main);
  padding: 3rem 2rem 1rem;
  position: relative;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: start;
}

.footer-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.footer-section h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.footer-section p {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  text-align: center;
  color: var(--text-muted);
}

.footer-social-qr {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 1rem;
}

.footer-qr-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 0;
}

.footer-qr-container {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.footer-qr {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}

.footer-qr:hover {
  transform: scale(1.05);
}

.footer-qr-text {
  color: var(--text-secondary);
  font-size: 0.85rem;
  text-align: center;
  margin-top: 0.5rem;
}

.footer-qr-label {
  color: var(--text-secondary);
  font-size: 0.75rem;
  text-align: center;
  margin-top: 0.25rem;
  font-weight: 500;
}

.footer-social-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 6rem;
}

@media (max-width: 700px) {
  .footer-social-row {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .footer-social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    width: 100%;
  }
  
  .footer-store-buttons {
    width: 100%;
    max-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 900px) {
  .footer-social-qr {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .footer-qr-block {
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .footer-qr {
    width: 60px;
    height: 60px;
  }
  
  .footer-qr-container {
    gap: 0.75rem;
  }
  
  .footer-qr-text {
    font-size: 0.8rem;
  }
  
  .footer-qr-label {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .footer-qr {
    width: 50px;
    height: 50px;
  }
  
  .footer-qr-container {
    gap: 0.5rem;
  }
  
  .footer-qr-text {
    font-size: 0.75rem;
  }
  
  .footer-qr-label {
    font-size: 0.65rem;
  }
}

/* ===== BOTÕES FLUTUANTES ===== */
#scrollTopBtn, .whatsapp-float {
  background: #2563EB;
  color: white;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.18);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  z-index: 1000;
}
#scrollTopBtn {
  right: 2rem;
  bottom: 2rem;
  position: fixed;
  display: none;
}
#scrollTopBtn:hover, .whatsapp-float:hover {
  background: #3B82F6;
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.28);
}
.whatsapp-float {
  background: transparent !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(37,211,102,0.18);
  width: 70px !important;
  height: 70px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 2rem;
  bottom: 8rem;
  position: fixed;
  text-decoration: none;
  z-index: 1000;
  padding: 0;
}
.whatsapp-float img {
  width: 70px !important;
  height: 70px !important;
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 2px 8px rgba(37,211,102,0.18);
  background: transparent;
  border: none;
  display: block;
}
@media (max-width: 768px) {
  .whatsapp-float, .whatsapp-float img {
    width: 54px !important;
    height: 54px !important;
  }
}
@media (max-width: 480px) {
  .whatsapp-float, .whatsapp-float img {
    width: 44px !important;
    height: 44px !important;
  }
}

/* ===== FEATURE CARDS ===== */
.feature-card {
  background: var(--background-card);
  backdrop-filter: blur(10px);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

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

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* ===== EQUIPE CARDS ===== */
#equipe .feature-card {
  padding: 2rem 1.5rem;
}

#equipe .feature-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid var(--primary);
  transition: var(--transition);
}

#equipe .feature-card:hover img {
  transform: scale(1.1);
  border-color: var(--primary-light);
}

#equipe .feature-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

#equipe .feature-description {
  font-size: 0.9rem;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* ===== ABOUT CONTENT ===== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

/* Estilos para a seção de história com ícones */
.historia-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.historia-icon-main {
  width: 48px;
  height: 48px;
  color: var(--primary);
  flex-shrink: 0;
  opacity: 0.9;
}

.historia-header h2 {
  margin-bottom: 0;
}

.historia-paragraph {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.03);
  transition: all 0.3s ease;
}

.historia-paragraph:hover {
  background: rgba(37, 99, 235, 0.06);
  transform: translateX(5px);
}

.historia-icon {
  width: 32px;
  height: 32px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.historia-paragraph:hover .historia-icon {
  opacity: 1;
  transform: scale(1.1) rotate(5deg);
  color: #2563EB;
}

.historia-paragraph p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 0;
  line-height: 1.8;
  flex: 1;
}

.historia-paragraph.historia-cta {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
  border: 2px solid var(--primary);
  padding: 1.5rem;
  margin-top: 1rem;
}

.historia-paragraph.historia-cta p {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-main);
}

.historia-paragraph.historia-cta .historia-icon {
  width: 40px;
  height: 40px;
  color: var(--primary);
}

.about-text p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

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

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.2);
  transition: var(--transition);
}

.about-image img:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(37, 99, 235, 0.3);
}

/* ===== RESPONSIVIDADE PARA ABOUT SECTION ===== */
@media (max-width: 900px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .historia-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }
  
  .historia-icon-main {
    width: 40px;
    height: 40px;
  }
  
  .historia-paragraph {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .historia-icon {
    width: 28px;
    height: 28px;
    margin-top: 0;
    align-self: flex-start;
  }
  
  .historia-paragraph p {
    font-size: 1rem;
  }
  
  .historia-paragraph.historia-cta {
    padding: 1.25rem;
  }
  
  .historia-paragraph.historia-cta .historia-icon {
    width: 36px;
    height: 36px;
  }
  
  .about-text p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .about-image img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .about-content {
    gap: 1.5rem;
  }
  
  .about-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .historia-header {
    margin-bottom: 1.5rem;
  }
  
  .historia-icon-main {
    width: 36px;
    height: 36px;
  }
  
  .historia-paragraph {
    padding: 0.875rem;
    margin-bottom: 1.25rem;
  }
  
  .historia-icon {
    width: 24px;
    height: 24px;
  }
  
  .historia-paragraph.historia-cta {
    padding: 1rem;
  }
  
  .historia-paragraph.historia-cta .historia-icon {
    width: 32px;
    height: 32px;
  }
  
  .about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .about-image img {
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .about-content {
    gap: 1rem;
  }
  
  .about-text h2 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }
  
  .about-text p {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
  }
  
  .about-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-md);
  }
}

@media (max-width: 360px) {
  .about-text h2 {
    font-size: 1.4rem;
  }
  
  .about-text p {
    font-size: 1.1rem;
  }
}

/* ===== FORMULÁRIOS ===== */
.form-container {
  max-width: 600px;
  width: 100%;
  background: var(--background-card);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
}

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

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--background);
  color: var(--text-main);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-top: 0.2rem;
}

.checkbox-label a {
  color: var(--primary);
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .form-container {
    padding: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .form-container {
    padding: 1.5rem;
  }
}

/* ===== RESPONSIVIDADE - DESKTOP LARGE ===== */
@media (max-width: 1440px) {
  .header-container,
  .section {
    max-width: 1200px;
  }
}

@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .section {
    padding: 4rem 2rem;
  }
  
  .header-container {
    padding: 0 2rem;
  }
}

/* ===== RESPONSIVIDADE - TABLET E DESKTOP PEQUENO ===== */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.75rem;
  }
  
  .hero-content p {
    font-size: 1.15rem;
  }
  
  .sobre-flex,
  .contato-flex {
    gap: 3rem;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  header {
    padding: 0.8rem 0;
  }
  
  .header-container {
    height: auto;
    min-height: 70px;
    padding: 0 1.5rem;
  }
  
  
  .hero {
    min-height: 85vh;
    padding: 6rem 2rem 3rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
    margin-top: 2rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .sobre-flex,
  .contato-flex {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .sobre-text h2,
  .contato-info h2 {
    font-size: 2.2rem;
  }
  
  .steps,
  .diferenciais-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .app-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .app-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .destaques-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .trust-metrics {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== RESPONSIVIDADE - TABLET PEQUENO ===== */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  header {
    padding: 0.6rem 0;
    min-height: 64px;
  }
  
  .header-container {
    padding: 0 1rem;
    min-height: 64px;
  }
  
  .logo {
    font-size: 1.5rem;
  }
  
  .logo-img,
  .logo-img-large {
    height: 60px;
    max-width: 150px;
  }
  
  nav {
    gap: 1rem;
  }
  
  .nav-link {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }
  
  .hero {
    min-height: 80vh;
    padding: 5rem 1.5rem 2.5rem;
    background-attachment: scroll;
  }
  
  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-top: 1.5rem;
  }
  
  .hero-content p {
    font-size: 1rem;
    max-width: 100%;
  }
  
  .section-title,
  .como-funciona h2,
  .diferenciais h2,
  .depoimentos h2 {
    font-size: 2rem;
  }
  
  .section {
    padding: 3rem 1.5rem;
  }
  
  .sobre-text h2,
  .contato-info h2 {
    font-size: 1.9rem;
  }
  
  .sobre-text p,
  .contato-info p {
    font-size: 1rem;
  }
  
  .step {
    padding: 2rem 1.5rem;
  }
  
  .step h3 {
    font-size: 1.3rem;
  }
  
  .step img {
    width: 70px;
    height: 70px;
  }
  
  .step-bottom-image,
  .premium-image {
    width: 380px;
    height: 380px;
    border-width: 5px;
    margin-top: 1.5rem;
  }
  
  .diferencial {
    padding: 2rem 1.5rem;
  }
  
  .diferencial h3 {
    font-size: 1.3rem;
  }
  
  .img-circular-baixeapp {
    width: 90px;
    height: 90px;
  }
  
  .depoimentos-list {
    gap: 1.5rem;
  }
  
  .depoimento-item {
    padding: 1.8rem 1.5rem;
  }
  
  .trust-metric {
    padding: 1.5rem 1rem;
  }
  
  .trust-count {
    font-size: 32px;
    white-space: nowrap;
    overflow: visible;
    padding: 0 0.3rem;
  }
  
  .contato-form {
    padding: 2rem 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .whatsapp-float {
    width: 54px;
    height: 54px;
    right: 1rem;
    bottom: 7rem;
  }
  
  #scrollTopBtn {
    width: 50px;
    height: 50px;
    right: 1rem;
    bottom: 1.5rem;
  }
}

/* ===== RESPONSIVIDADE - MOBILE ===== */
@media (max-width: 600px) {
  html {
    font-size: 14px;
  }
  
  .hero {
    min-height: 75vh;
    padding: 4rem 1rem 2rem;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  
  .hero-content p {
    font-size: 0.95rem;
  }
  
  .section {
    padding: 2.5rem 1rem;
  }
  
  .destaques {
    padding: 2rem 1rem 2.5rem;
  }
  
  .destaques-container {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  
  .destaque-chip {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  
  .trust-metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
  
  .trust-metric {
    padding: 1.2rem 0.8rem;
  }
  
  .trust-count {
    font-size: 28px;
    white-space: nowrap;
    overflow: visible;
    padding: 0 0.3rem;
  }
  
  .steps,
  .diferenciais-list,
  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  .step,
  .diferencial,
  .feature-card {
    padding: 1.5rem;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  header {
    padding: 0.2rem 0;
    min-height: 60px;
  }
  
  
  .header-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    padding: 0 1rem;
    min-height: 60px;
    width: 100vw;
    box-sizing: border-box;
  }
  
  .logo {
    font-size: 1rem;
  }
  
  .logo-img,
  .logo-img-large {
    height: 50px !important;
    max-width: 140px !important;
  }
  
  .logo-custom {
    font-size: 1.2rem !important;
    margin-right: auto;
    display: flex;
    align-items: center;
  }
  
  .hamburger {
    width: 32px;
    height: 32px;
    margin-left: 0.5rem;
    margin-right: 0;
    order: 3;
    align-self: center;
  }
  
  .hamburger span {
    width: 24px;
    height: 2.5px;
  }
  
  .language-selector {
    margin-left: 0.2rem;
    margin-right: 0;
    order: 4;
    align-self: center;
  }
  
  .language-btn {
    padding: 0.1rem 0.4rem;
    font-size: 0.75rem;
    min-width: 30px;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 100vw;
    height: 100vh;
    background: var(--primary);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 5rem 1.5rem 2rem;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    overflow-y: auto;
  }
  
  nav.open {
    right: 0;
  }
  
  nav.open .nav-link {
    width: 100%;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
  }
  
  .hero {
    min-height: 70vh;
    padding: 3.5rem 1rem 2rem;
  }
  
  .hero-content h1 {
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    margin-top: 1rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  
  .app-buttons {
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
  }
  
  .app-buttons .btn {
    width: 100%;
    max-width: 100%;
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .section {
    padding: 2rem 1rem;
  }
  
  .section-title,
  .como-funciona h2,
  .diferenciais h2,
  .depoimentos h2,
  .sobre-text h2,
  .contato-info h2 {
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
  }
  
  .sobre-text p,
  .contato-info p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  
  .destaques {
    padding: 1.5rem 1rem 2rem;
  }
  
  .destaques-container {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }
  
  .destaque-chip {
    padding: 0.7rem 0.9rem;
    font-size: 0.85rem;
  }
  
  .step {
    padding: 1.5rem 1.2rem;
  }
  
  .step h3 {
    font-size: 1.2rem;
  }
  
  .step p {
    font-size: 0.9rem;
  }
  
  .step img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  
  .step-bottom-image,
  .premium-image {
    width: 320px;
    height: 320px;
    border-width: 5px;
    margin-top: 1.5rem;
    box-shadow: 
      0 6px 24px rgba(37, 99, 235, 0.2),
      0 3px 12px rgba(255, 215, 0, 0.15),
      inset 0 2px 6px rgba(255, 255, 255, 0.25);
  }
  
  .step:hover .step-bottom-image,
  .step:hover .premium-image {
    transform: scale(1.05);
  }
  
  .img-circular-baixeapp {
    width: 80px;
    height: 80px;
  }
  
  .diferencial {
    padding: 1.5rem 1.2rem;
  }
  
  .diferencial h3 {
    font-size: 1.2rem;
  }
  
  .diferencial p {
    font-size: 0.9rem;
  }
  
  .depoimentos-list {
    gap: 1rem;
    padding: 0.5rem 0;
  }
  
  .depoimento-item {
    padding: 1.5rem 1.2rem;
    max-width: 100%;
    min-width: auto;
  }
  
  .depoimento-frase {
    font-size: 1rem;
  }
  
  .depoimento-nome {
    font-size: 0.9rem;
  }
  
  .trust-metrics {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  
  .trust-metric {
    padding: 1.2rem 0.8rem;
  }
  
  .trust-metric:nth-child(3) {
    grid-column: 1 / -1;
  }
  
  .trust-count {
    font-size: 26px;
    white-space: nowrap;
    overflow: visible;
    padding: 0 0.2rem;
  }
  
  .trust-metric p {
    font-size: 0.85rem;
  }
  
  .trust-card {
    padding: 1.5rem 1.2rem;
  }
  
  .trust-card p {
    font-size: 0.95rem;
  }
  
  .trust-card h4 {
    font-size: 0.9rem;
  }
  
  .contato-form {
    padding: 1.5rem 1.2rem;
  }
  
  .contato-form input,
  .contato-form textarea {
    padding: 0.9rem;
    font-size: 0.95rem;
    margin-bottom: 0.9rem;
  }
  
  .contato-form button {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
    padding: 2rem 1rem 1rem;
  }
  
  .footer-section {
    margin-bottom: 1rem;
  }
  
  .footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }
  
  .footer-section p,
  .footer-section a {
    font-size: 0.9rem;
  }
  
  .whatsapp-float,
  .custom-whatsapp-btn {
    width: 50px !important;
    height: 50px !important;
    right: 1rem !important;
    bottom: 6.5rem !important;
  }
  
  .whatsapp-float img,
  .custom-whatsapp-btn img {
    width: 50px !important;
    height: 50px !important;
  }
  
  #scrollTopBtn {
    width: 48px;
    height: 48px;
    right: 1rem;
    bottom: 1rem;
  }
  
  #scrollTopBtn svg {
    width: 20px;
    height: 20px;
  }
  
  /* Ajustes específicos para hero-graphics no mobile */
  .hero-graphics {
    height: 320px;
    width: 100%;
    max-width: 320px;
    overflow: visible;
  }
  
  .motorcycle-illustration {
    bottom: 12%;
    left: 5%;
    transform: scale(0.65);
    width: 100px;
    height: 65px;
  }
  
  .car-illustration {
    bottom: 14%;
    right: 5%;
    transform: scale(0.65);
    width: 100px;
    height: 55px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .hero-right {
    overflow: visible;
    padding: 3rem 1rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-graphics {
    height: 420px;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .phone-container {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(0.8) !important;
    z-index: 10;
    max-width: 85vw;
    max-height: 85vh;
    margin: 0;
  }
  
  .location-pin-wifi {
    top: 10%;
    right: 15%;
    transform: rotate(-45deg) scale(0.7);
  }
  
  .decorative-plant {
    bottom: 8%;
    right: 3%;
    transform: scale(0.65);
  }
  
  /* Ocultar map-route no mobile para evitar confusão com ônibus */
  .phone-map .map-route {
    display: none;
  }
}

/* ===== RESPONSIVIDADE - MOBILE MUITO PEQUENO ===== */
@media (max-width: 360px) {
  html {
    font-size: 13px;
  }
  
  header {
    min-height: 52px;
  }
  
  .header-container {
    padding: 0 0.6rem;
    min-height: 52px;
  }
  
  .logo-img,
  .logo-img-large {
    height: 45px !important;
    max-width: 120px !important;
  }
  
  .logo-custom {
    font-size: 1.1rem !important;
  }
  
  .hamburger {
    width: 28px;
    height: 28px;
  }
  
  .hamburger span {
    width: 22px;
    height: 2px;
  }
  
  .hero {
    min-height: 65vh;
    padding: 3rem 0.8rem 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.5rem;
  }
  
  .hero-content p {
    font-size: 0.85rem;
  }
  
  .section {
    padding: 1.8rem 0.8rem;
  }
  
  .section-title,
  .como-funciona h2,
  .diferenciais h2,
  .depoimentos h2,
  .sobre-text h2,
  .contato-info h2 {
    font-size: 1.5rem;
  }
  
  .destaques-container {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  
  .destaque-chip {
    padding: 0.6rem 0.8rem;
    font-size: 0.8rem;
  }
  
  .step,
  .diferencial {
    padding: 1.2rem 1rem;
  }
  
  .step h3,
  .diferencial h3 {
    font-size: 1.1rem;
  }
  
  .step p,
  .diferencial p {
    font-size: 0.85rem;
  }
  
  .step-bottom-image,
  .premium-image {
    width: 270px;
    height: 270px;
    border-width: 4px;
    margin-top: 1rem;
    box-shadow: 
      0 4px 16px rgba(37, 99, 235, 0.18),
      0 2px 8px rgba(255, 215, 0, 0.12),
      inset 0 1px 4px rgba(255, 255, 255, 0.2);
  }
  
  .step:hover .step-bottom-image,
  .step:hover .premium-image {
    transform: scale(1.03);
  }
  
  .img-circular-baixeapp {
    width: 70px;
    height: 70px;
  }
  
  .trust-metrics {
    grid-template-columns: 1fr;
  }
  
  .trust-metric {
    padding: 1rem 0.7rem;
  }
  
  .trust-count {
    font-size: 24px;
    white-space: nowrap;
    overflow: visible;
    padding: 0 0.2rem;
  }
  
  .trust-metric p {
    font-size: 0.8rem;
  }
  
  .contato-form {
    padding: 1.2rem 1rem;
  }
  
  .contato-form input,
  .contato-form textarea {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  /* Ajustes específicos para hero-graphics no mobile muito pequeno */
  .hero-graphics {
    height: 300px;
    width: 100%;
    max-width: 300px;
    overflow: visible;
  }
  
  .motorcycle-illustration {
    bottom: 10%;
    left: 3%;
    transform: scale(0.6);
    width: 90px;
    height: 60px;
  }
  
  .car-illustration {
    bottom: 12%;
    right: 3%;
    transform: scale(0.6);
    width: 90px;
    height: 50px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .hero-right {
    overflow: visible;
    padding: 2rem 0.8rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-graphics {
    height: 380px;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .phone-container {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(0.75) !important;
    z-index: 10;
    max-width: 80vw;
    max-height: 80vh;
    margin: 0;
  }
  
  .location-pin-wifi {
    top: 8%;
    right: 12%;
    transform: rotate(-45deg) scale(0.65);
  }
  
  .decorative-plant {
    bottom: 6%;
    right: 2%;
    transform: scale(0.6);
  }
  
  /* Ocultar map-route no mobile muito pequeno */
  .phone-map .map-route {
    display: none;
  }
  
  .whatsapp-float,
  .custom-whatsapp-btn {
    width: 44px !important;
    height: 44px !important;
    right: 0.8rem !important;
    bottom: 6rem !important;
  }
  
  .whatsapp-float img,
  .custom-whatsapp-btn img {
    width: 44px !important;
    height: 44px !important;
  }
  
  #scrollTopBtn {
    width: 44px;
    height: 44px;
    right: 0.8rem;
    bottom: 0.8rem;
  }
  
  #scrollTopBtn svg {
    width: 18px;
    height: 18px;
  }
} 

.logo-custom {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', 'Inter', Arial, sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: #2563EB;
  letter-spacing: 1px;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(37, 99, 235, 0.10);
}
.logo-custom .logo-svg {
  height: 2.2rem;
  width: 2.2rem;
  display: inline-block;
}
@media (max-width: 600px) {
  .logo-custom {
    font-size: 1.3rem;
  }
  .logo-custom .logo-svg {
    height: 1.3rem;
    width: 1.3rem;
  }
} 

.logo-img, .logo-img-large {
  height: 64px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  max-width: 160px;
  background: transparent;
  filter: brightness(1.1) contrast(1.2);
}

.loader-logo .logo-img {
  height: 72px;
  max-width: 180px;
  margin: 0 0 10px 0;
} 

.app-download-premium {
  background: linear-gradient(120deg, #FFFFFF 80%, #2563EB 120%);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.18);
  padding: 3.5rem 2rem 3rem 2rem;
  margin-bottom: 3rem;
}
.premium-title {
  text-align: center;
  font-size: 2.7rem;
  font-weight: 900;
  color: #2563EB;
  text-shadow: 0 4px 24px rgba(37, 99, 235, 0.18), 0 1px 0 #fff1;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}
.premium-subtitle {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 0.5rem;
}
.premium-desc {
  color: #475569;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.store-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.premium-store-btn {
  background: #2563EB;
  color: #fff;
  border-radius: 32px;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.18);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.7rem 1.7rem 0.7rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.premium-store-btn:hover {
  background: #3B82F6;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.28);
}
.store-icon {
  width: 28px;
  height: 28px;
  display: inline-block;
}
.premium-features {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.premium-feature-card {
  background: #F8FAFC;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(37, 99, 235, 0.13);
  border: 1.5px solid #2563EB33;
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  min-width: 220px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s;
}
.premium-feature-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.10);
  border-color: #3B82F6;
}
.feature-icon {
  font-size: 2.1rem;
  margin-bottom: 0.7rem;
  color: #2563EB;
  display: block;
}
@media (max-width: 900px) {
  .premium-features {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
  .app-download-premium {
    padding: 2rem 0.5rem 2rem 0.5rem;
  }
} 

.logo-img-large {
  height: 100px;
  max-width: 240px;
} 

/* ===== MENU HAMBURGUER ===== */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
  margin-left: 0;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 4px 0;
  background: var(--text-dark);
  border-radius: 2px;
  transition: 0.3s;
}

/* Animação do hambúrguer quando ativo */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 900px) {
  .header-container {
    position: relative;
    justify-content: flex-start;
    overflow: visible !important;
    z-index: 10002;
  }
  .hamburger {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10001;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    order: 2;
    cursor: pointer;
    pointer-events: auto !important;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  
  .hamburger span {
    pointer-events: none;
  }
  .logo-custom {
    order: 1;
    margin-right: auto;
  }
  nav {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 70vw;
    max-width: 340px;
    height: 100vh;
    background: var(--primary);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 6rem 1.5rem 2rem 1.5rem;
    transition: right 0.3s cubic-bezier(0.4,0,0.2,1);
    z-index: 10000;
    overflow-y: auto;
  }
  nav.open {
    right: 0;
  }
}

@media (max-width: 600px) {
  .header-container {
    padding: 0 0.3rem;
    min-height: 56px;
  }
  .logo {
    font-size: 1.1rem;
  }
  .logo-img, .logo-img-large {
    height: 90px !important;
    max-width: 240px !important;
  }
  .logo-custom {
    font-size: 2.6rem !important;
  }
  .hamburger {
    width: 36px;
    height: 36px;
  }
  .language-btn {
    padding: 0.2rem 0.5rem;
    font-size: 0.8rem;
    min-width: 36px;
  }
}

@media (max-width: 480px) {
  header {
    padding: 0.2rem 0;
  }
  .header-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    padding: 0 1rem;
    min-height: 60px;
    width: 100vw;
    box-sizing: border-box;
  }
  .logo {
    font-size: 1rem;
  }
  .logo-img,
  .logo-img-large {
    height: 50px !important;
    max-width: 140px !important;
  }
  
  .logo-custom {
    font-size: 1.3rem !important;
    margin-right: auto;
    display: flex;
    align-items: center;
  }
  
  .hamburger {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    margin-left: 0.5rem;
    margin-right: 0.2rem;
    order: 3;
    align-self: center;
    z-index: 10001;
    cursor: pointer;
  }
  .language-selector {
    margin-left: 0.2rem;
    margin-right: 0;
    order: 4;
    align-self: center;
  }
  .language-btn {
    padding: 0.1rem 0.4rem;
    font-size: 0.75rem;
    min-width: 30px;
  }
  nav {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 100vw;
    height: 100vh;
    background: var(--primary);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 6rem 1.5rem 2rem 1.5rem;
    transition: right 0.3s cubic-bezier(0.4,0,0.2,1);
    z-index: 10000;
    overflow-y: auto;
  }
  nav.open {
    right: 0;
  }
}

/* Melhorias extras para grids e cards no mobile */
@media (max-width: 600px) {
  .steps, .diferenciais-list, .features-grid, .premium-features {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .feature-card, .premium-feature-card, .diferencial, .depoimento-item {
    padding: 1.5rem;
    margin: 0 auto;
    width: 100%;
    max-width: 100vw;
  }
  
  .feature-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }
  
  .feature-description {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .feature-description ul {
    padding-left: 1.2rem;
  }
  
  .feature-description li {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
  }
}

@media (max-width: 480px) {
  .features-grid {
    gap: 1rem;
  }
  
  .feature-card {
    padding: 1.2rem;
  }
  
  .feature-title {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
  }
  
  .feature-description {
    font-size: 1.1rem;
    line-height: 1.4;
  }
  
  .feature-description ul {
    padding-left: 1.2rem;
  }
  
  .feature-description li {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }
}

/* Ajustes finos para formulários no mobile */
@media (max-width: 480px) {
  .form-container {
    padding: 0.7rem 0.1rem;
  }
  .form-group input, .form-group select, .form-group textarea {
    font-size: 1.05rem;
    padding: 0.7rem;
  }
}

/* Footer: garantir colunas empilhadas e centralizadas */
@media (max-width: 700px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.2rem;
    padding: 1.2rem 0.3rem;
  }
  .footer-section {
    margin-bottom: 1.2rem;
  }
  .footer-qr {
    width: 90px;
    height: auto;
    margin: 0 auto 0.5rem auto;
  }
  .footer-qr-block {
    display: flex;
    flex-direction: column;
    align-items: center !important;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
  }
  .footer-qr-text {
    text-align: center;
    width: 100%;
  }
}

/* Botões flutuantes: garantir acessibilidade e não sobrepor conteúdo */
@media (max-width: 480px) {
  .whatsapp-float, #scrollTopBtn {
    right: 1rem !important;
    width: 44px !important;
    height: 44px !important;
  }
  #scrollTopBtn {
    bottom: 1rem !important;
  }
  .whatsapp-float {
    bottom: 6rem !important;
  }
  .whatsapp-float svg, #scrollTopBtn svg {
    width: 22px !important;
    height: 22px !important;
  }
} 

.custom-whatsapp-btn {
  background: transparent !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(37,211,102,0.18);
  width: 70px !important;
  height: 70px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 2rem;
  bottom: 8rem;
  position: fixed;
  text-decoration: none;
  z-index: 1000;
  padding: 0;
}
.custom-whatsapp-btn svg {
  width: 70px !important;
  height: 70px !important;
  display: block;
}
@media (max-width: 768px) {
  .custom-whatsapp-btn, .custom-whatsapp-btn svg {
    width: 54px !important;
    height: 54px !important;
  }
  .custom-whatsapp-btn {
    right: 1rem;
    bottom: 7rem;
  }
}
@media (max-width: 480px) {
  .custom-whatsapp-btn, .custom-whatsapp-btn svg {
    width: 44px !important;
    height: 44px !important;
  }
  .custom-whatsapp-btn {
    right: 1rem;
    bottom: 6rem;
  }
} 

@media (max-width: 600px) {
  #preloader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    height: 100vh;
    width: 100vw;
  }
  #preloader > .loader-logo,
  #preloader > .loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .loader-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    animation: pulse 2s infinite;
    margin-bottom: 0;
  }
  .loader-text-lamob {
    color: #2563EB;
    font-weight: bold;
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-top: 0;
    margin-bottom: 1.2rem;
    display: block;
    text-align: center;
  }
  .loader {
    width: 38px !important;
    height: 38px !important;
    border-width: 3px;
    margin-top: 0;
    display: block;
  }
}
@media (max-width: 900px) {
  header {
    padding: 1.7rem 0 !important;
  }
} 

/* HIDE HAMBURGER ON DESKTOP */
.hamburger {
  display: none;
}
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }
} 

@media (max-width: 900px) {
  nav {
    display: none;
  }
  nav.open {
    display: flex;
  }
  nav.open .nav-link {
    width: 100%;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
  }
  nav.open .nav-link:last-child {
    border-bottom: none;
  }
  nav.open .language-selector {
    width: 100%;
    margin-top: 1rem;
    margin-left: 0;
  }
} 

@media (max-width: 600px) {
  .section, .sobre-text p, .hero-content p, .step p, .diferencial p, .contato-info p, .depoimento-frase, .depoimento-nome {
    font-size: 1.1rem;
  }
  .section-title, .sobre-text h2, .hero-content h1, .como-funciona h2, .diferenciais h2, .contato-info h2, .depoimentos h2 {
    font-size: 1.6rem;
  }
  .btn, .nav-link, .form-group input, .form-group textarea, .form-group select {
    font-size: 1rem;
  }
  
  .section-header {
    margin-bottom: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 480px) {
  .section, .sobre-text p, .hero-content p, .step p, .diferencial p, .contato-info p, .depoimento-frase, .depoimento-nome {
    font-size: 1.15rem;
  }
  .section-title, .sobre-text h2, .hero-content h1, .como-funciona h2, .diferenciais h2, .contato-info h2, .depoimentos h2 {
    font-size: 1.7rem;
  }
  .btn, .nav-link, .form-group input, .form-group textarea, .form-group select {
    font-size: 1.05rem;
  }
  
  .section-header {
    margin-bottom: 1.5rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
} 

@media (max-width: 600px) {
  .btn {
    padding: 0.7rem 1.2rem;
    font-size: 1rem;
  }
  .hero-content h1, .section-title, .sobre-text h2 {
    font-size: 2rem;
    line-height: 1.2;
  }
  .section-subtitle {
    font-size: 1.15rem;
  }
}
@media (max-width: 480px) {
  .btn {
    padding: 0.6rem 0.8rem;
    font-size: 1.05rem;
  }
  .hero-content h1, .section-title, .sobre-text h2 {
    font-size: 2.1rem;
    line-height: 1.18;
  }
  .section-subtitle {
    font-size: 1.18rem;
  }
} 

.img-circular-baixeapp {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(37, 99, 235, 0.10);
  display: block;
  margin: 0 auto 18px auto;
  border: 3px solid #2563EB;
  background: #fff;
}

/* Imagens premium embaixo dos textos dos steps */
.step-bottom-image,
.premium-image {
  width: 500px;
  height: 500px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 2rem auto 0 auto;
  border: 6px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #2563EB 100%) border-box;
  box-shadow: 
    0 8px 32px rgba(37, 99, 235, 0.25),
    0 4px 16px rgba(255, 215, 0, 0.2),
    inset 0 2px 8px rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.step-bottom-image::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  transform: rotate(45deg);
  animation: premium-shine 3s infinite;
  pointer-events: none;
}

@keyframes premium-shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

  .step:hover .step-bottom-image,
  .step:hover .premium-image {
    transform: scale(1.05);
    box-shadow: 
      0 12px 48px rgba(37, 99, 235, 0.35),
      0 8px 24px rgba(255, 215, 0, 0.3),
      inset 0 2px 12px rgba(255, 255, 255, 0.4);
    border-width: 8px;
  }

/* ===== FAQ STYLES ===== */
.faq-section {
  padding: 140px 0 80px 0;
  background: var(--bg-gradient);
  position: relative;
  margin-top: 0;
  z-index: 1;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-pattern);
  opacity: 0.1;
  z-index: 1;
}

.faq-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1001;
  overflow: visible;
}

.faq-section .section-title {
  text-align: center;
  margin-bottom: 60px;
  color: #1E293B;
  font-size: 2.5rem;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(37, 99, 235, 0.3);
  display: block;
  width: 100%;
  position: relative;
  z-index: 1002;
}

.faq-category {
  margin-bottom: 50px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.faq-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.faq-category-title {
  color: var(--primary);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--primary);
  display: inline-block;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.faq-item {
  margin-bottom: 25px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  border-left: 5px solid var(--primary);
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 5px 20px rgba(37, 99, 235, 0.2);
  transform: translateY(-3px);
  border-left-width: 8px;
}

.faq-question {
  color: #1E293B;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}

.faq-answer {
  color: #475569;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

.faq-answer ul {
  margin: 12px 0;
  padding-left: 25px;
}

.faq-answer li {
  margin-bottom: 10px;
  color: #475569;
  position: relative;
  font-weight: 400;
}

.faq-answer li::before {
  content: '•';
  color: var(--primary);
  font-weight: bold;
  position: absolute;
  left: -15px;
}

/* Responsive FAQ */
@media (max-width: 768px) {
  .faq-section {
    padding: 120px 0 50px 0;
  }
  
  .faq-section .container {
    padding: 0 15px;
  }
  
  .faq-section .section-title {
    font-size: 1.8rem;
    margin-bottom: 35px;
    padding: 0 10px;
    display: block;
    width: 100%;
    position: relative;
    z-index: 1002;
    color: #1E293B;
  }
  
  .faq-category {
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 15px;
  }
  
  .faq-category-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  
  .faq-item {
    padding: 18px;
    margin-bottom: 18px;
    border-radius: 12px;
  }
  
  .faq-question {
    font-size: 1.05rem;
    margin-bottom: 10px;
  }
  
  .faq-answer {
    font-size: 0.95rem;
  }
  
  .faq-answer ul {
    margin: 10px 0;
    padding-left: 20px;
  }
  
  .faq-answer li {
    margin-bottom: 8px;
  }
  
  .faq-answer li::before {
    left: -12px;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 110px 0 40px 0;
  }
  
  .faq-section .container {
    padding: 0 10px;
  }
  
  .faq-section .section-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
    padding: 0 5px;
    display: block;
    width: 100%;
    position: relative;
    z-index: 1002;
    color: #1E293B;
  }
  
  .faq-category {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 12px;
  }
  
  .faq-category-title {
    font-size: 1.2rem;
    margin-bottom: 18px;
  }
  
  .faq-item {
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 10px;
  }
  
  .faq-question {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  
  .faq-answer {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .faq-answer ul {
    margin: 8px 0;
    padding-left: 18px;
  }
  
  .faq-answer li {
    margin-bottom: 6px;
  }
  
  .faq-answer li::before {
    left: -10px;
  }
}

@media (max-width: 360px) {
  .faq-section {
    padding: 100px 0 30px 0;
  }
  
  .faq-section .section-title {
    font-size: 1.4rem;
    margin-bottom: 25px;
    display: block;
    width: 100%;
    position: relative;
    z-index: 1002;
    color: #1E293B;
  }
  
  .faq-category {
    padding: 12px;
    margin-bottom: 15px;
  }
  
  .faq-category-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  
  .faq-item {
    padding: 12px;
    margin-bottom: 12px;
  }
  
  .faq-question {
    font-size: 0.95rem;
  }
  
  .faq-answer {
    font-size: 0.85rem;
  }
}

/* ===== POPUP MODAL ===== */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: var(--background);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border);
  overflow: hidden;
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: popupPulse 2s ease-in-out infinite;
}

@keyframes popupPulse {
  0%, 100% {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
  }
  50% {
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.2), 0 0 0 1px rgba(37, 99, 235, 0.3);
  }
}

.popup-overlay.show .popup-content {
  transform: scale(1);
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.popup-close:hover {
  background: rgba(239, 68, 68, 0.9);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.15) rotate(90deg);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

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

.popup-image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  gap: 20px;
}

.popup-image {
  width: 100%;
  height: auto;
  max-width: 500px;
  max-height: 600px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.popup-image:hover {
  transform: scale(1.02);
}

.popup-link-container {
  text-align: center;
  padding: 0 20px 10px;
  width: 100%;
  max-width: 500px;
}

.popup-regulamento-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  position: relative;
  overflow: hidden;
}

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

.popup-regulamento-link:hover::before {
  left: 100%;
}

.popup-regulamento-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
  background: linear-gradient(135deg, #1e40af 0%, var(--primary) 100%);
}

.popup-regulamento-link:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.popup-regulamento-link svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.popup-regulamento-link:hover svg {
  transform: translate(3px, -3px);
}

.popup-regulamento-link span {
  position: relative;
  z-index: 1;
}

/* Responsividade do Popup */
@media (max-width: 768px) {
  .popup-content {
    max-width: 95vw;
    max-height: 95vh;
    margin: 10px;
  }
  
  .popup-image {
    max-width: 100%;
    max-height: 70vh;
  }
  
  .popup-close {
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
  }
  
  .popup-close svg {
    width: 18px;
    height: 18px;
  }
  
  .popup-regulamento-link {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  
  .popup-link-container {
    padding: 0 15px 10px;
  }
}

@media (max-width: 480px) {
  .popup-content {
    max-width: 98vw;
    max-height: 98vh;
    margin: 5px;
    border-radius: 12px;
  }
  
  .popup-image {
    max-height: 60vh;
  }
  
  .popup-close {
    top: 6px;
    right: 6px;
    width: 32px;
    height: 32px;
  }
  
  .popup-close svg {
    width: 16px;
    height: 16px;
  }
  
  .popup-regulamento-link {
    padding: 10px 20px;
    font-size: 0.85rem;
    gap: 8px;
  }
  
  .popup-regulamento-link svg {
    width: 16px;
    height: 16px;
  }
  
  .popup-link-container {
    padding: 0 10px 8px;
  }
  
  .popup-image-container {
    padding: 15px;
    gap: 15px;
  }
}

@media (max-width: 360px) {
  .popup-content {
    max-width: 99vw;
    max-height: 99vh;
    margin: 2px;
    border-radius: 8px;
  }
  
  .popup-image {
    max-height: 50vh;
  }
  
  .popup-close {
    top: 4px;
    right: 4px;
    width: 28px;
    height: 28px;
  }
  
  .popup-close svg {
    width: 14px;
    height: 14px;
  }
  
  .popup-regulamento-link {
    padding: 10px 18px;
    font-size: 0.8rem;
    gap: 6px;
  }
  
  .popup-regulamento-link svg {
    width: 14px;
    height: 14px;
  }
  
  .popup-link-container {
    padding: 0 8px 6px;
  }
  
  .popup-image-container {
    padding: 12px;
    gap: 12px;
  }
}

/* ===== ESTILOS PARA CAMPOS DE ARQUIVO ===== */
.form-group input[type="file"] {
  background: var(--background-light);
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  color: var(--text-main);
  font-family: var(--font-primary);
  font-size: 14px;
  transition: var(--transition);
  cursor: pointer;
  width: 100%;
}

.form-group input[type="file"]:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.form-group input[type="file"]:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.form-group input[type="file"]::-webkit-file-upload-button {
  background: var(--primary);
  color: var(--text-dark);
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  margin-right: 12px;
}

.form-group input[type="file"]::-webkit-file-upload-button:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.form-group input[type="file"]::-moz-file-upload-button {
  background: var(--primary);
  color: var(--text-dark);
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  margin-right: 12px;
}

.form-group input[type="file"]::-moz-file-upload-button:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.form-help {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-primary);
  line-height: 1.4;
}

.form-help::before {
  content: "💡 ";
  margin-right: 4px;
}

@media (max-width: 768px) {
  .form-group input[type="file"] {
    padding: 10px;
    font-size: 13px;
  }
  
  .form-group input[type="file"]::-webkit-file-upload-button {
    padding: 6px 12px;
    font-size: 13px;
  }
  
  .form-group input[type="file"]::-moz-file-upload-button {
    padding: 6px 12px;
    font-size: 13px;
  }
  
  .form-help {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .form-group input[type="file"] {
    padding: 8px;
    font-size: 12px;
  }
  
  .form-group input[type="file"]::-webkit-file-upload-button {
    padding: 5px 10px;
    font-size: 12px;
  }
  
  .form-group input[type="file"]::-moz-file-upload-button {
    padding: 5px 10px;
    font-size: 12px;
  }
  
  .form-help {
    font-size: 10px;
  }
} 

/* ===== ESTILOS PARA BOTÕES DE DOWNLOAD NO FOOTER ===== */
.footer-store-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1rem;
  width: 100%;
}

.footer-download-text {
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 0.8rem;
  opacity: 0.9;
  width: 100%;
}

.footer-store-btn {
  background: #2563EB;
  color: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.18);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  max-width: 200px;
  width: 100%;
  justify-content: center;
}

.footer-store-btn:hover {
  background: #3B82F6;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.28);
  color: #fff;
  text-decoration: none;
}

.footer-store-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  flex-shrink: 0;
}

.footer-store-text {
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  color: #ffffff;
}

/* Responsividade para tablets */
@media (max-width: 768px) {
  .footer-store-buttons {
    flex-direction: column;
    gap: 0.6rem;
    justify-content: center;
    align-items: center;
  }
  
  .footer-store-btn {
    padding: 0.5rem 1rem 0.5rem 0.8rem;
    font-size: 0.85rem;
    max-width: 140px;
    flex: none;
    min-width: 0;
  }
  
  .footer-store-icon {
    width: 22px;
    height: 22px;
  }
  
  .footer-store-text {
    font-size: 0.85rem;
    color: #ffffff;
  }
  
  .footer-download-text {
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
  }
}

/* Responsividade para mobile */
@media (max-width: 480px) {
  .footer-store-buttons {
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
  }
  
  .footer-store-btn {
    padding: 0.4rem 0.8rem 0.4rem 0.7rem;
    font-size: 0.8rem;
    max-width: 120px;
    flex: none;
    min-width: 0;
  }
  
  .footer-store-icon {
    width: 20px;
    height: 20px;
  }
  
  .footer-store-text {
    font-size: 0.8rem;
    color: #ffffff;
  }
  
  .footer-download-text {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }
}

/* Responsividade para mobile muito pequeno */
@media (max-width: 360px) {
  .footer-store-buttons {
    flex-direction: column;
    gap: 0.4rem;
    justify-content: center;
  }
  
  .footer-store-btn {
    padding: 0.3rem 0.6rem 0.3rem 0.5rem;
    font-size: 0.75rem;
    max-width: 100px;
    flex: none;
  }
  
  .footer-store-icon {
    width: 18px;
    height: 18px;
  }
  
  .footer-store-text {
    font-size: 0.75rem;
    color: #ffffff;
  }
  
  .footer-download-text {
    font-size: 0.75rem;
    margin-bottom: 0.4rem;
  }
} 



/* ===== TIMESTAMP PARA FORÇAR ATUALIZAÇÃO: 2025-01-16 16:15:00 ===== */ 
/* ===== TIMESTAMP PARA FORÇAR ATUALIZAÇÃO: 2025-01-16 16:15:00 ===== */ 