	
	/* ============================================
   Nossos Serviços Section
   ============================================ */

.servicos-section {
  background-color: #08192a;
  padding: 80px 0;
  overflow: hidden;
}

/* Título da seção */
.servicos-title {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.title-divider-servicos {
  width: 80px;
  height: 3px;
  background-color: #e2231e;
  margin: 0 auto 50px auto;
  border-radius: 2px;
}

/* Grid 3 colunas */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Boxes de serviços */
.servico-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(0px);
  border-radius: 20px;
  padding: 45px 35px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgb(226 35 30);
  height: 100%;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s ease forwards;
}

/* Delays individuais para cada box (9 itens) */
.servico-box:nth-child(1) { animation-delay: 0.1s; }
.servico-box:nth-child(2) { animation-delay: 0.2s; }
.servico-box:nth-child(3) { animation-delay: 0.3s; }
.servico-box:nth-child(4) { animation-delay: 0.4s; }
.servico-box:nth-child(5) { animation-delay: 0.5s; }
.servico-box:nth-child(6) { animation-delay: 0.6s; }
.servico-box:nth-child(7) { animation-delay: 0.7s; }
.servico-box:nth-child(8) { animation-delay: 0.8s; }
.servico-box:nth-child(9) { animation-delay: 0.9s; }

/* Hover effect */
.servico-box:hover {
  transform: translateY(-8px);
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Ícone */
.servico-icon {
  margin-bottom: 25px;
}

.servico-icon i {
  font-size: 4rem;
  color: #e2231e;
  transition: transform 0.3s ease;
}

.servico-box:hover .servico-icon i {
  transform: scale(1.1);
}

/* Título do serviço */
.servico-titulo {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 18px;
}

/* Descrição */
.servico-descricao {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Botão Saiba Mais */
.servico-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 40px;
  padding: 10px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.servico-btn:hover {
  background: #e2231e;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
 
}

/* Animação de entrada */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsividade - Tablet (2 colunas) */
@media (max-width: 992px) {
  .servicos-section {
    padding: 60px 0;
  }
  
  .servicos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .servico-box {
    padding: 35px 25px;
  }
  
  .servico-icon i {
    font-size: 3.2rem;
  }
  
  .servico-titulo {
    font-size: 1.4rem;
  }
  
  .servico-descricao {
    font-size: 0.9rem;
  }
}

/* Responsividade - Mobile (1 coluna) */
@media (max-width: 768px) {
  .servicos-section {
    padding: 50px 0;
  }
  
  .servicos-title {
    font-size: 1.8rem;
  }
  
  .servicos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .servico-box {
    padding: 30px 20px;
  }
  
  .servico-icon i {
    font-size: 2.8rem;
  }
  
  .servico-titulo {
    font-size: 1.3rem;
  }
  
  .servico-descricao {
    font-size: 0.85rem;
  }
  
  .servico-btn {
    padding: 8px 22px;
    font-size: 0.85rem;
  }
}
