/* ===============================================
   PÁGINA WIP (WORK IN PROGRESS)
   Fundación Álvaro Gómez Hurtado
   =============================================== */

.wip-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.wip-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* ========== LOGO ========== */
.wip-logo {
  margin-bottom: 40px;
  animation: fadeInDown 1s ease-out;
}

.wip-logo-img {
  max-width: 280px;
  height: auto;
  display: inline-block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

/* ========== CONTENIDO ========== */
.wip-content {
  margin-bottom: 40px;
  animation: fadeIn 1.2s ease-out;
}

.wip-title {
  font: 700 42px/1.2 var(--fuente);
  color: var(--azul-texto);
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wip-title-en {
  font: 700 36px/1.2 var(--fuente);
  color: var(--azul-texto);
  margin: 0 0 20px;
  letter-spacing: 0.5px;
}

.wip-divider {
  width: 80px;
  height: 4px;
  background: var(--naranja);
  margin: 0 auto 25px;
  border-radius: 2px;
}

.wip-text {
  font: 400 18px/1.7 var(--fuente);
  color: #555;
  margin: 0 0 15px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.wip-content-en {
  opacity: 0.9;
}

/* ========== SEPARADOR ========== */
.wip-separator {
  font-size: 28px;
  color: var(--naranja);
  letter-spacing: 12px;
  margin: 40px 0;
  opacity: 0.6;
}

/* ========== BOTÓN CTA ========== */
.wip-cta {
  margin-top: 50px;
  animation: fadeInUp 1.4s ease-out;
}

.wip-btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--naranja);
  color: #fff;
  font: 600 16px/1.4 var(--fuente);
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wip-btn:hover {
  background: #d84315;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
  color: #fff;
}

.wip-btn:active {
  transform: translateY(-1px);
}

/* ========== ANIMACIONES ========== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .wip-container {
    padding: 40px 25px;
    border-radius: 15px;
  }

  .wip-logo-img {
    max-width: 220px;
  }

  .wip-title {
    font-size: 32px;
  }

  .wip-title-en {
    font-size: 28px;
  }

  .wip-text {
    font-size: 16px;
  }

  .wip-btn {
    padding: 14px 30px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .wip-page {
    padding: 40px 15px;
  }

  .wip-container {
    padding: 30px 20px;
  }

  .wip-logo-img {
    max-width: 180px;
  }

  .wip-title {
    font-size: 26px;
  }

  .wip-title-en {
    font-size: 22px;
  }

  .wip-text {
    font-size: 15px;
    line-height: 1.6;
  }

  .wip-divider {
    width: 60px;
    height: 3px;
  }

  .wip-separator {
    font-size: 22px;
    letter-spacing: 8px;
  }

  .wip-btn {
    padding: 12px 24px;
    font-size: 13px;
  }
}
