* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #263863;
  color: #EFF0E2;
  font-family: 'Georgia', 'Times New Roman', serif;
  height: 100vh;
}

.container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.container.visible {
  opacity: 1;
  transform: translateY(0);
}

.logo {
  font-size: 4rem;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.tagline {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 300;
}

.slogan {
  font-size: 1rem;
  font-style: italic;
  opacity: 0.9;
}

.divider {
  width: 80px;
  height: 2px;
  background-color: #EFF0E2;
  margin: 32px 0;
  opacity: 0.6;
}

.construction {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.8;
}

/* Responsivo */
@media (max-width: 600px) {
  .logo {
    font-size: 2.8rem;
  }
}
