 /* Configuração básica */
 html, body {
    height: 100%;
    margin: 0;
    font-family: 'Inter', sans-serif;
    transition: background 0.5s ease;
  }
  /* Body inicia sem background e invisível */
  body {
    visibility: hidden;
    background: none;
  }
  /* Container para centralizar o card */
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 20px; /* Garante espaçamento em telas menores */
  }
  /* Card com design moderno e responsivo */
  .message-box {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 100%;
    text-align: center;
    animation: fadeIn 0.8s ease forwards;
    opacity: 0;
  }
  @keyframes fadeIn {
    to { opacity: 1; }
  }
  /* Ícone acima do título */
  .icon {
    font-size: 48px;
    color: #463758;
    margin-bottom: 20px;
  }
  /* Título */
  h1 {
    color: #463758;
    font-size: 24px;
    margin-bottom: 20px;
  }
  /* Parágrafo */
  p {
    color: #525B65;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.5;
  }
  /* Botão */
  button {
    background-color: #463758;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 12px 25px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  button:hover {
    background-color: #525B65;
  }
  
  /* Media query para dispositivos móveis */
  @media (max-width: 600px) {
    .message-box {
      padding: 30px;
    }
    h1 {
      font-size: 20px;
    }
    p {
      font-size: 14px;
    }
    button {
      font-size: 14px;
      padding: 10px 20px;
    }
    .icon {
      font-size: 40px;
    }
  }