@keyframes slide-in-left {
      from { transform: translateX(-100%); }
      to { transform: translateX(0); }
    }
    .animate-slide-in-left { animation: slide-in-left 0.3s ease-out forwards; }   

    
body {
  font-family: 'Plus Jakarta Sans', sans-serif; 
  font-size: 18px;
}

/* 2. Títulos */
h1 {
  font-family: Garamond, serif;
  font-size: 50px; 
  font-weight: bold;
}

/* Aplique aos outros títulos se desejar, ou mude o tamanho */

h2 {
  font-family: Garamond, serif;
  font-size: 30px; 
  font-weight: bold;
}

h4 {
  font-family: Garamond, serif; 
  font-size: 20px; 
  font-weight: bold;
}



.servicos-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

  .servicos-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #111;
    z-index: 0;
  }

  .servicos-bg > * {
    position: relative;
    z-index: 1;
  }