/* Reset & base */
:root{
  --accent:#0b7a6b;
  --muted:#6b7280;
  --bg:#fff;
  --card:#f9fafb;
  --maxw:1100px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial;
  color:#111;background:var(--bg);-webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
.container{max-width:var(--maxw);margin:0 auto;padding:18px}

/* Top marquee sticky */
.top-marquee{
  position:sticky;top:0;background:linear-gradient(90deg,#f8fafc,#eef2ff);overflow:hidden;
  z-index:60;border-bottom:1px solid #eee;
}
.marquee-inner{
  display:inline-block;white-space:nowrap;padding:6px 0;
  animation:marquee 18s linear infinite;
}
@keyframes marquee{0%{transform:translateX(100%)}100%{transform:translateX(-100%)}}

/* Header */
.site-header{position:sticky;top:36px;background:#fff;z-index:55;border-bottom:1px solid #eee}
.header-inner{display:flex;align-items:center;gap:12px;justify-content:space-between;padding:10px}
.brand{display:flex;align-items:center;gap:10px;text-decoration:none;color:inherit}
.brand img{height:42px}
.main-nav{display:flex;gap:10px;align-items:center}
.main-nav a{padding:8px 10px;text-decoration:none;color:var(--muted);border-radius:6px}
.main-nav a.cta{background:var(--accent);color:#fff}
.socials img{height:24px;opacity:0.9}
.menu-toggle{display:none;background:none;border:0;font-size:20px}

/* Hero */
.hero{display:flex;align-items:center;gap:12px;padding:24px 18px;border-bottom:1px solid #f3f4f6;background:linear-gradient(180deg,#fff,#fbfbfb)}
.hero-content{max-width:640px}
.hero h1{margin:0 0 12px;font-size:28px;color:#0f172a}
.hero p{margin:0 0 18px;color:var(--muted)}
.hero-actions .btn{margin-right:8px}
.hero-image{max-height:220px;margin-left:auto;object-fit:cover;border-radius:8px}

/* Main */
.main-grid{display:grid;grid-template-columns:2fr 1fr;gap:20px;padding:20px}
.cards{display:grid;gap:12px}
.card{background:var(--card);padding:12px;border-radius:8px;display:flex;gap:10px;align-items:center}
.card img{height:56px;width:56px;object-fit:cover;border-radius:6px}

/* Footer */
.site-footer{background:#0b1220;color:#fff;padding:20px 0;margin-top:24px}
.footer-grid{display:flex;gap:20px;justify-content:space-between}
.footer-logo{height:48px}
.site-note{padding:12px;color:#cbd5e1;text-align:center}

/* Cookie bar */
.cookie-bar{position:fixed;left:20px;right:20px;bottom:18px;background:#fff;border-radius:12px;padding:12px;box-shadow:0 6px 20px rgba(2,6,23,0.08);display:flex;gap:12px;align-items:center;z-index:999}
.cookie-bar.hidden{display:none}
.cookie-actions{display:flex;gap:10px;align-items:center}

/* WhatsApp float */
.whatsapp-float{position:fixed;right:18px;bottom:90px;width:60px;height:60px;border-radius:50%;background:transparent;display:flex;align-items:center;justify-content:center;z-index:999}
.whatsapp-float img{width:100%;height:100%}

/* Responsive */
@media(max-width:900px){
  .main-grid{grid-template-columns:1fr}
  .hero{flex-direction:column;align-items:flex-start}
  .hero-image{width:100%;height:auto;max-height:200px}
  .main-nav{display:none}
  .menu-toggle{display:block}
  .top-marquee{font-size:13px}
  .footer-grid{flex-direction:column;gap:12px}
}
a.link{color:var(--accent);text-decoration:none}
.btn{background:var(--accent);color:#fff;padding:10px 14px;border-radius:8px;border:0;cursor:pointer}
.btn-outline{background:transparent;border:1px solid #e6e7e9;color:var(--accent);padding:9px 12px;border-radius:8px}