/* ============================================
   MANUTENÇÃO — Rosana Capellari
   Paleta: #a48662 · #bfab91 · #ded0bb · #e5e2d9 · #eff0eb
============================================ */

:root{
  --marrom:       #a48662;
  --marrom-forte: #8a6f4e;
  --taupe:        #bfab91;
  --bege:         #ded0bb;
  --areia:        #e5e2d9;
  --offwhite:     #eff0eb;
  --texto:        #6e5f4b;
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; }

body{
  min-height:100svh;
  display:grid;
  place-items:center;
  padding:36px 22px calc(36px + env(safe-area-inset-bottom));
  font-family:'Jost',system-ui,sans-serif;
  background:var(--offwhite);
  color:var(--texto);
  overflow-x:hidden;
}

::selection{ background:var(--bege); color:var(--marrom-forte); }

/* ---------- Bolhas decorativas ---------- */
.bubble{ position:fixed; z-index:-1; border-radius:50%; animation:flutua 10s ease-in-out infinite; }
.b1{ width:230px; height:230px; top:-70px;   left:-70px;  background:var(--areia); }
.b2{ width:170px; height:170px; bottom:8%;  right:-60px; background:var(--bege);  animation-delay:-3s; }
.b3{ width:90px;  height:90px;  top:16%;    right:14%;   background:var(--taupe); opacity:.35; animation-delay:-6s; }
.b4{ width:64px;  height:64px;  bottom:-14px; left:10%;  background:var(--marrom); opacity:.18; animation-delay:-8s; }

@keyframes flutua{
  0%,100%{ transform:translateY(0); }
  50%    { transform:translateY(-18px); }
}

/* ---------- Estrutura ---------- */
main{ width:100%; max-width:430px; text-align:center; }

/* ---------- Espaço da logo ---------- */
.logo-wrap{ position:relative; width:132px; height:132px; margin:0 auto 18px; }

.logo-ring{
  position:absolute; inset:-11px;
  border:1.5px dashed var(--taupe);
  border-radius:50%;
  animation:gira 28s linear infinite;
}

.logo-circle{
  width:100%; height:100%;
  border-radius:50%;
  background:linear-gradient(150deg, var(--areia) 0%, var(--bege) 100%);
  box-shadow:0 14px 30px rgba(164,134,98,.22);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}

.logo-circle img{ width:100%; height:100%; object-fit:contain; padding:16px; display:none; }
.logo-circle img.ok{ display:block; }

.logo-fallback{
  font-family:'Cormorant Garamond',serif;
  font-size:2.6rem; font-weight:600; letter-spacing:.08em;
  color:var(--marrom);
  display:flex; align-items:center; justify-content:center;
}
.logo-fallback.some{ display:none; }

@keyframes gira{ to{ transform:rotate(360deg); } }

.dominio{
  font-size:.72rem; letter-spacing:.22em; text-transform:uppercase;
  color:var(--taupe); margin-bottom:34px;
}

/* ---------- Aviso ---------- */
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:9px 18px;
  background:var(--areia);
  border:1px solid var(--bege);
  border-radius:999px;
  font-size:.68rem; font-weight:600;
  letter-spacing:.2em; text-transform:uppercase;
  color:var(--marrom);
  margin-bottom:20px;
}
.badge svg{ width:14px; height:14px; animation:gira 6s linear infinite; }

h1{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.3rem, 9vw, 3.1rem);
  font-weight:600; line-height:1.15;
  color:var(--marrom-forte);
  margin-bottom:16px;
}
h1 em{ font-style:italic; color:var(--marrom); position:relative; z-index:0; }
h1 em::after{
  content:''; position:absolute; left:-2%; right:-2%; bottom:6%;
  height:32%; background:var(--bege); z-index:-1; border-radius:4px;
}

.texto{ font-size:1rem; font-weight:300; line-height:1.75; margin-bottom:32px; }

