
      :root {
        --bg: #0b0e13;
        --blue-700: #1d4ed8;
        --blue-800: #1e40af;
        --purple-500: #8b5cf6;
        --indigo-500: #6366f1;
        --primary: #111827;
        --secondary: #6b7280;
        --background: #ffffff;
        --font-heading: 'Poppins', sans-serif;
        --font-body: 'Nunito', sans-serif;
        
        /* Caso queira usar a cor roxa OKLCH que mencionou: */
        --azul: oklch(.488 .243 264.376);
      }
      body {
        font-family: var(--font-body);
      }

      h1, h2, h3, .logo, nav a, .btn {
        font-family: var(--font-heading);
      }

      header {
        font-family: 'Poppins', 'Nunito', sans-serif;
      }

      main {
        background-image: linear-gradient(45deg, var(--bg), var(--primary));
      }
      /* Seção hero-services (já existente) */
      .hero-services {
        position: relative;
        background-image: url(imagens/bg_services.png);
        color: #fff;
        padding: 25vh 0;
        text-align: center;
        overflow: hidden;
      }
      .hero-services h1 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 1rem;
        position: relative;
        z-index: 1;
      }
      .hero-services h1 span.highlight {
        color: var(--azul);
        position: relative;
      }
      .hero-services h1 span.highlight::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -0.25rem;
        width: 100%;
        height: 0.25rem;
        background-color: var(--blue-800);
        filter: blur(4px);
        z-index: -1;
        
        /* Efeito roxo com blur */
        top: 50%;
        left: 0;
        width: 100%;
        height: 1rem;
        background-color: var(--azul);
        filter: blur(50px);
        transform: translateY(-50%);
      }
      .hero-services p {
        max-width: 800px;
        margin: 0 auto 2rem;
        font-size: 1.125rem;
      }
      .hero-services .btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1.5rem;
        background-color: var(--blue-700);
        color: #fff;
        border-radius: 4px;
        font-weight: 600;
        transition: background 0.3s ease;
        text-decoration: none;
      }
      .hero-services .btn:hover {
        background-color: var(--blue-800);
      }
      
      /* Seção de Funcionalidades (já existente) */
      .features {
        padding: 4rem 0;
      }
      .features .feature-grid {
        display: grid;
        gap: 2rem;
      }
      @media (min-width: 768px) {
        .features .feature-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      @media (min-width: 1024px) {
        .features .feature-grid {
          grid-template-columns: repeat(4, 1fr);
        }
      }
      .feature {
        padding: 1.5rem;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        text-align: center;
      }
      .material-icons {
        font-size: 32px;
        color: var(--blue-700);
      }
      .feature svg {
        width: 32px;
        height: 32px;
        margin-bottom: 1rem;
        color: var(--blue-700);
      }
      .feature h3 {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
      }
      .feature p {
        font-size: 0.95rem;
        color: var(--secondary);
      }
      
      /* Seção Chamada para Ação (já existente) */
      .blur-circle {
      position: absolute;
      width: 160px;   /* size-40 em Tailwind (10rem = 160px) */
      height: 160px;
      border-radius: 50%;
      filter: blur(200px);
      z-index: 0;
    }

    .circle-blue {
      background-color: #3b82f6; /* blue-500 */
      right: 90%;
      bottom: 75%;
    }

    .circle-purple {
      background-color: #8b5cf6; /* purple-500 */
      right: 0;
      bottom: 50%;
    }

    .circle-indigo {
      background-color: #6366f1; /* indigo-500 */
      right: 50%;
      bottom: 0;
    }
      .cta {
        position: relative;
        /* padding: 25vh 0; */
        text-align: center;
        overflow: hidden;
      }
      .cta .container {
  margin: 5rem;
  margin-inline: 10rem;
  padding: 4rem;
  /*border-radius: 60% 40% 35% 65% / 50% 30% 70% 50%; */
  position: relative;
  z-index: 1;
  border-radius: 20px;
  border: 1px solid steelblue;
}

.cta .container::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  /* background: radial-gradient(circle, rgba(70,130,180,0.5), transparent 70%); */
  box-shadow:
    0 0 10px rgba(70, 130, 180, 0.6), /* 40 px - 80px*/
    0 0 10px rgba(70, 130, 180, 0.4);
  filter: blur(12px);
}

      .cta h2 {
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 1rem;
      }
      .cta p {
        max-width: 600px;
        margin: 0 auto 2rem;
        font-size: 1rem;
        color: #b7b9bc;
      }
      .cta .btn {
        padding: 0.75rem 1.5rem;
        background-color: var(--blue-700);
        color: #fff;
        border-radius: 4px;
        font-weight: 600;
        transition: background 0.3s ease;
        text-decoration: none;
      }
      .cta .btn:hover {
        background-color: var(--blue-800);
      }
      
      /* ----------------------- */
      /* SEÇÃO: MINHA ESCOLHA    */
      /* (Por que escolher TurboCloud?) */
      /* ----------------------- */
      .why-turbo-section {
        padding: 5rem 0;
        position: relative;
        /*background: #141321;  Ajuste se quiser manter coerência #141321
        background: linear-gradient(45deg, var(--bg), var(--primary));*/
        background-color: #0a0a1a;
      }
      .why-turbo-section .container {
        position: relative;
        display: flex;
    flex-direction: column;
    align-items: center;
      }
      /* "Minha escolha!" */
      .why-label {
        display: inline-block;
        padding: 0.5rem 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 9999px;
        font-size: 0.875rem;
        color: #cbd5e1;
      }
      .why-turbo-title {
        margin-top: 1.5rem;
        font-size: 2rem;
        font-weight: 700;
        margin: .5rem;
      }
      .why-turbo-subtitle {
        margin-top: 1rem;
        max-width: 700px;
        color: #a1a1aa;
        line-height: 1.6;
        text-align: center;
        margin: 0;
      }
      .why-content-wrapper {
        margin-top: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
      }
      .why-content-wrapper::before,
