
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f4f6fa;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-header {
  background: #0b0b0b;
  color: #ffffff;
  padding: 0 2rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.logo-area {
  display: flex;
  align-items: center;
}

.logo-img {
  max-height: 48px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.nav-links li a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.85;
  font-weight: 500;
  position: relative;
  transition: opacity 0.2s;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #3b82f6;
  transition: width 0.25s ease;
}

.nav-links li a:hover {
  opacity: 1;
}

.nav-links li a:hover::after {
  width: 100%;
}

.btn-anuncie {
  background: linear-gradient(135deg, #0a2647, #1a4a8a);
  color: #ffffff !important;
  border: none;
  padding: 0.85rem 2.2rem;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 
    0 0 20px rgba(10, 38, 71, 0.5),
    inset 0 0 20px rgba(59, 130, 246, 0.1);
  animation: pulseSuper 1.8s ease-in-out infinite;
}

.btn-anuncie svg {
  width: 22px;
  height: 22px;
  fill: white;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.btn-anuncie:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 
    0 0 40px rgba(10, 38, 71, 0.7),
    0 0 80px rgba(59, 130, 246, 0.3),
    inset 0 0 30px rgba(59, 130, 246, 0.2);
  background: linear-gradient(135deg, #0d315a, #1a5a9a);
}

.btn-anuncie:active {
  transform: scale(0.95);
}

.btn-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  animation: shineMove 3s ease-in-out infinite;
  z-index: 1;
}

@keyframes shineMove {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

.btn-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 70%);
  animation: glowPulse 2s ease-in-out infinite;
  z-index: 0;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(0.8); opacity: 0.3; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

@keyframes pulseSuper {
  0% {
    box-shadow: 
      0 0 20px rgba(10, 38, 71, 0.5),
      0 0 40px rgba(10, 38, 71, 0.3),
      0 0 60px rgba(10, 38, 71, 0.1);
  }
  50% {
    box-shadow: 
      0 0 30px rgba(10, 38, 71, 0.7),
      0 0 60px rgba(59, 130, 246, 0.3),
      0 0 90px rgba(59, 130, 246, 0.15);
  }
  100% {
    box-shadow: 
      0 0 20px rgba(10, 38, 71, 0.5),
      0 0 40px rgba(10, 38, 71, 0.3),
      0 0 60px rgba(10, 38, 71, 0.1);
  }
}

.desktop-right {
  display: flex;
  align-items: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  background: #ffffff;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #0b0b0b 0%, #1a1a2e 100%);
  z-index: 1000;
  padding: 0;
  transform: translateX(100%);
  visibility: hidden;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s ease, visibility 0s 0.4s;
  overflow-y: auto;
}

.mobile-overlay.open {
  transform: translateX(0%);
  visibility: visible;
  opacity: 1;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s ease, visibility 0s 0s;
}

.mobile-overlay-inner {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 1.5rem 1.8rem 2.5rem;
  gap: 2rem;
}

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-logo-img {
  max-height: 44px;
  width: auto;
}

.mobile-close-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.mobile-close-btn:hover {
  background: rgba(255,255,255,0.12);
  transform: rotate(90deg);
}

.mobile-close-btn svg {
  width: 28px;
  height: 28px;
}

.mobile-welcome {
  text-align: center;
  padding: 0.5rem 0 0.5rem;
}

.mobile-badge {
  display: inline-block;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.mobile-welcome h2 {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.mobile-welcome p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.5;
  max-width: 300px;
  margin: 0 auto;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0;
  margin: 0;
}

.mobile-nav-list li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  transition: all 0.25s ease;
  border: 1px solid rgba(255,255,255,0.05);
  display: block;
}

.mobile-nav-list li a:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(8px);
  border-color: rgba(59, 130, 246, 0.3);
}

.mobile-highlight-card {
  background: linear-gradient(135deg, rgba(10, 38, 71, 0.4), rgba(59, 130, 246, 0.15));
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  backdrop-filter: blur(10px);
}

.card-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.card-content h3 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.card-content p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.4;
}

.mobile-btn-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.btn-anuncie-mobile {
  background: linear-gradient(135deg, #0a2647, #1a4a8a);
  color: #ffffff !important;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  cursor: pointer;
  text-decoration: none;
  width: 100%;
  max-width: 340px;
  line-height: 1.2;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 
    0 0 30px rgba(10, 38, 71, 0.6),
    inset 0 0 30px rgba(59, 130, 246, 0.1);
  animation: pulseSuper 1.8s ease-in-out infinite;
}

.btn-anuncie-mobile svg {
  width: 28px;
  height: 28px;
  fill: white;
  position: relative;
  z-index: 2;
}

.btn-anuncie-mobile:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 
    0 0 50px rgba(10, 38, 71, 0.8),
    0 0 100px rgba(59, 130, 246, 0.3),
    inset 0 0 40px rgba(59, 130, 246, 0.2);
  background: linear-gradient(135deg, #0d315a, #1a5a9a);
}

.btn-anuncie-mobile:active {
  transform: scale(0.95);
}

.btn-shine-mobile {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  animation: shineMove 3s ease-in-out infinite;
  z-index: 1;
}

.btn-glow-mobile {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 70%);
  animation: glowPulse 2s ease-in-out infinite;
  z-index: 0;
}

.btn-subtext {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.3px;
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
  }
  .desktop-right {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .main-header {
    padding: 0 1.5rem;
    height: 74px;
  }
}

