/* ================================================================
   PAGE — GARANTÍAS (Beneficios Canaway)
   Prefijo: pga-
   Cargado DESPUÉS de new-home.css
================================================================ */

#cw-landing-wrapper .pga-wrap { background: #fff; padding: 28px 0 88px }

#cw-landing-wrapper .pga-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px
}

/* ── Breadcrumb ── */
#cw-landing-wrapper .pga-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: #6b6867;
  margin-bottom: 22px
}
#cw-landing-wrapper .pga-breadcrumb a { color: #6b6867; text-decoration: none }
#cw-landing-wrapper .pga-breadcrumb a:hover { color: #db1709 }
#cw-landing-wrapper .pga-breadcrumb strong { color: #1a1a1a; font-weight: 700 }
#cw-landing-wrapper .pga-breadcrumb__sep { color: #c9c6c3 }

/* ── Layout (sidebar + content) ── */
#cw-landing-wrapper .pga-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 40px;
  align-items: start
}

/* ── Sidebar ── */
#cw-landing-wrapper .pga-sidebar {
  position: sticky;
  top: 100px
}
#cw-landing-wrapper .pga-sidebar__head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
  color: #1a1a1a;
  background: #fff0ee;
  border: 1px solid #ffe1dc;
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 22px;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .15s ease, box-shadow .2s ease
}
#cw-landing-wrapper .pga-sidebar__head:hover {
  background: #ffe6e2;
  border-color: #ffccc4;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(219,23,9,.1)
}
#cw-landing-wrapper .pga-sidebar__icon { color: #db1709; display: inline-flex }
#cw-landing-wrapper .pga-sidebar__label {
  font-size: 18px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 12px;
  padding-left: 4px
}
#cw-landing-wrapper .pga-nav { display: flex; flex-direction: column; gap: 2px }
#cw-landing-wrapper .pga-nav__link {
  position: relative;
  display: block;
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 500;
  color: #6b6867;
  text-decoration: none;
  transition: background .15s ease, color .15s ease
}
#cw-landing-wrapper .pga-nav__link:hover { background: #f7f6f4; color: #1a1a1a }
#cw-landing-wrapper .pga-nav__link.is-active {
  background: #fff5f4;
  color: #1a1a1a;
  font-weight: 700
}
#cw-landing-wrapper .pga-nav__link.is-active::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 22px;
  background: #db1709;
  border-radius: 0 3px 3px 0
}

/* ── Panels (transición suave al cambiar de garantía) ── */
#cw-landing-wrapper .pga-panel { display: none }
#cw-landing-wrapper .pga-panel.is-active {
  display: block;
  animation: pgaPanelIn .45s cubic-bezier(.22, .61, .36, 1) both
}
@keyframes pgaPanelIn {
  from { opacity: 0; transform: translateY(14px) }
  to   { opacity: 1; transform: translateY(0) }
}
@media (prefers-reduced-motion: reduce) {
  #cw-landing-wrapper .pga-panel.is-active { animation: none }
}

/* ── Hero card ── */
#cw-landing-wrapper .pga-hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 36px;
  align-items: center;
  background: #fff;
  border: 1px solid #ece9e6;
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,.04);
  position: relative;
  overflow: hidden
}
#cw-landing-wrapper .pga-hero::after {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(219,23,9,.06) 0%, transparent 70%);
  pointer-events: none
}
#cw-landing-wrapper .pga-hero__media {
  position: relative;
  z-index: 1;
  min-height: 420px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fdf4f3, #faf9f8);
  display: flex;
  align-items: center;
  justify-content: center
}
#cw-landing-wrapper .pga-hero__media img {
  width: 260px;
  max-width: 70%;
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,.10))
}
#cw-landing-wrapper .pga-hero__body { position: relative; z-index: 1 }
#cw-landing-wrapper .pga-hero__title {
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.08;
  letter-spacing: -1px;
  margin: 0 0 16px !important
}
#cw-landing-wrapper .pga-red { color: #db1709 }
#cw-landing-wrapper .pga-hero__lead {
  font-size: 19px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.45;
  margin: 0 0 16px
}
#cw-landing-wrapper .pga-hero__subtitle {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 16px
}
#cw-landing-wrapper .pga-hero__desc {
  font-size: 14.5px;
  color: #6b6867;
  line-height: 1.7;
  margin: 0 0 24px
}
#cw-landing-wrapper .pga-hero__desc--lg { font-size: 16px }
#cw-landing-wrapper .pga-hero__badges { display: flex; gap: 12px; flex-wrap: wrap }
#cw-landing-wrapper .pga-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 100px;
  border: 1.5px solid #f3c9c4;
  background: #fff;
  color: #db1709;
  font-size: 13px;
  font-weight: 700
}
#cw-landing-wrapper .pga-note {
  background: #fff0ee;
  border: 1px solid #ffe1dc;
  border-radius: 14px;
  padding: 16px 20px;
  color: #c4160a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55
}

