/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    height: 100vh;
    width: 100vw;
    font-family: Arial, sans-serif;
    overflow: hidden;
    background-color: #000;
  }
  
  /* Estrutura geral */
  .contato-container {
    display: flex;
    height: 100vh;
    width: 100vw;
  }
  
  /* Vídeo à esquerda */
  .lado-video {
    flex: 1;
    overflow: hidden;
  }
  
  .lado-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Formulário à direita */
  .lado-form {
    flex: 1;
    background-color: #000;
    padding: 60px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .logo {
    width: 200px;
    margin-bottom: 40px;
    margin-left: -30px;
  }
  
  h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 100%;
  }
  
  input, textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
  }
  
  textarea {
    resize: none;
  }
  
  label {
    font-size: 0.95rem;
    margin-top: 10px;
  }
  
  button {
    padding: 12px 20px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(to right, #6a4c01, #dcae38);
    color: white;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
  }
  
  button:hover {
    background: linear-gradient(to right, #dcae38, #6a4c01);
  }
  
  /* Responsivo */
  @media (max-width: 768px) {
    .contato-container {
      flex-direction: column;
    }
  
    .lado-video {
      display: none;
    }
  
    .lado-form {
      padding: 40px 20px;
    }
  
    .logo {
      width: 150px;
    }
  
    h2 {
      font-size: 1.6rem;
    }
  }
  