@media (min-width: 993px) {
  .mobile-overlay {
    display: none !important;
  }
}

/*hero*/

.hero-section {
  position: relative;
 background: linear-gradient(145deg, #0a1a3a, #061329, #0a1a3a);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* ELEMENTOS DECORATIVOS DE FUNDO */
.hero-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.08);
  animation: floatCircle 20s ease-in-out infinite;
}

.bg-circle-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  border-color: rgba(59, 130, 246, 0.12);
  animation-delay: 0s;
}

.bg-circle-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  border-color: rgba(59, 130, 246, 0.08);
  animation-delay: -5s;
}

.bg-circle-3 {
  width: 300px;
  height: 300px;
  top: 50%;
  right: 30%;
  border-color: rgba(59, 130, 246, 0.06);
  animation-delay: -10s;
}

.bg-circle-4 {
  width: 800px;
  height: 800px;
  top: -300px;
  left: -200px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.03), transparent 70%);
  border: none;
  animation: none;
}

@keyframes floatCircle {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.bg-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}

.bg-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(45deg, transparent 30%, rgba(59, 130, 246, 0.03) 50%, transparent 70%);
  animation: waveMove 15s ease-in-out infinite;
}

@keyframes waveMove {
  0%, 100% { transform: translateX(0) skewX(-2deg); }
  50% { transform: translateX(-50px) skewX(2deg); }
}

.bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* HERO CONTENT - DESKTOP */
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* LADO ESQUERDO */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 60px;
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #88aaff;
  letter-spacing: 0.5px;
  width: fit-content;
  backdrop-filter: blur(10px);
}

.badge-icon {
  font-size: 1rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-highlight {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, transparent);
  border-radius: 4px;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
}

/* BOTÕES */
.hero-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.btn-hero {
  padding: 1rem 2.2rem;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: none;
  line-height: 1.2;
}

.btn-hero svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.btn-whatsapp {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
  animation: pulseSuper 2s ease-in-out infinite;
}

.btn-whatsapp:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.05) translateY(-2px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.3);
}

.btn-primary {
  background: linear-gradient(135deg, #0a2647, #1a4a8a);
  color: #ffffff !important;
  box-shadow: 0 0 30px rgba(10, 38, 71, 0.5);
  animation: pulseSuper 2s ease-in-out infinite;
  animation-delay: 0.5s;
}

.btn-primary:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 0 50px rgba(10, 38, 71, 0.7);
  background: linear-gradient(135deg, #0d315a, #1a5a9a);
}

.btn-glow-hero {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 70%);
  animation: glowPulse 2s ease-in-out infinite;
  z-index: 0;
}

.btn-shine-hero {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.08) 50%, transparent 70%);
  animation: shineMove 3s ease-in-out infinite;
  z-index: 1;
}

