:root{
  --bg1:#050712;
  --bg2:#070b18;
  --text:#f5f7ff;
  --muted: rgba(245,247,255,.72);
  --line: rgba(255,255,255,.12);
  --shadow: 0 20px 70px rgba(0,0,0,.45);
  --radius: 24px;
  --radius2: 18px;

  /* Luxury palette */
  --accent:#f7f7fb;
  --accentText:#0b1020;
  --gold: rgba(245,208,111,.70);

  /* Typography */
  --fontBody: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  --fontDisplay: "Cormorant Garamond", Georgia, serif;

  /* Surfaces */
  --glass1: rgba(255,255,255,.075);
  --glass2: rgba(255,255,255,.03);
  --glassBorder: rgba(255,255,255,.11);
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: var(--fontBody);
  color:var(--text);
  background:
    radial-gradient(900px 600px at 18% 0%, rgba(245,208,111,.10), transparent 60%),
    radial-gradient(900px 650px at 80% 10%, rgba(120,119,198,.22), transparent 62%),
    radial-gradient(900px 650px at 50% 120%, rgba(34,197,94,.09), transparent 55%),
    linear-gradient(180deg, var(--bg1), var(--bg2));
  min-height:100vh;
}

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

.wrap{
  max-width:1100px;
  margin:0 auto;
  padding:22px 16px 72px;
}

/* ================= HEADER ================= */

.headerBar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 0 18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  min-width: 260px;
}

/* Logo */
.brandLogo{
  width:72px;
  height:72px;
  object-fit:contain;
  padding:8px;
  border-radius:18px;
  background: linear-gradient(180deg, #ffffff, rgba(255,255,255,.92));
  border:1px solid rgba(0,0,0,.12);
  box-shadow: 0 14px 45px rgba(0,0,0,.22);
}

.brandText{ display:grid; gap:2px; }

.brandTitle{
  font-weight:800;
  letter-spacing:.2px;
  line-height:1.05;
  font-size:15px;
}

.brandSub{
  font-size:12px;
  color: rgba(245,247,255,.58);
  letter-spacing:.2px;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  flex-wrap:wrap;
}

.nav a{
  font-size:13px;
  color:rgba(245,247,255,.80);
  padding:10px 14px;
  border-radius:999px;
  border:1px solid transparent;
  letter-spacing: .25px;
  background: transparent;
  transition: background .2s ease, border-color .2s ease, transform .12s ease;
}

.nav a:hover{
  color:var(--text);
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  transform: translateY(-1px);
}

.nav a.active{
  color: var(--accentText);
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(255,255,255,.90));
  border-color: rgba(255,255,255,.25);
  font-weight:800;
}

/* ================= HERO / TYPOGRAPHY ================= */

h1, h2{
  font-family: var(--fontDisplay);
  letter-spacing: .2px;
}

h1{
  margin:8px 0 10px;
  font-size:46px;
  line-height:1.05;
  font-weight: 700;
}

h2{
  line-height:1.2;
  font-weight: 700;
}

.lead{
  margin:0 0 14px;
  color:var(--muted);
  line-height:1.75;
  max-width:78ch;
  font-size:15px;
  letter-spacing:.15px;
}

/* ================= BUTTONS ================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.035);
  color:var(--text);
  font-weight:800;
  letter-spacing: .25px;
  transition: transform .12s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  cursor:pointer;
  position: relative;
  overflow:hidden;
}

.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.055);
  border-color: rgba(255,255,255,.22);
}

.btn.primary{
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(255,255,255,.90));
  color: var(--accentText);
  border-color: rgba(255,255,255,.22);
  font-weight:900;
  box-shadow: 0 18px 45px rgba(0,0,0,.28);
}

.btn.primary::after{
  content:"";
  position:absolute;
  inset:-40%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.40), transparent);
  transform: translateX(-60%) rotate(12deg);
  transition: transform .7s ease;
  pointer-events:none;
}

.btn.primary:hover::after{
  transform: translateX(60%) rotate(12deg);
}

/* ================= PANELS ================= */

.panel{
  border-radius: var(--radius);
  border:1px solid var(--glassBorder);
  background: linear-gradient(180deg, var(--glass1), var(--glass2));
  box-shadow: var(--shadow);
  padding:20px;
  backdrop-filter: blur(14px);
}

