/* ══════════════════════════════════════
   INNER PAGES STYLES
══════════════════════════════════════ */

/* Header always visible on inner pages */
#header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 24px rgba(0,0,0,0.08);
}

/* Active nav link */
.nav a.active {
  color: var(--orange);
}
.nav a.active::after { width: 100%; }

/* Page main padding */
.page-main { padding-top: 80px; }

/* Page hero */
.page-hero {
  padding: 80px 24px 60px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
}

.page-title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
}

.page-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.75;
}

/* ══════ FOUNDERS — CIRCULAR ══════ */
.founders-row {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 56px;
  margin-bottom: 72px;
  flex-wrap: wrap;
}

.founder-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 320px;
}

.founder-avatar-ring {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  padding: 4px;
  background: #E8900A;
  margin-bottom: 20px;
  box-shadow: 0 8px 32px rgba(212,120,10,0.35);
  transition: transform 0.3s, box-shadow 0.3s;
}

.founder-card:hover .founder-avatar-ring {
  transform: scale(1.04);
  box-shadow: 0 12px 40px rgba(123,47,190,0.4);
}

.founder-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 3px solid #fff;
  display: block;
}

.founder-card h3 {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.founder-role {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.founder-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.founders-bio {
  max-width: 100%;
  margin: 48px auto 0;
  text-align: left;
}

.founders-bio {
  background: rgba(245, 168, 40, 0.25);
  border: 1px solid rgba(245, 168, 40, 0.25);
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(245, 168, 40, 0.15);
  padding: 24px 48px;
}

.founders-bio p {
  font-size: 1.05rem;
  color: #000;
  line-height: 1.85;
  margin: 0 0 16px;
}

.founders-bio p:last-child {
  margin-bottom: 0;
}

/* ══════ QUIÉNES SOMOS ══════ */
.team-section {
  padding: 100px 24px;
  background: #ffffff;
}

.founders-photos-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.founders-photo-item img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  display: block;
}

@media (max-width: 600px) {
  .founders-photos-row { grid-template-columns: 1fr; }
  .founders-photo-item img { height: 260px; }
}

.team-section .section-title,
.team-section .section-label { color: #000; }
.team-section h3,
.team-section .founder-role { color: #E8900A; }

.team-section .founder-card p { color: rgba(255,255,255,0.85); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 56px;
  margin-bottom: 80px;
}

.team-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.team-photo-wrap {
  height: 220px;
  overflow: hidden;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}

.team-card:hover .team-photo { transform: scale(1.04); }

.btn-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 12px 24px;
  background: #F5A828;
  color: white;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 3px 10px rgba(245,168,40,0.3);
  transition: all 0.25s;
  text-decoration: none;
}

.btn-linkedin:hover {
  background: #d48a10;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(233,30,140,0.3);
}

.team-info { padding: 28px; }

.team-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.team-role {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.team-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Mission placeholder */
.mission-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
  padding: 36px 48px;
  border: 2px dashed var(--border-strong);
  border-radius: 16px;
  background: var(--bg-3);
  text-align: center;
}

.mission-placeholder-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.mission-placeholder p {
  font-size: 0.9rem;
  color: var(--text-muted);
  opacity: 0.65;
  margin: 0;
}

/* Mission block */
.mission-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
  padding: 60px;
  background: var(--bg-3);
  border-radius: 24px;
  border: 1px solid var(--border);
}

.mission-photo .mission-img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  height: 320px;
  box-shadow: var(--shadow-md);
}

.mission-text .section-title { margin-bottom: 16px; }
.mission-text p {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.95rem;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.value-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.value-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255,107,53,0.2);
}

.value-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}

.value-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.value-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ══════ INTERLUDE SESSIONS ══════ */
.sessions-section {
  padding: 100px 24px;
  background: #ffffff;
  border-top: none;
}

.sessions-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 52px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.sessions-simple-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 72px;
  align-items: center;
}

.sessions-simple-text .section-title { margin-bottom: 20px; font-size: clamp(1.8rem, 3.4vw, 2.8rem); }

.sessions-simple-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.btn-sessions-ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 12px 22px;
  background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
  color: white;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(225,48,108,0.3);
}

.btn-sessions-ig:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(225,48,108,0.45);
}

.sessions-poster-img {
  width: 280px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  display: block;
}
.sessions-flyer-mobile { display: none; }

@media (max-width: 768px) {
  .sessions-simple-grid { grid-template-columns: 1fr; gap: 40px; }
  .sessions-poster-img { width: 100%; max-width: 320px; margin: 0 auto; }
}

.sessions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
}

.sessions-section .section-title,
.sessions-section .section-label { color: var(--text); }

.sessions-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.5;
}

.sessions-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  padding-left: 0;
}

.sessions-list li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
  padding-left: 20px;
  position: relative;
}

.sessions-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.sessions-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
}

.sessions-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sessions-highlight-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
}

.sessions-highlight-icon {
  font-size: 1.6rem;
  min-width: 32px;
}

.sessions-highlight-card strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.sessions-highlight-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.sessions-photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.sessions-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  display: block;
}

@media (max-width: 768px) {
  .sessions-grid { grid-template-columns: 1fr; gap: 40px; }
  .sessions-photo-row { grid-template-columns: 1fr; }
}

