:root{
  --bg-dark:#071c2c;
  --bg-dark-2:#0b2436;
  --bg-page:#f4f7f9;
  --bg-soft:#eef3f6;
  --card:#ffffff;
  --card-soft:#f9fbfc;

  --text:#10202b;
  --text-2:#223746;
  --text-light:#f5fbff;
  --muted:#667785;
  --muted-light:rgba(255,255,255,.78);

  --line:rgba(255,255,255,.12);
  --line-dark:rgba(10,35,52,.10);

  --green:#0aa84f;
  --green-2:#07753a;
  --green-3:#12c05d;

  --yellow:#ffcb05;
  --blue:#003b5c;
  --blue-2:#0e2b40;

  --ok:#16a34a;
  --warn:#f59e0b;
  --danger:#dc2626;

  --shadow-xs:0 8px 18px rgba(6,28,44,.06);
  --shadow-sm:0 12px 28px rgba(6,28,44,.08);
  --shadow-md:0 18px 45px rgba(6,28,44,.12);
  --shadow-lg:0 28px 80px rgba(6,28,44,.18);

  --radius-sm:14px;
  --radius:22px;
  --radius-lg:30px;

  --container:1240px;
  --topbar-h:86px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
html,body{height:100%}

body{
  margin:0;
  font-family:"Inter","Segoe UI","Helvetica Neue",Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 300px at 0% 0%, rgba(10,168,79,.06), transparent 55%),
    linear-gradient(180deg, #f6f9fb 0%, #f3f7fa 42%, #edf3f7 100%);
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(rgba(255,255,255,.12), rgba(255,255,255,.12)),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 95px,
      rgba(0,59,92,.025) 96px
    );
  opacity:.35;
  z-index:-2;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
}

.wrap{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
  padding:0 0 120px;
}

/* =========================
   TOPO CORPORATIVO
========================= */
.topbar{
  position:sticky;
  top:0;
  z-index:80;
  background:
    linear-gradient(180deg, rgba(5,20,33,.96), rgba(8,28,44,.92));
  border-bottom:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(14px);
  box-shadow:0 12px 34px rgba(4,16,26,.18);
}

.topbar::before{
  content:"";
  display:block;
  height:5px;
  background:linear-gradient(90deg, var(--yellow) 0 18%, var(--green) 18% 100%);
}

.topbar .inner{
  max-width:var(--container);
  min-height:var(--topbar-h);
  margin:0 auto;
  padding:12px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
  flex:0 1 auto;
}

.logo{
  width:62px;
  height:62px;
  border-radius:16px;
  overflow:hidden;
  display:grid;
  place-items:center;
  flex:0 0 auto;
  border:1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.04)),
    linear-gradient(145deg, #1d3345, #0d1f2e);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 16px 30px rgba(0,0,0,.18);
}

.logo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:none;
}

.logo span{
  font-size:20px;
  font-weight:1000;
  letter-spacing:.8px;
  color:#fff;
}

.brandText{
  min-width:0;
}

.brand h1{
  margin:0;
  font-size:16px;
  line-height:1.05;
  font-weight:1000;
  letter-spacing:.1px;
  color:#fff;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.brand p{
  margin:4px 0 0;
  font-size:12px;
  line-height:1.35;
  color:var(--muted-light);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
  flex-wrap:wrap;
}

.pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:38px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.09);
  background:rgba(255,255,255,.06);
  color:#f1f8fc;
  font-size:12px;
  font-weight:900;
  white-space:nowrap;
}

.topNav{
  display:flex;
  align-items:center;
  gap:24px;
  margin-left:22px;
  flex:1 1 auto;
}

.topNav a{
  position:relative;
  font-size:15px;
  font-weight:900;
  color:rgba(255,255,255,.92);
  text-decoration:none;
  white-space:nowrap;
  transition:.22s ease;
}

.topNav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-10px;
  width:0;
  height:3px;
  border-radius:999px;
  background:var(--yellow);
  transition:.22s ease;
}

.topNav a:hover{
  color:#fff;
}

.topNav a:hover::after,
.topNav a.active::after{
  width:100%;
}