@keyframes shineMove {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

@keyframes glowPulse {
  0%, 100% { transform: scale(0.8); opacity: 0.3; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

@keyframes pulseSuper {
  0% { box-shadow: 0 0 20px rgba(10, 38, 71, 0.3); }
  50% { box-shadow: 0 0 30px rgba(59, 130, 246, 0.5); }
  100% { box-shadow: 0 0 20px rgba(10, 38, 71, 0.3); }
}

/* ESTATÍSTICAS */
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

/* LADO DIREITO - IMAGEM DESKTOP */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 580px;
  aspect-ratio: 6/5;
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.hero-image:hover {
  transform: scale(1.02);
}

.hero-image-glow {
  position: absolute;
  top: -20%;
  right: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 70%);
  z-index: 0;
  animation: glowPulseImage 4s ease-in-out infinite;
}

@keyframes glowPulseImage {
  0%, 100% { opacity: 0.3; transform: scale(0.9); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

/* ============================================
   MOBILE COMPLETO (até 768px)
   ============================================ */
@media (max-width: 768px) {
  
  .hero-section {
    padding: 40px 0 50px;
    min-height: auto;
  }

  .hero-container {
    padding: 0 1.2rem;
  }

  /* ELEMENTOS DE FUNDO - sutis */
  .bg-circle-1 {
    width: 250px;
    height: 250px;
    top: -80px;
    right: -60px;
    opacity: 0.3;
  }

  .bg-circle-2 {
    width: 180px;
    height: 180px;
    bottom: -40px;
    left: -40px;
    opacity: 0.2;
  }

  .bg-circle-3 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 5%;
    opacity: 0.15;
  }

  .bg-circle-4 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -80px;
    opacity: 0.2;
  }

  .bg-dots {
    background-size: 25px 25px;
    opacity: 0.2;
  }

  .bg-grid {
    background-size: 30px 30px;
    opacity: 0.3;
  }

  .bg-wave {
    height: 40px;
    opacity: 0.2;
  }

  /* CONTEÚDO - ordem: textos, botões, imagem */
  .hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  /* LADO ESQUERDO - primeiro */
  .hero-left {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
  }

  /* LADO DIREITO - imagem depois */
  .hero-right {
    order: 2;
    width: 100%;
    margin-top: 0.5rem;
  }

  /* BADGE */
  .hero-badge {
    font-size: 0.7rem;
    padding: 0.4rem 1rem;
    gap: 0.4rem;
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.12);
    width: auto;
    display: inline-flex;
  }

  .badge-icon {
    font-size: 0.8rem;
  }

  /* TÍTULO */
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
  }

  .hero-highlight {
    display: inline;
  }

  .hero-highlight::after {
    height: 2px;
    bottom: 0;
  }

  /* DESCRIÇÃO */
  .hero-description {
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 100%;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
  }

  /* BOTÕES - em coluna */
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    margin-top: 0.2rem;
  }

  .btn-hero {
    width: 100%;
    padding: 0.9rem 1.5rem;
    font-size: 0.9rem;
    justify-content: center;
    gap: 10px;
    border-radius: 60px;
    min-height: 50px;
  }

  .btn-hero svg {
    width: 20px;
    height: 20px;
  }

  .btn-whatsapp {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
  }

  .btn-whatsapp:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.01);
  }

  .btn-primary {
    background: linear-gradient(135deg, #0a2647, #1a4a8a);
  }

  .btn-primary:hover {
    transform: scale(1.01);
  }

  /* Remover efeitos pesados no mobile */
  .btn-glow-hero {
    display: none;
  }

  .btn-shine-hero {
    opacity: 0.2;
    animation-duration: 4s;
  }

  .btn-whatsapp,
  .btn-primary {
    animation: pulseMobile 2.5s ease-in-out infinite;
  }

  @keyframes pulseMobile {
    0%, 100% { box-shadow: 0 0 10px rgba(10, 38, 71, 0.15); }
    50% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.25); }
  }

  /* ESTATÍSTICAS */
  .hero-stats {
    display: flex;
    justify-content: space-around;
    gap: 0.8rem;
    padding-top: 1rem;
    margin-top: 0.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
  }

  .stat-item {
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 50px;
  }

  .stat-number {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.1rem;
    letter-spacing: 0.2px;
  }

  /* ==========================================
     IMAGEM - 100% SEM CORTES
     ========================================== */
  .hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    aspect-ratio: auto !important;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  }

  .hero-image-placeholder {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    overflow: hidden;
    display: block;
  }

  .hero-image {
    width: 100%;
    height: auto;
    object-fit: contain !important;
    display: block;
  }

  .hero-image-glow {
    display: none;
  }

  .hero-right {
    margin-top: 0.8rem;
  }

  /* ANIMAÇÃO DE ENTRADA */
  .hero-left,
  .hero-right {
    opacity: 0;
    transform: translateY(15px);
    animation: fadeUpMobile 0.6s ease forwards;
  }

  .hero-left {
    animation-delay: 0.05s;
  }

  .hero-right {
    animation-delay: 0.2s;
  }

  @keyframes fadeUpMobile {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero-left[style*="opacity"],
  .hero-right[style*="opacity"] {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

/* ============================================
   SMALL MOBILE (até 380px)
   ============================================ */
@media (max-width: 380px) {
  
  .hero-title {
    font-size: 1.5rem;
  }

  .hero-description {
    font-size: 0.85rem;
  }

  .btn-hero {
    font-size: 0.8rem;
    padding: 0.8rem 1rem;
    min-height: 44px;
    gap: 8px;
  }

  .btn-hero svg {
    width: 18px;
    height: 18px;
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 0.35rem 0.8rem;
  }

  .stat-number {
    font-size: 1.1rem;
  }

  .stat-label {
    font-size: 0.6rem;
  }

  .hero-stats {
    gap: 0.5rem;
  }

  .hero-image-wrapper {
    border-radius: 12px;
  }

  .hero-image-placeholder {
    border-radius: 12px;
  }

  .hero-container {
    padding: 0 0.8rem;
  }

  .hero-section {
    padding: 30px 0 40px;
  }
}

/* ============================================
   SUPORTE A PREFERÊNCIA DE MOVIMENTO
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .hero-left,
  .hero-right {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .btn-whatsapp,
  .btn-primary {
    animation: none !important;
  }

  .btn-shine-hero {
    animation: none !important;
    display: none;
  }
}

/* ============================================
   CORREÇÕES FINAS
   ============================================ */
@media (max-width: 768px) {
  
  .hero-section {
    overflow-x: hidden;
  }

  .hero-bg-elements {
    overflow: hidden;
  }

  .hero-left {
    gap: 1rem;
  }

  .hero-left > * {
    margin: 0;
  }

  .hero-buttons {
    gap: 0.7rem;
  }

  .hero-stats {
    gap: 0.4rem;
    padding-top: 0.8rem;
  }

  .hero-image-placeholder {
    border-radius: 14px;
  }
}

/* ============================================
   GARANTIR IMAGEM 100% SEM CORTES
   ============================================ */
@media (max-width: 768px) {
  .hero-image-wrapper,
  .hero-image-placeholder,
  .hero-image {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: auto !important;
  }

  .hero-image {
    object-fit: contain !important;
    max-width: 100% !important;
    max-height: 100% !important;
  }

  .hero-image-wrapper {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================
   SEÇÃO: COMO PODEMOS AJUDAR SUA EMPRESA
   Fundo preto com design inovador
   ============================================ */

/* BASE */
.secao-ajuda {
  position: relative;
  background: #0a0a0a;
  padding: 80px 0;
  overflow: hidden;
}

.secao-ajuda-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* ELEMENTOS DECORATIVOS DE FUNDO */
.ajuda-bg-effects {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ajuda-glow-1 {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08), transparent 70%);
  border-radius: 50%;
  animation: glowFloat 15s ease-in-out infinite;
}

.ajuda-glow-2 {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.05), transparent 70%);
  border-radius: 50%;
  animation: glowFloat 20s ease-in-out infinite reverse;
}

@keyframes glowFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}

