/* ═══════════════════════════════════════════════
   CCBP Landing — ccbp.css
   Paleta: Celeste #00ABE9 · Naranja #FF5C1B
   Texto: #3E3838 · Muted: #666 / #999
   Fondos: #fff / #FAFAFA
   ═══════════════════════════════════════════════ */

:root {
  --ccbp-celeste: #00ABE9;
  --ccbp-naranja: #FF5C1B;
  --ccbp-texto: #3E3838;
  --ccbp-muted: #666;
  --ccbp-muted-light: #999;
  --ccbp-bg: #fff;
  --ccbp-bg-alt: #FAFAFA;
  --ccbp-border: #E8E8E8;
  --ccbp-radius: 8px;
}

.ccbp-main {
  font-family: 'Source Sans 3', 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ccbp-texto);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  margin-bottom: -30px;
}

.ccbp-main *,
.ccbp-main *::before,
.ccbp-main *::after {
  box-sizing: border-box;
}

.ccbp-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.ccbp-section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--ccbp-texto);
}

/* ── 1. HERO ──────────────────────────────── */

.ccbp-hero {
  padding: 100px 0 80px;
  text-align: left;
  background-color: #1a1a1a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.ccbp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.ccbp-hero .ccbp-container {
  position: relative;
  z-index: 2;
}

.ccbp-hero__kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 20px;
}

.ccbp-main .ccbp-hero .ccbp-hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  color: #fff;
}

.ccbp-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 540px;
  margin: 0 0 36px;
  line-height: 1.6;
}

.ccbp-hero__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  text-decoration: none;
}

.ccbp-hero__arrow:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

/* ── 2. MATERIA EN CURSO ──────────────────── */

.ccbp-materia {
  padding: 72px 0;
  background: linear-gradient(135deg, rgba(0, 171, 233, 0.03) 0%, var(--ccbp-bg-alt) 60%);
  border-top: 1px solid var(--ccbp-border);
  border-bottom: 1px solid var(--ccbp-border);
}

.ccbp-materia__grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

.ccbp-materia__content {
  border-left: 4px solid var(--ccbp-celeste);
  padding-left: 28px;
}

.ccbp-materia__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--ccbp-celeste);
  padding: 5px 14px;
  border-radius: 4px;
  margin: 0 0 16px;
}

.ccbp-materia__title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 14px;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  -webkit-hyphens: none;
}

.ccbp-materia__desc {
  font-size: 1rem;
  color: var(--ccbp-muted);
  margin: 0 0 28px;
  max-width: 620px;
}

.ccbp-materia__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0 0 28px;
}

.ccbp-materia__detail {
  padding: 12px 0;
  border-bottom: 1px solid var(--ccbp-border);
}

.ccbp-materia__detail:nth-child(odd) {
  padding-right: 20px;
}

.ccbp-materia__detail:nth-child(even) {
  padding-left: 20px;
  border-left: 1px solid var(--ccbp-border);
}

.ccbp-materia__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ccbp-muted-light);
  margin-bottom: 2px;
}

.ccbp-materia__value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ccbp-texto);
}

.ccbp-materia__note {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--ccbp-muted);
}

.ccbp-materia__docentes-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ccbp-muted-light);
  margin: 0 0 10px;
}

.ccbp-materia__docentes {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ccbp-materia__docentes li {
  font-size: 0.95rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--ccbp-border);
}

.ccbp-materia__docentes li:last-child {
  border-bottom: none;
}

.ccbp-materia__cta-box {
  position: sticky;
  top: 100px;
}

.ccbp-materia__cta-inner {
  background: var(--ccbp-bg);
  border: 1px solid var(--ccbp-border);
  border-top: 3px solid var(--ccbp-celeste);
  border-radius: var(--ccbp-radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.ccbp-materia__cta-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ccbp-celeste);
  margin: 0 0 20px;
}

.ccbp-materia__cta-email {
  font-size: 0.82rem;
  color: var(--ccbp-muted);
  margin: 16px 0 0;
}

.ccbp-materia__cta-email a {
  color: var(--ccbp-celeste);
  text-decoration: none;
  font-weight: 600;
}

.ccbp-materia__cta-email a:hover {
  text-decoration: underline;
}

.ccbp-materia__cta-prox {
  font-size: 0.88rem;
  color: var(--ccbp-muted);
  line-height: 1.55;
  margin: 0;
}

/* ── Buttons ──────────────────────────────── */

.ccbp-btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  cursor: pointer;
}

.ccbp-main .ccbp-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.ccbp-main .ccbp-btn--primary {
  background: var(--ccbp-naranja);
  color: #fff;
  margin-bottom: 10px;
}

.ccbp-main .ccbp-btn--primary:hover {
  background: var(--ccbp-naranja);
  color: #fff;
}

.ccbp-main .ccbp-btn--secondary {
  background: transparent;
  color: var(--ccbp-celeste);
  border: 2px solid var(--ccbp-celeste);
}

.ccbp-main .ccbp-btn--secondary:hover {
  background: rgba(0, 171, 233, 0.06);
  color: var(--ccbp-celeste);
  border-color: var(--ccbp-celeste);
}