.btn{
  border:1px solid transparent;
  background:#fff;
  color:#10202b;
  min-height:48px;
  padding:12px 18px;
  border-radius:16px;
  font-weight:1000;
  font-size:14px;
  cursor:pointer;
  transition:.22s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  box-shadow:var(--shadow-xs);
  text-decoration:none;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn.primary{
  color:#fff;
  background:linear-gradient(135deg, var(--green-3) 0%, var(--green) 55%, var(--green-2) 100%);
  border-color:rgba(7,117,58,.22);
  box-shadow:0 18px 34px rgba(10,168,79,.20);
}

.btn.whats{
  color:#fff;
  background:linear-gradient(135deg, #22c55e 0%, #15803d 100%);
  border-color:rgba(21,128,61,.28);
  box-shadow:0 18px 36px rgba(22,163,74,.18);
}

.btn.ghost{
  background:#fff;
  border-color:rgba(16,32,43,.10);
  box-shadow:none;
}

/* =========================
   HERO GRANDE / SITE
========================= */
.hero{
  position:relative;
  width:100%;
  min-height:650px;
  margin:0;
  border-radius:0 0 30px 30px;
  overflow:hidden;
  background:
    linear-gradient(180deg, #0b2233 0%, #0b2539 100%);
  box-shadow:var(--shadow-lg);
}

.heroMedia{
  position:absolute;
  inset:0;
  overflow:hidden;
  background-image:url("../img/herois.jpg");
  background-position:center center;
  background-size:cover;
  background-repeat:no-repeat;
  transform:scale(1.04);
  filter:brightness(.66) saturate(1.02) contrast(1.02);
  animation:heroZoomBase 14s ease-in-out infinite alternate;
}

.heroMedia::before,
.heroMedia::after{
  content:"";
  position:absolute;
  inset:0;
  background-position:center center;
  background-size:cover;
  background-repeat:no-repeat;
  opacity:0;
}

.heroMedia::before{
  background-image:url("../img/herois-2.jpg");
  animation:heroFade1 18s infinite;
  filter:brightness(.70) saturate(1.02);
}

.heroMedia::after{
  background-image:url("../img/herois-3.jpg");
  animation:heroFade2 18s infinite;
  filter:brightness(.68) saturate(1.02);
}

.heroOverlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(6,20,32,.58) 0%, rgba(6,20,32,.42) 30%, rgba(6,20,32,.24) 58%, rgba(6,20,32,.18) 100%),
    linear-gradient(180deg, rgba(3,12,20,.10) 0%, rgba(3,12,20,.34) 100%),
    radial-gradient(900px 400px at 14% 18%, rgba(10,168,79,.10), transparent 60%);
}

.heroInner{
  position:relative;
  z-index:2;
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
  min-height:650px;
  display:grid;
  grid-template-columns:1fr;
  align-items:center;
  gap:20px;
  padding:56px 0 44px;
}

.heroContent{
  align-self:center;
  max-width:760px;
}

.heroKicker{
  display:inline-flex;
  align-items:center;
  gap:12px;
  margin-bottom:16px;
  color:#fff;
  font-size:11px;
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.heroKicker::before{
  content:"";
  width:54px;
  height:5px;
  border-radius:999px;
  background:var(--yellow);
}

.heroTitle{
  margin:0;
  font-size:clamp(38px, 4.4vw, 60px);
  line-height:.98;
  letter-spacing:-1.2px;
  font-weight:1000;
  color:#fff;
  max-width:12ch;
  text-wrap:balance;
}

.heroSub{
  margin:18px 0 0;
  max-width:34ch;
  font-size:18px;
  line-height:1.6;
  color:rgba(255,255,255,.92);
  text-wrap:pretty;
}

.heroSub b{
  color:#fff;
}

.heroBadges{
  margin-top:22px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.badgeMetal{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:42px;
  padding:9px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.10);
  color:#fff;
  font-size:12.5px;
  font-weight:900;
  backdrop-filter:blur(8px);
}

.heroBadges .badgeMetal:nth-child(n+3){
  display:none;
}

.heroCTAs{
  margin-top:26px;
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.heroCTAs .btn{
  min-height:54px;
  padding:15px 22px;
}

.micro{
  display:none;
}

.heroCard{
  display:none;
}

.alertSmall{
  margin-top:14px;
  padding:13px 14px;
  border-radius:18px;
  border:1px solid rgba(255,203,5,.20);
  background:rgba(255,203,5,.12);
  color:#fff;
  font-size:13px;
  display:flex;
  gap:10px;
  align-items:flex-start;
}

.alertSmall b{
  color:#fff;
}

.alertSmall small{
  color:rgba(255,255,255,.82);
}

/* =========================
   SEÇÕES
========================= */
.section{
  margin-top:30px;
}

.grid2{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:22px;
}

.card{
  position:relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.95));
  border:1px solid rgba(8,41,63,.08);
  border-radius:28px;
  padding:24px;
  box-shadow:var(--shadow-md);
  overflow:hidden;
}

.card::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:5px;
  background:linear-gradient(90deg, var(--yellow), var(--green), var(--blue));
}