/* ══════ SOBRE EL PROGRAMA ══════ */
.prog-includes-section {
  padding: 80px 24px 100px;
  background: var(--bg);
}

.includes-box {
  margin-top: 40px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 48px;
  box-shadow: var(--shadow-sm);
}

.includes-box-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.includes-box-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.includes-box-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.includes-box-icon {
  font-size: 1.4rem;
  min-width: 28px;
  margin-top: 1px;
}

@media (max-width: 600px) {
  .includes-box { padding: 28px 24px; }
}

.prog-timeline-section {
  padding: 30px 24px 100px;
  background: #fff;
  border-top: none;
}

.prog-timeline-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.75;
  margin: 16px 0 40px;
}

.inscripcion-section {
  padding: 100px 24px;
  background: #F5B030;
  border-top: none;
}

.inscripcion-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 680px;
  margin: 48px 0 40px;
}

.inscripcion-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.inscripcion-num {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--gradient-orange);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-orange);
}

.inscripcion-step strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.inscripcion-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.inscripcion-step p a {
  color: var(--orange);
  font-weight: 600;
}

.inscripcion-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.inscripcion-tel {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.inscripcion-tel a {
  color: var(--orange);
  font-weight: 700;
}

.prog-cta-section {
  padding: 100px 24px;
  background: linear-gradient(160deg, #F5A828 0%, #FBCA48 100%);
}

.prog-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.prog-cta-inner .section-title { color: #fff; margin-bottom: 16px; }
.prog-cta-inner p {
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

/* ══════ PILLARS ══════ */
.prog-pillars-section {
  padding: 100px 24px;
  background: var(--bg);
}

.prog-pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: center;
}

.prog-pillars-left .section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 0;
}

.prog-pillars-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem) !important;
}

.prog-pillars-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.prog-pillar-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.prog-arrow {
  font-size: 2.2rem;
  color: var(--orange);
  font-weight: 900;
  margin-top: 22px;
  flex-shrink: 0;
  -webkit-text-stroke: 1.5px var(--orange);
}

.prog-pillar-box {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  flex: 1;
}

