  :root {
      --bg-dark: #050816;
      --bg-section: #070b1e;
      --primary: #00a6ff;
      --primary-soft: rgba(0, 166, 255, 0.1);
      --accent: #7b5cff;
      --text-main: #f5f5f5;
      --text-muted: #a6b0c3;
      --card-bg: rgba(10, 15, 40, 0.9);
      --border-soft: rgba(255, 255, 255, 0.06);
  }

  * {
      scroll-behavior: smooth;
  }

  body {
      background: radial-gradient(circle at top left, #162447 0, #050816 50%, #02030a 100%);
      color: var(--text-main);
      font-family: 'Poppins', sans-serif;
  }

  .navbar {
      background: rgba(3, 6, 24, 0.96);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border-soft);
  }

  .navbar-brand {
      font-weight: 600;
      letter-spacing: 0.04em;
      font-size: 1.1rem;
  }

  .brand-pill {
      font-size: 0.65rem;
      padding: 0.1rem 0.5rem;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      margin-left: 0.4rem;
      color: var(--text-muted);
  }

  .nav-link {
      color: var(--text-muted) !important;
      font-size: 0.9rem;
  }

  .nav-link:hover,
  .nav-link.active {
      color: var(--primary) !important;
  }

  .hero {
      min-height: 90vh;
      display: flex;
      align-items: center;
      padding-top: 80px;
      padding-bottom: 80px;
  }

  .badge-gradient {
      background: linear-gradient(90deg, var(--primary), var(--accent));
      color: #fff;
      border-radius: 999px;
      padding: 0.3rem 0.8rem;
      font-size: 0.75rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.1em;
  }

  .hero-title {
      font-size: clamp(2.2rem, 5vw, 3.1rem);
      font-weight: 700;
      line-height: 1.1;
  }

  .hero-title span {
      background: linear-gradient(120deg, #00f2ff, #6f5cff, #ff7ee5);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
  }

  .hero-subtitle {
      color: var(--text-muted);
      font-size: 0.98rem;
  }

  .code-chip {
      font-family: "JetBrains Mono", "Fira Code", monospace;
      font-size: 0.75rem;
      background: rgba(0, 0, 0, 0.55);
      border-radius: 0.75rem;
      border: 1px solid var(--border-soft);
      padding: 0.5rem 0.75rem;
      color: var(--text-muted);
  }

  .glow-orbit {
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: 0.6;
      background:
          radial-gradient(circle at 10% 20%, rgba(0, 166, 255, 0.4), transparent 55%),
          radial-gradient(circle at 80% 0%, rgba(123, 92, 255, 0.4), transparent 60%),
          radial-gradient(circle at 50% 100%, rgba(0, 242, 255, 0.25), transparent 55%);
      mix-blend-mode: screen;
      filter: blur(2px);
  }

  .section {
      padding: 80px 0;
      position: relative;
  }

  .section::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.07), transparent);
      opacity: 0.25;
  }

  .section-dark {
      background: radial-gradient(circle at top, #101535 0, #050816 50%);
  }

  .section-title {
      font-size: 1.7rem;
      font-weight: 600;
  }

  .section-subtitle {
      color: var(--text-muted);
      font-size: 0.92rem;
  }

  .tag-chip {
      border-radius: 999px;
      border: 1px solid var(--border-soft);
      padding: 0.25rem 0.75rem;
      font-size: 0.75rem;
      color: var(--text-muted);
  }

  /* Cards */
  .service-card,
  .pricing-card,
  .info-card {
      background: linear-gradient(135deg, rgba(13, 19, 48, 0.96), rgba(5, 8, 28, 0.98));
      border-radius: 1.3rem;
      border: 1px solid var(--border-soft);
      padding: 1.4rem 1.5rem;
      position: relative;
      overflow: hidden;
      box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  }

  .service-card::before,
  .pricing-card::before {
      content: "";
      position: absolute;
      inset: -40%;
      background: radial-gradient(circle at top left, rgba(0, 166, 255, 0.16), transparent 55%);
      opacity: 0;
      transition: opacity 0.3s ease;
  }

  .service-card:hover,
  .pricing-card:hover {
      transform: translateY(-4px) translateZ(0);
      border-color: rgba(0, 166, 255, 0.55);
      box-shadow: 0 26px 60px rgba(0, 0, 0, 0.7);
      background: linear-gradient(135deg, rgba(18, 28, 74, 0.98), rgba(5, 8, 28, 1));
  }

  .service-card:hover::before,
  .pricing-card:hover::before {
      opacity: 1;
  }

  .service-icon {
      width: 40px;
      height: 40px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: radial-gradient(circle at top left, rgba(0, 166, 255, 0.4), rgba(13, 19, 48, 1));
      color: #fff;
      box-shadow: 0 0 14px rgba(0, 166, 255, 0.7);
      margin-bottom: 0.8rem;
  }

  .service-title {
      font-size: 1.05rem;
      font-weight: 600;
      margin-bottom: 0.25rem;
  }

  .service-description {
      font-size: 0.9rem;
      color: var(--text-muted);
  }

  .badge-pill {
      border-radius: 999px;
      padding: 0.25rem 0.7rem;
      font-size: 0.7rem;
      border: 1px solid rgba(255, 255, 255, 0.14);
      color: var(--text-muted);
  }

  .price {
      font-size: 1.1rem;
      font-weight: 600;
  }

  .price span {
      font-size: 0.85rem;
      font-weight: 400;
      color: var(--text-muted);
  }

  .list-unstyled li {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-bottom: 0.25rem;
  }

  .list-unstyled li i {
      font-size: 0.8rem;
      margin-right: 0.25rem;
      color: var(--primary);
  }

  /* Buttons */
  .btn-primary-soft {
      background: var(--primary-soft);
      border-radius: 999px;
      border: 1px solid rgba(0, 166, 255, 0.4);
      color: #e4f3ff;
      font-size: 0.85rem;
      padding: 0.45rem 1.1rem;
  }

  .btn-primary-soft:hover {
      background: rgba(0, 166, 255, 0.25);
      color: #fff;
  }

  .btn-gradient {
      border-radius: 999px;
      background: linear-gradient(120deg, #00a6ff, #7b5cff);
      color: #fff;
      border: none;
      padding: 0.55rem 1.4rem;
      font-size: 0.9rem;
      box-shadow: 0 10px 30px rgba(0, 166, 255, 0.45);
  }

  .btn-gradient:hover {
      opacity: 0.95;
      color: #fff;
  }

  .btn-outline-light-soft {
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.25);
      color: var(--text-main);
      font-size: 0.86rem;
      padding: 0.55rem 1.4rem;
      background: rgba(0, 0, 0, 0.25);
  }

  .btn-outline-light-soft:hover {
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
  }

  .pill-label {
      font-size: 0.7rem;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      padding: 0.2rem 0.6rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.09em;
  }

  .highlight-pill {
      border-radius: 999px;
      border: 1px solid rgba(0, 166, 255, 0.55);
      padding: 0.2rem 0.7rem;
      font-size: 0.75rem;
      color: #9cd8ff;
      background: rgba(0, 166, 255, 0.08);
  }

  /* Timeline-like bullet list */
  .dot-list {
      list-style: none;
      padding-left: 0;
      margin: 0;
  }

  .dot-list li {
      position: relative;
      padding-left: 1.6rem;
      margin-bottom: 0.45rem;
      font-size: 0.9rem;
      color: var(--text-muted);
  }

  .dot-list li::before {
      content: "";
      position: absolute;
      left: 0.45rem;
      top: 0.45rem;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--primary);
      box-shadow: 0 0 10px rgba(0, 166, 255, 0.7);
  }

  footer {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(0, 0, 0, 0.65);
  }

  .whatsapp-floating {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 999;
  }

  .whatsapp-floating a {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #25d366;
      color: #fff;
      font-size: 1.7rem;
      box-shadow: 0 12px 26px rgba(0, 0, 0, 0.6);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .whatsapp-floating a:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.85);
      color: #fff;
  }

  @media (max-width: 767.98px) {
      .hero {
          text-align: center;
      }

      .hero-buttons {
          justify-content: center !important;
      }

      .code-chip {
          justify-content: center;
      }

      .section {
          padding: 64px 0;
      }
  }

  /* ============================================
   CORREÇÃO DEFINITIVA DO BUG DO BOTÃO WHATSAPP
   ============================================ */