.ajuda-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(59, 130, 246, 0.02) 40px, rgba(59, 130, 246, 0.02) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(59, 130, 246, 0.02) 40px, rgba(59, 130, 246, 0.02) 41px);
  opacity: 0.5;
}

/* CONTEÚDO */
.ajuda-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* INTRO */
.ajuda-intro {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ajuda-titulo-principal {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 900px;
}

.ajuda-destaque {
  background: linear-gradient(135deg, #3b82f6, #60a5fa, #93bbfc);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.ajuda-destaque::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, transparent);
  border-radius: 3px;
  -webkit-text-fill-color: transparent;
}

.ajuda-descricao {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 650px;
  margin: 0;
}

/* BENEFÍCIOS - lista com check */
.ajuda-beneficios {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2.5rem;
}

.ajuda-beneficio-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.ajuda-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border-radius: 50%;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

/* DIVISOR VISUAL */
.ajuda-divisor {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0.5rem 0;
}

.ajuda-divisor-texto {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.25);
  white-space: nowrap;
}

.ajuda-divisor-linha {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.2), transparent);
}

/* SERVIÇOS - GRID */
.ajuda-servicos {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ajuda-subtitulo {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.01em;
}

.ajuda-subtitulo::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  border-radius: 4px;
  margin-top: 0.5rem;
}

.ajuda-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.ajuda-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s ease;
}

.ajuda-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(59, 130, 246, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.ajuda-card-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.1rem;
}

.ajuda-card-texto {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.ajuda-card-destaque {
  grid-column: span 3;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(37, 99, 235, 0.03));
  border-color: rgba(59, 130, 246, 0.15);
}

.ajuda-card-destaque:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(37, 99, 235, 0.05));
  border-color: rgba(59, 130, 246, 0.3);
}

/* BOTÃO CHAMATIVO */
.ajuda-btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.ajuda-btn-principal {
  position: relative;
  overflow: hidden;
  padding: 1.2rem 3.5rem;
  border-radius: 60px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #0a2647, #1a4a8a);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  border: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 
    0 0 30px rgba(10, 38, 71, 0.6),
    inset 0 0 30px rgba(59, 130, 246, 0.05);
  animation: pulseButton 2s ease-in-out infinite;
}

.ajuda-btn-principal:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 
    0 0 50px rgba(10, 38, 71, 0.8),
    0 0 100px rgba(59, 130, 246, 0.2),
    inset 0 0 40px rgba(59, 130, 246, 0.1);
  background: linear-gradient(135deg, #0d315a, #1a5a9a);
}

.ajuda-btn-principal:active {
  transform: scale(0.96);
}

/* Efeitos do botão */
.ajuda-btn-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2), transparent 70%);
  animation: glowPulseBtn 2s ease-in-out infinite;
  z-index: 0;
}

.ajuda-btn-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.05) 50%,
    transparent 70%
  );
  animation: shineMoveBtn 3s ease-in-out infinite;
  z-index: 1;
}

@keyframes shineMoveBtn {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

@keyframes glowPulseBtn {
  0%, 100% { transform: scale(0.8); opacity: 0.3; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

@keyframes pulseButton {
  0% {
    box-shadow: 0 0 20px rgba(10, 38, 71, 0.4);
  }
  50% {
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.5), 0 0 60px rgba(59, 130, 246, 0.2);
  }
  100% {
    box-shadow: 0 0 20px rgba(10, 38, 71, 0.4);
  }
}

/* ============================================
   RESPONSIVO - MOBILE
   ============================================ */
@media (max-width: 992px) {
  .ajuda-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ajuda-card-destaque {
    grid-column: span 2;
  }

  .ajuda-titulo-principal {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .secao-ajuda {
    padding: 50px 0;
  }

  .secao-ajuda-container {
    padding: 0 1.2rem;
  }

  .ajuda-content {
    gap: 2rem;
  }

  .ajuda-titulo-principal {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .ajuda-descricao {
    font-size: 1rem;
    line-height: 1.6;
  }

  .ajuda-beneficios {
    flex-direction: column;
    gap: 0.8rem;
  }

  .ajuda-beneficio-item {
    font-size: 0.95rem;
  }

  .ajuda-divisor {
    gap: 1rem;
    margin: 0;
  }

  .ajuda-divisor-texto {
    font-size: 0.7rem;
  }

  .ajuda-subtitulo {
    font-size: 1.5rem;
  }

  .ajuda-subtitulo::after {
    width: 40px;
    height: 3px;
  }

  .ajuda-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .ajuda-card {
    padding: 1.2rem;
    border-radius: 12px;
  }

  .ajuda-card-destaque {
    grid-column: span 1;
  }

  .ajuda-card-icon {
    font-size: 1.5rem;
  }

  .ajuda-card-texto {
    font-size: 0.9rem;
  }

  .ajuda-btn-principal {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 320px;
  }

  .ajuda-btn-wrapper {
    width: 100%;
  }

  .ajuda-glow-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
  }

  .ajuda-glow-2 {
    width: 250px;
    height: 250px;
    bottom: -80px;
    left: -80px;
  }

  .ajuda-lines {
    background-image: 
      repeating-linear-gradient(0deg, transparent, transparent 30px, rgba(59, 130, 246, 0.015) 30px, rgba(59, 130, 246, 0.015) 31px),
      repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(59, 130, 246, 0.015) 30px, rgba(59, 130, 246, 0.015) 31px);
  }
}

@media (max-width: 480px) {
  .secao-ajuda {
    padding: 40px 0;
  }

  .secao-ajuda-container {
    padding: 0 1rem;
  }

  .ajuda-titulo-principal {
    font-size: 1.5rem;
  }

  .ajuda-descricao {
    font-size: 0.9rem;
  }

  .ajuda-beneficio-item {
    font-size: 0.85rem;
  }

  .ajuda-check {
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
  }

  .ajuda-subtitulo {
    font-size: 1.3rem;
  }

  .ajuda-card {
    padding: 1rem;
  }

  .ajuda-card-texto {
    font-size: 0.85rem;
  }

  .ajuda-btn-principal {
    padding: 0.9rem 1.5rem;
    font-size: 0.9rem;
    max-width: 280px;
  }
}

/* ============================================
   SUPORTE A PREFERÊNCIA DE MOVIMENTO
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .ajuda-glow-1,
  .ajuda-glow-2 {
    animation: none !important;
  }

  .ajuda-btn-principal {
    animation: none !important;
  }

  .ajuda-btn-glow {
    animation: none !important;
  }

  .ajuda-btn-shine {
    animation: none !important;
  }
}

/* ============================================
   SEÇÃO: GOOGLE ADS PARA PRESTADORES
   Fundo preto com design inovador
   ============================================ */

/* BASE */
.secao-prestadores {
  position: relative;
 background: linear-gradient(145deg, #0a1a3a, #061329, #0a1a3a);
  padding: 80px 0;
  overflow: hidden;
}

.secao-prestadores-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* ELEMENTOS DECORATIVOS */
.prestadores-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.prestadores-glow-1 {
  position: absolute;
  top: -200px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.05), transparent 70%);
  border-radius: 50%;
  animation: glowFloat 18s ease-in-out infinite;
}

.prestadores-glow-2 {
  position: absolute;
  bottom: -150px;
  left: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.03), transparent 70%);
  border-radius: 50%;
  animation: glowFloat 22s ease-in-out infinite reverse;
}