/* ---------- Botões ---------- */
.acoes{ display:flex; flex-direction:column; gap:14px; }

.btn{
  position:relative; overflow:hidden;
  display:flex; align-items:center; justify-content:center; gap:10px;
  padding:17px 24px;
  border-radius:999px;
  font-size:.95rem; font-weight:500; letter-spacing:.05em;
  text-decoration:none;
  transition:transform .25s ease, box-shadow .25s ease;
  -webkit-tap-highlight-color:transparent;
}
.btn svg{ width:20px; height:20px; flex-shrink:0; }
.btn:hover{ transform:translateY(-3px); }
.btn:active{ transform:scale(.97); }

.btn-insta{ background:var(--marrom); color:#fff; box-shadow:0 12px 26px rgba(164,134,98,.35); }
.btn-insta:hover{ box-shadow:0 16px 32px rgba(164,134,98,.45); }

.btn-zap{ background:var(--bege); color:var(--marrom-forte); box-shadow:0 12px 26px rgba(191,171,145,.35); }

/* Efeito ripple (toque) */
.ripple{
  position:absolute; border-radius:50%;
  background:rgba(255,255,255,.45);
  transform:scale(0); pointer-events:none;
  animation:ripple .6s ease-out forwards;
}
.btn-zap .ripple{ background:rgba(164,134,98,.25); }
@keyframes ripple{ to{ transform:scale(1); opacity:0; } }

/* ---------- Status / rodapé ---------- */
.status{
  display:flex; align-items:center; justify-content:center; gap:9px;
  margin-top:30px;
  font-size:.8rem; letter-spacing:.14em; text-transform:uppercase;
  color:var(--taupe);
}
.dot{ width:8px; height:8px; border-radius:50%; background:var(--marrom); animation:pulso 1.8s ease-in-out infinite; }
@keyframes pulso{
  0%,100%{ box-shadow:0 0 0 0 rgba(164,134,98,.4); }
  50%    { box-shadow:0 0 0 7px rgba(164,134,98,0); }
}

footer{ margin-top:26px; font-size:.75rem; letter-spacing:.08em; color:var(--taupe); }

/* ---------- Entrada suave ---------- */
.reveal{ opacity:0; transform:translateY(22px); transition:opacity .8s ease, transform .8s ease; }
.reveal.visivel{ opacity:1; transform:translateY(0); }

/* ---------- Acessibilidade ---------- */
@media (prefers-reduced-motion:reduce){
  *{ animation:none !important; transition:none !important; }
  .reveal{ opacity:1; transform:none; }
}

/* ---------- Telas maiores ---------- */
@media (min-width:640px){
  .acoes{ flex-direction:row; justify-content:center; }
  .btn{ flex:1; max-width:240px; }
}

/* ============================================
   ACESSIBILIDADE — leitura confortável (60+)
============================================ */
html{ font-size:18px; } /* amplia a página inteira (tudo usa rem) */

.logo-wrap{ width:150px; height:150px; }
.texto{ font-size:1.15rem; line-height:1.9; }
.btn{ font-size:1.05rem; padding:1.05rem 1.5rem; }
.btn svg{ width:1.35rem; height:1.35rem; }
.badge{ font-size:.78rem; }
.dominio{ font-size:.8rem; }
.status{ font-size:.9rem; }
footer{ font-size:.85rem; }

/* Botões A+ / A− */
.acessibilidade{
  position:fixed; top:14px; right:14px; z-index:10;
  display:flex; gap:8px;
}
.acessibilidade button{
  min-width:46px; height:46px;
  border:none; border-radius:999px;
  background:var(--marrom); color:#fff;
  font-family:'Jost',sans-serif; font-weight:600; font-size:1rem;
  cursor:pointer;
  box-shadow:0 6px 16px rgba(164,134,98,.35);
  transition:transform .2s ease;
  -webkit-tap-highlight-color:transparent;
}
.acessibilidade button:active{ transform:scale(.92); }