.section__services {
    display: flex;
}

.section__service {
    flex: 1;
    text-align: center;
    border-right: 1px solid #333;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;;
}

/* Efeito somente no primeiro item da lista */
.section__service:first-child{
    border-left: 1px solid #333;
}

.section__service:hover {
    box-shadow: 10px 10px 10px rgba(255, 255, 255, 0.15); /* sombra elegante */
    transform: translateY(-5px); /* levanta 5px para cima */
}

.section__service h4 {
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-top: 2rem;
}

.section__service p {
    font: 1.3rem;
    color: #999;
    margin-top: 1rem;
}

/* ---------- RESPONSIVIDADE ---------- */
@media (max-width: 768px) {
  .section__services {
    flex-direction: column;
    border-left: none;
    border-right: none;
  }

  .section__service {
    border: none;
    border-bottom: 1px solid #333;
    padding: 1rem 0;
  }

  .section__service:first-child {
    border-left: none;
  }

  .section__service:last-child {
    border-bottom: none;
  }

  .section__service h4 {
    font-size: 1.3rem;
    margin-top: 1.2rem;
  }

  .section__service p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .section__service h4 {
    font-size: 1.1rem;
    margin-top: 1rem;
  }

  .section__service p {
    font-size: 1rem;
  }
}