/* ── 3. ¿QUÉ ES EL CCBP? ────────────────── */

.ccbp-que-es {
  padding: 72px 0 56px;
  background: var(--ccbp-bg);
}

.ccbp-que-es__intro {
  font-size: 1.05rem;
  color: var(--ccbp-muted);
  max-width: 720px;
  margin: 0 0 40px;
  line-height: 1.7;
}

.ccbp-que-es__intro strong {
  color: var(--ccbp-texto);
}

.ccbp-valores {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.ccbp-valor__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(0, 171, 233, 0.08);
  color: var(--ccbp-celeste);
  margin-bottom: 16px;
}

.ccbp-valor__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 6px;
}

.ccbp-valor__text {
  font-size: 0.92rem;
  color: var(--ccbp-muted);
  margin: 0;
  line-height: 1.6;
}

.ccbp-credibilidad {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--ccbp-border);
}

.ccbp-credibilidad__item {
  text-align: center;
}

.ccbp-credibilidad__number {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ccbp-celeste);
}

.ccbp-credibilidad__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ccbp-muted-light);
}

.ccbp-credibilidad__divider {
  width: 1px;
  height: 36px;
  background: var(--ccbp-border);
}

/* ── 3b. PLAN DE ESTUDIOS — TIMELINE ──────── */

.ccbp-plan {
  padding: 72px 0;
  background: var(--ccbp-bg-alt);
  border-top: 1px solid var(--ccbp-border);
  border-bottom: 1px solid var(--ccbp-border);
}

.ccbp-plan__intro {
  font-size: 1rem;
  color: var(--ccbp-muted);
  max-width: 680px;
  margin: 0 0 36px;
  line-height: 1.65;
}

.ccbp-timeline {
  position: relative;
  padding-left: 40px;
}

.ccbp-timeline__line {
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--ccbp-border);
}

.ccbp-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--ccbp-border);
}

.ccbp-timeline__item:last-child {
  border-bottom: none;
}

.ccbp-timeline__dot {
  position: absolute;
  left: -40px;
  top: 18px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ccbp-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--ccbp-muted-light);
}

.ccbp-timeline__name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ccbp-texto);
  margin: 0;
  line-height: 1.35;
}

.ccbp-timeline__item--active .ccbp-timeline__name {
  font-weight: 700;
}

.ccbp-timeline__hours {
  font-size: 0.82rem;
  color: var(--ccbp-muted-light);
  font-weight: 600;
  white-space: nowrap;
}

.ccbp-timeline__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ccbp-naranja);
  background: rgba(255, 92, 27, 0.1);
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 8px;
  vertical-align: middle;
}

.ccbp-timeline__item--active .ccbp-timeline__dot {
  background: var(--ccbp-naranja);
  color: #fff;
}

/* ── 3c. TESTIMONIOS ──────────────────────── */

.ccbp-testimonios {
  padding: 72px 0;
  background: var(--ccbp-bg-alt);
  border-top: 1px solid var(--ccbp-border);
  border-bottom: 1px solid var(--ccbp-border);
}

.ccbp-testimonios__grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 28px;
}

.ccbp-testimonio {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ccbp-border);
  border-radius: 0;
  padding: 28px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 28px;
  align-items: start;
  position: relative;
  overflow: visible;
  transition: background 0.35s ease;
}

.ccbp-testimonio:hover {
  background: rgba(0, 171, 233, 0.02);
}

.ccbp-testimonio::before {
  display: none;
}

.ccbp-testimonio:first-child {
  padding-top: 0;
}

.ccbp-testimonio__cita {
  font-size: 1rem;
  color: var(--ccbp-texto);
  line-height: 1.7;
  margin: 0;
  padding-bottom: 0;
  position: relative;
}

.ccbp-testimonio__autor {
  border-top: none;
  padding-top: 2px;
  position: relative;
}

.ccbp-testimonio__nombre {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ccbp-texto);
  margin: 0 0 3px;
}

.ccbp-testimonio__iglesia {
  font-size: 0.82rem;
  color: var(--ccbp-muted-light);
  font-weight: 600;
  margin: 0;
  line-height: 1.45;
}

/* ── 4. PARA QUIÉN ES ─────────────────────── */

.ccbp-para-quien {
  padding: 72px 0;
  background: var(--ccbp-bg);
  border-top: 1px solid var(--ccbp-border);
  border-bottom: 1px solid var(--ccbp-border);
}

.ccbp-niveles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 28px 0 48px;
}

.ccbp-nivel {
  background: var(--ccbp-bg);
  border: 1px solid var(--ccbp-border);
  border-radius: var(--ccbp-radius);
  padding: 28px 24px;
}

.ccbp-nivel__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ccbp-celeste);
  background: rgba(0, 171, 233, 0.08);
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
}

.ccbp-nivel__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 4px;
}

.ccbp-nivel__materias {
  font-size: 0.82rem;
  color: var(--ccbp-muted-light);
  font-weight: 600;
  margin: 0 0 10px;
}

.ccbp-nivel__desc {
  font-size: 0.9rem;
  color: var(--ccbp-muted);
  margin: 0;
  line-height: 1.55;
}