.prog-pillar-box strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.prog-pillar-box p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  .prog-pillars-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ══════ TIMELINE ORANGE BOX ══════ */
.timeline-orange-box {
  background: rgba(245, 176, 48, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(245, 176, 48, 0.3);
  border-radius: 20px;
  padding: 40px 48px;
}

/* swipe hint — solo visible en móvil */
.stl-swipe-hint { display: none; }

/* ══════ STAGE TIMELINE ══════ */
.stl-timeline {
  position: relative;
  margin-top: 48px;
  padding-bottom: 48px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.stl-timeline::-webkit-scrollbar {
  display: none;
}

.stl-track {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.stl-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 0;
  position: relative;
  perspective: 800px;
  cursor: pointer;
}

.stl-card-inner {
  width: 100%;
  min-height: 220px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.stl-card:hover .stl-card-inner {
  transform: rotateY(180deg);
}

.stl-card-front,
.stl-card-back {
  width: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
}

.stl-card-back {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-sizing: border-box;
  border-radius: 10px;
}

.stl-card-back p {
  color: #fff;
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center;
  margin: 0;
  font-weight: 500;
}

.stl-badge {
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 7px 10px;
  border-radius: 10px 10px 0 0;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  text-transform: uppercase;
}

.stl-body {
  background: #fff;
  border-radius: 0 0 14px 14px;
  padding: 18px 12px 28px;
  min-height: 150px;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stl-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #1a1a2e;
  display: block;
  margin-bottom: 0;
}

.stl-desc {
  font-size: 0.75rem;
  color: #555;
  line-height: 1.55;
  margin: 0;
}

.stl-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-top: 16px;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px currentColor;
  flex-shrink: 0;
}

.stl-line {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(0,0,0,0.3);
  z-index: 0;
}

/* ══════ HORIZONTAL TIMELINE ══════ */
.htimeline {
  overflow-x: auto;
  padding-bottom: 12px;
  margin-top: 48px;
}

.htimeline-track {
  display: flex;
  align-items: stretch;
  gap: 0;
  min-width: 900px;
}

.htimeline-card {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}

.htimeline-card strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.htimeline-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.htimeline-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}

.htimeline-connector {
  width: 32px;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.htimeline-connector::before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: var(--border-strong);
}

.prog-timeline-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.prog-timeline-orange {
  background: #fff;
  border-top: none;
}

.prog-timeline-orange .htimeline-card {
  background: rgba(255,255,255,0.95);
}

.prog-timeline-orange .htimeline-connector::before {
  background: rgba(255,255,255,0.5);
}

.htimeline-month {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

/* ══════ PROMISE ══════ */
.prog-promise-wrapper {
  background: #fff;
  border-radius: 24px;
  padding: 48px 80px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  margin: 0 -40px;
}
.prog-promise-section {
  padding: 16px 0px 100px;
  background: #fff;
  border-top: none;
}

.prog-promise-layout {
  display: grid;
  grid-template-columns: 5fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.prog-promise-left {
  background: rgba(245, 176, 48, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(245, 176, 48, 0.3);
  border-radius: 20px;
  padding: 28px 36px 28px 44px;
  margin-left: 0;
  margin-right: 0;
  display: flex;
  flex-direction: column;
}

.prog-promise-right {
  background: #F5B030;
  border-radius: 20px;
  padding: 28px 44px;
  margin-right: 0;
  display: flex;
  flex-direction: column;
}

.promise-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.promise-list li {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.6;
}

.promise-list li strong {
  color: #F5B030;
}

.prog-stats-box {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  flex: 1;
}

.prog-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.prog-stat {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  border-right: 1px solid rgba(255,255,255,0.2);
}

.prog-stat:nth-child(even) {
  border-right: none;
}

.prog-stat:nth-last-child(-n+2) {
  border-bottom: none;
}

.prog-stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.prog-stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .prog-promise-layout { grid-template-columns: 1fr; gap: 48px; }
  .prog-stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ══════ INSCRIPCION BOX ══════ */
.inscripcion-section {
  padding: 200px 24px 120px;
  background: #fff;
  border-top: none;
}

.inscripcion-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.inscripcion-box-left {
  background: transparent;
  padding: 32px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.inscripcion-box-steps {
  background: transparent;
  padding: 32px 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  justify-content: center;
}

.inscripcion-step-mini {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.inscripcion-step-mini .inscripcion-num {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: #F5A828;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-orange);
}

.inscripcion-step-mini strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}

.inscripcion-step-mini p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .inscripcion-box { grid-template-columns: 1fr; }
  .inscripcion-box-left, .inscripcion-box-steps { padding: 36px 28px; }
}

/* ══════ PHOTO BAND ══════ */
.photo-band-wrap {
  margin-top: 96px;
  margin-left: -120px;
  margin-right: -120px;
  overflow: hidden;
  border-radius: 0;
}

.photo-band {
  overflow: hidden;
}

.photo-band-track {
  display: flex;
  gap: 16px;
  animation: bandScroll 30s linear infinite;
  width: max-content;
}

.photo-band-track img {
  height: 200px;
  width: auto;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.band-zoom {
  height: 200px;
  width: 270px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
}

.band-zoom img {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover;
  border-radius: 0;
  transform: scale(1.5);
  transform-origin: center 35%;
}

@keyframes bandScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.photo-band-wrap:hover .photo-band-track {
  animation-play-state: paused;
}

/* ══════ BLOG HERO ══════ */
.blog-hero {
  padding: 80px 24px 30px;
  background: #ffffff;
}

.blog-hero-row {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 12px;
}

.blog-hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.2;
  flex-shrink: 0;
  color: #1a1a2e;
}

.blog-hero-arrow {
  font-size: 2rem;
  color: #1a1a2e;
  flex-shrink: 0;
}

.blog-hero-desc {
  font-size: 1.1rem;
  color: #1a1a2e;
  line-height: 1.7;
  flex: 1;
}

/* ══════ BLOG ══════ */
.blog-section {
  padding: 80px 24px 100px;
  background: #ffffff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
  background: rgba(255, 185, 50, 0.18);
  border-radius: 24px;
  padding: 32px;
}

.blog-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transition: all 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-card-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.blog-card-video {
  padding: 0;
}

.blog-card-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-emoji { font-size: 3.5rem; filter: sepia(1) saturate(5) hue-rotate(340deg) brightness(1.1); }

.blog-card-body { padding: 24px; }

.blog-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,107,53,0.1);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.blog-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-card-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.blog-read {
  color: var(--orange);
  font-weight: 600;
  transition: gap 0.2s;
}

.blog-read:hover { letter-spacing: 0.03em; }

/* ══════ CONTACTO ══════ */
.contact-section {
  padding: 80px 24px 100px;
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 0;
}

/* ── Logo animado contacto ── */
.contact-logo-anim {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  padding: 0;
  margin-top: 40px;
}

.contact-logo-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.clr {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  animation: ringPulse 3s ease-in-out infinite;
}

.clr-1 { width: 320px; height: 320px; border-color: rgba(123,47,190,0.25); animation-delay: 0s; }
.clr-2 { width: 420px; height: 420px; border-color: rgba(255,160,48,0.2); animation-delay: 0.8s; }
.clr-3 { width: 520px; height: 520px; border-color: rgba(123,47,190,0.12); animation-delay: 1.6s; }

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.5; }
}

.contact-logo-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: logoFloat 4s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.contact-logo-img {
  width: 420px;
  height: 420px;
  object-fit: contain;
}

.contact-logo-inner .logo-the {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.contact-logo-inner .logo-interlude {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  font-family: var(--font);
  line-height: 1;
}

.contact-logo-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
  font-style: italic;
}

.contact-options h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 0;
  margin-bottom: 20px;
}

.contact-option-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255, 175, 30, 0.55);
  border: 1px solid rgba(255, 175, 30, 0.7);
  border-radius: 16px;
  margin-bottom: 12px;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  text-decoration: none;
  color: #000000;
}

.contact-option-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.contact-whatsapp:hover { border-color: rgba(37,211,102,0.4); }
.contact-instagram:hover { border-color: rgba(233,30,140,0.3); }
.contact-email:hover { border-color: rgba(255,160,48,0.4); }
.contact-linkedin:hover { border-color: rgba(123,47,190,0.3); }

.contact-opt-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
}

