@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #1e1e1e;
  color: #f1f1f1;
  min-height: 100vh;
}

img {
  width: 120px;
  height: 120px;
  display: block;
  margin: 30px auto;
}

h1 {
  text-align: center;
  margin: 30px 0;
  font-weight: 500;
  color: #e0e0e0;
}

.container-bts {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.botoes,
.bt-opções {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.botoes button {
  width: 260px;
  height: 55px;
  background-color: #2f2f2f;
  color: #f1f1f1;
  border: 1px solid #3a3a3a;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.bt-opções button {
  width: 36px;
  height: 55px;
  background-color: #2f2f2f;
  color: #ccc;
  border: 1px solid #3a3a3a;
  border-radius: 6px;
  font-size: 20px;
  cursor: pointer;
}

.info {
  background-color: #2a2a2a;
  width: 85%;
  margin: 60px auto;
  padding: 20px;
  border-radius: 8px;
}

.info h2 {
  text-align: center;
  margin-bottom: 15px;
  font-weight: 500;
  color: #e0e0e0;
}

.info p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #cfcfcf;
}

.enviar-site {
  width: 50px;
  height: 50px;
  background-color: #2f2f2f;
  color: #f1f1f1;
  border: 1px solid #3a3a3a;
  border-radius: 6px;
  font-size: 22px;
  position: fixed;
  top: 15px;
  right: 15px;
  cursor: pointer;
}