/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    background-color: #056839;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
  }
  
  .splash-container {
    text-align: center;
    padding: 2rem;
    background-color: #ffffff;
    color: #056839;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1.5s ease-in-out;
  }
  
  .splash-content {
    max-width: 600px;
    margin: auto;
  }
  
  .splash-image {
    width: 100%;
    max-width: 300px;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #056839;
    font-weight: bold;
  }
  
  .message {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #333333;
  }
  
  .message strong {
    color: #056839;
  }
  
  .btn-back-home {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #9bcc50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    animation: glowPulse 2s infinite;
  }
  
  .btn-back-home:hover {
    background-color: #7cb33f;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transform: scale(1.05);
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes glowPulse {
    0%, 100% {
      box-shadow: 0 0 15px rgba(155, 204, 80, 0.5);
    }
    50% {
      box-shadow: 0 0 25px rgba(155, 204, 80, 0.7);
    }
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .splash-container {
      padding: 1.5rem;
    }
  
    .splash-content {
      padding: 1rem;
    }
  
    h1 {
      font-size: 1.8rem;
    }
  
    .message {
      font-size: 1rem;
    }
  
    .btn-back-home {
      font-size: 1rem;
      padding: 0.8rem 1.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .splash-image {
      max-width: 250px;
    }
  
    h1 {
      font-size: 1.5rem;
    }
  
    .message {
      font-size: 0.9rem;
    }
  }
  