.contact-whatsapp .contact-opt-icon { background: #ffffff; color: #25D366; }
.contact-instagram .contact-opt-icon { background: #ffffff; color: var(--pink); }
.contact-email .contact-opt-icon { background: #ffffff; color: var(--orange); }
.contact-linkedin .contact-opt-icon { background: #ffffff; color: var(--purple); }

.contact-option-card strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-option-card p {
  font-size: 0.95rem;
  color: #000000;
  margin: 0;
}

.contact-arrow {
  margin-left: auto;
  color: #000000;
  font-size: 1.1rem;
}

/* ══════════════════════════════════════
   TABLET INNER PAGES (769px – 1024px)
══════════════════════════════════════ */
@media (min-width: 769px) and (max-width: 1024px) {

  /* ── General page padding ── */
  .page-main { padding-top: 72px; }
  .page-hero { padding: 64px 40px 48px; }
  .page-title { font-size: clamp(2rem, 4vw, 3rem); }

  /* ── Swipe hint visible en tablet ── */
  .stl-swipe-hint { display: block; text-align: center; font-size: 0.8rem; color: rgba(26,26,46,0.5); margin-top: 12px; font-style: italic; }

  /* ── Lo que incluye / En números — contenedor más pequeño ── */
  .prog-promise-layout { grid-template-columns: 1fr 280px !important; }
  .prog-promise-right { padding: 20px 16px !important; }
  .prog-stats-grid { grid-template-columns: 1fr 1fr !important; gap: 8px !important; }
  .prog-stat { padding: 10px 8px !important; align-items: center !important; text-align: center !important; }
  .prog-stat-label { font-size: 0.82rem !important; }

  /* ── Founders lado a lado ── */
  .founders-row { flex-direction: row !important; justify-content: center; gap: 40px; flex-wrap: wrap; }
  .founder-avatar-ring { width: 180px !important; height: 180px !important; }
  .founder-avatar { width: 172px !important; height: 172px !important; }

  /* ── Sessions: título arriba completo, texto izq, flyer dcha ── */
  .sessions-simple-grid { grid-template-columns: 1fr !important; gap: 0 !important; }
  .sessions-simple-poster { display: none !important; }
  .sessions-simple-text {
    display: grid !important;
    grid-template-columns: 1fr 300px !important;
    grid-template-rows: auto auto !important;
    gap: 16px 32px !important;
  }
  .sessions-simple-text .section-label { grid-column: 1 / -1; }
  .sessions-simple-text .sessions-title-mobile { grid-column: 1 / -1; }
  .sessions-simple-text .sessions-flyer-mobile {
    display: block !important;
    grid-column: 2 !important;
    grid-row: 3 / 6 !important;
    width: 100% !important;
    max-width: 300px !important;
    align-self: start;
    margin: -30px 0 0 0 !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18) !important;
  }
  .sessions-simple-text p { grid-column: 1; }
  .sessions-simple-text a.btn-sessions-ig { grid-column: 1; }

  /* ── Sobre el programa — pillars ── */
  .prog-pillars-section { padding: 48px 40px; }
  .prog-pillars-grid { grid-template-columns: 1fr; gap: 32px; }
  .prog-pillars-left { text-align: left; }
  .prog-pillar-row { gap: 16px; }
  .prog-pillar-box { padding: 20px 24px; }

  /* ── Timeline ── */
  .prog-timeline-section { padding: 32px 24px 48px; }
  .stl-card { min-width: 175px; flex: 0 0 175px; }
  .stl-card-inner { min-height: 230px; }
  .stl-line {
    left: calc(175px / 2);
    right: auto;
    width: calc(5 * (175px + 12px));
  }
  .stl-title { font-size: 0.82rem; }
  .stl-badge { font-size: 0.65rem; padding: 6px 10px; }
  .stl-body { padding: 12px 10px; min-height: 175px; }

  /* ── Promise / Garantías ── */
  .prog-promise-section { padding: 32px 40px 48px !important; }
  .prog-promise-wrapper { padding: 32px !important; }
  .prog-promise-layout { grid-template-columns: 1fr !important; gap: 28px !important; }
  .prog-promise-left { padding: 28px 24px !important; }
  .prog-promise-right { padding: 28px 24px !important; }
  .promise-list li { font-size: 0.95rem; }
  .prog-stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .prog-stat { padding: 14px 12px; }

  /* ── Inscripción ── */
  .inscripcion-section { padding: 32px 40px 48px !important; }
  .inscripcion-box { grid-template-columns: 1fr !important; gap: 24px !important; }
  .inscripcion-box-left { padding: 28px 24px !important; }
  .inscripcion-box-steps { padding: 0 24px 24px !important; gap: 20px !important; flex-direction: column; }

  /* ── Quiénes somos — founders ── */
  .team-section { padding: 48px 40px; }
  .founders-row { flex-direction: column; align-items: center; gap: 32px; margin-bottom: 24px; }
  .founder-avatar-ring { width: 200px; height: 200px; }
  .founder-avatar { width: 192px; height: 192px; }
  .founders-bio { padding: 28px 32px; }
  .photo-band-track img { height: 200px; }

  /* ── Sessions / Orígenes ── */
  .sessions-section { padding: 40px 40px; }
  .sessions-card { padding: 32px 28px; }
  .sessions-simple-grid { grid-template-columns: 1fr; gap: 32px; }
  .sessions-poster-img { width: 100%; max-width: 320px; margin: 0 auto; display: block; }

  /* ── Contacto ── */
  .contact-section { padding: 64px 40px 64px !important; }
  .contact-section > .container > .reveal { margin-bottom: 0 !important; }
  .contact-section > .container > p { margin-bottom: 0 !important; }
  .contact-grid { margin-top: -60px !important; }
  .contact-grid { grid-template-columns: 1fr 1fr !important; gap: 40px !important; align-items: center !important; }
  .contact-logo-anim { display: flex !important; margin-top: 0; width: 100%; height: 600px; }
  .clr-1 { width: 220px !important; height: 220px !important; }
  .clr-2 { width: 300px !important; height: 300px !important; }
  .clr-3 { width: 380px !important; height: 380px !important; }
  .contact-logo-inner img { width: 320px !important; height: 320px !important; }
  .contact-option-card { padding: 12px 16px; margin-bottom: 8px; }
  .contact-opt-icon { width: 36px; height: 36px; }
  .contact-option-card strong { font-size: 0.9rem; }
  .contact-option-card p { font-size: 0.78rem; }

  /* ── Blog ── */
  .blog-hero { padding: 80px 40px 32px; }
  .blog-section { padding: 40px 40px 64px; }
  .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    padding: 24px;
  }
  .blog-card-img { height: 150px; }
  .blog-card-body { padding: 18px 20px; }
}

/* Responsive inner pages */
@media (max-width: 768px) {
  .mission-block {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 32px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  /* Quiénes somos */
  .team-section { padding: 36px 16px 28px; }
  .team-section .section-title { font-size: clamp(1.7rem, 7vw, 2.4rem) !important; }
  .founders-row { flex-direction: column; align-items: center; gap: 28px; margin-top: 24px; margin-bottom: 0; }
  .founder-avatar-ring { width: 180px; height: 180px; }
  .founder-card h3 { font-size: 1.2rem; }
  .founders-bio {
    padding: 18px 20px;
    margin-top: 24px;
    border-radius: 18px;
  }
  .founders-bio p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 10px; white-space: normal; }

  /* Photo band — FIX: elimina los márgenes negativos que desbordan en móvil */
  .photo-band-wrap {
    margin-left: -16px !important;
    margin-right: -16px !important;
    margin-top: 28px;
    overflow: hidden;
  }
  .photo-band-track img { height: 150px; }

  /* Sessions */
  .sessions-section { padding: 32px 16px 36px; }
  .sessions-card { padding: 24px 18px; }
  .sessions-simple-grid { grid-template-columns: 1fr; gap: 20px; }
  .sessions-simple-poster { display: none; }
  .sessions-flyer-mobile { display: block; width: 100%; max-width: 320px; border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,0.15); margin: 14px auto 18px; }
  .sessions-title-mobile { font-size: clamp(1.05rem, 4.5vw, 1.3rem) !important; line-height: 1.35 !important; }
  .sessions-simple-text .section-title { font-size: clamp(1.5rem, 6vw, 2rem); margin-bottom: 12px; }
  .sessions-simple-text p { font-size: 0.88rem; line-height: 1.65; margin-bottom: 10px; }
  .btn-sessions-ig { font-size: 0.82rem !important; padding: 10px 16px !important; margin-top: 16px; }

  /* Sobre el programa — pillars */
  .prog-pillars-section { padding: 36px 16px 32px !important; }
  .prog-pillars-grid { grid-template-columns: 1fr !important; gap: 24px !important; padding: 0 !important; }
  .prog-pillars-title { font-size: clamp(1.9rem, 8vw, 2.8rem) !important; }
  .prog-arrow { font-size: 1.4rem; margin-top: 14px; }
  .prog-pillar-box { padding: 14px 16px; }
  .prog-pillar-box strong { font-size: 0.95rem; }
  .prog-pillar-box p { font-size: 0.82rem; }

  /* Sobre el programa — swipe hint (solo móvil) */
  .stl-swipe-hint {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(26,26,46,0.5);
    margin-top: 12px;
    letter-spacing: 0.03em;
  }

  /* Sobre el programa — timeline */
  .prog-timeline-section { padding: 20px 16px 40px !important; }
  .timeline-orange-box { padding: 20px 16px !important; }
  .prog-timeline-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    margin-bottom: 24px !important;
  }
  .prog-timeline-header h2 { font-size: clamp(1.5rem, 6vw, 2rem) !important; }
  .prog-timeline-header > span { display: none; }
  .prog-timeline-header p { font-size: 0.82rem !important; }
  .stl-timeline { margin-top: 20px; padding-bottom: 40px; }
  .stl-track { gap: 8px; }
  .stl-line {
    bottom: 49px;
    left: calc(155px / 2);
    right: auto;
    width: calc(5 * (155px + 8px));
  }
  .stl-card { min-width: 155px; flex: 0 0 155px; }
  .stl-card-inner { min-height: 250px; }
  .stl-title { font-size: 0.78rem; }
  .stl-badge { font-size: 0.62rem; padding: 5px 8px; }
  .stl-body {
    padding: 12px 8px 10px;
    min-height: 165px;
    flex-direction: column;
    justify-content: space-between;
  }
  .stl-body::after {
    content: 'Mantén pulsado para saber más';
    display: block;
    font-size: 0.6rem;
    color: rgba(26,26,46,0.38);
    text-align: center;
    margin-top: 8px;
    font-style: italic;
  }

  /* Sobre el programa — promise */
  .prog-promise-section { padding: 16px 16px 48px !important; }
  .prog-promise-wrapper { padding: 20px 16px !important; margin: 0 !important; }
  .prog-promise-layout { grid-template-columns: 1fr !important; gap: 20px !important; }
  .prog-promise-left { padding: 20px 16px !important; }
  .prog-promise-left h2 { font-size: 1.35rem !important; margin-bottom: 10px !important; }
  .prog-promise-right { padding: 20px 16px !important; }
  .prog-promise-right h2 { margin-bottom: 4px !important; }
  .promise-list { gap: 6px; }
  .promise-list li { font-size: 0.82rem; line-height: 1.5; }
  .prog-stats-box { margin-top: 8px !important; }
  .prog-stat-num { font-size: 1.8rem; }
  .prog-stat-label { font-size: 0.75rem; }
  .prog-stat { padding: 10px 8px; }

  /* Sobre el programa — inscripcion */
  .inscripcion-section { padding: 20px 16px 48px !important; }
  .inscripcion-box { grid-template-columns: 1fr !important; gap: 20px !important; }
  .inscripcion-box-left { padding: 20px 16px !important; }
  .inscripcion-box-left .btn-primary { font-size: 0.88rem !important; padding: 10px 18px !important; }
  .inscripcion-box-steps { padding: 0 16px 20px !important; gap: 16px !important; }
  .inscripcion-step-mini { gap: 12px; }
  .inscripcion-step-mini strong { font-size: 0.95rem; }
  .inscripcion-step-mini p { font-size: 0.85rem; }

  /* Blog */
  .blog-hero { padding: 60px 16px 24px; }
  .blog-hero-title { font-size: clamp(1.8rem, 6vw, 2.8rem); }
  .blog-section { padding: 40px 16px 60px; }

  /* Contacto */
  .contact-section { padding: 60px 16px 60px !important; }
  .contact-logo-anim { display: none; }
  .contact-option-card { padding: 16px 18px; }

  /* Page hero */
  .page-hero { padding: 60px 16px 40px; }
  .page-title { font-size: clamp(1.8rem, 6vw, 3rem); }
}

