/* RESET E ESTILOS GERAIS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Montserrat', 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Hero grid com imagem da pulseira */
.hero-grid {}
.hero-visual {}
.hero-pulseira {}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(79, 140, 255, 0.1);
  z-index: 1000;
  padding: 12px 0;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #6c63ff;
  font-family: 'Exo 2', 'Inter', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.2;
}

.navbar-brand img {
  width: 50px;
  height: 50px;
  vertical-align: middle;
  flex-shrink: 0;
}

.navbar-brand .by-locateiq {
  font-size: 0.75rem;
  color: #888;
  font-weight: 400;
  margin-top: -2px;
}

.navbar-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.navbar-login, .navbar-master-link {
  text-decoration: none;
  color: #6c63ff;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 18px;
  border-radius: 22px;
  border: 2px solid #6c63ff;
  background: #fff;
  transition: all 0.2s ease;
}

.navbar-login:hover, .navbar-logout:hover, .navbar-master-link:hover {
  background: rgba(108, 99, 255, 0.1);
}

.navbar-logout {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.navbar-logout:hover {
  background: rgba(220, 53, 69, 0.2);
}

/* HERO SECTION */
.hero-tagband {
  background: linear-gradient(135deg, #6c63ff 0%, #8b5cf6 100%);
  color: white;
  padding: 120px 0 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-tagband::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(10px);
  filter: blur(6px);
  animation: hero-reveal 700ms ease-out 100ms forwards;
  position: relative;
}

.hero-lead {
  font-size: 1.25rem;
  margin-bottom: 16px;
  opacity: 0.95;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(10px);
  filter: blur(6px);
  animation: hero-reveal 700ms ease-out 250ms forwards;
}

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
  opacity: 0;
  transform: translateY(10px);
  filter: blur(6px);
  animation: hero-reveal 700ms ease-out 400ms forwards;
}

/* BOTÕES */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin: 0 8px;
}

.btn-primary {
  background: white;
  color: #6c63ff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(8px);
  filter: blur(4px);
  animation: hero-reveal 700ms ease-out 550ms forwards;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
  opacity: 0;
  transform: translateY(8px);
  filter: blur(4px);
  animation: hero-reveal 700ms ease-out 650ms forwards;
}

/* Subtle underline reveal for hero title */
.hero-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0.9), rgba(255,255,255,0.2));
  border-radius: 3px;
  transform: translateX(-50%);
  animation: underline-grow 900ms ease-out 700ms forwards;
}

@keyframes hero-reveal {
  0% { opacity: 0; transform: translateY(10px); filter: blur(6px); }
  60% { opacity: 1; transform: translateY(0); filter: blur(0); }
  100% { opacity: 1; transform: translateY(0); filter: none; }
}

@keyframes underline-grow {
  0% { width: 0; opacity: 0; }
  60% { width: 60%; opacity: 1; }
  100% { width: 40%; opacity: 1; }
}

