
* {
  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-interno {
  position: relative;
  background: linear-gradient(145deg, #0a1a3a, #061329, #0a1a3a);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 80px;
}

.hero-interno-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-interno-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Orbs pulsantes */
.hero-interno-orb-1 {
  position: absolute;
  top: -200px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12), transparent 70%);
  border-radius: 50%;
  animation: orbPulse1 18s ease-in-out infinite;
}

.hero-interno-orb-2 {
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.08), transparent 70%);
  border-radius: 50%;
  animation: orbPulse2 22s ease-in-out infinite reverse;
}

.hero-interno-orb-3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.04), transparent 70%);
  border-radius: 50%;
  animation: orbPulse3 15s ease-in-out infinite;
}

@keyframes orbPulse1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50% { transform: translate(-40px, 40px) scale(1.2); opacity: 1; }
}

@keyframes orbPulse2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  50% { transform: translate(40px, -40px) scale(1.15); opacity: 0.8; }
}

@keyframes orbPulse3 {
  0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.6; }
}

.hero-interno-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); }
}

.hero-interno-particulas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle, rgba(59, 130, 246, 0.08) 1px, transparent 1px),
    radial-gradient(circle, rgba(96, 165, 250, 0.05) 1px, transparent 1px);
  background-size: 50px 50px, 80px 80px;
  background-position: 0 0, 40px 40px;
  animation: particulasFloat 20s linear infinite;
}

@keyframes particulasFloat {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(30px, 30px) rotate(2deg); }
}

.hero-interno-anel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  border: 1px solid rgba(59, 130, 246, 0.04);
  border-radius: 50%;
  animation: anelRotate 40s linear infinite;
}

.hero-interno-anel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 20px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 4px;
}

.hero-interno-anel::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 20px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 4px;
}

@keyframes anelRotate {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-interno-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.8rem;
  max-width: 800px;
}

.hero-interno-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  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;
}

.hero-interno-badge-icon {
  font-size: 0.9rem;
}

.hero-interno-titulo {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

.hero-interno-destaque {
  background: linear-gradient(135deg, #3b82f6, #60a5fa, #93bbfc);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.hero-interno-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;
}

.hero-interno-descricao {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 650px;
  margin: 0;
}

.hero-interno-descricao-destaque {
  color: rgba(255, 255, 255, 0.85);
  border-left: 3px solid #3b82f6;
  padding-left: 1.2rem;
}

.hero-interno-btn-wrapper {
  margin-top: 0.5rem;
}

.hero-interno-btn {
  position: relative;
  overflow: hidden;
  padding: 1.1rem 3rem;
  border-radius: 60px;
  font-size: 1.1rem;
  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.5),
    inset 0 0 30px rgba(59, 130, 246, 0.05);
  animation: pulseBtnHero 2s ease-in-out infinite;
}

.hero-interno-btn: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);
}

.hero-interno-btn:active {
  transform: scale(0.95);
}

.hero-interno-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;
}

.hero-interno-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 pulseBtnHero {
  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);
  }
}

@media (max-width: 992px) {
  .hero-interno-titulo {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .hero-interno {
    padding: 80px 0 60px;
    min-height: auto;
  }

  .hero-interno-container {
    padding: 0 1.2rem;
  }

  .hero-interno-content {
    gap: 1.4rem;
    align-items: flex-start;
  }

  .hero-interno-titulo {
    font-size: 2.2rem;
    line-height: 1.15;
  }

  .hero-interno-destaque::after {
    height: 2px;
    bottom: -2px;
  }

  .hero-interno-descricao {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 100%;
  }

  .hero-interno-descricao-destaque {
    padding-left: 0.8rem;
  }

  .hero-interno-btn {
    padding: 0.9rem 2rem;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }

  .hero-interno-btn-wrapper {
    width: 100%;
    max-width: 400px;
  }

  .hero-interno-badge {
    font-size: 0.7rem;
    padding: 0.3rem 1rem;
  }

  .hero-interno-orb-1 {
    width: 350px;
    height: 350px;
    top: -150px;
    right: -100px;
  }

  .hero-interno-orb-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -80px;
  }

  .hero-interno-orb-3 {
    width: 400px;
    height: 400px;
  }

  .hero-interno-anel {
    width: 500px;
    height: 500px;
  }

  .hero-interno-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);
  }

  .hero-interno-particulas {
    background-size: 30px 30px, 50px 50px;
    background-position: 0 0, 25px 25px;
  }
}

@media (max-width: 480px) {
  .hero-interno {
    padding: 60px 0 50px;
  }

  .hero-interno-container {
    padding: 0 1rem;
  }

  .hero-interno-titulo {
    font-size: 1.8rem;
  }

  .hero-interno-descricao {
    font-size: 0.9rem;
  }

  .hero-interno-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .hero-interno-badge {
    font-size: 0.65rem;
    padding: 0.25rem 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-interno-orb-1,
  .hero-interno-orb-2,
  .hero-interno-orb-3 {
    animation: none !important;
  }

  .hero-interno-linhas {
    animation: none !important;
  }

  .hero-interno-particulas {
    animation: none !important;
  }

  .hero-interno-anel {
    animation: none !important;
  }

  .hero-interno-btn {
    animation: none !important;
  }

  .hero-interno-btn-glow {
    animation: none !important;
  }

  .hero-interno-btn-shine {
    animation: none !important;
  }
}


.secao-empresas {
  position: relative;
  background: #0a0a0a;
  padding: 70px 0;
  overflow: hidden;
}

.secao-empresas-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.empresas-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.empresas-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.04), transparent 70%);
  border-radius: 50%;
  animation: glowPulse 15s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.empresas-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(59, 130, 246, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.015) 1px, transparent 1px);
  background-size: 50px 50px;
}

