    body {
      font-family: 'Manrope', sans-serif;
      background: #090c14;
      color: #e0e0e0;
      margin: 0;
      overflow-x: hidden;
      position: relative;
    }

    body::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: 
        radial-gradient(circle at 20% 30%, rgba(78, 161, 211, 0.18), transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(120, 200, 255, 0.1), transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(180, 120, 255, 0.08), transparent 60%), /* lilás suave */
        conic-gradient(from 180deg at 50% 50%, rgba(78, 161, 211, 0.12), transparent 50%, rgba(180, 120, 255, 0.05)),
        radial-gradient(circle at 60% 80%, rgba(255, 255, 255, 0.04), transparent 60%);
      animation: rotateBG 60s linear infinite;
      z-index: -1;
      filter: blur(80px);
      mix-blend-mode: screen;
    }

    @keyframes rotateBG {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
    header {
      position: absolute;
      top: 0;
      width: 100%;
      transition: top 0.3s ease;
      background: transparent;
      z-index: 50;
    }
    .logo-img { height: 80px; }
    nav a {
      color: #e0e0e0;
      position: relative;
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
    }
    nav a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: #4ea1d3;
      transition: width 0.3s ease;
    }
    nav a:hover::after {
      width: 100%;
    }
    .btn-primary {
      background-color: #4ea1d3;
      color: #0b0f19;
      padding: 0.5rem 1rem;
      border-radius: 9999px;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 700;
      font-size: 1rem;
      user-select: none;
    }
    .btn-primary:hover {
      background-color: #76c0ed;
    }
    .arrow {
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  display: inline-block;  
  padding: 4px;
  transform: rotate(-45deg);
  margin-top: 2px;
}

    main {
      padding-top: 2rem;
      max-width: 1280px;
      margin: 0 auto;
      padding-left: 1.5rem;
      padding-right: 1.5rem;
      padding-bottom: 2rem;
    }
    section {
      padding: 4rem 0;
    }
    h2, h3 {
      font-weight: 800;
      color: #e0e0e0;
    }
    h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }
    h3 {
      font-size: 1.75rem;
      margin-bottom: 1.5rem;
    }
    p, li {
      font-weight: 400;
      line-height: 1.5;
      color: #cfd7e0;
      font-size: 1rem;
    }
    ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
.servicos-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.service-step {
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid #bbd3eb;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(137, 158, 184, 0.281);
  padding: 20px 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(137, 161, 184, 0.3);
}

.service-step h3 {
  color: #ffffff; /* tom lilás escuro */
  margin-bottom: 8px;
}

.service-step p {
  color:  #cfd7e0;
  line-height: 1.5;
}


    details {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 0.5rem;
      margin-bottom: 1rem;
      overflow: hidden;
      transition: max-height 0.3s ease;
      cursor: pointer;
    }
    details summary {
      cursor: pointer;
      padding: 1rem 1.5rem;
      font-weight: 600;
      color: #e0e0e0;
      list-style: none;
      font-size: 1.1rem;
    }
    details p {
      padding: 0 1.5rem 1rem;
      color: #cfd7e0;
      font-weight: 400;
      font-size: 1rem;
    }
    #processos {
      position: relative;
      max-width: 600px;
      margin: 0 auto 5rem;
      padding-left: 48px;
      height: auto;
      overflow-y: visible;
    }
    #processos .timeline-line {
      position: absolute;
      top: 3.5rem;
      left: 24px;
      width: 6px;
      height: 100%;
      background: #4b5563;
      border-radius: 9999px;
      z-index: 5;
    }
    #processos #progress-line {
      position: absolute;
      top: 3.5rem;
      left: 24px;
      width: 6px;
      height: 0;
      background-color: #4ea1d3;
      border-radius: 9999px;
      z-index: 6;
      transition: height 0.25s ease-out;
    }
    #processos .timeline-container {
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
      position: relative;
      z-index: 10;
    }
    #processos .timeline-step {
      background: rgba(255 255 255 / 0.05);
      padding: 2rem;
      border-radius: 0.75rem;
      text-align: left;
      opacity: 0.3;
      transform: translateX(50px);
      transition: opacity 0.4s ease, transform 0.4s ease;
      position: relative;
    }
    #processos .timeline-step.visible {
      opacity: 1;
      transform: translateX(0);
    }
    #processos .timeline-step::after {
      content: '';
      position: absolute;
      top: 1.5rem;
      left: -36px;
      width: 24px;
      height: 24px;
      background-color: #4ea1d3;
      border-radius: 50%;
      box-shadow: 0 0 8px #4ea1d3;
      z-index: 11;
    }
    footer {
      border-top: 1px solid #374151;
      padding: 3rem 1.5rem;
      max-width: 1280px;
      margin: 0 auto;
      
      color: #9ca3af;
      font-size: 0.875rem;
    }
    footer h4 {
      font-weight: 600;
      margin-bottom: 1rem;
      color: #e0e0e0;
    }
    footer a.footer-link {
      color: #9ca3af;
      text-decoration: none;
      display: block;
      margin-bottom: 0.5rem;
      transition: color 0.3s ease;
    }
    footer a.footer-link:hover {
      color: #4ea1d3;
    }
.btn-primary {
  background-color: #4ea1d3;
  color: #ffffff;      
  padding: 0.3rem 0.8rem;
  border-radius: 9999px;
  text-decoration: none;
  display: inline-flex; 
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  user-select: none;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
  background-color: #76c0ed;
  box-shadow: 0 8px 15px rgba(78, 161, 211, 0.5);
  transform: translateY(-3px);
}
#acelere-sucesso {
  margin-bottom: 3rem; 
}
#acelere-sucesso {
  margin-top: 3rem; 
}
.timeline-step {
  background: #f9f5fb;
  border: 1.5px solid #bbd3eb;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(137, 158, 184, 0.281);
  padding: 20px 25px;
  margin-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(137, 161, 184, 0.3);
}

.timeline-step h3 {
  color: #ffffff;
  margin-bottom: 8px;
}

.timeline-step p {
  color: #d8d8d8;
  line-height: 1.5;
}

body {
  overscroll-behavior-y: none;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.goog-te-banner-frame.skiptranslate {
  display: none !important;
}
body {
  top: 0px !important;
}

.goog-logo-link, .goog-te-gadget span {
  display: none !important;
}

@media (max-width: 768px) {
  .max-w-7xl {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  nav {
    flex-direction: column;
    gap: 0.75rem;
  }

  .logo-img {
    height: 60px;
    margin-bottom: 1rem;
  }

  .btn-primary {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .servicos-container,
  .timeline-container {
    padding-left: 0;
  }

  .timeline-step,
  .service-step {
    padding: 1rem;
  }

  h2 {
    font-size: 1.8rem;
    text-align: center;
  }

  h3 {
    font-size: 1.3rem;
  }

  footer .grid {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 2rem;
  }

  #google_translate_element {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
    background: #090c14;
    padding: 6px 10px;
    border-radius: 6px;
  }
}

.goog-te-banner-frame.skiptranslate,
.goog-logo-link,
.goog-te-gadget span {
  display: none !important;
}

body {
  top: 0px !important;
}

#google_translate_element {
  display: none !important;
}

.goog-te-banner-frame.skiptranslate {
  display: none !important;
}
body {
  top: 0px !important;
}

/* Esconde o logotipo do Google */
.goog-logo-link,
.goog-te-gadget span {
  display: none !important;
}

/* Esconde a seleção do idioma original se quiseres controlar com JS */
#google_translate_element {
  display: none !important;
}
