/* ===== Services Pages ===== */
.page-hero {
  padding: 48px 0 40px;
  background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  text-align: center;
}
.page-hero p {
  margin: 8px 0 0 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.services-page-section {
  padding: 56px 0 80px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.service-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s, transform 0.25s;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: right;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 0;
  background: var(--primary);
  transition: height 0.25s;
}
.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: rgba(196, 30, 58, 0.2);
}
.service-card:hover::before { height: 100%; }
.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: rgba(196, 30, 58, 0.08);
  color: var(--primary);
}
.service-card-icon svg { width: 28px; height: 28px; }
.service-card h3 {
  margin: 0 0 10px 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}
.service-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.service-card .card-action {
  margin-top: 16px;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card .card-action svg { width: 18px; height: 18px; }

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal {
  background: var(--bg);
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
  transform: scale(0.95);
  transition: transform 0.25s;
}
.modal-overlay.active .modal { transform: scale(1); }
.modal-header {
  padding: 24px 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.modal-header h2 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.4;
}
.modal-close {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--bg-light);
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.modal-close:hover { background: var(--border); color: var(--text); }
.modal-close svg { width: 20px; height: 20px; }
.modal-body {
  padding: 20px 24px 24px;
}
.modal-body p {
  margin: 0 0 20px 0;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.modal-body .btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: #25D366;
  color: #fff !important;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  width: 100%;
  max-width: 280px;
}
.modal-body .btn-whatsapp:hover { background: #20bd5a; transform: translateY(-2px); }
.modal-body .btn-whatsapp svg { width: 22px; height: 22px; flex-shrink: 0; }