/* ── Features ── */
#cw-landing-wrapper .pga-feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px
}
#cw-landing-wrapper .pga-feat {
  background: #fff;
  border: 1px solid #ece9e6;
  border-radius: 16px;
  padding: 26px 22px;
  text-align: center;
  transition: box-shadow .22s ease, transform .22s ease
}
#cw-landing-wrapper .pga-feat:hover { box-shadow: 0 8px 28px rgba(0,0,0,.06); transform: translateY(-3px) }
#cw-landing-wrapper .pga-feat__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: #fff0ee;
  color: #db1709;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px
}
#cw-landing-wrapper .pga-feat__title { font-size: 15px; font-weight: 800; color: #1a1a1a; margin: 0 0 6px !important }
#cw-landing-wrapper .pga-feat__desc { font-size: 13px; color: #6b6867; line-height: 1.55; margin: 0 }

/* ── Block head (centered title + rule) ── */
#cw-landing-wrapper .pga-block { margin-top: 64px }
#cw-landing-wrapper .pga-block__head { text-align: center; margin-bottom: 40px }
#cw-landing-wrapper .pga-block__title { font-size: clamp(24px, 3vw, 32px); font-weight: 800; color: #1a1a1a; margin: 0 0 12px !important }
#cw-landing-wrapper .pga-block__rule { display: inline-block; width: 54px; height: 3px; background: #db1709; border-radius: 3px }

/* ── Steps ── */
#cw-landing-wrapper .pga-steps {
  display: flex;
  align-items: stretch;
  gap: 0
}
#cw-landing-wrapper .pga-step {
  flex: 1;
  background: #fff;
  border: 1px solid #ece9e6;
  border-radius: 16px;
  padding: 24px 16px 20px;
  text-align: center;
  transition: box-shadow .22s ease, transform .22s ease
}
#cw-landing-wrapper .pga-step:hover { box-shadow: 0 8px 26px rgba(0,0,0,.06); transform: translateY(-3px) }
#cw-landing-wrapper .pga-step__num {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #fff0ee;
  color: #db1709;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px
}
#cw-landing-wrapper .pga-step__icon { color: #db1709; display: flex; justify-content: center; margin-bottom: 14px }
#cw-landing-wrapper .pga-step__title { font-size: 14.5px; font-weight: 800; color: #1a1a1a; margin: 0 0 8px !important; line-height: 1.25 }
#cw-landing-wrapper .pga-step__desc { font-size: 12.5px; color: #6b6867; line-height: 1.5; margin: 0 }
#cw-landing-wrapper .pga-step__sep {
  display: flex;
  align-items: center;
  padding: 0 4px;
  flex-shrink: 0
}

/* ── Notice ── */
#cw-landing-wrapper .pga-notice {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border: 1px solid #ece9e6;
  border-radius: 18px;
  padding: 26px 28px;
  margin-top: 28px;
  box-shadow: 0 2px 14px rgba(0,0,0,.03)
}
#cw-landing-wrapper .pga-notice__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: #fff0ee;
  color: #db1709;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}
#cw-landing-wrapper .pga-notice__title { font-size: 17px; font-weight: 800; color: #1a1a1a; margin: 2px 0 8px !important }
#cw-landing-wrapper .pga-notice__text { font-size: 14px; color: #6b6867; line-height: 1.65; margin: 0 }
#cw-landing-wrapper .pga-pill-red {
  display: inline-block;
  background: #db1709;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 2px 10px;
  border-radius: 6px
}

/* ── Outcome cards ── */
#cw-landing-wrapper .pga-outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}
#cw-landing-wrapper .pga-outcome {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid #ece9e6;
  border-radius: 16px;
  padding: 24px 22px;
  transition: box-shadow .22s ease, transform .22s ease
}
#cw-landing-wrapper .pga-outcome:hover { box-shadow: 0 8px 26px rgba(0,0,0,.06); transform: translateY(-3px) }
#cw-landing-wrapper .pga-outcome__icon {
  width: 50px; height: 50px;
  border-radius: 13px;
  background: #fff0ee;
  color: #db1709;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}
#cw-landing-wrapper .pga-outcome__title { font-size: 15px; font-weight: 800; color: #1a1a1a; margin: 0 0 6px !important; line-height: 1.3 }
#cw-landing-wrapper .pga-outcome__desc { font-size: 13px; color: #6b6867; line-height: 1.55; margin: 0 }