/* Garante que a glow-orbit NÃO cubra outras sections */
#hero .glow-orbit {
    z-index: 0 !important;
    pointer-events: none !important;
}

/* Conteúdo do hero sempre acima da glow-orbit */
#hero .container {
    position: relative !important;
    z-index: 2 !important;
}

/* Agora os cards e botões ficam SEMPRE clicáveis */
.service-card,
.pricing-card,
.info-card,
.btn,
.btn-gradient,
.btn-outline-light-soft,
.btn-primary-soft {
    position: relative !important;
    z-index: 5 !important;
    pointer-events: auto !important;
}

/* Só para garantir que nenhuma camada invisível bloqueie clique */
.section,
.section-dark {
    position: relative;
    z-index: 1;
}

/* Botão flutuante do Whats em prioridade máxima */
.whatsapp-floating {
    z-index: 9999 !important;
}
/* Estados iniciais para elementos animados */
.will-animate {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.will-animate[data-animate="fade-up"].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.will-animate[data-animate="fade-left"].is-visible {
  opacity: 1;
  transform: translateX(0);
}

.will-animate[data-animate="fade-right"].is-visible {
  opacity: 1;
  transform: translateX(0);
}

.will-animate[data-animate="zoom-in"].is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Ajusta estados iniciais específicos */
.will-animate[data-animate="fade-left"] {
  transform: translateX(24px);
}

.will-animate[data-animate="fade-right"] {
  transform: translateX(-24px);
}

.will-animate[data-animate="zoom-in"] {
  transform: scale(0.9);
}
/* =======================================================
   NAVBAR AJUSTADA — CENTRALIZADA • MAIS ALTA • SEM QUEBRA
   ======================================================= */

/* Espaço entre navbar fixa e conteúdo */
body {
    padding-top: 105px; /* Altura ideal para navbar mais alta */
}

/* Navbar mais alta, mais elegante */
.navbar {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
}

/* Centraliza o conteúdo da navbar */
.navbar .container {
    max-width: 1280px !important;  /* bem central */
    margin: 0 auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/* UL da navbar: alinhada e sem quebra */
.navbar-nav {
    display: flex;
    align-items: center;
    flex-wrap: nowrap !important;
    gap: 14px !important; /* espaçamento refinado */
    margin-left: auto;
    margin-right: auto;   /* garante centralização */
}

/* Links da navbar mais consistentes */
.navbar-nav .nav-link {
    white-space: nowrap !important;
    padding: 8px 10px !important;
    font-size: 0.92rem;
}

/* Remove margens forçadas nos itens */
.navbar-nav .nav-item {
    margin: 0 !important;
}

/* Botão da navbar */
.navbar .btn-primary-soft {
    white-space: nowrap !important;
    padding: 8px 16px !important;
    font-size: 0.86rem !important;
    margin-left: 10px;
}

/* ---------------------------------------------------
   Ajustes inteligentes para telas médias (1180px↓)
   --------------------------------------------------- */
@media (max-width: 1180px) {

    .navbar-nav {
        gap: 10px !important;
    }

    .navbar-nav .nav-link {
        font-size: 0.85rem !important;
        padding: 6px 8px !important;
    }

    .navbar .btn-primary-soft {
        padding: 6px 12px !important;
        font-size: 0.8rem !important;
    }
}

