/* ======================
   Variables de marca
====================== */
:root {
  --logo-color: #2f6fb2; /* Color principal del logo */
}

/* ======================
   Reset
====================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
}

/* ======================
   Body
====================== */
body {
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, "Helvetica Neue", Arial, sans-serif;

  background: linear-gradient(135deg, #f4f8ff 0%, #e3efff 100%);
}

/* ======================
   Canvas fondo
====================== */
canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* ======================
   Contenedor central
====================== */
.logo-container {
  position: fixed;
  inset: 0;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  pointer-events: none;
}

/* ======================
   Logo
====================== */
.logo-container img {
  width: 90%;
  max-width: 380px;
  height: auto;

  background: rgba(255, 255, 255, 0.9);
  padding: 32px 40px;
  border-radius: 22px;

  box-shadow:
    0 20px 40px rgba(0, 80, 160, 0.15),
    0 8px 20px rgba(0, 80, 160, 0.08);
}

/* ======================
   Texto construcción
====================== */
.construction-text {
  margin-top: 22px;
  text-align: center;

  font-size: 18px;          /* ⬆️ AUMENTADO */
  font-weight: 600;
  letter-spacing: 0.4px;

  color: var(--logo-color);
  opacity: 0.95;
}

/* ======================
   Mobile
====================== */
@media (max-width: 600px) {
  .logo-container img {
    max-width: 280px;
    padding: 24px 28px;
    border-radius: 18px;
  }

  .construction-text {
    font-size: 16px;        /* ⬆️ Más grande en móvil */
  }
}