.why-content-wrapper::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(closest-side, oklch(.488 .243 264.376), transparent);
  filter: blur(8px);
  opacity: 0.8;
}

.why-content-wrapper::before {
  width: 100%;
  height: 4px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.why-content-wrapper::after {
  width: 4px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
      .why-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 64px;
        height: 64px;
        color: oklch(.488 .243 264.376);
        opacity: 0.9;
      }
      .why-cards-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, auto);
        gap: 2rem;
        width: 100%;
        max-width: 800px;
      }
      .why-card {
        border-radius: 0.75rem;
        padding: 2rem;  
      }
      .why-card h3 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
      }
      .why-card p {
        font-size: 0.9375rem;
        color: #cbd5e1;
        line-height: 1.4;
      }
      @media (max-width: 768px) {
        .why-cards-grid {
          grid-template-columns: 1fr;
        }
        .why-content-wrapper {
          flex-direction: column;
        }
        .why-icon {
          display: none;
        }
      }

      /* ----------------------- */
      /* SEÇÃO: SUPORTE    */
      /* ----------------------- */
      .wp-section {
        position: relative;
        padding: 60px 20px;
        background-color: #0a0a1a;
        /* Grade de linhas suave (opcional) 
        background-image:
          linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
          linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
        background-size: 40px 40px;*/
      }
      .grid-bg {
      background-image: linear-gradient(#ffffff05 1px, transparent 1px),
                        linear-gradient(90deg, #ffffff05 1px, transparent 1px);
      background-size: 60px 60px;
    }

    .section-container {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .cards {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: 40px;
    }

    @media(min-width: 768px) {
      .cards {
        flex-direction: row;
        justify-content: center;
        gap: 40px;
      }
    }

    .card, .card-right {
      background-color: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 20px;
      padding: 30px;
      flex: 1;
      max-width: 500px;
      text-align: left;
    }

    .card-right {
      display: flex;
      align-items: center;
    }

    .tag {
      display: inline-block;
      padding: 6px 16px;
      font-size: 0.75rem;
      background-color: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 999px;
      color: #d1d5db;
    }

    .card h3 {
      font-size: 1.5rem;
      font-weight: 700;
      color: #f9fafb;
    }

    .card p {
      font-size: 1rem;
      line-height: 1.6;
      color: #d1d5db;
    }

    .section-text {
      font-size: 1rem;
      color: #d1d5db;
      margin-bottom: 25px;
    }

    .btn-whatsapp {
      display: inline-block;
      padding: 12px 24px;
      border: 1px solid #00ff80;
      border-radius: 8px;
      color: #00ff80;
      font-weight: 600;
      text-decoration: none;
      transition: background-color 0.3s, color 0.3s;
    }

    .btn-whatsapp:hover {
      background-color: #00ff80;
      color: #0a0a1a;
    }

    .labeltag {
    display: inline-block;
    border: 1px solid #1d4ed8;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    box-shadow: 
  0 0 10px rgba(29, 78, 216, 0.6), 
  0 0 20px rgba(29, 78, 216, 0.4);
    }
    @media (max-width: 768px) {
      .hero-services {
        background-image: url(imagens/bg_services_mobile.png);
        background-size: cover;
      }

      .why-turbo-title {
        text-align: center;
      }

      .why-cards-grid {
        gap: 0;
      }

      .why-content-wrapper {
        margin: 0;
      }

      .why-card {
        padding-block: 0.75rem;
        text-align: center;
      }

      .cta .container {
        margin: 5rem 20px;
        padding: 2rem 0;
      }

      .features .feature-grid {
        gap: 0;
      }

      .feature p {
        font-size: 1rem;
        margin: 0;
      }

      .feature {
        padding-inline: 0;
      }
    }