.empresas-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.empresas-servicos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
}

.empresas-titulo {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.02em;
  text-align: center;
}

.empresas-destaque {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.empresas-lista {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 2rem;
  max-width: 700px;
}

.empresas-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.empresas-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border-radius: 50%;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.empresas-divisor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 400px;
}

.empresas-divisor-linha {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.15), transparent);
}

.empresas-divisor-icon {
  font-size: 1.2rem;
  color: rgba(59, 130, 246, 0.25);
  animation: iconPulse 2.5s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.2); }
}

.empresas-atendemos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.empresas-subtitulo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-align: center;
  letter-spacing: -0.01em;
}

.empresas-subtitulo .empresas-destaque {
  background: linear-gradient(135deg, #60a5fa, #93bbfc);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.empresas-grid-categorias {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  max-width: 800px;
}

.empresas-categoria {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  transition: all 0.25s ease;
  cursor: default;
}

.empresas-categoria:hover {
  background: rgba(59, 130, 246, 0.06);
  border-color: rgba(59, 130, 246, 0.12);
  color: #ffffff;
  transform: translateY(-2px);
}

.empresas-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.1);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.empresas-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.2);
}

.empresas-btn-wrapper {
  margin-top: 0.5rem;
}

.empresas-btn {
  position: relative;
  overflow: hidden;
  padding: 1rem 2.5rem;
  border-radius: 60px;
  font-size: 1.05rem;
  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 25px rgba(10, 38, 71, 0.4),
    inset 0 0 25px rgba(59, 130, 246, 0.05);
  animation: pulseBtn 2.2s ease-in-out infinite;
}

.empresas-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.empresas-btn:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 
    0 0 45px rgba(10, 38, 71, 0.6),
    0 0 80px rgba(59, 130, 246, 0.15),
    inset 0 0 35px rgba(59, 130, 246, 0.08);
  background: linear-gradient(135deg, #0d315a, #1a5a9a);
}

.empresas-btn:active {
  transform: scale(0.95);
}

.empresas-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;
}

.empresas-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 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 35px rgba(59, 130, 246, 0.4), 0 0 50px rgba(59, 130, 246, 0.15);
  }
  100% {
    box-shadow: 0 0 20px rgba(10, 38, 71, 0.3);
  }
}

@media (max-width: 768px) {
  .secao-empresas {
    padding: 50px 0;
  }

  .secao-empresas-container {
    padding: 0 1.2rem;
  }

  .empresas-content {
    gap: 2rem;
  }

  .empresas-titulo {
    font-size: 2rem;
  }

  .empresas-lista {
    flex-direction: column;
    gap: 0.6rem;
    width: 100%;
    max-width: 100%;
  }

  .empresas-item {
    font-size: 0.9rem;
    padding: 0.3rem 0;
  }

  .empresas-check {
    width: 20px;
    height: 20px;
    font-size: 0.6rem;
  }

  .empresas-divisor {
    max-width: 200px;
  }

  .empresas-subtitulo {
    font-size: 1.4rem;
  }

  .empresas-grid-categorias {
    gap: 0.4rem;
  }

  .empresas-categoria {
    font-size: 0.75rem;
    padding: 0.35rem 0.8rem;
  }

  .empresas-btn {
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
  }

  .empresas-btn-wrapper {
    width: 100%;
    max-width: 400px;
  }

  .empresas-btn svg {
    width: 20px;
    height: 20px;
  }

  .empresas-glow {
    width: 400px;
    height: 400px;
  }

  .empresas-grid {
    background-size: 30px 30px;
  }
}

@media (max-width: 480px) {
  .secao-empresas {
    padding: 40px 0;
  }

  .secao-empresas-container {
    padding: 0 1rem;
  }

  .empresas-titulo {
    font-size: 1.6rem;
  }

  .empresas-item {
    font-size: 0.85rem;
  }

  .empresas-subtitulo {
    font-size: 1.2rem;
  }

  .empresas-categoria {
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
    border-radius: 16px;
  }

  .empresas-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
  }

  .empresas-btn svg {
    width: 18px;
    height: 18px;
  }

  .empresas-content {
    gap: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .empresas-glow {
    animation: none !important;
  }

  .empresas-divisor-icon {
    animation: none !important;
  }

  .empresas-btn {
    animation: none !important;
  }

  .empresas-btn-glow {
    animation: none !important;
  }

  .empresas-btn-shine {
    animation: none !important;
  }
}

/*resultados*/

.secao-resultados {
  position: relative;
  background: linear-gradient(145deg, #0a1a3a, #061329, #0a1a3a);
  padding: 70px 0 80px;
  overflow: hidden;
}

.secao-resultados-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.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;
}

.resultados-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.8rem;
}


.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;
}

.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;
}

.resultados-subtexto {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  max-width: 650px;
  margin: 0;
}


.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);
}

.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;
}

@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;
  }
}

@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: #0a0a0a;
  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;
  }
}