#services {
  text-align: center;
  padding: 20px;
  color: #80017E;
}

#services h2 {
  color: #80017e;
  display: inline-block;
  margin-top: 20px; 
  margin-bottom: 20px; 
}

#services h3 {
  color: #80017e;
  font-size: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 10px 20px;
  background-color: #f5f5f5;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s, box-shadow 0.3s;
}

#services h3:hover {
  background-color: #80017e;
  color: #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

#services p {
  font-size: 17px;
  line-height: 1.6;
  padding: 0 20px;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 colunas com largura igual */
  gap: 20px;
}

.collapsible {
  font-family: Arial;
  font-size: 1.3rem;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f9f9f9;
  border-bottom: 1px solid #ddd;
  transition: background-color 0.3s;
}

.collapsible:hover {
  background-color: #f1f1f1;
}

.collapsible .arrow {
  transition: transform 0.3s;
}

.content {
  display: none;
  padding: 20px;
  background-color: #fff;
}

.service.active .content {
  display: block;
}

.service.active .collapsible .arrow {
  transform: rotate(90deg);
}



