/* ─────────────────────────────────────────────────────────────────
   /precios · Listado público de cuotas con CTAs por plan
   ───────────────────────────────────────────────────────────────── */

.precios-page {
  background: #fafaf7;
  min-height: 100vh;
}

/* ─── Hero ───────────────────────────────────────────────────── */
.precios-hero {
  padding: 80px 0 56px;
  text-align: center;
  background: white;
  border-bottom: 1px solid #eee;
}

.precios-eyebrow {
  display: inline-block;
  padding: 4px 14px;
  background: var(--color-orange-light, #FFE8DC);
  color: var(--color-orange-text, #B43A0B);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
}

.precios-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 0 0 16px;
  font-weight: 800;
}

.precios-lead {
  max-width: 680px;
  margin: 0 auto 26px;
  color: #444;
  font-size: 1.1rem;
  line-height: 1.6;
}

.precios-trust {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.92rem;
  color: var(--color-orange-text, #B43A0B);
  font-weight: 600;
}

/* ─── Bloque por modalidad ───────────────────────────────────── */
.precios-modality {
  padding: 60px 0 40px;
  border-bottom: 1px solid #eee;
}

.precios-modality:nth-of-type(even) {
  background: white;
}

.precios-modality-header {
  text-align: center;
  margin-bottom: 32px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.precios-modality-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 10px;
  font-weight: 800;
}

.precios-modality-header p {
  color: #555;
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 12px;
}

.precios-modality-link {
  display: inline-block;
  color: var(--color-orange-text, #B43A0B);
  font-weight: 700;
  font-size: 0.94rem;
  text-decoration: none;
}

.precios-modality-link:hover {
  text-decoration: underline;
}

/* ─── Grid de planes ─────────────────────────────────────────── */
.precios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.precios-card {
  position: relative;
  background: white;
  border: 2px solid #e8e8e2;
  border-radius: 16px;
  padding: 32px 24px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.precios-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.precios-card.is-featured {
  border-color: var(--color-orange-text, #B43A0B);
  box-shadow: 0 8px 28px rgba(180, 58, 11, 0.08);
}

.precios-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-orange-text, #B43A0B);
  color: white;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.precios-card h3 {
  font-size: 1.15rem;
  margin: 0 0 8px;
  font-weight: 800;
  color: #1a1a1a;
}

.precios-card-desc {
  color: #666;
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0 0 18px;
  min-height: 50px;
}

.precios-card-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0e9;
}

.precios-card-amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-orange-text, #B43A0B);
  line-height: 1;
  letter-spacing: -0.02em;
}

.precios-card-unit {
  font-size: 0.88rem;
  color: #888;
  font-weight: 500;
}

.precios-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}

.precios-card-features li {
  padding: 5px 0;
  font-size: 0.91rem;
  color: #444;
  line-height: 1.5;
}

.precios-card-cta {
  display: block;
  text-align: center;
  width: 100%;
  padding: 13px 22px;
  font-size: 0.94rem;
}

.precios-card.is-featured .precios-card-cta {
  background: var(--color-orange-text, #B43A0B);
  color: white;
}

/* ─── USPs (Lo que recibes con cualquier cuota) ───────────────── */
.precios-usps {
  background: white;
  padding: 70px 0 60px;
  border-bottom: 1px solid #eee;
}

.precios-usps h2 {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 36px;
  font-weight: 800;
}

.precios-usps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.precios-usps-grid article {
  background: #fafaf7;
  border: 1px solid #e8e8e2;
  border-radius: 14px;
  padding: 24px 22px;
  text-align: left;
  transition: transform 0.15s;
}

.precios-usps-grid article:hover {
  transform: translateY(-2px);
}

.precios-usp-icon {
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 12px;
}

.precios-usps-grid h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 8px;
  color: #1a1a1a;
}

.precios-usps-grid p {
  color: #555;
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

/* ─── FAQ ─────────────────────────────────────────────────────── */
.precios-faq {
  background: white;
  padding: 70px 0;
  border-bottom: 1px solid #eee;
}

.precios-faq h2 {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 32px;
  font-weight: 800;
}

.precios-faq details {
  background: #fafaf7;
  border: 1px solid #e8e8e2;
  border-radius: 10px;
  margin: 0 auto 12px;
  padding: 16px 20px;
  max-width: 820px;
}

.precios-faq summary {
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
  color: #1a1a1a;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.precios-faq summary::after {
  content: "+";
  margin-left: auto;
  color: var(--color-orange-text, #B43A0B);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1;
}

.precios-faq details[open] summary::after {
  content: "−";
}

.precios-faq details[open] summary {
  margin-bottom: 12px;
  color: var(--color-orange-text, #B43A0B);
}

.precios-faq p {
  color: #444;
  font-size: 0.96rem;
  line-height: 1.65;
  margin: 0;
}

.precios-faq strong {
  color: #1a1a1a;
}

/* ─── CTA final ──────────────────────────────────────────────── */
.precios-cta-final {
  padding: 80px 0;
  text-align: center;
  background: var(--color-orange-light, #FFE8DC);
}

.precios-cta-final h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin: 0 0 14px;
  font-weight: 800;
  color: #1a1a1a;
}

.precios-cta-final p {
  max-width: 600px;
  margin: 0 auto 28px;
  color: #444;
  font-size: 1.05rem;
  line-height: 1.65;
}

.precios-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.precios-cta-buttons .btn {
  padding: 14px 26px;
  font-size: 0.97rem;
}
