:root{
  --radius: 18px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{ font-family:"Inter",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif; }

.skip-link{
  position:absolute; left:-999px; top:10px;
  background:#111827; color:#fff;
  padding:10px 12px; border-radius:10px;
  z-index:9999;
}
.skip-link:focus{ left:10px; }

.hero{
  position: relative;
  min-height: 520px;
  background-image: url("/assets/background.jpg");
  background-size: cover;
  background-position: center;
}
.hero-overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(2,6,23,.80) 0%, rgba(2,6,23,.55) 55%, rgba(2,6,23,.25) 100%);
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.20);
  color:#fff;
  font-weight:700;
  font-size:13px;
}

.card{
  background:#fff;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 10px 30px rgba(2,6,23,.08);
  transition: transform .2s ease, box-shadow .2s ease;
  border:1px solid rgba(15,23,42,.06);
}
.card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(2,6,23,.12);
}

.media-card{
  background:#fff;
  border-radius: 22px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.06);
  box-shadow: 0 10px 30px rgba(2,6,23,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.media-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(2,6,23,.12);
}
.media-card img{
  width:100%;
  height:210px;
  object-fit:cover;
}

.cta-card{
  background:#fff;
  border-radius: 22px;
  padding: 22px;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(2,6,23,.08);
}

.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  background:#10b981;
  color:#fff;
  font-weight:800;
  box-shadow: 0 10px 24px rgba(2,6,23,.12);
  text-decoration:none;
}
.btn-primary:hover{ filter: brightness(.96); }

.btn-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  background:#fff;
  border:1px solid rgba(15,23,42,.14);
  color:#0f172a;
  font-weight:800;
  text-decoration:none;
}
.btn-secondary:hover{ background:#f8fafc; }

.gallery-img{
  width:100%;
  height: 200px;
  object-fit: cover;
  border-radius: 18px;
  border:1px solid rgba(15,23,42,.08);
  box-shadow: 0 8px 22px rgba(2,6,23,.08);
}

.faq{
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 8px 22px rgba(2,6,23,.06);
}
.faq summary{
  cursor:pointer;
  font-weight:800;
  color:#0f172a;
}

/* WhatsApp floating */
.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  border: none;
  cursor:pointer;
  color:#fff;
  background: #22c55e;
  box-shadow: 0 14px 34px rgba(2,6,23,.25);
  z-index: 60;
}
.wa-float:hover{ filter: brightness(.95); }

/* Modal */
.modal.hidden{ display:none; }
.modal{
  position: fixed; inset:0; z-index: 80;
  display:flex; align-items:center; justify-content:center;
  padding: 18px;
}
.modal-backdrop{ position:absolute; inset:0; background: rgba(2,6,23,.55); }
.modal-card{
  position: relative;
  width: 100%;
  max-width: 520px;
  background: #fff;
  border-radius: 22px;
  padding: 18px 18px 16px;
  box-shadow: 0 22px 70px rgba(2,6,23,.35);
}
.wa-item{
  display:flex;
  gap:12px;
  align-items:center;
  padding: 12px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  text-decoration:none;
  background: #fff;
}
.wa-item:hover{ background:#f8fafc; }
.wa-badge{
  width: 44px; height: 44px;
  border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  background: #ecfdf5;
  color: #16a34a;
  font-size: 18px;
}