@media (max-width: 480px) {
  .team-section { padding: 40px 12px; }
  .founder-avatar-ring { width: 160px; height: 160px; }
  .founder-avatar { width: 152px; height: 152px; }
  .prog-promise-wrapper { padding: 16px 12px !important; }
  .blog-grid { grid-template-columns: 1fr; padding: 16px; }
  .blog-card-img { height: 180px; }
  .contact-option-card strong { font-size: 0.95rem; }
  .contact-option-card p { font-size: 0.82rem; }
  .inscripcion-num { width: 36px; height: 36px; min-width: 36px; font-size: 1rem; }
  .promise-list li { font-size: 0.88rem; }
  .stl-card { min-width: 140px; flex: 0 0 140px; }
  .stl-line {
    left: calc(140px / 2);
    width: calc(5 * (140px + 8px));
  }
}

/* ══════════════════════════════════════
   PACKS SECTION
══════════════════════════════════════ */
.packs-section {
  padding: 100px 0 100px;
  background: #fff;
}

.packs-header {
  margin-bottom: 48px;
}

.packs-header-row {
  display: flex;
  align-items: center;
  gap: 40px;
}

.packs-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: -30px;
}

@media (max-width: 768px) {
  .packs-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .packs-header-row > span { display: none; }
}

.packs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

