.pp-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

/* ── Back link ── */
.pp-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 28px;
  transition: color .12s;
}
.pp-back:hover { color: var(--primary); }
.pp-back .material-symbols-outlined { font-size: 17px; }

/* ── Hero ── */
.pp-hero {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 28px;
  margin-top: 28px;
  overflow: hidden;
}
.pp-hero-inner {
  padding: 32px 36px 36px;
}
.pp-hero-body {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: flex-start;
  margin-top: 4px;
}

/* Avatar */
.pp-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--primarySoft);
  border: 3px solid var(--border);
}
.pp-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pp-avatar-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  font-family: var(--font-display);
}

/* Hero info */
.pp-hero-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.pp-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
  background: var(--neutral);
  color: var(--muted);
  border: 1px solid var(--border);
}
.pp-badge--cat {
  background: var(--primarySoft);
  color: var(--primary);
  border-color: rgba(0,106,97,.18);
}
.pp-badge .material-symbols-outlined { font-size: 14px; }

.pp-hero-name {
  margin: 0 0 10px;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.pp-hero-desc {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 60ch;
}
.pp-hero-price {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}
.pp-hero-price .material-symbols-outlined { font-size: 17px; color: var(--primary); }
.pp-hero-price strong { color: var(--text); font-size: 18px; }

/* CTA card */
.pp-cta-card {
  width: 260px;
  flex-shrink: 0;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pp-cta-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.pp-cta-price-amount {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}
.pp-cta-price-unit {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}
.pp-cta-slots-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.pp-cta-slots {
  display: grid;
  gap: 6px;
}
.pp-cta-slot {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.pp-cta-slot .material-symbols-outlined { font-size: 15px; color: var(--primary); }
.pp-cta-no-slots {
  font-size: 13px;
  color: var(--muted);
}
.pp-cta-btn {
  width: 100%;
  justify-content: center;
  gap: 8px;
}
.pp-cta-btn-secondary {
  width: 100%;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color .12s, background .12s;
}
.pp-cta-btn-secondary:hover {
  background: var(--primarySoft);
  color: var(--primary);
}

/* ── Body ── */
.pp-body {
  margin-top: 24px;
}
.pp-main {
  display: grid;
  gap: 20px;
}

/* Sections */
.pp-section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px 28px;
}
.pp-section-title {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.pp-section-text {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* Details grid */
.pp-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.pp-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.pp-detail-icon {
  font-size: 20px;
  color: var(--primary);
  margin-top: 1px;
  flex-shrink: 0;
}
.pp-detail-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.pp-detail-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

/* Slots */
.pp-slots-grid {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}
.pp-slot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg);
  text-decoration: none;
  color: var(--text);
  transition: border-color .12s, background .12s;
}
.pp-slot:hover {
  border-color: var(--primary);
  background: var(--primarySoft);
}
.pp-slot .material-symbols-outlined {
  font-size: 20px;
  color: var(--primary);
  flex-shrink: 0;
}
.pp-slot-date {
  font-size: 14px;
  font-weight: 700;
}
.pp-slot-time {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}
.pp-slot-spaces {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  background: var(--primarySoft);
  padding: 3px 10px;
  border-radius: 99px;
  white-space: nowrap;
}
.pp-slots-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}
.pp-slots-more:hover { text-decoration: underline; }
.pp-slots-more .material-symbols-outlined { font-size: 17px; }

/* Hero rating */
.pp-hero-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}
.pp-stars { color: #f59e0b; letter-spacing: 1px; font-size: 16px; }
.pp-stars--lg { font-size: 22px; }
.pp-rating-avg { font-weight: 800; font-size: 15px; }
.pp-rating-count { font-size: 13px; color: var(--muted); }

/* Reviews section */
.pp-reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.pp-reviews-summary {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.pp-reviews-avg-big {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}
.pp-reviews-list {
  display: grid;
  gap: 16px;
}
.pp-review {
  padding: 16px 0;
  border-top: 1px solid var(--border);
}
.pp-review:first-child { border-top: none; padding-top: 0; }
.pp-review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.pp-review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primarySoft);
  color: var(--primary);
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pp-review-meta { flex: 1; min-width: 0; }
.pp-review-name { font-weight: 700; font-size: 14px; }
.pp-review-date { font-size: 12px; color: var(--muted); margin-top: 2px; }
.pp-review-stars { color: #f59e0b; font-size: 15px; letter-spacing: 1px; }
.pp-review-comment {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  padding-left: 48px;
}

/* Reviews empty */
.pp-reviews-empty {
  padding: 20px 0 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.pp-reviews-empty-icon {
  font-size: 36px;
  color: var(--muted);
  opacity: .4;
}
.pp-reviews-empty-title { font-weight: 700; font-size: 16px; }
.pp-reviews-empty-sub {
  font-size: 14px;
  color: var(--muted);
  max-width: 36ch;
}

/* Mobile CTA bar */
.pp-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  z-index: 100;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.pp-mobile-cta-price {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.pp-mobile-cta-btn {
  flex-shrink: 0;
}

/* Share row */
.pp-share-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.pp-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  border: 1.5px solid var(--border);
  background: var(--card);
  color: var(--text);
  cursor: pointer;
  text-decoration: none;
  transition: background .12s, border-color .12s;
}
.pp-share-btn .material-symbols-outlined { font-size: 16px; }
.pp-share-btn:hover { background: var(--primarySoft); border-color: rgba(0,77,64,.3); }
.pp-share-btn--wa { color: #16a34a; border-color: rgba(22,163,74,.3); }
.pp-share-btn--wa:hover { background: rgba(22,163,74,.08); border-color: rgba(22,163,74,.5); }
.pp-share-copied { font-size: 13px; font-weight: 700; color: var(--primary); }

/* ── Responsive ── */
@media (max-width: 860px) {
  .pp-hero-body {
    grid-template-columns: auto 1fr;
  }
  .pp-cta-card {
    display: none;
  }
  .pp-mobile-cta {
    display: flex;
  }
  .pp-body {
    padding-bottom: 80px;
  }
}

@media (max-width: 600px) {
  .pp-hero-inner {
    padding: 20px 20px 24px;
  }
  .pp-hero-body {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pp-avatar {
    width: 76px;
    height: 76px;
  }
  .pp-avatar-initials {
    font-size: 24px;
  }
  .pp-section {
    padding: 18px 20px;
  }
  .pp-details-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 400px) {
  .pp-page {
    padding: 0 12px 80px;
  }
}

/* Packages */
.pp-packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}
.pp-package {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.pp-package-sessions {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--primary);
  line-height: 1;
}
.pp-package-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 6px;
}
.pp-package-name { font-size: 14px; font-weight: 700; }
.pp-package-desc { font-size: 12px; color: var(--muted); margin: 4px 0 0; line-height: 1.5; }
.pp-package-price { font-size: 22px; font-weight: 800; letter-spacing: -0.03em; margin-top: 8px; }
.pp-package-unit { font-size: 13px; font-weight: 500; color: var(--muted); }
.pp-package-per { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.pp-package-btn { width: 100%; justify-content: center; font-size: 13px; }

/* Services list */
.pp-services-list {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
}
.pp-service-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: var(--card);
  justify-content: space-between;
}
.pp-service-info { flex: 1; min-width: 0; }
.pp-service-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.pp-service-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
  margin-top: 2px;
}
.pp-service-duration {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.pp-service-duration .material-symbols-outlined { font-size: 13px; }
.pp-service-price {
  text-align: right;
  flex-shrink: 0;
}
.pp-service-price strong {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.pp-service-price span {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  display: block;
}
.pp-services-cta {
  width: 100%;
  justify-content: center;
  gap: 8px;
}

/* CTA price "Desde" label */
.pp-cta-price-from {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  align-self: center;
}
