*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root{
  --preto:#111;
  --cinza:#555;
  --claro:#f6f6f6;
  --verde:#25D366;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:"Segoe UI", system-ui, sans-serif;
  background:#fff;
  color:#111;
}

a,
a:link,
a:visited,
a:hover,
a:active{
  text-decoration:none !important;
  color:inherit;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* HEADER */
header{
  position:sticky;
  top:0;
  z-index:1000;
  background:#fff;
  border-bottom:1px solid #eee;
}

.nav{
  min-height:64px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  font-size:22px;
  font-weight:600;
  letter-spacing:-0.3px;
  color:#111 !important;
}

.menu{
  display:flex;
  gap:18px;
  align-items:center;
}

.menu a{
  color:#111 !important;
  font-size:13px;
  font-weight:500;
  white-space:nowrap;
}

.burger{
  display:none;
  width:42px;
  height:42px;
  border:none;
  background:transparent;
  cursor:pointer;
}

.burger span{
  display:block;
  width:24px;
  height:2px;
  background:#111;
  margin:5px auto;
  border-radius:999px;
  transition:.3s;
}

/* INTRO HOME */
.home-intro{
  max-width:980px;
  margin:0 auto;
  padding:34px 20px 18px;
  text-align:center;
}

.home-intro h1{
  font-size:clamp(30px,4vw,54px);
  line-height:1.08;
  font-weight:650;
  letter-spacing:-1px;
  margin-bottom:12px;
}

.home-intro p{
  max-width:760px;
  margin:0 auto;
  color:#555;
  font-size:17px;
  line-height:1.65;
}

/* BOTÕES */
.btn{
  display:inline-block;
  margin-top:24px;
  background:#fff;
  color:#111 !important;
  padding:14px 30px;
  border-radius:999px;
  font-size:15px;
  font-weight:600;
}

.btn.dark{
  background:#111;
  color:#fff !important;
}

/* SERVIÇOS HOME */
.services-section{
  padding:16px 8px 14px;
}

.servicos-wrapper{
  max-width:1160px;
  margin:auto;
  position:relative;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:4px;
}

.service-card{
  display:block;
  overflow:hidden;
  background:var(--claro);
  border-radius:6px;
  color:#111 !important;
}

.service-card img{
  width:100%;
  height:auto;
  aspect-ratio:4/5;
  object-fit:cover;
  object-position:center 15%;
  display:block;
}

.service-card div{
  padding:10px 12px;
}

.service-card h3{
  font-size:18px;
  font-weight:600;
  margin-bottom:8px;
  color:#111 !important;
}

.service-card p{
  font-size:14px;
  line-height:1.55;
  color:#555 !important;
}

.serv-btn,
.dep-btn{
  display:none;
}

/* SEÇÕES GERAIS */
.section{
  padding:32px 20px;
}

.compact{
  padding-top:18px;
}

.section-title{
  text-align:center;
  font-size:34px;
  font-weight:600;
  margin-bottom:20px;
  letter-spacing:-0.5px;
}

.about{
  max-width:820px;
  margin:auto;
  text-align:center;
}

.about p{
  color:#555;
  font-size:17px;
  line-height:1.75;
}

/* DEPOIMENTOS */
.depoimentos-wrapper{
  max-width:1100px;
  margin:auto;
  position:relative;
}

.depoimentos-track{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.depoimento-card{
  background:#f8f8f8;
  padding:30px;
  border-radius:18px;
  border:1px solid #eee;
}

.depoimento-card h3{
  font-size:21px;
  font-weight:600;
  margin-bottom:10px;
}

.depoimento-card p{
  color:#555;
  line-height:1.75;
  margin-bottom:14px;
  font-size:15px;
}

.stars{
  color:#d4af37;
  font-size:18px;
  margin-bottom:16px;
}

/* MAPS / ATENDIMENTO */
#mapa{
  padding:28px 20px 32px;
}

.map-box{
  max-width:1100px;
  width:100%;
  margin:0 auto;
  background:#f8f8f8;
  border:1px solid #eee;
  border-radius:18px;
  padding:38px 42px;
  text-align:center;
}

.map-info{
  max-width:780px;
  margin:0 auto;
}

.map-info h2{
  font-size:clamp(30px,4vw,40px);
  line-height:1.15;
  margin-bottom:14px;
  letter-spacing:-0.7px;
}

.map-info p{
  max-width:760px;
  margin:0 auto;
  color:#555;
  line-height:1.7;
  font-size:17px;
}

.map-info .btn{
  margin-top:24px;
}

.map-frame{
  display:none !important;
}

/* PÁGINAS INTERNAS */
.landing-intro{
  max-width:900px;
  margin:auto;
  padding:22px 20px 10px;
  text-align:center;
}

.landing-intro h1{
  font-size:clamp(32px,5vw,56px);
  line-height:1.1;
  font-weight:600;
  letter-spacing:-1px;
  margin-bottom:10px;
}

.landing-intro p{
  max-width:720px;
  margin:0 auto;
  color:#555;
  font-size:17px;
  line-height:1.65;
}

.info-grid{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.info-grid div{
  background:#f8f8f8;
  border:1px solid #eee;
  border-radius:16px;
  padding:24px;
}

.info-grid h3{
  font-size:19px;
  margin-bottom:10px;
  font-weight:600;
  color:#111;
}

.info-grid p{
  color:#555;
  line-height:1.65;
  font-size:15px;
}

.photo-grid{
  max-width:1120px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:4px;
}

.photo-grid img{
  width:100%;
  height:auto;
  aspect-ratio:4/5;
  object-fit:cover;
  border-radius:6px;
  display:block;
  cursor:pointer;
}

/* LIGHTBOX */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.88);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:99999;
  padding:18px;
}

