:root {
  /* Mude as cores aqui para personalizar para cada cliente */
  --primary-color: #f885d5a5;
  --bg-color: #f3f4f6;
  --text-color: #0d1016;
  --btn-text-color: #ffffff;
}

body {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  background-color: #f67dd233;
  background-image: url(/image/Fundo_Images/Fundo_ImgID1.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 20px;
  margin: 0;
}

.profile-img {
  max-width: 100%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 5px solid #f67dd2;
  margin-bottom: 15px;
  object-fit: cover;
}

body h1 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

body p {
  max-width: 100%; 
  width: 60%; 
  font-size: 1rem;
  color: #000;
  text-align: center;
  margin-bottom: 35px;
}

.links-container {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.link-button {
  background-color: var(--primary-color);
  color: #fff;
  text-decoration: none;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  transition: transform 0.2s,filter 0.2s;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.link-button:active {
  transform: scale(0.9);
}

.link-button:hover {
  filter: brightness(1.1);
}

footer {
  margin-top: 35px;
  font-size: 0.7em;
}
