:root {
  --nude-topo: #a88a76;
  --nude-medio: #6b544a;
  --nude-escuro: #3a2e29;
  --dourado: #c9a15a;
  --dourado-claro: #e3c88f;
  --creme: #f7f0e6;
  --texto-btn: #5a463b;
  --branco: #ffffff;
  --whatsapp: #25d366;
}

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

html, body {
  min-height: 100%;
}

body {
  font-family: "Nunito", system-ui, -apple-system, sans-serif;
  color: var(--branco);
  background: radial-gradient(circle at 50% 30%, var(--nude-topo) 0%, var(--nude-medio) 52%, var(--nude-escuro) 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 28px 20px 24px;
}

.card {
  width: 100%;
  max-width: 560px;
  text-align: center;
}

/* Logo */
.logo-circle {
  width: 148px;
  height: 148px;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: var(--creme);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  border: 3px solid rgba(227, 200, 143, 0.55);
  overflow: hidden;
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Textos */
.title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.9rem, 6vw, 2.7rem);
  letter-spacing: 0.5px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.title strong {
  color: var(--dourado-claro);
  font-weight: 600;
}

.subtitle {
  font-weight: 400;
  font-size: clamp(1rem, 3.4vw, 1.15rem);
  line-height: 1.55;
  margin-bottom: 34px;
  opacity: 0.95;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.subtitle strong {
  font-weight: 800;
  color: var(--dourado-claro);
}

/* Botões de link */
.links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 20px 24px;
  background: var(--creme);
  color: var(--texto-btn);
  font-size: clamp(1rem, 3.4vw, 1.18rem);
  font-weight: 700;
  text-decoration: none;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.link-btn.primary {
  background: linear-gradient(135deg, var(--dourado) 0%, var(--dourado-claro) 100%);
  color: #4a3b2c;
}

.link-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
  background: #fffaf0;
}

.link-btn.primary:hover {
  background: linear-gradient(135deg, var(--dourado-claro) 0%, var(--dourado) 100%);
}

.link-btn:active {
  transform: translateY(-1px);
}

.wa-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  fill: var(--whatsapp);
}

.ig-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: var(--texto-btn);
}

/* Tagline + handle */
.tagline {
  font-weight: 400;
  font-size: clamp(0.9rem, 3vw, 1rem);
  line-height: 1.55;
  margin-bottom: 30px;
  opacity: 0.9;
}

.handle {
  display: inline-block;
  color: var(--dourado-claro);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.3px;
  text-decoration: none;
  opacity: 0.95;
  transition: opacity 0.18s ease;
}

.handle:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Crédito de desenvolvimento — fixo no rodapé da página */
.credit {
  margin-top: auto;
  padding-top: 40px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.2px;
  color: var(--branco);
  opacity: 0.55;
}

.credit a {
  color: var(--dourado-claro);
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.18s ease;
}

.credit a:hover {
  opacity: 1;
  text-decoration: underline;
}

@media (max-width: 480px) {
  .logo-circle {
    width: 124px;
    height: 124px;
  }
  .link-btn {
    padding: 18px 20px;
  }
}
