/* -----------------------------
   Tipografía utilidades
------------------------------ */
.pp-h1 { font-size: 3.5rem; font-weight: 700; }
.pp-h2 { font-size: 2.5rem; font-weight: 600; }
.pp-h3 { font-size: 1.8rem; font-weight: 600; }
.pp-text { font-size: 1rem; font-weight: 400; }

/* Lista utilitaria */
.pp-list { list-style: none; padding: 0; margin: 0; }
.pp-list-item { font-size: 1.1rem; margin-bottom: 12px; display: flex; align-items: center; }
.pp-list-item::before {
  content: "✔";
  color: #E287C9;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.3rem;
}

/* -----------------------------
   Hero
------------------------------ */
.hero-personalizada {
  position: relative;
  background: url('https://vprogram.cl/wp-content/uploads/2025/09/vicho.jpg') top/cover no-repeat;
  background-position: center top;
  color: #E287C9;
  text-align: center;
  padding: 120px 20px;
}
.hero-personalizada::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
}

.hero-general {
  position: relative;
  background: url('https://vprogram.cl/wp-content/uploads/2025/09/planificacion_general.jpg') top/cover no-repeat;
  background-position: center top;
  color: #E287C9;
  text-align: center;
  padding: 120px 20px;
}
.hero-general::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
}

.hero-presencial {
  position: relative;
  background: url('https://vprogram.cl/wp-content/uploads/2025/09/planificacion_presencial.jpg') top/cover no-repeat !important;
  background-position: center top !important;
  color: #E287C9;
  text-align: center;
  padding: 120px 20px;
}
.hero-presencial::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
}



/* El H1 se adapta y rompe línea sin desbordar */
.hero .pp-h1 {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1.05;
  overflow-wrap: anywhere;   /* permitimos partir palabras largas */
  word-break: break-word;
  hyphens: auto;             /* añadimos guiones si el SO lo permite */
  text-wrap: balance;        /* mejoramos el salto de línea */
}
.hero .pp-text,
.hero .btn-custom {
  position: relative;
  z-index: 1;
}

/* Destacado inline */
.highlight {
  color: #E287C9;
  font-weight: bold;
  margin-left: 4px;
}

/* -----------------------------
   Cards de precios
------------------------------ */
.price-card {
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  border: 1px solid #F3F4F6;
  transition: all 0.3s ease;
  position: relative;
}
.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.price-card.popular::before {
  content: "⭐ Más Popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #D94EB2;
  color: white;
  padding: 4px 12px;
  font-size: 0.9rem;
  border-radius: 12px;
}

.price-card.recomendado::before {
  content: "🔥 Recomendado";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #0D7A05;
  color: white;
  padding: 4px 12px;
  font-size: 0.9rem;
  border-radius: 12px;
}

/* -----------------------------
   Botón custom (unificado)
------------------------------ */
.btn-custom {
  background: linear-gradient(45deg, #E287C9, #E287C9);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.35);
  color: #fff;
}

/* -----------------------------
   Descripción
------------------------------ */
.description-box {
  background: #ffffff;
  border-left: 5px solid #E287C9;
  padding: 30px;
  border-radius: 8px;
  margin-top: 30px;
}
.description-box .pp-h3 {
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}
.description-box .pp-h3::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background: #E287C9;
  margin: 8px auto 0;
}

/* -----------------------------
   Semana de ejemplo (Acordeón)
------------------------------ */
.week-accordion .accordion-button {
  background: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1rem 1.25rem;
  border-radius: 12px !important;
  color: #374151;
  transition: all 0.3s ease;
  box-shadow: none;
}
.week-accordion .accordion-button:hover {
  background-color: #f9fafb;
  color: #E287C9;
}
.week-accordion .accordion-button:not(.collapsed) {
  background-color: #fff;
  color: #E287C9;
  border-bottom: 2px solid #E287C9;
  box-shadow: none;
}
.week-accordion .accordion-button i {
  color: #6B7280;
  transition: color 0.3s ease;
}
.week-accordion .accordion-button:not(.collapsed) i {
  color: #E287C9;
}
.week-accordion .accordion-button::after {
  font-family: "Bootstrap Icons";
  content: "\f282"; /* bi-chevron-down */
  background-image: none !important;
  font-size: 1rem;
  margin-left: auto;
  transition: transform 0.3s ease, color 0.3s ease;
  color: #6B7280;
}
.week-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
  color: #E287C9;
}
.week-accordion .accordion-body {
  background: #fff;
  border-top: 1px solid #f3f4f6;
  font-size: 0.9rem;
  line-height: 1.6;
  padding: 1rem 1.25rem;
  border-radius: 0 0 12px 12px;
  color: #6B7280;
  font-family: monospace; 
  white-space: pre-wrap;
}

/* -----------------------------
   Sección pasos
------------------------------ */
.step-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}
.icon-wrapper {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.8rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#formPlanModal .modal-content { border-radius: 16px; }
#formPlanModal .modal-body { padding: 1.5rem; }


/* -----------------------------
   Página General
------------------------------ */
/* Variante de Hero para la página General */
.hero.hero--general {
  background: url('https://vprogram.cl/wp-content/uploads/2025/09/general_red.jpg') top/cover no-repeat;
}

/* (Opcional) Sello alternativo para destacar el plan General */
.price-card.recommended::before {
  content: "⭐ Recomendado";
  background: #D94EB2; /* coherente con el gradiente/branding */
}

/* -----------------------------
   Página Presencial
------------------------------ */

.cross-link {
  color: #E287C9;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s ease;
}
.cross-link:hover {
  color: #D94EB2;
}

.demo-pre {
  overflow-x: auto;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.price-asterisk {
  color: #E287C9;
  font-style: italic;
  font-size: 0.9em;
  margin-left: 2px;
}

/* Hero variante para presencial */
.hero-presencial {
  background: url('https://vprogram.cl/wp-content/uploads/2025/09/entrenador-1on1.jpg') top/cover no-repeat; /* Placeholder íntimo; reemplaza */
}
.hero-presencial::before {
  background: linear-gradient(to bottom right, rgba(0,0,0,0.7), rgba(0,0,0,0.3)); /* Overlay más claro para indoor */
}


