:root{--uv-yellow:#FFD300;--uv-black:#111111;--uv-gray:#F6F6F6;--wa-green:#25D366}
*{box-sizing:border-box}
body{margin:0;font-family:Montserrat,system-ui,-apple-system,Segoe UI,Roboto,'Helvetica Neue',Arial,sans-serif;color:var(--uv-black);background:#fff}
a{text-decoration:none;color:inherit}
.container{max-width:1100px;margin:0 auto;padding:0 16px}
header{position:sticky;top:0;z-index:20;background:#fff;border-bottom:1px solid #ececec}
.nav{display:flex;align-items:center;justify-content:space-between;min-height:64px;padding:8px 0}
.brand{display:flex;align-items:center;gap:12px;font-weight:800;letter-spacing:.3px}
.brand img{height:36px}
.brand .sub{font-weight:600;font-size:12px;opacity:.85}
.menu-toggle{display:none;background:none;border:none;font-size:26px;font-weight:800;line-height:1;cursor:pointer}
.menu{display:flex;gap:10px;flex-wrap:wrap}
.menu a{padding:8px 10px;border-radius:10px;font-weight:600}
.menu a.active,.menu a:hover{background:var(--uv-yellow)}
@media (max-width:760px){
  .menu-toggle{display:block}
  .menu{display:none;flex-direction:column;gap:8px;width:100%;margin-top:8px}
  .menu.open{display:flex}
  header .nav{align-items:flex-start}
}

.hero{background:linear-gradient(180deg,#fff 0,#fff 60%,var(--uv-gray) 60%);padding:40px 0 24px}
.hero-inner{display:grid;grid-template-columns:1.2fr 1fr;gap:24px;align-items:center}
.hero h1{font-size:40px;line-height:1.1;margin:0 0 10px}
.hero p{margin:0 0 12px;font-size:16px}
.badge{display:inline-block;background:var(--uv-yellow);padding:6px 10px;border-radius:9999px;font-weight:700;margin-bottom:10px}

.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin:28px 0 40px}
.card{background:#fff;border:1px solid #eaeaea;border-radius:16px;overflow:hidden;box-shadow:0 6px 20px rgba(0,0,0,.06);display:flex;flex-direction:column}
.card img{width:100%;object-fit:contain;background:#fff;height:auto;max-height:220px;cursor:zoom-in}
.card .content{padding:14px 14px 18px}
.card h3{margin:0 0 6px;font-size:18px}
.card p{margin:0 0 12px;color:#333}
.pill{display:inline-flex;align-items:center;gap:6px;background:#000;color:#fff;border-radius:999px;padding:6px 10px;font-weight:700;font-size:12px}
.btn{display:inline-flex;align-items:center;justify-content:center;height:42px;padding:0 16px;border-radius:10px;border:2px solid var(--uv-black);font-weight:800}
.btn:hover{background:var(--uv-yellow)}
.btn-wa{display:inline-flex;align-items:center;gap:8px;padding:10px 14px;border-radius:10px;background:var(--wa-green);color:#fff;font-weight:800;border:none}
.btn-wa:hover{filter:brightness(.95)}

.section{padding:24px 0}
.split{display:grid;grid-template-columns:1fr 1fr;gap:24px;align-items:center}
.small{font-size:13px;color:#444}
.footer{background:#0f0f0f;color:#fff;padding:24px 0;margin-top:30px}
.footer a{color:#fff;text-decoration:underline}

.gallery{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;margin:16px 0 24px}
.gallery img{width:100%;object-fit:contain;background:#fff;height:auto;max-height:460px;border-radius:14px;border:1px solid #eee;box-shadow:0 6px 16px rgba(0,0,0,.05)}

@media (max-width:900px){.hero-inner{grid-template-columns:1fr}.grid{grid-template-columns:repeat(2,1fr)}.split{grid-template-columns:1fr}.gallery{grid-template-columns:1fr}}
@media (max-width:560px){.grid{grid-template-columns:1fr}.hero h1{font-size:32px}}

.lb-backdrop{position:fixed;inset:0;background:rgba(0,0,0,.85);display:none;align-items:center;justify-content:center;z-index:100}
.lb-backdrop.open{display:flex}
.lb-img{max-width:92vw;max-height:92vh;border-radius:12px;box-shadow:0 10px 28px rgba(0,0,0,.5);background:#fff}
.lb-close{position:fixed;top:14px;right:18px;color:#fff;font-size:28px;font-weight:800;cursor:pointer}
