*{ margin:0; padding:0; box-sizing:border-box; }
html, body{ height:100%; }

:root{
  --bg1:#ebdace;
  --bg2:#f2f2f2;
  --wine:#6f1a4b;
  --wine2:#b34284;
  --card:#ffffff;
  --text:#1f1f1f;
  --muted:#666;
  --shadow: 0 16px 28px rgba(0,0,0,.12);
  --border: 1px solid rgba(0,0,0,.06);
}

body{
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom, var(--bg1) 40%, var(--bg2) 60%);
  min-height: 100vh;
  display:flex;
  justify-content:center;
  padding: 28px 14px 40px;
  color: var(--text);
}

a{ text-decoration:none; color: inherit; }

/* ===== Loading (mantém seu JS) ===== */
#loading-screen{
  position: fixed;
  inset: 0;
  background: #151515;
  z-index: 9999;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
#loading-bar{
  position:absolute;
  top:0; left:0;
  height:100%;
  width:0%;
  background: var(--bg1);
}
#loading-text{
  position: relative;
  z-index: 2;
  font-size: 3rem;
  color: #fff;
}

/* ===== Layout geral ===== */
.shell{
  width: min(520px, 100%);
  display:flex;
  flex-direction:column;
  gap: 14px;
}

/* ===== HERO ===== */
.hero{
  background: rgba(255,255,255,.85);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border: var(--border);
}

.hero-left{
  display:flex;
  gap: 12px;
  align-items:center;
  min-width: 0;
}

.avatar{
  width: 56px;
  height: 56px;
  border-radius: 14px;
  overflow:hidden;
  border: 2px solid var(--bg1);
  box-shadow: 0 10px 16px rgba(0,0,0,.12);
  background: #fff;
}
.avatar img{ width:100%; height:100%; object-fit:cover; }

.hero-text h1{
  font-size: 1.25rem;
  color: var(--wine);
  font-weight: 800;
  line-height: 1.1;
}
.hero-text p{
  font-size: .88rem;
  color: #000;
  margin-top: 2px;
}

/* badges */
.badges{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  margin-top: 10px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap: 6px;
  font-size: .78rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(111,26,75,.08);
  border: 1px solid rgba(111,26,75,.12);
  color: var(--wine);
  white-space: nowrap;
}
.badge i{ font-size: .85rem; }

/* ===== LOGO GIRANDO (sem quadrado) ===== */
.spin-logo{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;                 /* recorta o “quadrado” */
  background: var(--bg1);           /* cor única */
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 10px 16px rgba(0,0,0,.12);
  border: 2px solid rgba(111,26,75,.12);
}
.spin-logo img{
  width: 72%;
  height: 72%;
  object-fit: contain;
  background: transparent;
  animation: rotate 5s linear infinite; /* MANTIDO */
}

/* ===== Message ===== */
.message{
  background: rgba(255,255,255,.78);
  border: var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 10px 18px rgba(0,0,0,.06);
}
.message p{
  font-size: .95rem;
  color: var(--wine);
  line-height: 1.35;
}
.message strong{ color: var(--wine2); }

/* ===== Cards de Links ===== */
.grid{
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.link-card{
  position: relative;
  background: var(--card);
  border-radius: 16px;
  padding: 14px 14px;
  display:flex;
  align-items:center;
  gap: 12px;
  box-shadow: 0 10px 18px rgba(0,0,0,.08);
  border: var(--border);
  transition: transform .12s ease, box-shadow .12s ease;
}

.link-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 26px rgba(0,0,0,.12);
}

.link-card .icon{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  color: #fff;
  flex: 0 0 auto;
}

.link-card .text{
  min-width: 0;
  flex: 1 1 auto;
}
.link-card .text h2{
  font-size: 1.02rem;
  font-weight: 800;
  color: #222;
}
.link-card .text p{
  font-size: .86rem;
  color: var(--muted);
  margin-top: 2px;
}
.link-card .arrow{
  color: rgba(0,0,0,.45);
  font-size: 1.05rem;
}

/* variações */
.link-card.primary .icon{
  background: linear-gradient(135deg, var(--wine) 0%, var(--wine2) 100%);
}
.link-card.instagram .icon{
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}

/* ===== LOCALIZAÇÃO (botão verde sólido - NÃO MUDA O SENTIDO) ===== */
.link-card.maps{
  background: #009087;
  border: none;
  color: #fff;
}
.link-card.maps .text h2,
.link-card.maps .text p,
.link-card.maps .arrow{
  color: #fff;
}
.link-card.maps .icon{
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
}

/* bolinha (opcional) */
.pulse-dot{
  position:absolute;
  right: 14px;
  bottom: 14px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  animation: ping 1.2s infinite;
  opacity: 0.9;
}
@keyframes ping{
  0%{ transform: scale(1); opacity: .95; }
  70%{ transform: scale(2.3); opacity: 0; }
  100%{ transform: scale(2.3); opacity: 0; }
}

/* ===== Mini cards ===== */
.mini{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mini-card{
  background: rgba(255,255,255,.8);
  border: var(--border);
  border-radius: 16px;
  padding: 12px 12px;
  display:flex;
  gap: 10px;
  align-items:flex-start;
  box-shadow: 0 10px 18px rgba(0,0,0,.06);
}
.mini-card i{
  color: var(--wine);
  font-size: 1.1rem;
  margin-top: 2px;
}
.mini-card h3{
  font-size: .92rem;
  color: #222;
  font-weight: 800;
}
.mini-card p{
  font-size: .82rem;
  color: var(--muted);
  margin-top: 2px;
}

/* ===== CTA ===== */
.cta{
  margin-top: 6px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 10px;
}
.cta-note{
  font-size: .82rem;
  color: #555;
  text-align:center;
  max-width: 420px;
}

/* ===== Footer ===== */
.foot{
  margin-top: 6px;
  display:flex;
  gap: 10px;
  justify-content:center;
  align-items:center;
  font-size: .78rem;
  color: #555;
  opacity: .9;
}
.foot .dot{ opacity: .6; }

/* ===== Responsivo ===== */
@media (max-width: 380px){
  .mini{ grid-template-columns: 1fr; }
}

/* ===== ANIMAÇÃO DA LOGO (MANTIDA) ===== */
@keyframes rotate{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}

/* ==========================================================
   BOTÃO DO WHATS — NÃO ALTERAR (copiado do seu original)
   ========================================================== */
.button2 {
    display: inline-block;
    transition: all 0.2s ease-in;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: #090909;
    padding: 0.7em 3.3em 0.7em 1.7em;
    font-size: 18px;
    border-radius: 0.5em;
    background: #ebdace;
    border: 1px solid #ebdace;
    box-shadow: 6px 6px 12px #424242;
    animation: pulse 2.5s infinite;
}
.button2 > svg {
    height: 30px;
    position: absolute;
    padding: 0px 5px;
    margin-top: -4px;
}
.button2:active {
    color: #666;
    box-shadow: inset 4px 4px 12px #c5c5c5,
               inset -4px -4px 12px #ffffff;
}
.button2:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1.25);
    top: 100%;
    width: 140%;
    height: 180%;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}
.button2:after {
    content: "";
    position: absolute;
    left: 55%;
    transform: translateX(-50%) scaleY(1) scaleX(1.45);
    top: 180%;
    width: 160%;
    height: 190%;
    background-color: #009087;
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}
.button2:hover {
    color: #ffffff;
    border: 1px solid #009087;
}
.button2:hover:before {
    top: -35%;
    background-color: #009087;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
.button2:hover:after {
    top: -45%;
    background-color: #009087;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}