/* ==================== SERVICES PAGE ==================== */

.services-banner {
  width: 100%;
  height: 200px;
  background-image: url('/assets/img/banner-services.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.services-banner-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.services-banner-titulo {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.services-banner-subtitulo {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0;
}

.main-content {
  padding: 2rem;
  background: #f8fafc;
}

.card {
  border-radius: 12px;
  border: 1px solid #e9ecef;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  background: #ffffff;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: #dc3545;
  transform: translateY(-3px);
}

.card-clicavel {
  cursor: pointer;
}

.card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #212529;
}

.card .btn-outline-primary {
  color: #dc3545;
  border-color: #dc3545;
  border-radius: 20px;
  padding: 6px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
  margin-top: 1rem;
}

.card .btn-outline-primary:hover {
  background-color: #dc3545;
  border-color: #dc3545;
  color: #ffffff;
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  box-shadow: 0 4px 12px rgba(197, 48, 48, 0.3);
}

.icon-circle i {
  font-size: 2rem;
  color: #ffffff;
}

@media (max-width: 767px) {
  .main-content { padding: 1rem; }
  .services-banner { height: 150px; }
  .services-banner-titulo { font-size: 1.75rem; }
}
