/* ================================
   HERO CONTACTO
================================ */
.hero-contacto {
  position: relative;
  min-height: 100vh;
  padding: 120px 6vw 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================================
   CONTENEDOR CENTRAL
================================ */
.contact-center {
  width: 100%;
  max-width: 900px;
  text-align: center;
}

/* ================================
   TÍTULO
================================ */
.contact-title {
  font-family: "Courier New", monospace;
  font-size: clamp(40px, 6vw, 72px);
  color: #ffffff;
  margin-bottom: 42px;
  letter-spacing: 0.5px;
  animation-delay: .25s;
}

/* ================================
   TERMINAL
================================ */
.contact-terminal {
  max-width: 640px;
  margin: 0 auto;
  padding: 36px 40px;

  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;

  backdrop-filter: blur(8px);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.45);

  text-align: left;
}

/* TEXTO TERMINAL */
.contact-terminal p {
  font-family: monospace;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 14px;
  color: #e5e5e5;
}

/* PROMPT */
.prompt {
  color: #4cc9f0;
}

/* ESTADO OK */
.ok {
  color: #4ade80;
  font-weight: 600;
}

/* ================================
   CTA
================================ */
.contact-cta {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 28px;

  font-family: monospace;
  font-size: 1rem;
  color: #ffffff;
  text-decoration: none;

  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);

  transition: all 0.3s ease;
}

.contact-cta:hover {
  background: rgba(76, 201, 240, 0.15);
  border-color: #4cc9f0;
  box-shadow: 0 0 14px rgba(76, 201, 240, 0.35);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .contact-title {
    margin-bottom: 32px;
  }

  .contact-terminal {
    padding: 28px 24px;
  }
}

/* ================================
   ANIMACIONES DE ENTRADA
================================ */

/* Estado inicial */
.contact-title,
.contact-terminal {
  opacity: 0;
  transform: translateY(20px);
  animation-fill-mode: forwards;
}

/* TÍTULO */
.contact-title {
  animation: fadeUp 0.9s ease forwards;
  animation-delay: 0.2s;
}

/* TERMINAL */
.contact-terminal {
  animation: fadeUp 0.9s ease forwards;
  animation-delay: 0.45s;
}

/* KEYFRAMES */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