@keyframes glowFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}

.prestadores-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(59, 130, 246, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
}

.prestadores-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.02), transparent 70%);
  border-radius: 50%;
  animation: orbPulse 15s ease-in-out infinite;
}

@keyframes orbPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

/* CONTEÚDO */
.prestadores-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* HEADER */
.prestadores-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.prestadores-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #60a5fa;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: 60px;
  padding: 0.4rem 1.2rem;
}

.prestadores-titulo {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

.prestadores-destaque {
  background: linear-gradient(135deg, #3b82f6, #60a5fa, #93bbfc);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.prestadores-destaque::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  border-radius: 3px;
  -webkit-text-fill-color: transparent;
}

.prestadores-subtexto {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* GRID DE SERVIÇOS */
.prestadores-grid-servicos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.8rem;
  padding: 0.5rem 0;
}

.prestadores-categoria {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 0.8rem 1.2rem;
  transition: all 0.3s ease;
  cursor: default;
}

.prestadores-categoria:hover {
  background: rgba(59, 130, 246, 0.06);
  border-color: rgba(59, 130, 246, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.prestadores-categoria-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  line-height: 1;
}

.prestadores-categoria-nome {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.2;
}

.prestadores-categoria-destaque {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(96, 165, 250, 0.04));
  border-color: rgba(59, 130, 246, 0.12);
  grid-column: span 2;
}

.prestadores-categoria-destaque:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(96, 165, 250, 0.06));
  border-color: rgba(59, 130, 246, 0.25);
}

/* DIVISOR */
.prestadores-divisor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.5rem 0;
}

.prestadores-divisor-linha {
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.15), transparent);
}

.prestadores-divisor-icon {
  font-size: 1.5rem;
  color: rgba(59, 130, 246, 0.3);
  animation: pulseIcon 2s ease-in-out infinite;
}

@keyframes pulseIcon {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.2); }
}

/* COMO FUNCIONA */
.prestadores-como-funciona {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.prestadores-subtitulo {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin: 0;
  letter-spacing: -0.01em;
}

.prestadores-subtitulo::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  border-radius: 4px;
  margin: 0.5rem auto 0;
}