/* Acessibilidade: reduzir movimento se o usuário preferir */
@media (prefers-reduced-motion: reduce) {
  .hero-title,
  .hero-lead,
  .hero-desc,
  .btn-primary,
  .btn-secondary,
  .hero-title::after {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

/* MESSAGES */
.messages {
  max-width: 600px;
  margin: 20px auto;
  padding: 15px;
  border-radius: 8px;
  font-weight: 500;
}

.messages .success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.messages .error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.messages .info { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }
.messages .warning { background: #fff3cd; color: #856404; border: 1px solid #ffeeba; }

/* SEÇÃO COMO FUNCIONA - DESIGN PROFISSIONAL */
.how-it-works-modern {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.how-works-bg {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Elementos decorativos de fundo */
.bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.1), rgba(108, 99, 255, 0.1));
  animation: float 6s ease-in-out infinite;
}

.circle-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.circle-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.circle-3 {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 15%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(79, 140, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 140, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
}

.how-works-container {
  position: relative;
  z-index: 1;
}

/* Header da seção */
.how-works-header {
  text-align: center;
  margin-bottom: 80px;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #4f8cff, #6c63ff);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(79, 140, 255, 0.3);
}

.badge-icon {
  width: 16px;
  height: 16px;
}

.how-works-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 16px;
  line-height: 1.1;
  background: linear-gradient(135deg, #4f8cff, #6c63ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.how-works-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Timeline dos passos */
.steps-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
}

.step-card {
  background: white;
  border-radius: 24px;
  padding: 40px 32px 32px 32px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(79, 140, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4f8cff, #6c63ff);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

.step-number {
  position: absolute;
  top: -16px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #4f8cff, #6c63ff);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: 0 4px 20px rgba(79, 140, 255, 0.4);
  z-index: 10;
}

.step-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.1), rgba(108, 99, 255, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4f8cff;
  margin-bottom: 24px;
}

.step-content {
  margin-bottom: 24px;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
  line-height: 1.3;
}

.step-description {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.step-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-tag {
  background: rgba(79, 140, 255, 0.1);
  color: #4f8cff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Elementos visuais dos passos */
.step-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 120px;
}

/* Passo 1 - Pulseira */
.pulseira-preview {
  position: relative;
  width: 120px;
  height: 80px;
}

.pulseira-body {
  width: 100%;
  height: 20px;
  background: linear-gradient(135deg, #4f8cff, #6c63ff);
  border-radius: 10px;
  position: relative;
}

.pulseira-body::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 36px;
  background: white;
  border-radius: 8px;
  border: 2px solid #e2e8f0;
}

.qr-code-placeholder {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  color: #4f8cff;
}

/* Passo 2 - Celular */
.phone-scan-animation {
  position: relative;
}

.phone-frame {
  width: 80px;
  height: 120px;
  background: #1e293b;
  border-radius: 12px;
  padding: 8px;
  position: relative;
}

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

.camera-viewfinder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 2px solid #4f8cff;
  border-radius: 8px;
}

.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #4f8cff;
  animation: scan 2s ease-in-out infinite;
}

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

/* Passo 3 - Perfil */
.profile-setup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.profile-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.1), rgba(108, 99, 255, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4f8cff;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100px;
}

.field-line {
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  animation: pulse 2s ease-in-out infinite;
}

.field-line.short {
  width: 60%;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Passo 4 - Notificação */
.notification-success {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.notification-bell {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  animation: ring 2s ease-in-out infinite;
}

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

.success-checkmark {
  width: 32px;
  height: 32px;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  animation: checkmark 0.5s ease-in-out 1s both;
}

@keyframes checkmark {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

/* CTA da seção */
.how-works-cta {
  background: white !important;
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(79, 140, 255, 0.1);
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.cta-description {
  color: #ffffff !important;
  font-size: 1.125rem;
  margin-bottom: 32px;
}

/* Estilos específicos para a seção how-works-cta */
.how-works-cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b !important;
  margin-bottom: 12px;
}

.how-works-cta-description {
  color: #64748b !important;
  font-size: 1.125rem;
  margin-bottom: 32px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #4f8cff, #6c63ff);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(79, 140, 255, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(79, 140, 255, 0.4);
}

.cta-button svg {
  transition: transform 0.3s ease;
}

.cta-button:hover svg {
  transform: translateX(4px);
}

.watermark-bg {
  position: absolute;
  left: 50%;
  top: 58%;
  transform: translate(-50%, 0);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 13vw;
  color: #6c63ff13;
  font-weight: 600;
  letter-spacing: 2px;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #6c63ff;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

/* SEÇÃO LOCALIZAÇÃO VISUAL MODERNA - DESIGN TECNOLÓGICO BANDIQ */
.bandiq-locate-section {
  position: relative;
  width: 100%;
  padding: 60px 0 80px 0;
  background: linear-gradient(135deg, #f7fafd 0%, #e9eafc 100%);
  overflow: hidden;
}

.bandiq-locate-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.bandiq-locate-content {
  position: relative;
  display: flex;
  height: 500px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  border-radius: 20px;
  border: 2px solid #4f8cff;
  box-shadow: 0 20px 60px rgba(79, 140, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.bandiq-locate-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(79, 140, 255, 0.1) 0%, rgba(108, 99, 255, 0.1) 100%);
  pointer-events: none;
}

/* Radar de fundo animado */
.bandiq-radar-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.radar-circle-1, .radar-circle-2, .radar-circle-3, .radar-circle-4 {
  animation: radar-pulse 4s ease-in-out infinite;
}

.radar-circle-2 { animation-delay: 1s; }
.radar-circle-3 { animation-delay: 2s; }
.radar-circle-4 { animation-delay: 3s; }

.radar-sweep {
  transform-origin: 400px 200px;
  animation: radar-sweep 3s linear infinite;
  stroke: #4f8cff;
}

.radar-point {
  animation: radar-point-pulse 2s ease-in-out infinite;
  fill: #4f8cff;
}

@keyframes radar-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

@keyframes radar-sweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes radar-point-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}

/* Grade de localização */
.bandiq-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.grid-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(79, 140, 255, 0.4), transparent);
}

.grid-line.horizontal {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
}

.grid-line.vertical {
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
}

.grid-line.diagonal-1 {
  top: 0;
  left: 0;
  width: 141.4%;
  height: 1px;
  transform: rotate(45deg);
  transform-origin: 0 0;
}

.grid-line.diagonal-2 {
  top: 0;
  right: 0;
  width: 141.4%;
  height: 1px;
  transform: rotate(-45deg);
  transform-origin: 100% 0;
}

/* Logo central com efeito de pulso */
.bandiq-logo-center {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.bandiq-logo-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 140, 255, 0.4) 0%, rgba(108, 99, 255, 0.2) 50%, transparent 70%);
  animation: logo-pulse 3s ease-in-out infinite;
}

.bandiq-logo-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.bandiq-logo-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: white;
  padding: 8px;
  box-shadow: 0 8px 32px rgba(79, 140, 255, 0.5);
  border: 3px solid #4f8cff;
}

.bandiq-logo-label {
  font-size: 1.2rem;
  font-weight: 700;
  color: #4f8cff;
  text-shadow: 0 0 15px rgba(79, 140, 255, 0.7);
  letter-spacing: 2px;
}

.bandiq-status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.2);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: status-blink 2s ease-in-out infinite;
}