.card h2{
  margin:0;
  font-size:22px;
  font-weight:1000;
  color:#112532;
  letter-spacing:.1px;
}

.subline{
  margin:9px 0 0;
  color:var(--muted);
  font-size:14px;
  line-height:1.7;
}

.divider{
  height:1px;
  background:linear-gradient(90deg, rgba(10,168,79,.20), rgba(0,59,92,.08), transparent);
  margin:16px 0;
}

/* =========================
   TABS
========================= */
.tabs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}

.tab{
  min-height:44px;
  padding:10px 15px;
  border-radius:999px;
  border:1px solid rgba(0,59,92,.12);
  background:#f4f8fb;
  color:#445765;
  font-weight:1000;
  font-size:13px;
  cursor:pointer;
  transition:.18s ease;
  user-select:none;
}

.tab:hover{
  transform:translateY(-1px);
  border-color:rgba(10,168,79,.28);
}

.tab.active{
  color:#fff;
  border-color:rgba(7,117,58,.24);
  background:linear-gradient(135deg, var(--green-3), var(--green-2));
  box-shadow:0 14px 28px rgba(10,168,79,.18);
}

/* =========================
   LISTA DE SERVIÇOS
========================= */
.list{
  display:grid;
  gap:14px;
  margin-top:16px;
}

.service{
  display:grid;
  grid-template-columns:110px 1fr auto;
  gap:16px;
  align-items:center;
  padding:16px;
  border-radius:22px;
  border:1px solid rgba(8,41,63,.08);
  background:
    linear-gradient(180deg, #fff, #fbfdff);
  box-shadow:0 14px 30px rgba(7,31,47,.06);
  transition:.20s ease;
}

.service:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 34px rgba(7,31,47,.08);
}