.prestadores-passos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.prestadores-passo {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.prestadores-passo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.prestadores-passo:hover {
  background: rgba(59, 130, 246, 0.04);
  border-color: rgba(59, 130, 246, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.prestadores-passo:hover::before {
  opacity: 1;
}

.prestadores-passo-numero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
}

.prestadores-passo-content {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  flex: 1;
}

.prestadores-passo-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.prestadores-passo-content > div {
  flex: 1;
}

.prestadores-passo-titulo {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.3rem 0;
}

.prestadores-passo-desc {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ============================================
   RESPONSIVO - MOBILE
   ============================================ */
@media (max-width: 992px) {
  .prestadores-titulo {
    font-size: 2.5rem;
  }

  .prestadores-passos {
    grid-template-columns: repeat(2, 1fr);
  }

  .prestadores-categoria-destaque {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .secao-prestadores {
    padding: 50px 0;
  }

  .secao-prestadores-container {
    padding: 0 1.2rem;
  }

  .prestadores-content {
    gap: 2rem;
  }

  .prestadores-titulo {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .prestadores-destaque::after {
    height: 2px;
    bottom: -2px;
  }

  .prestadores-subtexto {
    font-size: 1rem;
  }

  .prestadores-grid-servicos {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 0.6rem;
  }

  .prestadores-categoria {
    padding: 0.6rem 1rem;
    border-radius: 10px;
  }

  .prestadores-categoria-icon {
    font-size: 1rem;
  }

  .prestadores-categoria-nome {
    font-size: 0.8rem;
  }

  .prestadores-categoria-destaque {
    grid-column: span 1;
  }

  .prestadores-subtitulo {
    font-size: 1.6rem;
  }

  .prestadores-subtitulo::after {
    width: 40px;
    height: 3px;
  }

  .prestadores-passos {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .prestadores-passo {
    padding: 1.2rem;
  }

  .prestadores-passo-numero {
    min-width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }

  .prestadores-passo-icon {
    font-size: 1.2rem;
  }

  .prestadores-passo-titulo {
    font-size: 1rem;
  }

  .prestadores-passo-desc {
    font-size: 0.9rem;
  }

  .prestadores-divisor-linha {
    max-width: 80px;
  }

  .prestadores-divisor-icon {
    font-size: 1.2rem;
  }

  .prestadores-glow-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -80px;
  }

  .prestadores-glow-2 {
    width: 250px;
    height: 250px;
    bottom: -80px;
    left: -60px;
  }

  .prestadores-grid {
    background-size: 30px 30px;
  }

  .prestadores-orb {
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 480px) {
  .secao-prestadores {
    padding: 40px 0;
  }

  .secao-prestadores-container {
    padding: 0 1rem;
  }

  .prestadores-titulo {
    font-size: 1.5rem;
  }

  .prestadores-badge {
    font-size: 0.65rem;
    padding: 0.3rem 0.8rem;
  }

  .prestadores-grid-servicos {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .prestadores-categoria {
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
  }

  .prestadores-categoria-nome {
    font-size: 0.75rem;
  }

  .prestadores-subtitulo {
    font-size: 1.3rem;
  }

  .prestadores-passo {
    padding: 1rem;
  }

  .prestadores-passo-content {
    gap: 0.6rem;
  }
}

/* ============================================
   SUPORTE A PREFERÊNCIA DE MOVIMENTO
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .prestadores-glow-1,
  .prestadores-glow-2 {
    animation: none !important;
  }

  .prestadores-orb {
    animation: none !important;
  }

  .prestadores-divisor-icon {
    animation: none !important;
  }
}


/*resultados*/

.secao-resultados {
  position: relative;
   background: #0a0a0a;
  padding: 70px 0 80px;
  overflow: hidden;
}

.secao-resultados-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* ============================================
   ELEMENTOS DECORATIVOS
   ============================================ */
.resultados-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.resultados-orb-1 {
  position: absolute;
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08), transparent 70%);
  border-radius: 50%;
  animation: orbFloat1 18s ease-in-out infinite;
}

.resultados-orb-2 {
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.05), transparent 70%);
  border-radius: 50%;
  animation: orbFloat2 22s ease-in-out infinite reverse;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50% { transform: translate(-30px, 30px) scale(1.1); opacity: 1; }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  50% { transform: translate(30px, -30px) scale(1.15); opacity: 0.8; }
}

.resultados-linhas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(59, 130, 246, 0.03) 40px, rgba(59, 130, 246, 0.03) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(59, 130, 246, 0.03) 40px, rgba(59, 130, 246, 0.03) 41px);
  animation: linhasMove 30s linear infinite;
}

@keyframes linhasMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(40px, 40px); }
}

.resultados-particulas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle, rgba(59, 130, 246, 0.06) 1px, transparent 1px),
    radial-gradient(circle, rgba(96, 165, 250, 0.04) 1px, transparent 1px);
  background-size: 50px 50px, 80px 80px;
  background-position: 0 0, 40px 40px;
}

/* ============================================
   CONTEÚDO
   ============================================ */
.resultados-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.8rem;
}

/* BADGE */
.resultados-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #60a5fa;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: 60px;
  padding: 0.4rem 1.2rem;
}

.resultados-badge-icon {
  font-size: 0.9rem;
}

/* TÍTULO */
.resultados-titulo {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 800px;
}

.resultados-destaque {
  background: linear-gradient(135deg, #3b82f6, #60a5fa, #93bbfc);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.resultados-destaque::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  border-radius: 3px;
  -webkit-text-fill-color: transparent;
}

/* SUBTEXTO */
.resultados-subtexto {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  max-width: 650px;
  margin: 0;
}

/* ============================================
   IMAGEM DO GRÁFICO - 100%
   ============================================ */
.resultados-imagem-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0.5rem auto 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.08);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.02);
}

.resultados-imagem-placeholder {
  width: 100%;
  display: block;
  line-height: 0;
}