.status-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: #22c55e;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes logo-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

@keyframes status-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Linhas de conexão */
.bandiq-connection-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.connection-line {
  animation: connection-pulse 3s ease-in-out infinite;
  stroke: #4f8cff;
}

.connection-line:nth-child(1) { animation-delay: 0s; }
.connection-line:nth-child(2) { animation-delay: 0.5s; }
.connection-line:nth-child(3) { animation-delay: 1s; }
.connection-line:nth-child(4) { animation-delay: 1.5s; }
.connection-line:nth-child(5) { animation-delay: 2s; }
.connection-line:nth-child(6) { animation-delay: 2.5s; }
.connection-line:nth-child(7) { animation-delay: 3s; }
.connection-line:nth-child(8) { animation-delay: 3.5s; }

@keyframes connection-pulse {
  0%, 100% { opacity: 0.3; stroke-width: 1; }
  50% { opacity: 0.8; stroke-width: 2; }
}

/* Container das crianças */
.bandiq-children-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

/* Avatares das crianças */
.bandiq-child-avatar {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.bandiq-child-avatar:hover {
  transform: scale(1.1);
  z-index: 10;
}

.child-glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(79, 140, 255, 0.5) 0%, rgba(108, 99, 255, 0.3) 50%, transparent 70%);
  border-radius: 50%;
  animation: child-glow 3s ease-in-out infinite;
  pointer-events: none;
}

.child-avatar-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 4px 20px rgba(79, 140, 255, 0.4);
  border: 2px solid #4f8cff;
  overflow: hidden;
}

.child-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.child-status {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #22c55e;
}

.status-dot-online {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: status-pulse 2s ease-in-out infinite;
}

.child-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: rgba(15, 23, 42, 0.95);
  padding: 6px 10px;
  border-radius: 12px;
  border: 1px solid #4f8cff;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 12px rgba(79, 140, 255, 0.2);
}

