:root{
  --bg:#f6f3f2;
  --bg-2:#ffffff;
  --fg-rgb:20,20,20;
  --shade-rgb:0,0,0;
  --fg:rgba(var(--fg-rgb),.92);
  --muted:rgba(var(--fg-rgb),.68);
  --hair:rgba(var(--fg-rgb),.14);
  --accent:#7b0f2b;
  --accent-rgb:123,15,43;
  --glow-rgb:91,11,42;
  --accent-ink:#ffffff;
  --shadow:0 18px 60px rgba(var(--shade-rgb),.12);
  --r:22px;
  --max:1180px;
}
*{box-sizing:border-box}
html{ overflow-x: hidden; }
body{
  margin:0;
  overflow-x: hidden;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(1200px 700px at 18% 0%, rgba(var(--accent-rgb),.12), transparent 55%),
    radial-gradient(1000px 600px at 86% 20%, rgba(var(--glow-rgb),.10), transparent 55%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  color:var(--fg);
}
h1, h2, h3, p, .mono{ overflow-wrap: break-word; }
a{color:inherit; text-decoration:none}
a:hover{text-decoration:underline; text-decoration-thickness:2px; text-underline-offset:4px}

.kicker{
  display:flex; align-items:center; gap:10px;
  color: rgba(var(--fg-rgb),.68);
  font-size: 12px;
  letter-spacing: .35px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.kline{ height:1px; flex:1; background:rgba(var(--fg-rgb),.14); }
.big{
  margin:0 0 14px;
  font-size: clamp(34px, 4.8vw, 70px);
  line-height: .95;
  letter-spacing: -1.2px;
}
.lead{
  margin:0 0 18px;
  color: rgba(var(--fg-rgb),.68);
  font-size: 15px;
  line-height: 1.6;
  max-width: 70ch;
}
.btnRow{ display:flex; flex-wrap:wrap; gap:10px; align-items:center; }
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 12px 14px;
  border-radius: 999px;
  border:1px solid rgba(var(--fg-rgb),.14);
  background: rgba(var(--fg-rgb),.04);
  color: rgba(var(--fg-rgb),.92);
  font-weight: 650;
  font-size: 14px;
  user-select:none;
  cursor:pointer;
}
.btn:hover{ background: rgba(var(--fg-rgb),.07); text-decoration:none; }
.btn.primary{
  background: var(--accent);
  border-color: rgba(var(--accent-rgb),.35);
  color:var(--accent-ink);
}
.mini{ font-size: 12px; color: rgba(var(--fg-rgb),.68); }
.btn{ max-width: 100%; }
.btn .mono{ overflow:hidden; text-overflow:ellipsis; }
@media (max-width: 560px){
  .btnRow{ gap: 8px; }
  .btnRow .btn{ flex: 1 1 auto; min-width: 0; }
}
.hint{
  margin-top: 18px;
  display:flex; align-items:center; justify-content:space-between; gap: 14px;
  color: rgba(var(--fg-rgb),.62);
  font-size: 12px;
  border-top: 1px solid rgba(var(--fg-rgb),.10);
  padding-top: 14px;
}
.kbd{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  border: 1px solid rgba(var(--fg-rgb),.16);
  background: rgba(255,255,255,.8);
  padding: 3px 8px;
  border-radius: 10px;
  color: rgba(var(--fg-rgb),.78);
}

html{ scroll-behavior: smooth; }

.hud{
  position:fixed; top:14px; left:50%;
  transform: translateX(-50%);
  width:min(var(--max), calc(100% - 28px));
  z-index:60;
  display:flex; align-items:center; justify-content:space-between;
  gap: 12px;
  padding: 10px 14px;
  border:1px solid rgba(var(--fg-rgb),.14);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(var(--shade-rgb),.12);
}
.brand{
  display:flex; align-items:center; gap: 10px;
  font-weight: 800;
  letter-spacing: .3px;
  white-space:nowrap;
  cursor:pointer;
  user-select:none;
  flex-shrink:0;
}
.dot{ width:10px; height:10px; border-radius:50%; background: var(--accent); box-shadow: 0 0 18px rgba(var(--accent-rgb),.55); flex-shrink:0; }
.hudRight{ display:flex; align-items:center; gap: 10px; flex-wrap: wrap; justify-content:flex-end; }
.pill{
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: rgba(var(--fg-rgb),.68);
  font-size: 13px;
  letter-spacing: .2px;
  user-select:none;
  cursor:pointer;
  background: transparent;
  white-space:nowrap;
}
.pill:hover{ color: rgba(var(--fg-rgb),.92); border-color: rgba(var(--fg-rgb),.14); background: rgba(var(--fg-rgb),.04); }
.pill.active{ color:var(--accent-ink); background: var(--accent); border-color: rgba(var(--accent-rgb),.25); }

.menuToggle{
  display:none;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap: 4px;
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(var(--fg-rgb),.14);
  background: rgba(var(--fg-rgb),.04);
  cursor:pointer;
  flex-shrink:0;
}
.menuToggle span{
  display:block;
  width: 18px; height: 2px;
  border-radius: 2px;
  background: rgba(var(--fg-rgb),.85);
  transition: transform .2s ease, opacity .2s ease;
}
.menuToggle.open span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.menuToggle.open span:nth-child(2){ opacity: 0; }
.menuToggle.open span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 720px){
  .hud{
    top:10px;
    border-radius: 18px;
    flex-wrap: wrap;
    padding: 10px 12px;
    gap: 8px;
  }
  .brand span:last-child{ font-size: 14px; }
  .menuToggle{ display:flex; }
  .hudRight{
    display:none;
    flex-direction:column;
    align-items:stretch;
    flex-wrap: nowrap;
    width: 100%;
    gap: 6px;
    padding-top: 10px;
    margin-top: 4px;
    border-top: 1px solid rgba(var(--fg-rgb),.10);
    order: 10;
  }
  .hudRight.open{ display:flex; }
  .pill{
    padding: 10px 12px;
    font-size: 14px;
    text-align:left;
    border-radius: 12px;
  }
  .progress{ display:none; }
}

