.servicos {
    padding: 120px 24px;
    background: linear-gradient(
      180deg,
      #ffffff 0%,
      #f1f3f6 100%
    );
  }
  
  .servicos-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  /* Header */
  .servicos-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--azul-principal);
    margin-bottom: 72px;
  }
  
  /* Fluxo */
  .servicos-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  
  /* Card */
  .servico-card {
    background: #ffffff;
    padding: 36px 28px;
    border-radius: 18px;
    min-width: 220px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  }
  
  .servico-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--azul-principal);
  }
  
  /* Hover */
  .servico-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
  }
  
  /* Setas */
  .seta img {
    width: 50px;
    opacity: 0.6;
  }
  
  /* CTA */
  .servicos-cta {
    margin-top: 64px;
  }
  
  .btn-servicos {
    background: var(--azul-secundario);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .btn-servicos:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(30, 92, 179, 0.35);
  }
  
  /* Responsivo */
  @media (max-width: 900px) {
    .servicos-flow {
      flex-direction: column;
    }
  
    .seta img {
      transform: rotate(90deg);
      margin: 12px 0;
    }
  }  