.page-content { max-width: none; padding-bottom: 50px }

.page-hero p { max-width: 360px; margin: 0 auto }

.section > h3 {
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  margin: 32px 0 16px;
}
.section > h3::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--accent), transparent);
  border-radius: 2px;
}

.spa-card {
  background: white;
  border-radius: 22px;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
  overflow: hidden;
}
.spa-card.destaque { border: 2px solid var(--primary) }

.spa-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.spa-card-body { padding: 22px }

.spa-card.horizontal { display: flex; flex-direction: row; align-items: stretch }
.spa-card.horizontal .spa-card-img {
  width: 110px; min-width: 110px;
  height: auto; min-height: 140px;
  flex-shrink: 0;
  border-radius: 0;
  object-fit: cover; object-position: center;
}
@media (min-width: 768px) {
  .spa-card.horizontal .spa-card-img { width: 160px; min-width: 160px }
}
.spa-card.horizontal .spa-card-body {
  flex: 1;
  padding: 16px;
  min-width: 0;
  overflow: hidden;
  word-break: break-word;
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.card-top h4 { color: var(--primary); font-size: 17px; font-weight: 700; line-height: 1.3 }

.badge-mais-vendido {
  background: var(--primary);
  color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap; flex-shrink: 0;
}

.duracao {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  font-size: 12px; font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.spa-card-body p.descricao { font-size: 14px; color: #555; line-height: 1.7; margin-bottom: 12px }

.spa-card-body ul { list-style: none; margin-bottom: 14px }
.spa-card-body ul li {
  font-size: 13px; color: #555; line-height: 1.6;
  padding-left: 16px; position: relative;
}
.spa-card-body ul li::before {
  content: '•';
  position: absolute; left: 0;
  color: var(--primary); font-weight: 700;
}

.sub-label { font-size: 13px; font-weight: 600; color: var(--text); margin: 10px 0 6px }

.btn-interesse { margin-top: 6px }

.social-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  padding-bottom: 10px;
}
.social-footer a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 15px; font-weight: 600;
  color: #fff;
  transition: opacity .2s ease;
}
.social-footer a:hover { opacity: .85 }
.social-footer a svg { width: 22px; height: 22px; fill: #fff; flex-shrink: 0 }
.social-footer .btn-whatsapp { background: #25D366 }
.social-footer .btn-instagram { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888) }