.child-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #4f8cff;
  text-shadow: 0 0 8px rgba(79, 140, 255, 0.6);
}

.child-distance {
  font-size: 0.7rem;
  color: #94a3b8;
  font-weight: 500;
}

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

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

/* Posicionamento específico das crianças */
.child-1 { top: 15%; left: 25%; }
.child-2 { top: 20%; right: 20%; }
.child-3 { top: 60%; left: 15%; }
.child-4 { top: 55%; right: 15%; }
.child-5 { bottom: 20%; left: 30%; }
.child-6 { bottom: 15%; right: 25%; }
.child-7 { top: 40%; left: 10%; }
.child-8 { top: 35%; right: 10%; }

/* Indicadores de tecnologia */
.bandiq-tech-indicators {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}

.tech-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 23, 42, 0.95);
  padding: 6px 10px;
  border-radius: 12px;
  border: 1px solid #4f8cff;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 12px rgba(79, 140, 255, 0.2);
}

.tech-text {
  font-size: 0.7rem;
  font-weight: 600;
  color: #4f8cff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 0 5px rgba(79, 140, 255, 0.4);
}

/* SEÇÃO DIFERENCIAIS BANDIQ - DESIGN PREMIUM */
.bandiq-features-premium {
  background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 50%, #e8f0ff 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Elementos decorativos de fundo */
.features-bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.1), rgba(108, 99, 255, 0.1));
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 15%;
  animation-delay: 4s;
}

.features-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(79, 140, 255, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, rgba(108, 99, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Header da seção */
.features-header {
  text-align: center;
  margin-bottom: 80px;
}

.features-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.1), rgba(108, 99, 255, 0.1));
  color: #4f8cff;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(79, 140, 255, 0.2);
}

.features-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(135deg, #4f8cff, #6c63ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-subtitle {
  font-size: 1.25rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid de diferenciais */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
}

.feature-card {
  background: white;
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 8px 32px rgba(79, 140, 255, 0.08);
  border: 1px solid rgba(79, 140, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #4f8cff, #6c63ff);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(79, 140, 255, 0.15);
  border-color: rgba(79, 140, 255, 0.2);
}

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

/* Ícones dos diferenciais */
.feature-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.1), rgba(108, 99, 255, 0.1));
  border-radius: 20px;
  transform: rotate(45deg);
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon-bg {
  transform: rotate(225deg);
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.2), rgba(108, 99, 255, 0.2));
}

.feature-icon {
  position: relative;
  z-index: 2;
  color: #4f8cff;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  color: #6c63ff;
  transform: scale(1.1);
}

/* Conteúdo dos diferenciais */
.feature-content {
  flex: 1;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.3;
}

.feature-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 24px;
}

.feature-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.benefit-tag {
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.1), rgba(108, 99, 255, 0.1));
  color: #4f8cff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(79, 140, 255, 0.2);
}