/* Stacked full-width layout */
.packs-stack {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 200px;
}

.packs-stack .pack-card {
  width: 100%;
}

.pack-wrapper {
  display: grid;
  grid-template-columns: 2fr 400px;
  gap: 0;
  align-items: stretch;
}

.pack-wrapper--reverse {
  grid-template-columns: 400px 2fr;
}

.pack-photo-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Pack 1: foto a la derecha — borde izquierdo de la foto recto, borde derecho del card recto */
.pack-wrapper > .pack-photo-wrap {
  border-radius: 0 24px 24px 0;
}
.pack-wrapper > .pack-card {
  border-radius: 28px 0 0 28px;
}

/* Pack 2: foto a la izquierda — borde derecho de la foto recto, borde izquierdo del card recto */
.pack-wrapper--reverse > .pack-photo-wrap {
  border-radius: 24px 0 0 24px;
}
.pack-wrapper--reverse > .pack-card {
  border-radius: 0 28px 28px 0;
}

.pack-photo {
  width: 100%;
  flex: 1;
  min-height: 0;
  object-fit: cover;
  display: block;
}

.pack-photo-wrap {
  position: relative;
}

.pack-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(245, 168, 40, 0.35);
  pointer-events: none;
}

.pack-collage {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  border-bottom: 2px solid rgba(255,255,255,0.6);
}

.pack-wrapper:not(.pack-wrapper--reverse) .pack-photo:first-child {
  border-bottom: 2px solid #f8b83a;
}

.pack-collage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .pack-wrapper,
  .pack-wrapper--reverse {
    grid-template-columns: 1fr;
  }
  .pack-wrapper--reverse .pack-photo {
    order: -1;
  }
  .pack-photo {
    height: 280px;
  }
}