.lightbox.active{
  display:flex;
}

.lightbox img{
  max-width:96vw;
  max-height:92vh;
  object-fit:contain;
  border-radius:10px;
}

.lightbox button{
  position:absolute;
  top:16px;
  right:18px;
  width:42px;
  height:42px;
  border:0;
  border-radius:50%;
  background:#fff;
  color:#111;
  font-size:26px;
  cursor:pointer;
}

/* CTA */
.cta-box{
  max-width:1100px;
  margin:auto;
  background:#111;
  color:#fff;
  text-align:center;
  border-radius:22px;
  padding:44px 24px;
}

.cta-box h2{
  font-size:32px;
  margin-bottom:10px;
}

.cta-box p{
  color:#ccc;
  font-size:16px;
}

/* WHATSAPP */
.whatsapp-button{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:9999;
  background:var(--verde);
  color:#fff !important;
  padding:11px 16px;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
  box-shadow:0 3px 10px rgba(0,0,0,.12);
}

/* FOOTER */
footer{
  text-align:center;
  padding:32px 20px;
  color:#555;
  border-top:1px solid #eee;
  font-size:14px;
}

@media(max-width:1024px){
  .menu{
    gap:12px;
  }

  .menu a{
    font-size:12px;
  }
}

@media(max-width:768px){
  .nav{
    min-height:58px;
  }

  .logo{
    font-size:20px;
  }

  .burger{
    display:block;
  }

  .menu{
    display:none;
    position:fixed;
    top:58px;
    right:14px;
    width:265px;
    max-height:calc(100vh - 80px);
    overflow-y:auto;
    background:#fff;
    padding:22px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.14);
    flex-direction:column;
    align-items:flex-start;
    gap:17px;
    z-index:9999;
  }

  .menu.active{
    display:flex;
  }

  .burger.active span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
  }

  .burger.active span:nth-child(2){
    opacity:0;
  }

  .burger.active span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
  }

  .home-intro{
    padding:26px 18px 12px;
  }

  .home-intro h1{
    font-size:31px;
  }

  .home-intro p{
    font-size:16px;
  }

  .services-section{
    padding:16px 0 14px;
  }

  .servicos-wrapper,
  .depoimentos-wrapper{
    overflow:hidden;
    position:relative;
  }

  .services-grid,
  .depoimentos-track{
    display:flex;
    overflow-x:auto;
    gap:6px;
    scroll-snap-type:x mandatory;
    scroll-behavior:smooth;
    padding:0 8px 8px;
  }

  .services-grid::-webkit-scrollbar,
  .depoimentos-track::-webkit-scrollbar{
    display:none;
  }

  .service-card,
  .depoimento-card{
    flex:0 0 84%;
    min-width:84%;
    max-width:84%;
    scroll-snap-align:center;
  }

  .serv-btn,
  .dep-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    position:absolute;
    transform:translateY(-50%);
    width:25px;
    height:25px;
    border:none;
    border-radius:50%;
    background:rgba(0,0,0,.28);
    color:#fff;
    font-size:10px;
    cursor:pointer;
    z-index:5;
  }

  .serv-btn{
    top:44%;
  }

  .dep-btn{
    top:50%;
  }

  .serv-prev,
  .dep-prev{
    left:6px;
  }

  .serv-next,
  .dep-next{
    right:6px;
  }

  .section{
    padding:28px 20px;
  }

  .compact{
    padding-top:12px;
  }

  .section-title{
    font-size:29px;
    margin-bottom:16px;
  }

  .about p{
    font-size:16px;
  }

  .depoimento-card{
    padding:26px 22px;
  }

  .landing-intro{
    padding:18px 20px 8px;
  }

  .landing-intro h1{
    font-size:32px;
  }

  .landing-intro p{
    font-size:16px;
  }

  .info-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .info-grid div{
    padding:22px;
  }

  .photo-grid{
    grid-template-columns:repeat(2,1fr);
    gap:4px;
  }

  .map-box{
    padding:28px 22px;
    border-radius:16px;
  }

  .map-info h2{
    font-size:28px;
  }

  .map-info p{
    font-size:16px;
  }

  .cta-box{
    padding:38px 22px;
    border-radius:18px;
  }

  .cta-box h2{
    font-size:27px;
  }

  .whatsapp-button{
    right:14px;
    bottom:14px;
    font-size:13px;
  }
}