/* ── Importante ── */
#cw-landing-wrapper .pga-important {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: linear-gradient(180deg, #fff7f6, #fff1ef);
  border: 1px solid #ffd9d3;
  border-radius: 20px;
  padding: 24px;
  margin-top: 24px
}
#cw-landing-wrapper .pga-important__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 4px 30px;
  border-right: 1px solid #ffd0c9;
  flex-shrink: 0
}
#cw-landing-wrapper .pga-important__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #db1709;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(219,23,9,.3)
}
#cw-landing-wrapper .pga-important__label { font-size: 18px; font-weight: 800; color: #db1709; letter-spacing: .2px }
#cw-landing-wrapper .pga-important__list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 0 0 24px !important;
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px
}
#cw-landing-wrapper .pga-important__list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  background: #fff;
  border: 1px solid #ffe1dc;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.45
}
#cw-landing-wrapper .pga-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #db1709;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px
}

/* ── CTA ── */
#cw-landing-wrapper .pga-cta {
  position: relative;
  overflow: hidden;
  background: radial-gradient(130% 150% at 0% 0%, #e8240f 0%, #c4160a 45%, #a5110a 100%);
  border-radius: 24px;
  padding: 56px 44px;
  margin-top: 52px
}
#cw-landing-wrapper .pga-cta__deco {
  position: absolute;
  right: -70px; bottom: -90px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  pointer-events: none
}
#cw-landing-wrapper .pga-cta__deco2 {
  position: absolute;
  left: -60px; top: -70px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  pointer-events: none
}
#cw-landing-wrapper .pga-cta__body { position: relative; z-index: 1; text-align: center }
#cw-landing-wrapper .pga-cta__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.14);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 16px
}
#cw-landing-wrapper .pga-cta__title { font-size: clamp(26px, 3.2vw, 36px); font-weight: 800; color: #fff; line-height: 1.12; letter-spacing: -.5px; margin: 0 0 12px !important }
#cw-landing-wrapper .pga-cta__desc { font-size: 15px; color: rgba(255,255,255,.85); line-height: 1.6; max-width: 560px; margin: 0 auto 28px }
#cw-landing-wrapper .pga-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 100px;
  transition: transform .2s ease, box-shadow .2s ease
}
#cw-landing-wrapper .pga-cta__btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.22) }
#cw-landing-wrapper .pga-cta__btn svg { transition: transform .2s ease }
#cw-landing-wrapper .pga-cta__btn:hover svg { transform: translate(2px, -2px) }

/* ════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  #cw-landing-wrapper .pga-layout { grid-template-columns: 1fr; gap: 24px }
  #cw-landing-wrapper .pga-sidebar { position: static }
  #cw-landing-wrapper .pga-sidebar__label { display: none }
  #cw-landing-wrapper .pga-sidebar__head { margin-bottom: 14px }
  #cw-landing-wrapper .pga-nav { flex-direction: row; flex-wrap: wrap; gap: 8px }
  #cw-landing-wrapper .pga-nav__link { border: 1px solid #ece9e6; padding: 10px 16px }
  #cw-landing-wrapper .pga-nav__link.is-active::before { display: none }
  #cw-landing-wrapper .pga-nav__link.is-active { border-color: #db1709; color: #db1709 }

  #cw-landing-wrapper .pga-hero { grid-template-columns: 1fr; gap: 24px; padding: 28px }
  #cw-landing-wrapper .pga-hero__media { min-height: 240px; order: 2 }
  #cw-landing-wrapper .pga-feat-grid { grid-template-columns: repeat(2, 1fr) }
  #cw-landing-wrapper .pga-steps { flex-wrap: wrap; gap: 12px; justify-content: center }
  #cw-landing-wrapper .pga-step { flex: 0 0 calc(50% - 6px) }
  #cw-landing-wrapper .pga-step__sep { display: none }
  #cw-landing-wrapper .pga-outcome-grid { grid-template-columns: 1fr }
  #cw-landing-wrapper .pga-important { flex-direction: column; gap: 18px }
  #cw-landing-wrapper .pga-important__brand { flex-direction: row; width: 100%; padding: 0 0 16px; border-right: none; border-bottom: 1px solid #ffd0c9 }
  #cw-landing-wrapper .pga-important__list { padding-left: 0 !important; grid-template-columns: 1fr }
}

@media (max-width: 600px) {
  #cw-landing-wrapper .pga-wrap { padding: 20px 0 64px }
  #cw-landing-wrapper .pga-feat-grid { grid-template-columns: 1fr }
  #cw-landing-wrapper .pga-step { flex: 0 0 100% }
  #cw-landing-wrapper .pga-notice { flex-direction: column; gap: 14px }
  #cw-landing-wrapper .pga-cta { padding: 36px 24px }
  #cw-landing-wrapper .pga-hero__title { letter-spacing: -.5px }
}
