body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #FDF0DF; /* Fundo principal */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  background-color: #FFFAFA; /* Container com branco suave */
  padding: 30px 20px;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.profile .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.profile h1 {
  margin: 0;
  color: #008BB0; /* Azul destaque */
  font-size: 20px;
}

.subtitle {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.link-button {
  background-color: #FFFAFA; /* Fundo dos botões */
  border-radius: 20px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  text-decoration: none;
  color: #008BB0; /* Texto dos botões */
  font-weight: 500;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: background-color 0.2s ease;
}

.link-button:hover {
  background-color: #FDF0DF; /* Hover no botão */
}

.link-button .icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}

.social-icons a img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.social-icons a img:hover {
  transform: scale(1.2);
}

.theme-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.theme-toggle img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.theme-toggle img:hover {
  transform: rotate(20deg) scale(1.1);
}

/* Tema Escuro (adicionado via classe no <body>) */
body.dark-mode {
  background-color: #1a1a1a;
}

body.dark-mode .container {
  background-color: #2a2a2a;
  color: #ffffff;
}

body.dark-mode .profile h1 {
  color: #00b0d0;
}

body.dark-mode .subtitle {
  color: #cccccc;
}

body.dark-mode .link-button {
  background-color: #3a3a3a;
  color: #00b0d0;
}

body.dark-mode .link-button:hover {
  background-color: #505050;
}

body.dark-mode .social-icons a img {
  filter: brightness(0.8);
}
