/* ---------- ESTILOS GERAIS ---------- */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  background-color: #dda4a4;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  color: #fff;
  overflow-y: auto;
}

.container {
  width: 90%;
  max-width: 400px;
  margin-top: 80px;
  text-align: center;
  padding-bottom: 30px;
}

/* ---------- CARD SUPERIOR ---------- */
.card-topo {
  position: relative;
  background-color: #ebe6d9;
  color: #1e4144;
  border-radius: 15px;
  padding: 40px 10px 25px 1%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  margin-top: 50px;
  margin-bottom: 50px;
}

.foto-wrapper {
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
}

.foto-perfil {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.conteudo-card h1 {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.7rem;
  letter-spacing: 0.2px;
  margin-top: 30px;
  margin-bottom: 5px;
}

.subtitulo {
  font-size: 0.9rem;
  color: #1e4144;
  margin: 0;
  letter-spacing: 2px;
}

/* ---------- ITENS DE LINKS ---------- */
.links {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.label {
  background-color: #ebe6d9;
  color: #1e4144;
  font-size: 0.85rem;
  /* font-weight: 500; */
  padding: 6px 20px;
  border-radius: 50px;
  position: relative;
  z-index: 2;
  width: 50%;
  max-width: 320px;
  letter-spacing: 3px;
}

.botao {
  display: block;
  background-color: transparent;
  color: #1e4144;
  text-decoration: none;
  font-weight: 600;
  margin-top: -10px;
  padding: 14px 30px 10px 30px;
  border-radius: 50px;
  border: 2px solid #ebe6d9;
  transition: 0.3s ease;
  width: 60%;
  max-width: 320px;
  letter-spacing: 2px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.botao:hover {
  background-color: #f5f1eb;
  color: #1e4144;
  border-color: #f5f1eb;
}