.ccbp-requisitos-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 20px;
}

.ccbp-requisitos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  margin-bottom: 28px;
}

.ccbp-requisito {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--ccbp-border);
}

.ccbp-requisito__num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 171, 233, 0.08);
  color: var(--ccbp-celeste);
  font-size: 0.7rem;
  font-weight: 800;
}

.ccbp-requisito p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ccbp-muted);
  line-height: 1.45;
}

.ccbp-inclusion {
  font-size: 0.95rem;
  color: var(--ccbp-muted);
  background: var(--ccbp-bg);
  border-left: 3px solid var(--ccbp-celeste);
  padding: 14px 20px;
  border-radius: 0 var(--ccbp-radius) var(--ccbp-radius) 0;
  margin: 0;
}

/* ── 5. RESPALDO INSTITUCIONAL ────────────── */

.ccbp-respaldo {
  padding: 72px 0 80px;
  background: #2A2D35;
}

.ccbp-respaldo__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 6px;
}

.ccbp-main .ccbp-respaldo .ccbp-respaldo__title {
  color: #fff;
}

.ccbp-respaldo__subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 44px;
}

.ccbp-respaldo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.ccbp-respaldo__card {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ccbp-respaldo__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.ccbp-respaldo__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 136px;
  background: #fff;
  border-bottom: 1px solid #ececec;
  padding: 24px 28px;
  margin-bottom: 0;
}

.ccbp-respaldo__logo {
  display: block;
  max-height: 72px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  margin: 0;
  opacity: 1;
}

.ccbp-respaldo__top {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 4px;
  padding: 24px 28px 0;
}

.ccbp-respaldo__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ccbp-texto);
  margin: 0;
}

.ccbp-respaldo__badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ccbp-celeste);
  border: 1px solid rgba(0, 171, 233, 0.2);
  padding: 2px 8px;
  border-radius: 3px;
  background: rgba(0, 171, 233, 0.06);
}

.ccbp-respaldo__meta {
  font-size: 0.82rem;
  color: var(--ccbp-muted-light);
  font-weight: 600;
  margin: 0 0 14px;
  padding: 0 28px;
}

.ccbp-respaldo__meta-link {
  color: var(--ccbp-muted-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.ccbp-respaldo__meta-link:hover {
  color: var(--ccbp-celeste);
}

.ccbp-respaldo__text {
  font-size: 0.9rem;
  color: var(--ccbp-muted);
  margin: 0;
  line-height: 1.65;
  padding: 0 28px;
}

.ccbp-respaldo__footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 16px 28px 24px;
  border-top: 1px solid #ececec;
  flex-wrap: wrap;
}

.ccbp-respaldo__ecfa {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ccbp-muted-light);
  margin: 0;
}

.ccbp-respaldo__sep {
  color: #d9d9d9;
}

.ccbp-respaldo__link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ccbp-celeste);
  text-decoration: none;
  transition: opacity 0.2s;
}

.ccbp-respaldo__link:hover {
  opacity: 0.7;
}

/* ── RESPONSIVE ───────────────────────────── */

@media (max-width: 900px) {
  .ccbp-materia__grid {
    grid-template-columns: 1fr;
  }

  .ccbp-materia__cta-box {
    position: static;
  }

  .ccbp-materia__cta-inner {
    max-width: 400px;
  }

  .ccbp-materia__details {
    grid-template-columns: 1fr;
  }

  .ccbp-materia__detail:nth-child(even) {
    padding-left: 0;
    border-left: none;
  }

  .ccbp-materia__detail:nth-child(odd) {
    padding-right: 0;
  }

  .ccbp-valores {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ccbp-testimonios__grid {
    gap: 0;
  }

  .ccbp-testimonio {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ccbp-niveles {
    grid-template-columns: 1fr;
  }

  .ccbp-requisitos {
    grid-template-columns: 1fr;
  }

  .ccbp-respaldo__grid {
    grid-template-columns: 1fr;
  }

  .ccbp-credibilidad {
    flex-wrap: wrap;
    gap: 20px;
  }

  .ccbp-credibilidad__divider {
    display: none;
  }

  .ccbp-hero {
    padding: 72px 0 56px;
  }
}

@media (max-width: 600px) {
  .ccbp-container {
    padding: 0 16px;
  }

  .ccbp-hero__title {
    font-size: 1.75rem;
  }

  .ccbp-materia,
  .ccbp-que-es,
  .ccbp-plan,
  .ccbp-testimonios,
  .ccbp-para-quien,
  .ccbp-respaldo {
    padding: 48px 0;
  }

  .ccbp-respaldo__card {
    border-radius: 10px;
  }

  .ccbp-respaldo__logo-wrap {
    min-height: 112px;
    padding: 18px 20px;
  }

  .ccbp-respaldo__logo {
    max-height: 58px;
  }

  .ccbp-respaldo__top,
  .ccbp-respaldo__meta,
  .ccbp-respaldo__text,
  .ccbp-respaldo__footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .ccbp-respaldo__footer {
    padding-bottom: 20px;
  }
}
