/* servicos.css */

#servicos {
    padding: 40px 0;
    background-color: #f3f3f3;
  }
  
  #servicos h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
  }
  
  .servicos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 0 20px;
  }
  
  .servico-item {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: transparent;
    text-align: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .servico-item:hover {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 15px rgba(0,0,0,0.08);
    border-color: rgba(0, 0, 0, 0.05);
  }
  
  .icone-servico {
    font-size: 28px;
    color: #cc0000;
    margin-bottom: 10px;
  }
  
  .servico-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    font-family: 'Ubuntu', sans-serif;
  }
  
  .servico-item p {
    font-size: 13px;
    color: #555;
    opacity: 0;
    max-height: 0;
    transition: opacity 0.3s ease, max-height 0.3s ease;
    overflow: hidden;
    font-family: 'Ubuntu', sans-serif;
    padding: 0 10px;
    text-align: center;
  }
  
  .servico-item:hover p {
    opacity: 1;
    max-height: 150px;
  }
  
  /* Responsivo */
  @media (max-width: 600px) {
    .servico-item {
      width: 100%;
      border-radius: 12px;
      height: auto;
    }
  
    .servicos-grid {
      gap: 20px;
    }
  }
  