* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    background-color: #080d13;
    color: #f8fafc;
  }
  
  .container_manutencao {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #080d13; 
    padding: 0 15px;
    overflow: hidden; 
  }
  
  .content_manutencao {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    width: 100%;
    text-align: center;
    padding: 30px;
    animation: fadeIn 0.5s ease-in-out;
    position: relative;
  }
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .title_manutencao {
    font-size: 2.8rem;
    font-weight: 600;
    color: #1a202c; 
    margin-bottom: 15px;
    line-height: 1.3;
    animation: fadeIn 0.7s ease-out;
  }
  
  .subtitle_manutencao {
    font-size: 1.25rem;
    color: #718096; 
    margin-bottom: 20px;
    animation: fadeIn 1s ease-out;
  }
  
  .illustration_manutencao {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px 0;
  }
  
  .image_manutencao {
    width: 100%;
    height: auto;
    max-width: 450px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1.2s ease-out;
  }
  
  .message_manutencao {
    font-size: 1.125rem;
    color: #4a5568; 
    margin-top: 20px;
    line-height: 1.5;
    animation: fadeIn 1.5s ease-out;
    font-weight: 400;
  }
  
  @media (max-width: 768px) {
    .content_manutencao {
      padding: 20px;
    }
  
    .title_manutencao {
      font-size: 2.2rem;
    }
  
    .subtitle_manutencao {
      font-size: 1rem;
    }
  
    .message_manutencao {
      font-size: 1rem;
    }
  
    .image_manutencao {
      max-width: 100%;
    }
  }
  