body {
  font-family: Arial, sans-serif;
  background: #fff;
  color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  text-align: center;
}

.logo {
  max-width: 350px;
  height: auto;
  margin-bottom: 40px;
}

.links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.btn.email { background: #555; }
.btn.vimeo { background: #1ab7ea; }
.btn.whatsapp { background: #25d366; }

.btn:hover {
  opacity: 0.8;
}
