/* Estilos Globais */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Quicksand', sans-serif;
  }
  
  body {
    font-family: 'Quicksand', sans-serif;
    color: #fff;
    background: linear-gradient(90deg, #004aad, #cb6ce6, #000);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
  }
  
  /* Container Centralizado */
  .container {
    background: rgba(0, 0, 0, 0.5); /* fundo semitransparente para realçar o conteúdo */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 600px;
    width: 100%;
  }
  
  /* Título principal */
  .container h1 {
    margin-bottom: 20px;
    font-size: 2em;
    font-weight: 400;
  }
  
  /* Container para o vídeo com proporção 16:9 */
  .video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 10px;
  }
  
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
  }
  
  /* Ícone da SL (logo) */
  .logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background-image: url(/4.png);
    background-size: cover;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: #ebf2be 0 0 10px;
  }
  
  /* Estilos para os botões */
  .buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .buttons button {
    padding: 15px;
    font-size: 1em;
    border: none;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
  }
  
  /* Animação de hover para os botões */
  .buttons button:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  }
  