/* ═══════════════════════════════════════════
   GC+P Hero Slider — CSS
   Colores del Manual de Marca GC+P
   Navy #29294C · Sage #A4C4A6 · Mauve #585267
   Dark #1D1D1B · Taupe #6E695D
═══════════════════════════════════════════ */

/* ── WRAPPER ── */
.gcpp-slider-wrap {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #1D1D1B;
  font-family: 'Barlow', sans-serif;
}

/* ── SLIDES CONTAINER ── */
.gcpp-slides {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
}

/* ── SLIDE INDIVIDUAL ── */
.gcpp-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
  pointer-events: none;
}
.gcpp-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* ── FONDO DE CADA SLIDE ── */
.gcpp-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.gcpp-slide.active .gcpp-slide-bg {
  transform: scale(1);
}

/* Overlay degradado */
.gcpp-slide-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(29,29,27,.97) 0%,
    rgba(41,41,76,.68) 45%,
    rgba(29,29,27,.30) 100%
  );
}

/* ── CONTENIDO DEL SLIDE ── */
.gcpp-slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 0 56px 80px;
}
.gcpp-slide-inner {
  max-width: 700px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform .8s ease .3s, opacity .8s ease .3s;
}
.gcpp-slide.active .gcpp-slide-inner {
  transform: translateY(0);
  opacity: 1;
}

/* Badge de proyecto */
.gcpp-proyecto-badge {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .6rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background: rgba(88,82,103,.6);
  border: 1px solid rgba(164,196,166,.3);
  color: #A4C4A6;
  padding: 5px 14px;
  margin-bottom: 16px;
}

/* Eyebrow */
.gcpp-eye {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #A4C4A6;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.gcpp-eye::before {
  content: '';
  width: 36px;
  height: 2px;
  background: #A4C4A6;
  display: block;
  flex-shrink: 0;
}

/* Headline */
.gcpp-hl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  line-height: .92;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  margin: 0 0 22px;
}
.gcpp-hl .gcpp-sage { color: #A4C4A6; }
.gcpp-hl .gcpp-dim  { color: rgba(255,255,255,.18); }

/* Subtítulo */
.gcpp-sub {
  font-size: .92rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  font-weight: 300;
  margin: 0 0 32px;
  border-left: 3px solid #A4C4A6;
  padding-left: 18px;
  max-width: 520px;
}

/* ── BOTONES ── */
.gcpp-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.gcpp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .73rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 13px 30px;
  border: 2px solid transparent;
  text-decoration: none !important;
  transition: all .25s;
  cursor: pointer;
}
.gcpp-btn-sage {
  background: #A4C4A6;
  color: #1D1D1B !important;
  border-color: #A4C4A6;
}
.gcpp-btn-sage:hover {
  background: transparent;
  color: #A4C4A6 !important;
}
.gcpp-btn-ghost {
  background: transparent;
  color: rgba(255,255,255,.65) !important;
  border-color: rgba(255,255,255,.25);
}
.gcpp-btn-ghost:hover {
  border-color: rgba(255,255,255,.7);
  color: #ffffff !important;
}

/* ── CONTACTOS ── */
.gcpp-cts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.gcpp-ci {
  display: flex;
  align-items: center;
  gap: 9px;
}
.gcpp-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #A4C4A6;
  flex-shrink: 0;
}
.gcpp-cl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .55rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  display: block;
  margin-bottom: 1px;
}
.gcpp-cv {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
}
.gcpp-cv a {
  color: rgba(255,255,255,.65) !important;
  text-decoration: none !important;
}
.gcpp-cv a:hover { color: #A4C4A6 !important; }

/* ── NAVEGACIÓN PREV/NEXT ── */
.gcpp-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(41,41,76,.5);
  border: 1px solid rgba(164,196,166,.25);
  color: #ffffff;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s;
}
.gcpp-nav:hover {
  background: rgba(164,196,166,.2);
  border-color: #A4C4A6;
}
.gcpp-prev { left: 24px; }
.gcpp-next { right: 24px; }

/* ── DOTS ── */
.gcpp-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}
.gcpp-dot-btn {
  width: 28px;
  height: 3px;
  background: rgba(255,255,255,.25);
  border: none;
  cursor: pointer;
  transition: all .35s;
  padding: 0;
}
.gcpp-dot-btn.active {
  background: #A4C4A6;
  width: 44px;
}
.gcpp-dot-btn:hover { background: rgba(164,196,166,.6); }

/* ── BARRA DE PROGRESO ── */
.gcpp-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,.08);
  z-index: 10;
}
.gcpp-progress-fill {
  height: 100%;
  background: #A4C4A6;
  width: 0%;
  animation: gcpp-progress linear forwards;
}
@keyframes gcpp-progress {
  from { width: 0%; }
  to   { width: 100%; }
}

/* ── STATS (esquina inferior derecha) ── */
.gcpp-stats {
  position: absolute;
  bottom: 56px;
  right: 56px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 20px;
}
.gcpp-stat { text-align: right; }
.gcpp-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #A4C4A6;
  display: block;
  line-height: 1;
}
.gcpp-stat-lbl {
  font-size: .56rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  display: block;
  margin-top: 3px;
  line-height: 1.4;
}
.gcpp-stat-div {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.12);
}

/* ── CONTADOR ── */
.gcpp-counter {
  position: absolute;
  top: 32px;
  right: 56px;
  z-index: 10;
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: 'Barlow Condensed', sans-serif;
}
.gcpp-count-current {
  font-size: 1.6rem;
  font-weight: 800;
  color: #A4C4A6;
  line-height: 1;
}
.gcpp-count-sep {
  font-size: .9rem;
  color: rgba(255,255,255,.2);
}
.gcpp-count-total {
  font-size: .9rem;
  color: rgba(255,255,255,.3);
}

/* ── NAV TOP (logo) ── */
.gcpp-slider-wrap .gcpp-topnav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 20;
  padding: 24px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(164,196,166,.1);
}
.gcpp-topnav-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ffffff;
}
.gcpp-topnav-name span { color: #A4C4A6; }
.gcpp-topnav-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .58rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .gcpp-slide-content { padding: 0 32px 100px; }
  .gcpp-stats { right: 32px; bottom: 80px; }
  .gcpp-counter { right: 32px; }
  .gcpp-topnav { padding: 20px 32px; }
}

@media (max-width: 600px) {
  .gcpp-slide-content { padding: 0 20px 120px; }
  .gcpp-hl { font-size: 2.8rem; }
  .gcpp-stats { display: none; }
  .gcpp-counter { right: 20px; }
  .gcpp-prev { left: 12px; }
  .gcpp-next { right: 12px; }
  .gcpp-cts { gap: 12px; }
  .gcpp-btns { flex-direction: column; align-items: flex-start; }
}
