/* Base */
:root{
  --green:#79b62a;
  --green-2:#6aa61f;
  --dark:#111;
  --panel:#3c3f40;
  --panel-2:#2f3233;
  --text:#2b2b2b;
  --muted:#666;
  --max:1100px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{font-family: Arial, Helvetica, sans-serif;color:var(--text);background:#fff}

/* HERO */
.hero{position:relative;min-height:520px;overflow:hidden}
.hero__bg{width:100%;height:520px;object-fit:cover;display:block}
.hero__panel{
  position:absolute;left:80px;top:40px;
  width:340px;
  background:rgba(60,63,64,.95);
  padding:28px 22px 18px;
  color:#fff;
  box-shadow:0 14px 34px rgba(0,0,0,.25);
}
.hero__kicker{
  color:var(--green);
  font-weight:900;
  letter-spacing:.5px;
  font-size:20px;
  line-height:1;
  margin-bottom:4px;
}
.hero__panel h1{
  margin:0;
  font-size:22px;
  line-height:1.15;
  font-weight:900;
  text-transform:uppercase;
}
.hero__panel h1 span{display:inline-block;margin-top:6px;font-weight:900}
.hero__lead{margin:14px 0 10px;font-size:14px;opacity:.95}

.hero__address{display:flex;gap:10px;align-items:flex-start;font-size:12px;line-height:1.35;margin:10px 0 16px}
.pin{
  width:14px;height:14px;margin-top:2px;
  border-radius:50%;
  background:var(--green);
  position:relative;flex:0 0 auto;
}
.pin:after{
  content:"";
  position:absolute;left:50%;top:50%;
  width:6px;height:6px;border-radius:50%;
  background:#fff;transform:translate(-50%,-50%);
}

.hero__mini{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px 14px;
  margin:12px 0 16px;
}
.mini{display:flex;gap:10px;align-items:flex-start}
.mini__icon{width:26px;height:26px;border-radius:6px;background:rgba(255,255,255,.12);position:relative}
.mini__text{font-size:11px;line-height:1.25;color:rgba(255,255,255,.9)}
.mini__text strong{font-size:12px}

.i-chair:before,.i-wifi:before,.i-coffee:before,.i-bath:before{
  content:"";position:absolute;inset:0;
  margin:auto;
  width:16px;height:16px;border:2px solid rgba(255,255,255,.85);
  border-radius:3px;
}
.i-wifi:before{border-radius:50%;border-width:2px}
.i-coffee:before{border-radius:2px}
.i-bath:before{border-radius:8px}

.btn{
  display:inline-block;
  text-decoration:none;
  font-weight:900;
  letter-spacing:.5px;
  border-radius:2px;
  padding:12px 14px;
  text-align:center;
}
.btn--primary{
  width:100%;
  background:var(--green);
  color:#fff;
  font-size:13px;
  text-transform:uppercase;
}
.btn--primary:hover{background:var(--green-2)}

/* SECTIONS */
.section{padding:54px 16px}
.container{max-width:var(--max);margin:0 auto}
.section--dark{background:linear-gradient(#0f0f0f,#151515)}
.section--white{background:#fff}

.title{
  text-align:center;
  margin:0 auto 26px;
  font-weight:900;
  letter-spacing:.4px;
  font-size:26px;
  line-height:1.2;
  text-transform:uppercase;
}
.hl{color:var(--green)}
.title--dark{color:#fff}
.small-title{text-transform:none;font-size:24px;font-weight:700;color:#444}

/* Facilidades cards */
.cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px 26px;
  margin-top:30px;
}
.card{padding:6px 4px}
.card__icon{width:42px;height:42px;object-fit:contain;display:block;margin:0 auto 10px}
.card h3{
  margin:0 0 8px;
  font-size:13px;
  font-weight:900;
  color:var(--green);
  line-height:1.2;
}
.card p{
  margin:0;
  font-size:11px;
  color:#6b6b6b;
  line-height:1.45;
}

/* Gallery */
.divider{height:1px;background:rgba(255,255,255,.35);max-width:520px;margin:18px auto 26px}
.gallery{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}
.gallery img{width:100%;height:210px;object-fit:cover;border-radius:2px;display:block}

/* Location */
.loc-title{margin:0;text-align:center}
.loc-title span{color:var(--green);font-weight:900;font-size:26px}
.loc-sub{margin:10px 0 0;text-align:center;color:#2f2f2f;font-size:14px}

/* Map */
.map-wrap{position:relative;overflow:hidden}
.map-bg img{width:100%;height:220px;object-fit:cover;display:block;filter:saturate(1.05)}
.map-container{
  max-width:780px;
  margin:-120px auto 0;
  padding:0 16px 60px;
}
.map-container iframe{
  width:100%;
  height:320px;
  border:0;
  border-radius:2px;
  box-shadow:0 12px 26px rgba(0,0,0,.18);
  background:#fff;
}

/* Testimonials */
.testimonials{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
  margin-top:24px;
}
.t{text-align:center;padding:6px 4px}
.t img{width:84px;height:84px;border-radius:50%;object-fit:cover;margin:0 auto 10px;display:block}
.t h3{margin:0;font-size:13px;font-weight:900}
.role{margin:2px 0 10px;color:#666;font-size:11px}
.quote{margin:0;color:#777;font-size:11px;line-height:1.55}

/* Follow */
.follow{margin-top:34px;text-align:center}
.follow__title{font-weight:900;color:#444;font-size:12px;letter-spacing:.4px;margin-bottom:10px}
.follow__icons{display:flex;gap:10px;justify-content:center}
.soc{
  width:28px;height:28px;border-radius:3px;
  display:grid;place-items:center;
  background:#0f0f0f;color:#fff;
  text-decoration:none;font-weight:900;font-size:12px;
}

/* CTA / Footer */
.cta{background:#0c0c0c;color:#fff;padding:38px 16px 28px}
.cta__inner{max-width:var(--max);margin:0 auto;text-align:center}
.cta h2{margin:0 0 14px;font-size:22px;font-weight:900}
.btn--cta{
  background:var(--green);
  color:#fff;
  padding:12px 20px;
  font-size:13px;
  border-radius:4px;
  text-transform:uppercase;
}
.btn--cta:hover{background:var(--green-2)}
.cta__line{height:1px;background:rgba(255,255,255,.2);margin:18px auto;max-width:860px}
.cta__line--thin{opacity:.18}

.footer-grid{
  display:grid;
  grid-template-columns:1fr 1.2fr .8fr;
  gap:18px;
  align-items:center;
  text-align:left;
  padding:6px 6px 0;
}
.fhead{font-weight:900;font-size:11px;text-transform:uppercase;letter-spacing:.3px}
.fsub{color:rgba(255,255,255,.78);font-size:11px;line-height:1.45;margin-top:4px}
.fcol--brand{text-align:right}
.fcol--brand img{width:120px;opacity:.95}

.legal{
  display:flex;
  gap:8px;
  justify-content:center;
  flex-wrap:wrap;
  font-size:11px;
  color:rgba(255,255,255,.7);
}
.legal a{color:rgba(255,255,255,.75);text-decoration:none}
.legal a:hover{text-decoration:underline}
.sep{opacity:.5}

/* Responsive */
@media (max-width: 980px){
  .hero__panel{left:18px;top:18px;width:min(360px,92vw)}
  .hero__bg{height:560px}
  .cards{grid-template-columns:repeat(2,1fr)}
  .gallery{grid-template-columns:1fr}
  .gallery img{height:240px}
  .testimonials{grid-template-columns:1fr;max-width:520px;margin-left:auto;margin-right:auto}
  .footer-grid{grid-template-columns:1fr;text-align:center}
  .fcol--brand{text-align:center}
}
