/* Reset e base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background: url('Diego.png') no-repeat center center/cover;
    height: 100vh;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    overflow: hidden;
    position: relative;
  }
  
  /* Container central */
  .container {
    background: rgba(0, 0, 0, 0.65);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    max-width: 400px;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
  }
  
  /* Título */
  h1 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    line-height: 1.4;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
  }
  
  h1 span {
    display: block;
    font-size: 1.1rem;
    font-weight: 300;
    color: #ccc;
    margin-top: 0.3rem;
  }
  
  /* Botões */
  .buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn {
    padding: 0.9rem;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    transition: transform 0.2s ease, opacity 0.3s ease;
    display: block;
  }
  
  .btn.whatsapp {
    background-color: #25D366;
    color: white;
  }
  
  .btn.instagram {
    background-color:#8134AF;
    color: white;
  }
  
  .btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
  }
  
  /* Mensagem temporária */
  .welcome {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.85);
    padding: 0.7rem 1.2rem;
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    z-index: 999;
    box-shadow: 0 0 10px rgba(0,0,0,0.6);
    animation: fadeOut 3s forwards ease-out;
  }
  
  /* Animação da mensagem */
  @keyframes fadeOut {
    0% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; transform: translateX(-50%) translateY(-20px); }
  }
  
  /* Responsividade */
  @media (max-width: 600px) {
    h1 {
      font-size: 1.6rem;
    }
  
    .btn {
      font-size: 1rem;
      padding: 0.8rem;
    }
  
    .container {
      padding: 1.5rem 1rem;
    }
  }
  