.thumb{
  width:110px;
  height:110px;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(0,59,92,.10);
  background:linear-gradient(145deg, #eef4f7, #dce6ec);
  display:grid;
  place-items:center;
}

.thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.thumb .ph{
  font-size:28px;
  opacity:.88;
}

.service h3{
  margin:0;
  font-size:18px;
  font-weight:1000;
  color:#102531;
}

.service p{
  margin:7px 0 0;
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}

.right{
  display:grid;
  gap:10px;
  justify-items:end;
}

.tagRight{
  display:none;
}

.tagRight span{
  color:var(--muted);
}

/* =========================
   CHECK / FORM
========================= */
.checkWrap{
  border:1px solid rgba(8,41,63,.10);
  border-radius:18px;
  background:#f7fafc;
  padding:10px;
  max-height:280px;
  overflow:auto;
  display:grid;
  gap:10px;
}

.chk{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(8,41,63,.08);
  background:#fff;
  cursor:pointer;
  transition:.18s ease;
}

.chk:hover{
  border-color:rgba(10,168,79,.24);
  background:#fcfffd;
}

.chk input{
  margin-top:3px;
  transform:scale(1.12);
  accent-color:var(--green);
  pointer-events:none;
}

.chk b{
  font-size:14px;
  color:#132634;
}

.chk small{
  display:block;
  color:var(--muted);
  margin-top:4px;
  line-height:1.45;
}

.chk.is-checked{
  border-color:rgba(10,168,79,.28);
  background:#f3fff8;
  box-shadow:0 10px 20px rgba(10,168,79,.08);
}

.selectedService{
  border-color:rgba(10,168,79,.24) !important;
  background:linear-gradient(180deg, #fff, #f3fff8) !important;
  box-shadow:0 16px 28px rgba(10,168,79,.08);
}

.selectedBtn{
  background:linear-gradient(135deg, #15803d 0%, #16a34a 100%) !important;
  box-shadow:0 16px 26px rgba(22,163,74,.18) !important;
  color:#fff !important;
}

.form{
  display:grid;
  gap:14px;
  margin-top:16px;
}

.field{
  display:grid;
  gap:8px;
}

.field label{
  font-size:12.5px;
  color:#425667;
  font-weight:1000;
}

.field input,
.field textarea,
.field select{
  width:100%;
  border-radius:16px;
  border:1px solid rgba(8,41,63,.10);
  background:#fff;
  color:#102531;
  padding:14px 15px;
  outline:none;
  font-size:14px;
  transition:.18s ease;
  box-shadow:inset 0 1px 2px rgba(0,0,0,.02);
}

.field input:focus,
.field textarea:focus,
.field select:focus{
  border-color:rgba(10,168,79,.45);
  box-shadow:0 0 0 4px rgba(10,168,79,.10);
}

textarea{
  min-height:120px;
  resize:vertical;
}

.two{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.hint{
  font-size:12px;
  color:var(--muted);
}

.errorBox{
  display:none;
  padding:13px 14px;
  border-radius:16px;
  border:1px solid rgba(220,38,38,.14);
  background:#fff4f4;
  color:#132634;
  font-size:13px;
  gap:10px;
  align-items:flex-start;
}

.errorBox.show{
  display:flex;
}

.errorBox b{
  color:var(--danger);
}

/* =========================
   GALERIA
========================= */
.gallery{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}

.gItem{
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(8,41,63,.08);
  background:#eef4f7;
  cursor:pointer;
  position:relative;
  min-height:260px;
  box-shadow:0 16px 28px rgba(7,31,47,.06);
}

.gItem img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .35s ease;
}

.gItem:hover img{
  transform:scale(1.05);
}

.gItem::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 40%, rgba(5,25,38,.42) 100%);
}

.gCap{
  position:absolute;
  left:14px;
  right:14px;
  bottom:14px;
  z-index:2;
  padding:12px 14px;
  border-radius:16px;
  background:rgba(255,255,255,.94);
  border:1px solid rgba(255,255,255,.32);
  font-weight:1000;
  font-size:13px;
  color:#102531;
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:center;
  box-shadow:0 10px 24px rgba(0,0,0,.10);
}

.gCap span{
  color:var(--green-2);
  font-weight:1000;
}

/* =========================
   MODAL
========================= */
.modal{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  background:rgba(3,16,28,.72);
  z-index:100;
}

.modal.show{
  display:flex;
}

.modalCard{
  width:min(980px, 100%);
  border-radius:24px;
  background:#fff;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 28px 80px rgba(0,0,0,.38);
  overflow:hidden;
}

.modalTop{
  padding:14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  border-bottom:1px solid rgba(8,41,63,.08);
}

.modalTop b{
  font-weight:1000;
}

.modalImg{
  width:100%;
  max-height:72vh;
  object-fit:cover;
}

.modalActions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.xBtn{
  border:1px solid rgba(8,41,63,.10);
  background:#fff;
  border-radius:12px;
  padding:10px 12px;
  font-weight:1000;
  cursor:pointer;
}

/* =========================
   DEPOIMENTOS / FAQ
========================= */
.tGrid{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}

.tCard{
  border:1px solid rgba(8,41,63,.08);
  border-radius:22px;
  background:linear-gradient(180deg, #fff, #fbfdff);
  padding:18px;
  box-shadow:0 14px 24px rgba(7,31,47,.05);
}

.stars{
  letter-spacing:1px;
  color:#f59e0b;
  font-weight:1000;
}

.tCard p{
  margin:10px 0 0;
  color:#122733;
  line-height:1.7;
  font-size:14px;
}

.tCard .who{
  margin-top:12px;
  color:var(--muted);
  font-size:12.5px;
  font-weight:1000;
}

details{
  border:1px solid rgba(8,41,63,.08);
  border-radius:20px;
  background:#fff;
  padding:16px;
  box-shadow:0 12px 22px rgba(7,31,47,.04);
}

summary{
  cursor:pointer;
  font-weight:1000;
  color:#122733;
}

details p{
  margin:10px 0 0;
  color:var(--muted);
  font-size:14px;
  line-height:1.7;
}

/* =========================
   RODAPÉ
========================= */
.footerBar{
  margin-top:18px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:space-between;
  color:var(--muted);
  font-size:12.5px;
}

/* =========================
   STICKY
========================= */
.stickyCta{
  position:fixed;
  left:12px;
  right:12px;
  bottom:12px;
  z-index:60;
  display:none;
}

.stickyCta .bar{
  max-width:var(--container);
  margin:0 auto;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(7,28,44,.88);
  color:#fff;
  backdrop-filter:blur(12px);
  box-shadow:0 18px 40px rgba(0,0,0,.22);
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:space-between;
  padding:10px;
}

.stickyCta .left{
  display:grid;
  gap:3px;
  min-width:0;
}

.stickyCta .left b{
  font-size:13px;
}

.stickyCta .left span{
  font-size:12px;
  color:rgba(255,255,255,.76);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:52vw;
}

.waFloat{
  position:fixed;
  right:16px;
  bottom:90px;
  z-index:70;
  display:flex;
}

.waFloat a{
  width:60px;
  height:60px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg, #22c55e 0%, #15803d 100%);
  color:#fff;
  border:1px solid rgba(255,255,255,.16);
  box-shadow:0 22px 40px rgba(21,128,61,.24);
  text-decoration:none;
  font-size:22px;
  font-weight:1000;
  transition:.18s ease;
}

.waFloat a:hover{
  transform:translateY(-2px) scale(1.03);
}

/* =========================
   BUDGET / SERVIÇOS
========================= */
.fullServicesCard{
  width:100%;
}

.servicesHeader{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:14px;
}

.budgetModalCard{
  width:min(860px, 100%);
  max-height:92vh;
  overflow:hidden;
}

.budgetModalBody{
  padding:16px;
  overflow:auto;
  max-height:calc(92vh - 72px);
  background:#f7fafc;
}

.budgetCardInside{
  margin:0;
  box-shadow:none;
}

.budgetCardInside::before{
  display:none;
}

#budgetModal .checkWrap{
  max-height:220px;
}

/* =========================
   ANIMAÇÕES HERO
========================= */
@keyframes heroZoomBase{
  0%{ transform:scale(1.02); }
  100%{ transform:scale(1.08); }
}

@keyframes heroFade1{
  0%, 26%{ opacity:0; transform:scale(1.01); }
  33%, 59%{ opacity:1; transform:scale(1.06); }
  66%, 100%{ opacity:0; transform:scale(1.09); }
}

@keyframes heroFade2{
  0%, 59%{ opacity:0; transform:scale(1.01); }
  66%, 92%{ opacity:1; transform:scale(1.06); }
  100%{ opacity:0; transform:scale(1.09); }
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 1180px){
  .topNav{
    gap:18px;
    margin-left:16px;
  }

  .grid2{
    grid-template-columns:1fr;
  }

  .heroTitle{
    max-width:10ch;
  }
}

@media (max-width: 980px){
  .topbar .inner{
    padding:12px 14px;
    min-height:78px;
  }

  .topNav{
    display:none;
  }

  .actions .pill{
    display:none;
  }

  .hero{
    min-height:620px;
    border-radius:0 0 24px 24px;
  }

  .heroMedia{
    filter:brightness(.70) saturate(1.02) contrast(1.02);
  }

  .heroOverlay{
    background:
      linear-gradient(180deg, rgba(6,20,32,.44) 0%, rgba(6,20,32,.34) 24%, rgba(6,20,32,.48) 70%, rgba(6,20,32,.62) 100%),
      linear-gradient(90deg, rgba(6,20,32,.24) 0%, rgba(6,20,32,.16) 46%, rgba(6,20,32,.26) 100%);
  }

  .heroInner{
    width:min(var(--container), calc(100% - 28px));
    min-height:620px;
    padding:34px 0 28px;
    gap:18px;
    align-items:end;
  }

  .heroTitle{
    font-size:clamp(34px, 8vw, 50px);
    max-width:11ch;
    letter-spacing:-1.2px;
  }

  .heroSub{
    font-size:15px;
    max-width:32ch;
    line-height:1.6;
  }

  .stickyCta{
    display:block;
  }

  .waFloat{
    bottom:150px;
  }

  .service{
    grid-template-columns:92px 1fr;
    grid-template-areas:
      "img info"
      "ctrl ctrl";
  }

  .service .thumb{grid-area:img}
  .service .info{grid-area:info}
  .service .right{
    grid-area:ctrl;
    justify-items:stretch;
  }

  .thumb{
    width:92px;
    height:92px;
  }
}

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

  .tGrid{
    grid-template-columns:1fr;
  }

  .two{
    grid-template-columns:1fr;
  }
}

