/* ============================================================
   BOREAL CLIMATIZAÇÃO — Service Detail Modals & Sections
   ============================================================ */

/* ── Individual Service Sections ── */
.service-detail {
  padding: var(--space-xl) 0;
  scroll-margin-top: 80px;
}

.service-detail:nth-child(even) {
  background: var(--color-surface-2);
}

.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.service-detail:nth-child(even) .service-detail-inner {
  direction: rtl;
}

.service-detail:nth-child(even) .service-detail-inner > * {
  direction: ltr;
}

.service-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.service-detail-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-detail-img:hover img {
  transform: scale(1.03);
}

.service-detail-content .section-tag {
  margin-bottom: 0.75rem;
}

.service-detail-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.service-detail-content p {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.service-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--color-text);
}

.service-benefits li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--color-secondary);
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: var(--radius-full);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 15px rgba(245,158,11,.3);
}

@media (max-width: 768px) {
  .service-detail-inner {
    grid-template-columns: 1fr;
    direction: ltr !important;
  }
  .service-detail:nth-child(even) .service-detail-inner {
    direction: ltr;
  }
  .service-detail-img img { height: 250px; }
}