/* Elementos visuais dos diferenciais */
.feature-visual {
  margin-top: 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-code-demo, .notification-demo, .protection-demo, 
.comfort-demo, .privacy-demo, .ease-demo {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.1), rgba(108, 99, 255, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.qr-code-animation, .notification-bell, .shield-animation,
.pulseira-comfort, .lock-animation, .setup-animation {
  width: 32px;
  height: 32px;
  background: #4f8cff;
  border-radius: 6px;
  position: relative;
}

.notification-dot {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 12px;
  height: 12px;
  background: #ff4757;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* CTA Section - Usando mesmo estilo da Hero */
.features-cta {
  background: linear-gradient(135deg, #6c63ff, #8b5cf6);
  border-radius: 32px;
  padding: 60px 40px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.features-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
  pointer-events: none;
}

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

.cta-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

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

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #e6e9ee !important; /* cinza claro para contraste no fundo colorido */
}

.stat-label {
  font-size: 0.95rem;
  color: #e6e9ee !important; /* cinza claro */
  font-weight: 500;
  opacity: 0.95;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta {
  background: white;
  color: #6c63ff;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.btn-demo {
  background: transparent;
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-demo:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

/* SEÇÃO DEPOIMENTOS BANDIQ - DESIGN PREMIUM */
.bandiq-testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, #f7fafd 0%, #e9eafc 100%);
  position: relative;
  overflow: hidden;
}

.bandiq-testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%234f8cff" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%234f8cff" opacity="0.03"/><circle cx="50" cy="10" r="0.5" fill="%234f8cff" opacity="0.02"/><circle cx="10" cy="60" r="0.5" fill="%234f8cff" opacity="0.02"/><circle cx="90" cy="40" r="0.5" fill="%234f8cff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.bandiq-testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Depoimento Principal Hero */
.bandiq-hero-testimonial {
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
  border-radius: 24px;
  padding: 60px;
  margin-bottom: 60px;
  box-shadow: 0 20px 60px rgba(79, 140, 255, 0.15);
  border: 2px solid rgba(79, 140, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.bandiq-hero-testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4f8cff, #6c63ff, #4f8cff);
  background-size: 200% 100%;
  animation: gradient-shift 3s ease-in-out infinite;
}

.hero-testimonial-content {
  position: relative;
  text-align: center;
}

/* Decoração de Aspas */
.testimonial-decoration {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.quote-decoration {
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}

/* Avatar Principal */
.hero-avatar-container {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

.hero-avatar-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(79, 140, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: avatar-glow 4s ease-in-out infinite;
}

.hero-avatar {
  position: relative;
  display: inline-block;
}

.hero-avatar-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 8px 32px rgba(79, 140, 255, 0.3);
  position: relative;
  z-index: 2;
}

.hero-avatar-status {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #22c55e;
  z-index: 3;
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: status-pulse 2s ease-in-out infinite;
}

/* Depoimento Principal */
.hero-testimonial-quote {
  font-size: 1.8rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
  font-weight: 400;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.quote-highlight {
  color: #4f8cff;
  font-weight: 600;
}

.quote-emphasis {
  color: #6c63ff;
  font-style: italic;
  font-weight: 500;
}

.quote-strong {
  color: #4f8cff;
  font-weight: 700;
}

/* Autor Principal */
.hero-testimonial-author {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.author-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.author-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #4f8cff;
}

.author-role {
  font-size: 0.9rem;
  color: #666;
}

.author-verification {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.verification-badge {
  font-size: 0.8rem;
  color: #22c55e;
  font-weight: 600;
}

.verification-time {
  font-size: 0.7rem;
  color: #999;
}

/* Estatísticas */
.testimonial-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Grid de Depoimentos Secundários */
.bandiq-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(79, 140, 255, 0.1);
  border: 1px solid rgba(79, 140, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4f8cff, #6c63ff);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(79, 140, 255, 0.2);
}

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

/* Header do Card */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.card-avatar {
  position: relative;
}

.card-avatar-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #4f8cff;
}

.card-avatar-ring {
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 2px solid transparent;
  border-radius: 50%;
  background: linear-gradient(45deg, #4f8cff, #6c63ff) border-box;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: ring-rotate 4s linear infinite;
}

.card-rating {
  display: flex;
  gap: 2px;
}

.star {
  color: #ffd700;
  font-size: 0.9rem;
  animation: star-twinkle 3s ease-in-out infinite;
}

.star:nth-child(2) { animation-delay: 0.2s; }
.star:nth-child(3) { animation-delay: 0.4s; }
.star:nth-child(4) { animation-delay: 0.6s; }
.star:nth-child(5) { animation-delay: 0.8s; }

/* Conteúdo do Card */
.card-quote {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
  font-style: italic;
}

.card-emphasis {
  color: #4f8cff;
  font-weight: 500;
}

.card-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 12px;
}

.card-name {
  font-weight: 600;
  color: #4f8cff;
  font-size: 0.9rem;
}

.card-role {
  font-size: 0.8rem;
  color: #666;
}

.card-verification {
  font-size: 0.7rem;
  color: #22c55e;
  font-weight: 600;
}

/* Call-to-Action */
.testimonial-cta {
  background: linear-gradient(135deg, #6c63ff 0%, #8b5cf6 100%);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.testimonial-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  pointer-events: none;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-button {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cta-button.primary {
  background: white;
  color: #6c63ff;
}

.cta-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-button.secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* Animações */
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes avatar-glow {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes ring-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes star-twinkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

/* Estilos para seção de contato */
.contact-cta-section {
  background: linear-gradient(135deg, #6c63ff 0%, #8b5cf6 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.contact-cta-box {
  max-width: 800px;
  margin: 0 auto 60px;
}

.contact-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

.contact-cta-desc {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0.95;
}

.contact-cta-btn {
  display: inline-block;
  background: white;
  color: #6c63ff;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.contact-channels {
  max-width: 600px;
  margin: 0 auto;
}

.contact-channels-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 32px;
  opacity: 0.9;
}

.contact-icons-list {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.contact-icon-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(255,255,255,0.1);
  border-radius: 50px;
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.contact-icon-link:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.contact-icon-svg {
  width: 24px;
  height: 24px;
  color: white;
  transition: color 0.3s ease;
}

.contact-icon-link:hover .contact-icon-svg {
  color: #f0f0f0;
}

/* BOTÃO FLUTUANTE DO WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  background: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  color: white;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 5px solid #333;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

/* RESPONSIVIDADE COMPLETA */
@media (max-width: 1200px) {
  .container {
    padding: 0 16px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 900px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-grid {}
  .hero-visual { }
  .hero-pulseira { }
  
  .hero-lead {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .how-works-title {
    font-size: 2.5rem;
  }
  
  .steps-timeline {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .step-card {
    padding: 32px 24px 24px 24px;
  }
  
  .how-works-cta {
    padding: 32px 24px;
  }
  
  /* Responsividade da seção de localização - Tablet */
  .bandiq-locate-section {
    padding: 50px 0 70px 0;
  }
  
  .bandiq-locate-content {
    height: 450px;
    padding: 30px;
  }
  
  .bandiq-logo-img {
    width: 55px;
    height: 55px;
  }
  
  .bandiq-logo-label {
    font-size: 1.1rem;
  }
  
  .child-avatar-container {
    width: 55px;
    height: 55px;
  }
  
  .child-glow-effect {
    width: 75px;
    height: 75px;
  }
  
  /* Ajuste posicionamento tablet */
  .child-1 { top: 12%; left: 22%; }
  .child-2 { top: 18%; right: 18%; }
  .child-3 { top: 62%; left: 12%; }
  .child-4 { top: 58%; right: 12%; }
  .child-5 { bottom: 18%; left: 28%; }
  .child-6 { bottom: 12%; right: 22%; }
  .child-7 { top: 42%; left: 8%; }
  .child-8 { top: 38%; right: 8%; }
  
  .bandiq-tech-indicators {
    top: 18px;
    right: 18px;
  }
  
  .testimonial-content {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-icons-list {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-pulseira { }
  
  .hero-lead {
    font-size: 1rem;
  }
  
  .hero-desc {
    font-size: 1rem;
  }
  
  .btn {
    display: block;
    margin: 8px auto;
    max-width: 250px;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .bandiq-child-avatar img {
    width: 48px;
    height: 48px;
  }
  
  .bandiq-child-label {
    font-size: 0.8rem;
  }
  
  .testimonial-main {
    padding: 24px;
  }
  
  .contact-cta-title {
    font-size: 1.75rem;
  }
  
  .navbar-container {
    padding: 0 16px;
  }
  
  .navbar-brand {
    font-size: 1.2rem;
  }
  
  .navbar-brand img {
    width: 44px;
    height: 44px;
  }
  
  .navbar-brand .by-locateiq {
    font-size: 0.7rem;
  }
  
  .navbar-actions {
    gap: 12px;
  }
  
  .navbar-login, .navbar-master-link {
    padding: 6px 12px;
    font-size: 0.9rem;
  }
  
  .how-works-title {
    font-size: 2rem;
  }
  
  .how-works-subtitle {
    font-size: 1rem;
  }
  
  .step-card {
    padding: 28px 20px 20px 20px;
  }
  
  .step-title {
    font-size: 1.25rem;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
  
  .cta-button {
    padding: 12px 24px;
    font-size: 1rem;
  }
  
  /* Responsividade da seção de localização - DESIGN TECNOLÓGICO */
  .bandiq-locate-section {
    padding: 40px 0 60px 0;
  }
  
  .bandiq-locate-content {
    height: 400px;
    padding: 20px;
  }
  
  .bandiq-logo-img {
    width: 50px;
    height: 50px;
  }
  
  .bandiq-logo-label {
    font-size: 1rem;
  }
  
  .child-avatar-container {
    width: 50px;
    height: 50px;
  }
  
  .child-glow-effect {
    width: 70px;
    height: 70px;
  }
  
  .child-info {
    padding: 4px 8px;
  }
  
  .child-name {
    font-size: 0.7rem;
  }
  
  .child-distance {
    font-size: 0.6rem;
  }
  
  /* Ajuste posicionamento mobile */
  .child-1 { top: 10%; left: 20%; }
  .child-2 { top: 15%; right: 15%; }
  .child-3 { top: 65%; left: 10%; }
  .child-4 { top: 60%; right: 10%; }
  .child-5 { bottom: 15%; left: 25%; }
  .child-6 { bottom: 10%; right: 20%; }
  .child-7 { top: 45%; left: 5%; }
  .child-8 { top: 40%; right: 5%; }
  
  .bandiq-tech-indicators {
    top: 15px;
    right: 15px;
    gap: 6px;
  }
  
  .tech-indicator {
    padding: 4px 8px;
  }
  
  .tech-icon {
    font-size: 0.8rem;
  }
  
  .tech-text {
    font-size: 0.6rem;
  }
}

/* Responsividade para Diferenciais */
@media (max-width: 768px) {
  .bandiq-features-premium {
    padding: 80px 0 60px;
  }
  
  .features-title {
    font-size: 2.2rem;
  }
  
  .features-subtitle {
    font-size: 1.1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .feature-card {
    padding: 32px 24px;
  }
  
  .feature-title {
    font-size: 1.3rem;
  }
  
  .feature-description {
    font-size: 1rem;
  }
  
  .feature-benefits {
    gap: 6px;
  }
  
  .benefit-tag {
    font-size: 0.8rem;
    padding: 4px 10px;
  }
  
  .features-cta {
    padding: 40px 24px;
    border-radius: 24px;
  }
  
  .cta-stats {
    gap: 40px;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-cta, .btn-demo {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .bandiq-features-premium {
    padding: 60px 0 40px;
  }
  
  .features-title {
    font-size: 1.8rem;
  }
  
  .features-subtitle {
    font-size: 1rem;
  }
  
  .feature-card {
    padding: 24px 20px;
  }
  
  .feature-icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  
  .feature-title {
    font-size: 1.2rem;
  }
  
  .feature-description {
    font-size: 0.95rem;
  }
  
  .cta-stats {
    flex-direction: column;
    gap: 20px;
  }
}

/* Responsividade para Depoimentos */
@media (max-width: 768px) {
  .bandiq-testimonials {
    padding: 60px 0;
  }
  
  .bandiq-hero-testimonial {
    padding: 40px 20px;
    margin-bottom: 40px;
  }
  
  .hero-testimonial-quote {
    font-size: 1.4rem;
  }
  
  .hero-avatar-img {
    width: 60px;
    height: 60px;
  }
  
  .hero-avatar-glow {
    width: 90px;
    height: 90px;
  }
  
  .testimonial-stats {
    gap: 20px;
  }
  
  .bandiq-testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .testimonial-card {
    padding: 20px;
  }
  
  .testimonial-cta {
    padding: 30px 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }
  
  /* Responsividade do botão WhatsApp */
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }
  
  .whatsapp-tooltip {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-testimonial-quote {
    font-size: 1.2rem;
  }
  
  .hero-testimonial-author {
    flex-direction: column;
    gap: 10px;
  }
  
  .testimonial-stats {
    flex-direction: column;
    gap: 15px;
  }
  
  .card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
