

body {
    margin: 0;
    padding: 0;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(imagemFundo.jpg) !important;
    background-repeat: no-repeat;
    background-position: center -60px;
    background-size: 1920px 960px;
  }

.vertical {
    display: flex; 
    flex-direction: column; 
    align-items: center;
}

.container {
    text-align: center;
}

.btn-grad {
    padding: 15px 30px;
    margin: 10px;
    font-size: 16px;
    color: white;
    background-image: linear-gradient(to right, #95703b 0%, #e1cd88 51%, #e1cd88  100%);
    border: 2px solid white; /* Contorno branco */
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s; /* Transição */
    
    align-items: center; /* Centraliza o conteúdo verticalmente */
}

.btn-grad {
    width: 200px; /* Largura do botão */
}

.btn-grad .icone {
    width: 20px; /* Largura da imagem */
    height: 16px; /* Altura da imagem */
    margin-right: 8px; /* Espaço entre a imagem e o texto */
    vertical-align: center; /* Alinhamento vertical */
}

.btn-grad:hover {
    background-color: #0056b3;
    border-color: #0056b3; /* Cor da borda ao passar o mouse */
}

.logo-brasil {
    width: 260px;
    height: 130px;
    background-image: url(logoApp.png);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: contain;
    margin: 10px 0;
    font-weight: bold;
}

.logo-us {
    width: 260px;
    height: 130px;
    background-image: url(logoAppUS.png);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: contain;
    margin: 10px 0;
    font-weight: bold;
  }
  