/* Make the first panel feel like a hero card */
.panel:first-of-type{
  padding:26px 24px;
  border-color: rgba(245,208,111,.20);
  background:
    radial-gradient(900px 420px at 10% 0%, rgba(245,208,111,.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
}

.panel:first-of-type h1{
  margin-top: 2px;
}

/* ================= LAYOUT ================= */

.grid{
  margin-top:16px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:start;
}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:12px;
}

.card{
  border-radius: 20px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  padding:14px;
  transition: transform .14s ease, background .2s ease, border-color .2s ease;
}

.card:hover{
  transform: translateY(-2px);
  border-color: rgba(245,208,111,.24);
  background: rgba(255,255,255,.045);
}

.card h3{
  margin:0 0 6px;
  font-size:15px;
  font-weight:900;
  letter-spacing: .2px;
}

.card p{
  margin:0;
  color: rgba(245,247,255,.72);
  line-height:1.6;
  font-size:13px;
}

/* ================= PILLS ================= */

.pillRow{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: rgba(245,247,255,.82);
  font-size:12px;
  font-weight:900;
  letter-spacing: .35px;
}

/* ================= FOOTER ================= */

.footer{
  margin-top:28px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  color: rgba(245,247,255,.55);
  font-size:12px;
  letter-spacing: .2px;
}

.footer a{ color: rgba(245,247,255,.70); }
.footer a:hover{ color: var(--text); }

/* ================= FLOATING WHATSAPP ================= */

.floatingWhatsApp{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
}

.floatingWhatsApp a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(10,14,26,.72);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  font-weight:900;
  letter-spacing:.25px;
}

.floatingWhatsApp a:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(245,208,111,.25);
}

/* ================= GALLERY CAROUSEL ================= */

.carousel{
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 12px auto 0;
  overflow: hidden;
}

.carTrackWrap{
  overflow:hidden;
  width:100%;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
}

.carTrack{
  display:flex;
  transition: transform .6s ease;
  will-change: transform;
}

.carSlide{
  min-width:100%;
}

.carSlide img{
  width:100%;
  height: 260px;
  object-fit: cover;
  display:block;
  border-radius:20px;
}

.carBtn{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.20);
  background: rgba(10,14,26,.76);
  color:#fff;
  font-size:22px;
  font-weight:900;
  cursor:pointer;
  z-index:10;
  display:grid;
  place-items:center;
}

.carBtn:hover{ background: rgba(255,255,255,.14); border-color: rgba(245,208,111,.28); }

.carBtn[data-dir="-1"]{ left: 10px; }
.carBtn[data-dir="1"]{ right: 10px; }

/* ================= MOBILE ================= */

@media (max-width: 920px){
  .grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  h1{ font-size: 38px; }
  .panel:first-of-type{ padding:22px 18px; }
}

/* Better header spacing and nav alignment on mobile */
@media (max-width: 760px){
  .headerBar{
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-bottom: 10px;
  }
  .brand{
    width:100%;
    justify-content:center;
    min-width: unset;
  }
  .nav{
    width:100%;
    justify-content:center;
    gap: 10px;
  }
  .nav a{
    padding:10px 14px;
  }
}

@media (max-width: 700px){
  .carousel{ max-width: 100%; }
  .carSlide img{ height: 220px; }
  .brandLogo{ width:64px; height:64px; }
}
.grid{display:grid;grid-template-columns:repeat(7,1fr);gap:8px;margin-top:12px}
.dow{font-size:12px;color:#6b7280;font-weight:800;text-transform:uppercase;padding:6px 2px}
.day{background:#fff;border:1px solid #e5e7eb;border-radius:14px;padding:10px;min-height:74px;text-decoration:none;color:#111827;display:block}
.day:hover{border-color:#cbd5e1}
.day.muted{background:#f8fafc;color:#94a3b8}
.day.today{outline:2px solid #11182722}
.num{font-weight:900;font-size:14px}
.count{margin-top:6px;display:inline-block;padding:4px 10px;border-radius:999px;border:1px solid #d1d5db;font-size:12px;font-weight:800}
.count.on{background:#ecfdf5;border-color:#86efac}
.count.zero{background:#fff}
@media (max-width:720px){
  .grid{gap:6px}
  .day{min-height:64px;padding:8px}
}
