:root {
  --salvia: #8c9e88;
  --salvia-dark: #6e7d6b;
  --creme: #f5f5f0;
  --texto: #333a31;
  --branco: #ffffff;
  --font-titulo: 'Playfair Display', serif;
  --font-texto: 'Montserrat', sans-serif;
}

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

body {
  /* Inverti as cores: Fundo Sálvia, elementos claros, fica muito chique */
  background-color: var(--salvia);
  font-family: var(--font-texto);
  color: var(--branco);
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 20px;
}

.bio-container {
  width: 100%;
  max-width: 450px;
  text-align: center;
}

.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--creme);
  margin-bottom: 20px;
  background-color: var(--creme); /* Placeholder */
}

.bio-header h1 {
  font-family: var(--font-titulo);
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.bio-header h2 {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--creme);
  margin-bottom: 15px;
}

.bio-header p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 35px;
  line-height: 1.5;
}

/* Botões minimalistas */
.bio-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn-link {
  display: block;
  background-color: var(--creme);
  color: var(--texto);
  text-decoration: none;
  padding: 18px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn-link:active {
  transform: scale(0.95);
}

.btn-outline {
  background-color: transparent;
  color: var(--creme);
  border: 2px solid var(--creme);
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
}

/* Efeito Pulsante para chamar atenção pro link principal */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(245, 245, 240, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(245, 245, 240, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 245, 240, 0); }
}
.pulse-effect {
  animation: pulse 2s infinite;
}

/* Footer / Logo */
.bio-social {
  margin-top: 50px;
}
.logo-kv {
  font-family: var(--font-titulo);
  font-size: 2rem;
  color: var(--creme);
  opacity: 0.5;
  margin-bottom: 10px;
}
.bio-social p {
  font-size: 0.8rem;
  opacity: 0.7;
}
