/* ===========================
   VARIÁVEIS – TEMA PREMIUM
=========================== */
:root {
  --bg-main: #f7f2ee;
  --bg-soft: #f7f2ee;

  --primary: #8e2c33;
  --primary-hover: #6b0101;

  --text-main: #2e2e2e;
  --text-light: #ffffff;

  --radius: 36px;
  --font: 'Segoe UI', sans-serif;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* FUNDO */
body {
  min-height: 100vh;
  background: linear-gradient(
    180deg,
    var(--bg-soft),
    var(--bg-main)
  );
  font-family: var(--font);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 420px;
  padding: 28px 24px;
  text-align: center;
}

/* AVATAR */
.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
  border: 3px solid var(--primary);
}

/* TÍTULO */
h1 {
  color: var(--primary);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 4px;
}

/* REGISTROS */
.registro {
  margin-bottom: 22px;
}

.registro p {
  color: var(--text-main);
  font-size: 0.85rem;
  opacity: 0.75;
  margin-bottom: 2px;
}

/* BOTÕES */
.link-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  width: 100%;
  padding: 14px;
  margin-bottom: 14px;

  background-color: var(--primary);
  color: var(--text-light);
  text-decoration: none;

  border-radius: var(--radius);
  font-weight: 600;
  letter-spacing: 0.3px;

  transition: all 0.25s ease;
}

/* HOVER */
.link-button:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

/* SVG */
.link-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* WHATSAPP – CTA PRINCIPAL */
.link-button.whatsapp {
  background-color: #ffffff;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.link-button.whatsapp:hover {
  background-color: var(--primary);
  color: var(--text-light);
}
