:root {
  --bg:#0f0f14;
  --card:#1a1a23;
  --gold:#d4af37;
  --blush:#e6b7c1;
  --ivory:#f6f3ee;
  --text:#eaeaea;
  --muted:#9fa0b0;
}

*{box-sizing:border-box;font-family:Poppins,system-ui,sans-serif}
body{margin:0;background:linear-gradient(180deg,#0f0f14,#141420);color:var(--text)}

header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:1rem 1.2rem;
  background:#0f0f14;
  border-bottom:1px solid rgba(255,255,255,.08)
}
header h1{font-size:1.2rem;color:var(--gold)}
nav a{
  margin-left:.8rem;
  text-decoration:none;
  color:var(--ivory);
  font-size:.85rem
}

.section{padding:1.5rem}
.card{
  background:var(--card);
  border-radius:16px;
  padding:1.2rem;
  margin-bottom:1rem;
  border:1px solid rgba(255,255,255,.06)
}
.card h3{color:var(--gold);margin:.3rem 0}
.card p{color:var(--muted);font-size:.95rem}

.btn{
  display:inline-block;
  background:linear-gradient(135deg,var(--gold),var(--blush));
  color:#000;
  padding:.75rem 1.4rem;
  border-radius:30px;
  font-weight:600;
  text-decoration:none;
}

.floating-contact{
  position:fixed;
  right:14px;
  bottom:18px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.floating-contact a{
  width:52px;height:52px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.4rem;
  text-decoration:none;
  color:#fff;
}
.sms{background:#2ecc71}
.whatsapp{background:#25D366}


/* LOGO SECTION */
.logo-wrapper{
  display:flex;
  justify-content:center;
  align-items:center;
  padding:2rem 1.5rem 1rem;
}

.logo-wrapper img{
  max-width:240px;        /* Large but mobile-safe */
  width:80%;
  height:auto;
  filter:drop-shadow(0 8px 25px rgba(212,175,55,.25));
}

/* Desktop enhancement */
@media(min-width:768px){
  .logo-wrapper img{
    max-width:340px;
  }
}