@media (max-width: 700px){
  .servicesHeader{
    align-items:stretch;
  }

  .servicesHeader .btn{
    width:100%;
  }

  .budgetModalBody{
    padding:10px;
  }
}

@media (max-width: 560px){
  .wrap{
    width:min(var(--container), calc(100% - 20px));
    padding:0 0 120px;
  }

  .topbar .inner{
    min-height:74px;
    padding:10px 12px;
    gap:10px;
  }

  .brand h1{
    font-size:13px;
    line-height:1.05;
  }

  .brand p{
    font-size:11px;
    margin-top:3px;
  }

  .logo{
    width:46px;
    height:46px;
    border-radius:14px;
  }

  .hero{
    min-height:600px;
    border-radius:0 0 22px 22px;
  }

  .heroMedia{
    filter:brightness(.74) saturate(1.03) contrast(1.02);
    transform:scale(1.02);
  }

  .heroOverlay{
    background:
      linear-gradient(
        180deg,
        rgba(6,20,32,.38) 0%,
        rgba(6,20,32,.28) 22%,
        rgba(6,20,32,.42) 58%,
        rgba(6,20,32,.56) 100%
      ),
      linear-gradient(
        90deg,
        rgba(6,20,32,.20) 0%,
        rgba(6,20,32,.14) 45%,
        rgba(6,20,32,.22) 100%
      );
  }

  .heroInner{
    width:min(var(--container), calc(100% - 20px));
    padding:24px 0 22px;
    min-height:600px;
    align-items:end;
  }

  .heroKicker{
    margin-bottom:14px;
    font-size:11px;
    letter-spacing:.14em;
  }

  .heroKicker::before{
    width:42px;
    height:4px;
  }

  .heroTitle{
    max-width:10ch;
    font-size:clamp(30px, 8vw, 42px);
    line-height:1.02;
    letter-spacing:-1px;
  }

  .heroSub{
    margin-top:14px;
    font-size:14px;
    line-height:1.55;
    max-width:28ch;
    color:rgba(255,255,255,.94);
  }

  .heroBadges{
    margin-top:18px;
    gap:10px;
  }

  .badgeMetal{
    min-height:40px;
    padding:8px 12px;
    font-size:12px;
    background:rgba(255,255,255,.10);
  }

  .heroCTAs{
    margin-top:20px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
  }

  .heroCTAs .btn{
    width:100%;
    min-height:52px;
    padding:12px 14px;
    font-size:14px;
  }

  .gallery{
    grid-template-columns:1fr;
  }

  .gItem{
    min-height:220px;
  }

  .btn,
  .tab,
  .badgeMetal,
  .pill{
    min-height:44px;
  }
}
/* Remove botão pedir orçamento do topo */
.actions .btn.primary{
    display:none;
}
/* remove botão solicitar orçamento do hero */
#ctaHero{
  display:none;
}
