:root{
  --blue:#1f6d96;
  --blue2:#2b7aa6;
  --bg:#f2f4f7;
  --text:#0f2b3a;
  --muted:#6b7c86;
  --card:#ffffff;
  --stroke:#dfe6ee;
  --shadow:0 12px 28px rgba(18,46,62,.10);
  --radius:18px;
  --radius2:26px;
}

*{box-sizing:border-box;}
html,body{height:100%;}
body{
  margin:0;
  font-family:Poppins,system-ui,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:#ffffff;
}

.container{
  width:min(1080px, calc(100% - 48px));
  margin:0 auto;
}

.topbar{
  background:var(--blue);
  color:#fff;
  padding:18px 0;
}
.topbarInner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.brandLogo{
  height:44px;
  width:auto;
  display:block;
}
.brandCenter{
  text-align:center;
  font-weight:700;
  letter-spacing:1px;
  line-height:1.05;
  opacity:.95;
}
.brandCenter span{font-weight:600;}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-decoration:none;
  border-radius:999px;
  padding:12px 18px;
  font-weight:700;
  border:0;
  cursor:pointer;
  user-select:none;
  transition:transform .15s ease, box-shadow .15s ease;
}
.btn:active{transform:translateY(1px);}
.btnWhite{
  background:#fff;
  color:var(--blue);
  box-shadow:0 10px 18px rgba(0,0,0,.12);
}
.btnPrimary{
  background:var(--blue2);
  color:#fff;
  box-shadow:0 12px 22px rgba(31,109,150,.22);
}
.btnSmall{padding:10px 14px; font-size:13px;}
.icon svg{width:18px;height:18px;display:block;}
.mt20{margin-top:20px;}

.hero{
  background:var(--bg);
  padding:28px 0 40px;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap:32px;
  align-items:center;
}
.heroText h1{
  margin:0 0 12px;
  font-size:34px;
  line-height:1.05;
  color:#1b5f86;
}
.heroText p{
  margin:0 0 18px;
  color:#1b5f86;
  font-size:14px;
  line-height:1.5;
}
.ratingLabel{
  color:#1b5f86;
  font-size:12px;
  font-weight:600;
}
.stars{
  margin-top:6px;
  display:flex;
  gap:4px;
  color:#f3b21a;
  font-size:14px;
}
.stars.small{font-size:12px; justify-content:center;}

.heroImageWrap{
  background:#fff;
  border-radius:var(--radius2);
  padding:10px;
  box-shadow:var(--shadow);
}
.heroImage{
  width:100%;
  height:auto;
  display:block;
  border-radius:22px;
}

.section{padding:46px 0;}
.sectionLight{background:#f7f9fb;}
.center{text-align:center;}
h2{
  margin:0;
  font-size:28px;
  color:#1b5f86;
}
.sub{
  margin:10px 0 26px;
  color:#1b5f86;
  font-size:14px;
}
.sub2{
  margin:10px 0 26px;
  color:var(--muted);
  font-size:12px;
}

.grid3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.grid2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
  margin-top:22px;
}
.centerRow{
  width:min(740px, 100%);
  margin-left:auto;
  margin-right:auto;
}

.cardProduct{
  background:var(--card);
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  padding:16px 16px 18px;
  box-shadow:0 10px 22px rgba(18,46,62,.05);
  text-align:left;
}
.cardImage{
  background:#f7f9fb;
  border-radius:14px;
  padding:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:180px;
  margin-bottom:10px;
}
.cardImage img{
  width:100%;
  height:170px;
  object-fit:contain;
  display:block;
}
.cardProduct h3{
  margin:8px 0 10px;
  font-size:13px;
  color:#1b5f86;
  font-weight:700;
}
.checklist{
  list-style:none;
  padding:0;
  margin:0 0 14px;
  font-size:11px;
  color:#1b5f86;
}
.checklist li{
  display:flex;
  align-items:flex-start;
  gap:8px;
  margin:7px 0;
}
.checklist li:before{
  content:"✓";
  color:#1b5f86;
  font-weight:900;
  font-size:12px;
  line-height:1.2;
  margin-top:1px;
}