.pack-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

/* Pack layout: timeline left, info right */
.pack-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

.pack-layout .pack-timeline { order: 2; }
.pack-layout .pack-info { order: 1; }

/* Clean vertical timeline */

@media (max-width: 768px) {
  .pack-layout { grid-template-columns: 1fr; gap: 32px; }
}

.pack-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pack-sections-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.pack-info-block {
  background: rgba(255,220,140,0.7);
  border-radius: 16px;
  padding: 16px 18px;
}

.pack-card--summer .pack-info-block {
  background: rgba(255,220,140,0.7);
}

.pack-info-block--full {
  margin-bottom: 12px;
}

.pack-info-block-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.pack-info-icon {
  font-size: 1rem;
  opacity: 0.6;
}

.pack-card--main .pack-info-icon { color: #000; }
.pack-card--summer .pack-info-icon { color: var(--orange); }

.pack-info-block-header h4 {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}

.pack-card--main .pack-info-block-header h4 { color: rgba(0,0,0,0.55); }
.pack-card--summer .pack-info-block-header h4 { color: rgba(0,0,0,0.9); }

.pack-info-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pack-tag {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
}

.pack-card--main .pack-tag {
  color: #1a1a2e;
}

.pack-card--summer .pack-tag {
  color: var(--text);
}

.pack-includes-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pack-include-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.pack-include-item > span {
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.pack-card--main .pack-include-item > span { color: rgba(0,0,0,0.4); }
.pack-card--summer .pack-include-item > span { color: var(--orange); }

.pack-include-item p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.pack-card--main .pack-include-item p { color: #000; }
.pack-card--summer .pack-include-item p { color: #1a1a2e; }

.pack-price-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-top: 20px;
}

.pack-info .pack-label {
  margin-bottom: 12px;
}

.pack-info .pack-title {
  margin-bottom: 28px;
}

.pack-info .pack-who {
  margin-bottom: 32px;
}

.pack-info .pack-highlights {
  margin-bottom: 36px;
}

.pack-info .pack-price {
  margin-bottom: 28px;
}

/* Pack timeline */
.pack-timeline {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
}

.ptl-item {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.ptl-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 52px;
}

.ptl-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
  letter-spacing: -0.01em;
}

.ptl-item:not(:last-child) .ptl-marker::after {
  content: '';
  flex: 1;
  width: 2px;
  display: block;
  margin: 6px auto;
  min-height: 16px;
}

.ptl-content {
  padding-bottom: 28px;
  padding-top: 12px;
}

.ptl-item:last-child .ptl-content {
  padding-bottom: 0;
}

.ptl-step {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.ptl-content strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 5px;
  line-height: 1.2;
}

.ptl-content p {
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0;
}

/* Pack 1 — fondo naranja */
.pack-card--main .ptl-circle {
  background: #e63c2f;
  color: var(--orange);
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.pack-card--main .ptl-item:not(:last-child) .ptl-marker::after {
  background: rgba(0,0,0,0.25);
}
.pack-card--main .ptl-step { color: rgba(0,0,0,0.5); }
.pack-card--main .ptl-content strong { color: #000; }
.pack-card--main .ptl-content p { color: rgba(0,0,0,0.6); }

/* Pack 2 — fondo claro */
.pack-card--summer .ptl-circle {
  background: #fff;
  color: var(--orange);
  box-shadow: 0 0 0 2px var(--orange), 0 4px 14px rgba(245,168,40,0.2);
}
.pack-card--summer .ptl-item:not(:last-child) .ptl-marker::after {
  background: rgba(245,168,40,0.4);
}
.pack-card--summer .ptl-step { color: var(--orange); }
.pack-card--summer .ptl-content strong { color: var(--text); }
.pack-card--summer .ptl-content p { color: var(--text-muted); }

.ptl-item:last-child .ptl-content { padding-bottom: 0; }

@media (max-width: 768px) {
  .pack-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* Packs guarantee bridge */
.packs-guarantee-bridge {
  position: relative;
  z-index: 10;
  margin-top: -180px;
  margin-bottom: -80px;
  padding: 0;
  background: linear-gradient(to bottom, transparent 50%, #ffffff 50%);
}

.packs-guarantee-bridge .container {
  max-width: 1400px;
  padding: 0 16px;
}

/* Packs guarantee box */
.packs-guarantee {
  background: #fff;
  border-radius: 0 80px 0 80px;
  padding: 56px 72px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.packs-guarantee-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}

.packs-guarantee-icon {
  font-size: 1.4rem;
  color: var(--orange);
}

.packs-guarantee-header h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.packs-guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 40px;
}

.packs-guarantee-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.packs-guarantee-item > span {
  color: var(--orange);
  font-size: 0.65rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.packs-guarantee-item p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.packs-guarantee-item p strong {
  color: var(--orange);
  font-weight: 700;
}

@media (max-width: 768px) {
  .packs-guarantee { padding: 32px 24px; }
  .packs-guarantee-grid { grid-template-columns: 1fr; gap: 20px; }
}


.pack-who-above {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 10px 20px;
  width: fit-content;
}

.pack-who-above::before {
  content: '→';
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
}

.pack-who-above strong {
  color: #fff;
  font-weight: 800;
}

.pack-card {
  border-radius: 28px;
  padding: 60px 52px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  flex: 1;
}

.pack-card--main {
  background: #f8b83a;
  color: #1a1a2e;
}

.pack-card--summer {
  background: rgba(245,168,40,0.22);
  border: 1px solid rgba(245,168,40,0.5);
  color: var(--text);
}

.pack-badge {
  display: inline-block;
  background: #1a1a2e;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  width: fit-content;
}

.pack-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
}

.pack-card--main .pack-label { color: #000; }
.pack-card--summer .pack-label { color: rgba(0,0,0,0.7); }

.pack-title {
  font-size: clamp(1.9rem, 2.8vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
  white-space: nowrap;
}

.pack-card--main .pack-title { color: #000; }
.pack-card--main .pack-title span { color: #fff; }
.pack-card--summer .pack-title { color: var(--text); }
.pack-card--summer .pack-title span { color: var(--orange); }

.pack-who {
  font-size: 0.9rem;
  line-height: 1.6;
  padding: 14px 18px;
  border-radius: 12px;
  margin: 0;
}

.pack-card--main .pack-who {
  background: rgba(0,0,0,0.1);
  color: #1a1a2e;
}

.pack-card--summer .pack-who {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.85);
}

.pack-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin: 0;
  padding: 0;
}

.pack-highlights li {
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.pack-highlights li::before {
  content: '✦';
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.pack-card--main .pack-highlights li { color: #000; }
.pack-card--main .pack-highlights li::before { color: #fff; }
.pack-card--summer .pack-highlights li { color: rgba(255,255,255,0.8); }
.pack-card--summer .pack-highlights li::before { color: var(--orange); }

.pack-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 8px;
  border-top: 1px solid rgba(0,0,0,0.12);
}

.pack-card--summer .pack-price { border-top-color: rgba(0,0,0,0.12); }

.pack-price-num {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.pack-card--main .pack-price-num { color: #000; }
.pack-card--summer .pack-price-num { color: var(--text); }

.pack-price-note {
  font-size: 0.78rem;
  opacity: 0.6;
}

.pack-btn {
  display: inline-block;
  align-self: flex-start;
  text-align: center;
  padding: 16px 48px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s;
  background: #fff;
  color: #1a1a2e;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

.pack-btn--light {
  background: var(--orange);
  color: #1a1a2e;
  box-shadow: 0 4px 16px rgba(245,168,40,0.35);
}

.pack-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  /* Sección general */
  .packs-section { padding: 48px 0 32px; overflow-x: hidden; }
  .packs-stack { gap: 32px; margin-bottom: 40px; }

  /* Evitar overflow en los wrappers */
  .pack-wrapper,
  .pack-wrapper--reverse { max-width: 100%; overflow: hidden; }
  .pack-card { max-width: 100%; }

  /* Wrapper: columna, foto arriba y card abajo */
  .pack-wrapper,
  .pack-wrapper--reverse {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Fotos: tira horizontal pequeña encima del card */
  .pack-photo-wrap {
    display: flex !important;
    flex-direction: row !important;
    height: 140px;
    border-radius: 20px 20px 0 0;
    box-shadow: none;
  }
  .pack-photo-wrap .pack-photo {
    flex: 1;
    height: 140px;
    min-height: unset;
  }
  .pack-wrapper--reverse .pack-photo-wrap .pack-photo {
    object-position: center 20%;
  }
  .pack-collage {
    height: 140px;
    flex: 1;
    min-height: unset;
  }

  /* Foto siempre arriba en ambos packs */
  .pack-wrapper > .pack-photo-wrap,
  .pack-wrapper--reverse > .pack-photo-wrap {
    order: -1;
    border-radius: 20px 20px 0 0;
  }

  /* Card debajo con esquinas inferiores redondeadas */
  .pack-wrapper > .pack-card,
  .pack-wrapper--reverse > .pack-card {
    border-radius: 0 0 20px 20px;
  }
  .pack-card { padding: 28px 20px; }

  /* Bloques internos: columna única */
  .pack-sections-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Texto más pequeño */
  .pack-title { font-size: 1.6rem !important; margin-bottom: 18px; }
  .pack-card--summer .pack-title { font-size: 1.4rem !important; }
  .pack-label { font-size: 0.75rem; }
  .pack-info-block { padding: 12px 14px; }
  .pack-info-block-header h4 { font-size: 0.78rem; }
  .pack-include-item p { font-size: 0.85rem; }
  .pack-includes-grid { gap: 6px; }

  /* Precio */
  .pack-price-num { font-size: 1.8rem; }
  .pack-price-row { margin-top: 20px; gap: 12px; }
  .pack-btn { width: 100%; text-align: center; padding: 14px 24px; font-size: 1rem; }

  /* Garantías */
  .packs-guarantee-bridge {
    margin-top: 0;
    margin-bottom: 0;
    background: none;
    padding: 0 16px 48px;
  }
  .packs-guarantee {
    border-radius: 20px;
    padding: 28px 20px;
  }
  .packs-guarantee-header { margin-bottom: 20px; }
  .packs-guarantee-header h3 { font-size: 1.3rem; }
  .packs-guarantee-grid { grid-template-columns: 1fr; gap: 14px; }
  .packs-guarantee-item p { font-size: 0.9rem; }
}
