/* =============================================
   Rivas & Asociados Consultores
   Página: En Construcción
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f4f7fb;
  font-family: 'Raleway', sans-serif;
  overflow: hidden;
}

/* --- Fondos decorativos --- */
body::before {
  content: '';
  position: fixed;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 163, 224, 0.13) 0%, transparent 70%);
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106, 168, 79, 0.11) 0%, transparent 70%);
  pointer-events: none;
}

/* --- Card principal --- */
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(0, 60, 120, 0.10);
  padding: 56px 64px 48px;
  max-width: 580px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  animation: fadeUp 0.8s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Logos --- */
.logo-main {
  width: 260px;
  max-width: 80%;
}

.logo-slogan {
  width: 220px;
  max-width: 70%;
  opacity: 0.85;
}

/* --- Divisor --- */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1a3a6e, #00a3e0, #6aa84f);
  border-radius: 2px;
}

/* --- Mensaje --- */
.message {
  text-align: center;
}

.message h1 {
  font-size: 1.45rem;
  font-weight: 600;
  color: #1a3a6e;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}

.message p {
  font-size: 0.97rem;
  font-weight: 300;
  color: #555;
  line-height: 1.65;
}

/* --- Botón LinkedIn --- */
.btn-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0077b5;
  color: #fff;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 32px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0, 119, 181, 0.22);
  letter-spacing: 0.02em;
}

.btn-linkedin:hover {
  background: #005f8e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 119, 181, 0.30);
}

.btn-linkedin svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  flex-shrink: 0;
}

/* --- Footer --- */
.footer-note {
  font-size: 0.78rem;
  color: #aaa;
  font-weight: 300;
  letter-spacing: 0.03em;
}