/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
  background-color: #FF5A30; /* Cor laranja Tulípia */
  color: #fff;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.loading-text {
  font-size: 2.5rem;
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0%   { opacity: 0.2; }
  50%  { opacity: 1; }
  100% { opacity: 0.2; }
}

/* Responsivo */
@media (max-width: 600px) {
  .loading-text {
    font-size: 1.8rem;
  }
}