.resultados-imagem {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.resultados-imagem:hover {
  transform: scale(1.01);
}

/* ============================================
   MÉTRICAS DE DESTAQUE
   ============================================ */
.resultados-metricas {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.resultados-metrica {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.resultados-metrica-numero {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.resultados-metrica-label {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.3px;
}

/* ============================================
   RESPONSIVO - MOBILE
   ============================================ */
@media (max-width: 992px) {
  .resultados-titulo {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .secao-resultados {
    padding: 50px 0 60px;
  }

  .secao-resultados-container {
    padding: 0 1.2rem;
  }

  .resultados-content {
    gap: 1.4rem;
  }

  .resultados-titulo {
    font-size: 1.8rem;
    line-height: 1.15;
  }

  .resultados-destaque::after {
    height: 2px;
    bottom: -2px;
  }

  .resultados-subtexto {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .resultados-imagem-wrapper {
    border-radius: 12px;
  }

  .resultados-metricas {
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 1rem;
  }

  .resultados-metrica-numero {
    font-size: 1.6rem;
  }

  .resultados-metrica-label {
    font-size: 0.7rem;
  }

  .resultados-badge {
    font-size: 0.65rem;
    padding: 0.3rem 1rem;
  }

  .resultados-orb-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -80px;
  }

  .resultados-orb-2 {
    width: 250px;
    height: 250px;
    bottom: -80px;
    left: -60px;
  }

  .resultados-linhas {
    background-image: 
      repeating-linear-gradient(0deg, transparent, transparent 25px, rgba(59, 130, 246, 0.03) 25px, rgba(59, 130, 246, 0.03) 26px),
      repeating-linear-gradient(90deg, transparent, transparent 25px, rgba(59, 130, 246, 0.03) 25px, rgba(59, 130, 246, 0.03) 26px);
  }

  .resultados-particulas {
    background-size: 30px 30px, 50px 50px;
    background-position: 0 0, 25px 25px;
  }
}

@media (max-width: 480px) {
  .secao-resultados {
    padding: 40px 0 50px;
  }

  .secao-resultados-container {
    padding: 0 1rem;
  }

  .resultados-titulo {
    font-size: 1.5rem;
  }

  .resultados-subtexto {
    font-size: 0.85rem;
  }

  .resultados-metricas {
    gap: 1.5rem;
  }

  .resultados-metrica-numero {
    font-size: 1.3rem;
  }

  .resultados-metrica-label {
    font-size: 0.65rem;
  }

  .resultados-imagem-wrapper {
    border-radius: 10px;
  }
}

/* ============================================
   SUPORTE A PREFERÊNCIA DE MOVIMENTO
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .resultados-orb-1,
  .resultados-orb-2 {
    animation: none !important;
  }

  .resultados-linhas {
    animation: none !important;
  }

  .resultados-imagem {
    transition: none !important;
  }
}

.secao-topo {
  position: relative;
  background: linear-gradient(145deg, #0a1a3a, #061329, #0a1a3a);
  padding: 80px 0 70px;
  overflow: hidden;
}

.secao-topo-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.topo-bg-effects {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.topo-glow-1 {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06), transparent 70%);
  border-radius: 50%;
  animation: floatGlow 20s ease-in-out infinite;
}

.topo-glow-2 {
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.04), transparent 70%);
  border-radius: 50%;
  animation: floatGlow 25s ease-in-out infinite reverse;
}

@keyframes floatGlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -40px) scale(1.1); }
}

.topo-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle, rgba(59, 130, 246, 0.06) 1px, transparent 1px),
    radial-gradient(circle, rgba(96, 165, 250, 0.04) 1px, transparent 1px);
  background-size: 50px 50px, 80px 80px;
  background-position: 0 0, 40px 40px;
}

.topo-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2.5rem;
}

.topo-frase-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  max-width: 850px;
}

.topo-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #60a5fa;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 60px;
  padding: 0.4rem 1.2rem;
}

.topo-titulo {
  font-size: 3.2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

.topo-destaque {
  background: linear-gradient(135deg, #3b82f6, #60a5fa, #93bbfc);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.topo-destaque::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  border-radius: 3px;
  -webkit-text-fill-color: transparent;
}

.topo-subtexto {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 620px;
  margin: 0;
}

.topo-botoes {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 750px;
}

.topo-btn {
  position: relative;
  overflow: hidden;
  padding: 1.1rem 2.5rem;
  border-radius: 60px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  border: none;
  flex: 1;
  min-width: 220px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.topo-btn-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.topo-btn-google {
  background: linear-gradient(135deg, #0a2647, #1a4a8a);
  box-shadow: 
    0 0 30px rgba(10, 38, 71, 0.5),
    inset 0 0 30px rgba(59, 130, 246, 0.05);
  animation: pulseBtn 2.5s ease-in-out infinite;
}

.topo-btn-google:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 
    0 0 50px rgba(10, 38, 71, 0.7),
    0 0 100px rgba(59, 130, 246, 0.2),
    inset 0 0 40px rgba(59, 130, 246, 0.1);
  background: linear-gradient(135deg, #0d315a, #1a5a9a);
}

.topo-btn-trafego {
  background: linear-gradient(135deg, #1a1a3e, #2a1a5e, #1a4a8a);
  box-shadow: 
    0 0 30px rgba(59, 130, 246, 0.3),
    inset 0 0 30px rgba(96, 165, 250, 0.05);
  animation: pulseBtn 2.5s ease-in-out infinite;
  animation-delay: 0.5s;
}

.topo-btn-trafego:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 
    0 0 50px rgba(59, 130, 246, 0.5),
    0 0 100px rgba(96, 165, 250, 0.2),
    inset 0 0 40px rgba(96, 165, 250, 0.1);
  background: linear-gradient(135deg, #2a1a4e, #3a1a6e, #1a5a9a);
}

.topo-btn:active {
  transform: scale(0.95);
}

.topo-btn-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 70%);
  animation: glowPulseBtn 2s ease-in-out infinite;
  z-index: 0;
}

.topo-btn-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 70%
  );
  animation: shineMoveBtn 3.5s ease-in-out infinite;
  z-index: 1;
}

@keyframes shineMoveBtn {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

@keyframes glowPulseBtn {
  0%, 100% { transform: scale(0.8); opacity: 0.3; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

@keyframes pulseBtn {
  0% {
    box-shadow: 0 0 20px rgba(10, 38, 71, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.4), 0 0 60px rgba(59, 130, 246, 0.15);
  }
  100% {
    box-shadow: 0 0 20px rgba(10, 38, 71, 0.3);
  }
}

.topo-saiba-wrapper {
  margin-top: 0.5rem;
}

.topo-saiba {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.3rem 0.5rem;
  border-bottom: 2px solid transparent;
  position: relative;
}

.topo-saiba::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  transition: width 0.3s ease;
}

.topo-saiba:hover {
  color: #60a5fa;
}

.topo-saiba:hover::after {
  width: 100%;
}

.topo-saiba:hover .topo-saiba-arrow {
  transform: translateX(5px);
}

.topo-saiba-texto {
  position: relative;
  z-index: 1;
}

.topo-saiba-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .topo-titulo {
    font-size: 2.8rem;
  }

  .topo-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    min-width: 180px;
  }
}

@media (max-width: 768px) {
  .secao-topo {
    padding: 50px 0 45px;
  }

  .secao-topo-container {
    padding: 0 1.2rem;
  }

  .topo-content {
    gap: 2rem;
  }

  .topo-frase-wrapper {
    gap: 1rem;
  }

  .topo-titulo {
    font-size: 2rem;
    line-height: 1.2;
  }

  .topo-destaque::after {
    height: 2px;
    bottom: -2px;
  }

  .topo-subtexto {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 100%;
  }

  .topo-badge {
    font-size: 0.7rem;
    padding: 0.3rem 1rem;
  }

  .topo-botoes {
    flex-direction: column;
    gap: 0.8rem;
    max-width: 100%;
  }

  .topo-btn {
    width: 100%;
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
    min-width: unset;
    flex: none;
  }

  .topo-btn-icon {
    font-size: 1.1rem;
  }

  .topo-saiba {
    font-size: 0.9rem;
  }

  .topo-saiba-arrow {
    width: 18px;
    height: 18px;
  }

  .topo-glow-1 {
    width: 350px;
    height: 350px;
    top: -150px;
    right: -100px;
  }

  .topo-glow-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -80px;
  }

  .topo-particles {
    background-size: 30px 30px, 50px 50px;
    background-position: 0 0, 25px 25px;
  }
}

@media (max-width: 480px) {
  .secao-topo {
    padding: 40px 0 35px;
  }

  .secao-topo-container {
    padding: 0 1rem;
  }

  .topo-titulo {
    font-size: 1.6rem;
  }

  .topo-subtexto {
    font-size: 0.9rem;
  }

  .topo-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.85rem;
  }

  .topo-btn-icon {
    font-size: 1rem;
  }

  .topo-saiba {
    font-size: 0.85rem;
  }

  .topo-content {
    gap: 1.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .topo-glow-1,
  .topo-glow-2 {
    animation: none !important;
  }

  .topo-btn-google,
  .topo-btn-trafego {
    animation: none !important;
  }

  .topo-btn-glow {
    animation: none !important;
  }

  .topo-btn-shine {
    animation: none !important;
  }
}

/*footer*/

.footer-simples {
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 30px 0 0 0;
}

.footer-simples-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.footer-simples-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-simples-logo-img {
  max-height: 32px;
  width: auto;
  display: block;
}

.footer-simples-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.footer-simples-nome {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.footer-simples-desc {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}

.footer-simples-contatos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-top: 2px;
}

.footer-simples-contato {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}

.footer-simples-contato:hover {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.footer-simples-copy {
  background: #0a0a0a;
  padding: 12px 0;
  text-align: center;
}

.footer-simples-copy-texto {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.3px;
}


@media (max-width: 768px) {
  .footer-simples {
    padding: 25px 0 0 0;
  }

  .footer-simples-container {
    padding: 0 1.2rem 20px;
    gap: 10px;
  }

  .footer-simples-logo-img {
    max-height: 28px;
  }

  .footer-simples-nome {
    font-size: 0.9rem;
  }

  .footer-simples-desc {
    font-size: 0.78rem;
  }

  .footer-simples-contatos {
    gap: 4px 14px;
  }

  .footer-simples-contato {
    font-size: 0.72rem;
    white-space: normal;
  }

  .footer-simples-copy {
    padding: 10px 0;
  }

  .footer-simples-copy-texto {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .footer-simples {
    padding: 20px 0 0 0;
  }

  .footer-simples-container {
    padding: 0 1rem 16px;
    gap: 8px;
  }

  .footer-simples-logo-img {
    max-height: 24px;
  }

  .footer-simples-nome {
    font-size: 0.8rem;
  }

  .footer-simples-desc {
    font-size: 0.7rem;
  }

  .footer-simples-contatos {
    flex-direction: column;
    gap: 3px;
  }

  .footer-simples-contato {
    font-size: 0.68rem;
  }

  .footer-simples-copy {
    padding: 8px 0;
  }

  .footer-simples-copy-texto {
    font-size: 0.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-simples-contato {
    transition: none !important;
  }
}