.progress{
  width: 160px; height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(var(--fg-rgb),.14);
  background: rgba(255,255,255,.9);
  overflow:hidden;
}
.bar{
  height:100%; width: 0%;
  background: linear-gradient(90deg, rgba(var(--accent-rgb),.95), rgba(var(--fg-rgb),.85));
  border-radius: 999px;
  transform-origin: left;
}

section{
  padding: 100px 14px 60px;
  display:flex;
}
section:first-of-type{ padding-top: 130px; }
.wrap{
  width:min(var(--max), calc(100% - 28px));
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 16px;
  align-items: stretch;
}
@media (max-width: 980px){ .wrap{ grid-template-columns: 1fr; } }

.card{
  border: 1px solid rgba(var(--fg-rgb),.14);
  background: #ffffff;
  border-radius: var(--r);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}
.card.pad{ padding: 22px; }

.heroCard{ padding: 22px; position:relative; overflow:hidden; display:flex; flex-direction:column; align-items:flex-start; }
.heroCard > *{ max-width: 100%; }
.heroCard .foot{ align-self: stretch; }
.heroPhoto{
  align-self: stretch;
  width:100%;
  height: 320px;
  object-fit: cover;
  object-position: 50% 30%;
  border-radius: 18px;
  margin-bottom: 22px;
  display:block;
}
.heroCard > *{ position:relative; z-index:1; }

h1{ margin:0 0 12px; font-size: clamp(42px, 6vw, 92px); line-height:.92; letter-spacing:-1.4px; }
h2{ margin:0 0 10px; font-size: clamp(22px, 2.7vw, 40px); letter-spacing:-.7px; }
.mono{ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }
.lead2{ margin:0; color: rgba(var(--fg-rgb),.68); font-size: 15px; line-height: 1.65; max-width: 70ch; }

.stamp{
  display:inline-flex; align-items:center; gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(var(--fg-rgb),.16);
  background: rgba(var(--shade-rgb),.22);
  color: rgba(var(--fg-rgb),.75);
  font-size: 12px;
  letter-spacing: .28px;
  text-transform: uppercase;
  user-select:none;
}
.stamp b{ color: rgba(var(--fg-rgb),.92); font-weight: 900; }
.slash{ opacity:.4; }

.ghostType{
  position:absolute; right: -10px; bottom: -18px;
  font-size: clamp(64px, 9vw, 140px);
  letter-spacing: -3px;
  font-weight: 900;
  color: rgba(var(--fg-rgb),.06);
  pointer-events:none;
  user-select:none;
  transform: rotate(-2deg);
}

.svcGrid{ display:grid; grid-template-columns: 1fr; gap: 12px; }
.svc{
  padding: 16px;
  border: 1px solid rgba(var(--fg-rgb),.14);
  background: #ffffff;
  border-radius: 18px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  cursor:pointer;
}
.svc:hover{ transform: translateY(-3px); border-color: rgba(var(--fg-rgb),.22); background: #ffffff; }
.svcTop{ display:flex; justify-content:space-between; gap: 12px; align-items:flex-start; margin-bottom: 8px; }
.svc h3{ margin:0; font-size: 15px; letter-spacing:-.25px; }
.tag{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(var(--accent-rgb),.10);
  border: 1px solid rgba(var(--accent-rgb),.28);
  color: rgba(var(--fg-rgb),.90);
  white-space:nowrap;
  user-select:none;
}
.svc p{ margin:0 0 10px; color: rgba(var(--fg-rgb),.68); font-size: 13px; line-height: 1.55; }
.svcBottom{
  display:flex; justify-content:space-between; align-items:center; gap: 10px;
  border-top: 1px solid rgba(var(--fg-rgb),.10);
  padding-top: 10px;
  font-size: 13px;
  color: rgba(var(--fg-rgb),.82);
}
.price{ font-weight: 800; }

.lines .row{
  display:grid; grid-template-columns: minmax(120px, 34%) 1fr; gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(var(--fg-rgb),.10);
  font-size: 14px;
  color: rgba(var(--fg-rgb),.86);
}
.lines .row:last-child{ border-bottom:0; }
.label{ color: rgba(var(--fg-rgb),.68); }
@media (max-width: 560px){
  .lines .row{ grid-template-columns: 1fr; gap: 4px; }
}

.whatsappFab{
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 80;
  width: 56px; height: 56px;
  display:flex; align-items:center; justify-content:center;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(29,168,81,.35);
  box-shadow: 0 10px 30px rgba(var(--shade-rgb),.18);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.whatsappFab svg{ width: 28px; height: 28px; display:block; }
.whatsappFab:hover{ transform: scale(1.06); box-shadow: 0 14px 36px rgba(var(--shade-rgb),.24); border-color: rgba(29,168,81,.6); }
@media (max-width: 560px){
  .whatsappFab{ right: 14px; bottom: 14px; width: 50px; height: 50px; }
  .whatsappFab svg{ width: 25px; height: 25px; }
}

.foot{
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(var(--fg-rgb),.10);
  display:flex; justify-content:space-between; gap: 12px; flex-wrap:wrap;
  color: rgba(var(--fg-rgb),.55);
  font-size: 12px;
  user-select:none;
}

.reveal{ opacity:0; transform: translateY(10px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform: translateY(0); }
