/* SECTION */
.ld-services-section {
  padding: 60px 0;
}

/* TITLE */
.section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.section-title .highlight {
  color: #D9A036;
}

/* GRID */
.services-grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}

/* CARD */
.service-card {
  background: #fff;
  border-radius: 12px;
  border-top: 1px solid #D9A036;
  border-left: 1px solid #D9A036;
  border-right: 1px solid #D9A036;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
  max-width: 400px;
  min-width: 200px;
  text-align: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.image-wrapper {
  height: 160px;
  overflow: hidden;
}

.service-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.service-content {
  padding: 16px;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #003366;
}

.service-content p {
  font-size: 1.3rem;
  color: #555;
}

/* BUTTON */
.cta-button {
  margin-top: 30px;
}

.cta-link {
  background-color: #D9A036;
  color: white;
  padding: 14px 30px;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s ease;
  cursor: pointer;
}

.cta-link:hover {
  background-color: #F2D857;
  color: #fff;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .services-grid {
    flex-direction: column;
    align-items: center;
  }
}
