/* --------------------------
   Reset y base
--------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: linear-gradient(160deg, #f7f9fb 0%, #ffffff 80%);
  color: #222;
  -webkit-font-smoothing: antialiased;
}

/* --------------------------
   Estructura general
--------------------------- */
.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  text-align: center;
}

header {
  margin-bottom: 1.5rem;
}

.logo {
  width: 106px;
  height: 80px;
  object-fit: contain;
  user-select: none;
}

/* --------------------------
   Texto principal
--------------------------- */
h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.2rem;
  color: #111;
}

.brand {
  color: #555;
}

.highlight {
  display: block;
  margin-top: 0.4rem;
  font-weight: 800;
  color: #e63946;
}

/* --------------------------
   Texto secundario
--------------------------- */
.intro {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 1.8rem auto;
  color: #444;
  line-height: 1.6;
}

strong {
  color: #111;
}

/* --------------------------
   Aviso de mantenimiento
--------------------------- */
.notice {
  background: #fff2e0;
  border-left: 4px solid #ff9f43;
  color: #663c00;
  font-size: 0.95rem;
  padding: 1rem 1.2rem;
  border-radius: 8px;
  max-width: 600px;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* --------------------------
   Botón y contacto
--------------------------- */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, #e63946, #ff7c2b);
  color: #fff;
  padding: 0.9rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 6px 16px rgba(230,57,70,0.25);
  transition: all 0.2s ease-in-out;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230,57,70,0.3);
}

.email {
  font-size: 0.9rem;
  color: #555;
  margin-top: 0.8rem;
}

.email a {
  color: #e63946;
  text-decoration: none;
}

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

/* --------------------------
   Footer
--------------------------- */
footer {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #777;
}

/* --------------------------
   Responsive
--------------------------- */
@media (max-width: 600px) {
  .intro {
    font-size: 0.95rem;
  }

  .notice {
    font-size: 0.9rem;
  }

  .btn {
    padding: 0.8rem 1.4rem;
  }
}