/*
 Theme Name:   Legba Pocket (Neve based)
 Description:  Tema pocket id5 Neve
 Author:       ID5
 Author URI:   http://www.id5.com.br
 Template:     neve
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
*/

.servicos-wrapper {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.servicos-layout {
  display: flex;
  gap: 30px;
}

.servicos-menu {
  width: 230px;
}

.servicos-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.servicos-menu li {
  padding: 12px 16px;
  margin-bottom: 8px;
  font-weight: 600;
  color: #007c91;
  cursor: pointer;
  border-radius: 8px;
}

.servicos-menu li.active {
  background-color: #007c91;
  color: #fff;
}

.servicos-content {
  flex: 1;
}

.servicos-title {
  margin-bottom: 30px;
  font-size: 28px;
  color: #0a2540;
}

.servicos-section {
  display: none;
}

.servicos-section.active {
  display: block;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 25px;
}

.card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 120px;
  padding: 20px;
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  color: #007c91;
  background: #fff;
  transition: all 0.2s ease;
}

.card:hover {
  background: #f0fafa;
  transform: translateY(-3px);
}

/* MOBILE */
@media (max-width: 768px) {
  .servicos-layout {
    flex-direction: column;
  }

  .servicos-menu {
    width: 100%;
  }
}

