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

/* Banner */
.services-banner {
  width: 100%;
  height: 200px;
  background-color: #7f1d1d;
  background-image: url('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: var(--white);
  margin-bottom: 0.5rem;
}

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

/* Main Content */
.main-content {
  padding: 2rem;
  background: var(--gray-50);
}

/* Cards */
.card {
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  overflow: hidden;
  background: var(--white);
}

.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  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: var(--gray-900);
}

.card-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gray-600);
}

.card .btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
  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: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* Icon Circle */
.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 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: var(--white);
}

/* Responsive */
@media (max-width: 767px) {
  .main-content {
    padding: 1rem;
  }

  .services-banner {
    height: 150px;
  }

  .services-banner-titulo {
    font-size: 1.75rem;
  }
}