/* Entre Linhas & Afeto — Landing */
:root{
  --peach:#f0c1ae;    /* pêssego suave */
  --peach-rose:#efb6a7; /* pêssego rosado */
  --linen:#fbc7ad;    /* fundo claro quente */
  --ink:#3a2f2f;      /* marrom suave para texto */
  --accent:#b5767b;   /* detalhe rosado */
  --radius:18px;
  --shadow:0 10px 40px rgba(0,0,0,.08);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background: #fbc7ad;
}

.wrap{
  min-height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:48px 20px;
  gap:28px;
}

.brand{
  text-align:center;
}
.logo{
  width:88px; height:auto; margin:0 auto 12px; display:block;
}
h1{
  font-family:"Playfair Display", serif;
  font-weight:700;
  letter-spacing:.2px;
  margin:0 0 6px;
}
.tagline{
  margin:0;
  opacity:.8;
}

.card{
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(255,255,255,.65);
  border:1px solid rgba(255,255,255,.6);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  width: min(560px, 92vw);
  text-align:center;
}
.intro{ margin:0 0 14px; font-size:1.05rem }

.cta{
  display:inline-block;
  padding:14px 22px;
  border-radius: 999px;
  text-decoration:none;
  font-weight:600;
  border: 2px solid var(--accent);
  background: linear-gradient(180deg, #fff, #fff5f7);
  box-shadow: 0 6px 20px rgba(181,118,123,.2);
  transition: transform .15s ease, box-shadow .2s ease;
  color: var(--accent);
}
.cta:hover{ transform: translateY(-2px); box-shadow:0 10px 26px rgba(181,118,123,.28) }
.cta:active{ transform: translateY(0) }

.hint{ margin:10px 0 0; opacity:.75 }

.footer{
  text-align:center;
  opacity:.7;
}

/* Responsividade */
@media (max-width:420px){
  .intro{ font-size:1rem }
}

/* Extra buttons */
.links{ display:flex; gap:12px; justify-content:center; margin-top:12px; flex-wrap:wrap}
.cta.secondary{
  border-color: rgba(58,47,47,.25);
  color: var(--ink);
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
.cta.secondary:hover{ box-shadow: 0 8px 20px rgba(0,0,0,.12) }