.grid4{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:18px;
}
.cardInfo{
  background:#fff;
  border:1px solid var(--stroke);
  border-radius:16px;
  padding:14px 12px;
  box-shadow:0 10px 22px rgba(18,46,62,.04);
}
.infoIcon{
  width:44px;
  height:44px;
  border-radius:12px;
  background:#eff5fb;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 10px;
}
.infoIcon svg{width:22px;height:22px;}
.cardInfo h4{
  margin:6px 0 6px;
  text-align:center;
  font-size:12px;
  color:#1b5f86;
}
.cardInfo p{
  margin:0;
  text-align:center;
  font-size:10px;
  color:var(--muted);
  line-height:1.35;
}

.cardTestimonial{
  background:#fff;
  border:1px solid var(--stroke);
  border-radius:16px;
  padding:14px 14px 12px;
  box-shadow:0 10px 22px rgba(18,46,62,.04);
}
.quote{
  margin:10px 0 10px;
  font-size:10px;
  color:#3a4b56;
  line-height:1.45;
  min-height:88px;
}
.person{
  font-weight:700;
  color:#1b5f86;
  font-size:12px;
  text-align:center;
}
.city{
  color:#1b5f86;
  font-size:10px;
  text-align:center;
}

.locationGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:stretch;
  width:min(860px,100%);
  margin:0 auto;
}
.photoCard{
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 16px 30px rgba(18,46,62,.08);
  background:#fff;
}
.photoCard img{
  width:100%;
  height:340px;
  object-fit:cover;
  display:block;
}
.mapCard{
  background:#fff;
  border:1px solid var(--stroke);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 16px 30px rgba(18,46,62,.06);
  display:flex;
  flex-direction:column;
}
.mapHeader{
  padding:14px 16px 12px;
  text-align:left;
}
.mapTitle{
  font-weight:700;
  color:#1b5f86;
  font-size:12px;
  margin-bottom:10px;
}
.mapRow{
  display:flex;
  align-items:center;
  gap:10px;
  color:#1b5f86;
  font-size:11px;
  margin-bottom:8px;
}
.mapRow svg{width:14px;height:14px;opacity:.9;}
.mapRow.phone{font-weight:700; text-decoration:none;}
.mapBox{
  padding:12px;
}
.mapBox iframe{
  width:100%;
  height:228px;
  border:1px solid #32414a;
  border-radius:14px;
}

.footer{
  background:var(--blue);
  color:#fff;
  padding:18px 0 22px;
}
.footerInner{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}
.social{
  display:flex;
  gap:12px;
}
.socialBtn{
  width:30px;
  height:30px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}
.socialBtn svg{width:16px;height:16px;}
.copyright{
  font-size:10px;
  opacity:.95;
}

@media (max-width: 980px){
  .grid4{grid-template-columns:repeat(2,1fr);}
}

@media (max-width: 880px){
  .heroGrid{grid-template-columns:1fr; text-align:center;}
  .heroText p{margin-left:auto;margin-right:auto;}
  .topbarInner{flex-wrap:wrap; justify-content:center;}
  .brandCenter{order:3; width:100%;}
  .grid3{grid-template-columns:1fr;}
  .grid2{grid-template-columns:1fr;}
  .locationGrid{grid-template-columns:1fr;}
  .photoCard img{height:280px;}
}

/* ================= FOOTER COM ÍCONE EM PNG ================= */

.footer{
  background:#1f6d96;
  padding:16px 0 18px;
}

.footerContent{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
}

.footerSocial{
  display:flex;
  gap:12px;
}

.footerIcon{
  width:26px;
  height:26px;
  border-radius:50%;
  background:rgba(255,255,255,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}

.footerIcon img{
  width:14px;
  height:14px;
  display:block;
}

.footerInfo {
  background: none;        /* REMOVE o quadrado */
  padding: 0;              /* remove espaçamento interno */
  margin-bottom: 20px;

  color: #9ad4ff;
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
}


