:root{
  --accent:#0b7a5f;
  --muted:#666;
  --bg:#ffffff;
  --maxw:1100px;
  --radius:8px;
}
*{box-sizing:border-box}
html,body{height:100%;margin:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial; color:#222;background:var(--bg);-webkit-font-smoothing:antialiased}
a{color:var(--accent);text-decoration:none}
.container{max-width:var(--maxw);margin:28px auto;padding:0 16px}
.site-header{background:#fff;border-bottom:1px solid #eee;position:sticky;top:36px;z-index:40}
.site-header.small{top:36px}
.header-inner{max-width:var(--maxw);margin:0 auto;display:flex;align-items:center;justify-content:space-between;padding:12px 16px}
.logo img{height:44px}
.main-nav a{margin:0 8px;padding:8px 6px}
.main-nav .btn-primary{background:var(--accent);color:#fff;border-radius:6px;padding:8px 12px}
.header-right{display:flex;gap:8px;align-items:center}
.social img{height:22px;opacity:.9}

.top-ticker{position:fixed;left:0;right:0;top:0;height:36px;background:#f8f8f8;border-bottom:1px solid #e6e6e6;display:flex;align-items:center;overflow:hidden;z-index:60}
.ticker-content{white-space:nowrap;padding-left:100%;animation:tick 20s linear infinite}
@keyframes tick{from{transform:translateX(0)}to{transform:translateX(-100%)}}

.hero{background:linear-gradient(180deg, #fbfffb 0%, #ffffff 100%);padding:28px 0;border-bottom:1px solid #f0f0f0}
.hero-grid{display:grid;grid-template-columns:1fr 420px;gap:20px;align-items:center;max-width:var(--maxw);margin:0 auto;padding:20px}
.hero-text h1{margin:0;font-size:30px;color:var(--accent)}
.hero-text p{color:var(--muted);margin:10px 0 16px}
.hero-ctas .btn{margin-right:8px}
.btn{background:var(--accent);color:#fff;padding:10px 14px;border-radius:8px;display:inline-block}
.btn-large{padding:12px 18px}
.btn-outline{background:transparent;border:1px solid var(--accent);color:var(--accent);padding:9px 13px;border-radius:8px}
.hero-highlights{margin-top:12px;color:var(--muted);list-style:disc;padding-left:18px}
.hero-media img{width:100%;height:auto;border-radius:10px;box-shadow:0 6px 20px rgba(11,122,95,0.08)}

.services-overview{padding:24px 0}
.cards{display:flex;gap:16px;flex-wrap:wrap}
.card{flex:1;min-width:220px;background:#fff;padding:16px;border-radius:10px;border:1px solid #f1f1f1}
.card img{width:48px;height:48px}

.why-us{padding:16px 0}

.site-footer{background:#fafafa;border-top:1px solid #eee;padding:18px 16px;margin-top:40px}
.footer-grid{max-width:var(--maxw);margin:0 auto;display:flex;gap:16px;justify-content:space-between}
.social-row img{height:26px;margin-right:8px}
.cookie-bar{position:fixed;left:16px;right:16px;bottom:16px;background:#fff;border:1px solid #e6e6e6;padding:12px;border-radius:10px;display:flex;gap:12px;align-items:center;z-index:80;box-shadow:0 8px 30px rgba(0,0,0,0.06)}
.cookie-actions{display:flex;gap:8px;align-items:center}
.whatsapp-float{position:fixed;right:16px;bottom:90px;background:transparent;z-index:90}
.whatsapp-float img{height:56px;width:56px;border-radius:50%;box-shadow:0 6px 18px rgba(0,0,0,0.12)}

.contact-grid{display:grid;grid-template-columns:1fr 380px;gap:20px}
.contact-form-card{background:#fff;padding:16px;border-radius:10px;border:1px solid #f0f0f0}
.contact-form-card label{display:block;margin-bottom:10px;color:#333}
.contact-form-card input, .contact-form-card textarea{width:100%;padding:8px;border:1px solid #ddd;border-radius:8px}
.map-wrap iframe{width:100%;height:220px;border:0;border-radius:8px}
.form-actions{display:flex;gap:8px;margin-top:8px}
.form-status{margin-top:10px;color:var(--muted)}

.team-photos img{height:120px;margin-right:8px;border-radius:8px;object-fit:cover}

@media(max-width:900px){
  .hero-grid{grid-template-columns:1fr}
  .header-inner{padding:10px}
  .contact-grid{grid-template-columns:1fr}
  .ticker-content{animation-duration:30s}
}