:root {
  --bg-light: #ece0cb;
  --bg-alt: #ede8d2;
  --text: #3a2c1e;
  --text-soft: #6d4e2b;
  --green-dark: #1e4429;
  --green-deep: #16351f;
  --green-mid: #1d4a2a;
  --green: #2f8a44;
  --green-link: #2e7d3c;
  --orange: #e07b26;
  --cream: #f8f1e4;
  --card-bg: #fffaf0;
}

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

html { scroll-behavior: smooth; }

html, body { max-width: 100%; overflow-x: hidden; }
html.intro-active, body.intro-active {
  overflow: hidden;
  height: 100%;
  overscroll-behavior: none;
}

/* ---------- Intro / abertura (CSS puro, sem vídeo — logo em alta nitidez) ---------- */
.intro-splash {
  position: fixed; inset: 0; z-index: 999;
  touch-action: none;
  overscroll-behavior: none;
  background: #12211b;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 1;
  transition: opacity .6s cubic-bezier(.2,.6,.2,1);
}
.intro-splash.intro-hide { opacity: 0; pointer-events: none; }
.intro-logo { display: flex; flex-direction: column; align-items: center; gap: 18px; padding: 0 24px; }
.intro-logo-trees {
  width: 92px; height: auto;
  opacity: 0;
  transform: scale(.7) translateY(8px);
  animation: introTreesIn .6s cubic-bezier(.2,.6,.2,1) .2s forwards;
}
.intro-logo-text {
  width: min(280px, 70vw); height: auto;
  opacity: 0;
  transform: translateY(14px);
  animation: introTextIn .6s cubic-bezier(.2,.6,.2,1) .7s forwards;
}
@keyframes introTreesIn { to { opacity: 1; transform: scale(1) translateY(0); } }
@keyframes introTextIn { to { opacity: 1; transform: translateY(0); } }

body {
  font-family: 'Archivo', sans-serif;
  background: var(--bg-light);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--green-link); text-decoration: none; }
a:hover { color: var(--green); }

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

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1);
}
[data-reveal].revealed { opacity: 1; transform: none; }
/* O atraso escalonado (stagger) é aplicado via inline style pelo script.js —
   várias classes de card (.service-card, .gallery-item etc.) têm sua própria
   propriedade "transition" shorthand, que resetaria um transition-delay vindo
   do CSS. Inline style tem prioridade sobre isso e garante o efeito. */

/* Traço que "desenha" sob os títulos ao revelar — remete a régua/marcação de carpintaria */
.h2::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  margin-top: 16px;
  background: var(--orange);
  border-radius: 2px;
  transition: width .6s cubic-bezier(.2,.6,.2,1) .35s;
}
[data-reveal].revealed .h2::after,
[data-reveal] .h2.revealed::after { width: 64px; }
.h2--light::after { background: #cfe6b8; }

@keyframes waPulse {
  0% { transform: scale(1); opacity: .45; }
  70% { transform: scale(1.53); opacity: 0; }
  100% { transform: scale(1.53); opacity: 0; }
}
@keyframes kenBurns {
  0% { transform: scale(1.08); }
  100% { transform: scale(1.22); }
}

.eyebrow {
  display: inline-block;
  color: var(--green-link);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 13px;
}
.eyebrow--light { color: #cfe6b8; }

.h2 {
  font-family: 'Bitter', serif;
  font-weight: 800;
  font-size: 38px;
  color: var(--green-dark);
  margin: 12px 0 0;
  line-height: 1.15;
}
.h2--light { color: var(--cream); }

.body-text { line-height: 1.7; margin-top: 14px; color: var(--text-soft); }

.section { padding: 100px 24px; }
.section--light { background: var(--bg-light); }
.section--alt { background: var(--bg-alt); }

.section-head { max-width: 620px; display: flex; flex-direction: column; gap: 4px; margin-bottom: 48px; }

.btn-primary {
  background: var(--green);
  color: #fff;
  padding: 16px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  font-family: 'Archivo', sans-serif;
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 12px 28px rgba(47,138,68,.45); color: #fff; }

.btn-outline {
  border: 2px solid rgba(248,241,228,.5);
  color: var(--cream);
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  transition: background .2s, transform .2s;
  display: inline-block;
}
.btn-outline:hover { background: rgba(248,241,228,.12); transform: scale(1.03); color: var(--cream); }

/* ---------- Header ---------- */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: transparent;
  box-shadow: none;
  transition: background .35s ease, box-shadow .35s ease;
}
#site-header.scrolled,
#site-header.menu-open {
  background: var(--green-mid);
  box-shadow: 0 4px 18px rgba(24,16,8,.25);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--cream); }
.brand-logo { width: 46px; height: 46px; border-radius: 50%; box-shadow: 0 2px 8px rgba(0,0,0,.25); object-fit: cover; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; color: var(--cream); }
.brand-text strong { font-family: 'Bitter', serif; font-size: 17px; letter-spacing: .02em; }
.brand-text small { font-size: 11px; opacity: .75; letter-spacing: .08em; text-transform: uppercase; }

.amp { font-family: Georgia, 'Times New Roman', serif; font-style: italic; }

.nav-desk { display: flex; align-items: center; gap: 26px; font-size: 14.5px; font-weight: 600; }
.nav-desk a:not(.btn-nav-cta) {
  position: relative;
  color: var(--cream);
  padding-bottom: 3px;
}
.nav-desk a:not(.btn-nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -1px;
  width: 100%;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s cubic-bezier(.2,.6,.2,1);
}
.nav-desk a:hover { color: var(--orange); }
.nav-desk a:not(.btn-nav-cta):hover::after { transform: scaleX(1); }
.btn-nav-cta {
  background: var(--green);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 8px;
  transition: transform .2s, box-shadow .2s;
}
.btn-nav-cta:hover { transform: scale(1.05); box-shadow: 0 8px 20px rgba(47,138,68,.35); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-burger span { width: 24px; height: 3px; background: var(--cream); border-radius: 2px; }

.nav-mobile {
  display: none;
  background: var(--green-mid);
  flex-direction: column;
  padding: 12px 24px 20px;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { color: #f0e6d6; padding: 10px 4px; font-weight: 600; }
.btn-nav-cta-mobile {
  background: var(--green);
  color: #fff !important;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  margin-top: 8px;
}

@media (max-width: 840px) {
  .nav-desk { display: none !important; }
  .nav-burger { display: flex !important; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #26140b;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; will-change: transform; }
.hero-bg-anim { position: absolute; inset: 0; animation: kenBurns 22s ease-in-out infinite alternate; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(38,20,8,.78) 0%, rgba(38,20,8,.42) 52%, rgba(38,20,8,.1) 100%);
  pointer-events: none;
}
.hero-fade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 140px;
  background: linear-gradient(to bottom, rgba(38,20,8,0), rgba(38,20,8,.5));
  pointer-events: none;
}
.hero-content { position: relative; max-width: 1180px; margin: 0 auto; padding: 140px 24px 90px; width: 100%; pointer-events: none; }
.hero-inner { max-width: 640px; display: flex; flex-direction: column; gap: 22px; pointer-events: none; }
.hero-h1 {
  font-family: 'Bitter', serif;
  font-weight: 800;
  font-size: 56px;
  line-height: 1.08;
  color: var(--cream);
  text-wrap: pretty;
}
.hero-p { color: #e5d9c4; font-size: 18px; line-height: 1.65; max-width: 520px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; pointer-events: auto; }

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--cream);
  opacity: .8;
  pointer-events: auto;
  animation: heroScrollBounce 2.2s ease-in-out infinite;
}
.hero-scroll-cue:hover { opacity: 1; }
.hero-scroll-cue span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
@keyframes heroScrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@media (max-width: 640px) { .hero-scroll-cue { display: none; } }

/* ---------- Page hero (páginas internas, ex.: Serviços & Produtos) ---------- */
.page-hero { padding: 168px 24px 64px; background: var(--green-mid); }
.page-hero-title { margin-top: 10px; }
.page-hero-p { margin-top: 14px; max-width: 620px; }
@media (max-width: 768px) { .page-hero { padding: 128px 18px 48px; } }

/* ---------- Sobre ---------- */
.sobre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 56px;
  align-items: start;
}
.sobre-text { display: flex; flex-direction: column; gap: 8px; }
.quote {
  margin-top: 10px;
  padding: 20px 24px;
  border-left: 4px solid var(--orange);
  background: var(--bg-alt);
  border-radius: 0 10px 10px 0;
  font-family: 'Bitter', serif;
  font-size: 19px;
  font-style: italic;
  color: #5e3c14;
  line-height: 1.5;
}
.sobre-media { display: flex; flex-direction: column; gap: 14px; }
.sobre-main-img { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 1408/736; }
.sobre-main-img img { width: 100%; height: 100%; object-fit: cover; }
.sobre-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.sobre-card { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; }
.sobre-card img { width: 100%; height: 100%; object-fit: cover; }
.card-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,30,20,.72), transparent 60%);
  pointer-events: none;
}
.card-label {
  position: absolute; left: 10px; bottom: 10px; right: 10px;
  display: flex; align-items: center; gap: 8px; color: #fff;
}
.card-label span { font-weight: 700; font-size: 13.5px; }
.sobre-highlights {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}
.highlight { display: flex; align-items: center; gap: 10px; }
.highlight span { font-size: 13.5px; color: var(--text); font-weight: 600; line-height: 1.3; }

/* ---------- Serviços / cards grid ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.cards-grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.service-card {
  background: var(--card-bg);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(46,32,19,.08);
  transition: transform .25s, box-shadow .25s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(46,32,19,.16); }
.service-img { position: relative; height: 190px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.6,.2,1); }
.service-card:hover .service-img img { transform: scale(1.08); }
.service-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 8px; }
.service-body h3 { font-family: 'Bitter', serif; font-size: 21px; color: var(--green-dark); }
.service-body p { line-height: 1.65; color: var(--text-soft); font-size: 15px; }

/* ---------- CTA banner (atalhos para a página de Serviços & Produtos) ---------- */
.cta-banner { padding: 64px 24px; }
.cta-banner--alt { background: var(--bg-alt); }
.cta-banner--green { background: var(--green-mid); }
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner-text { max-width: 620px; display: flex; flex-direction: column; gap: 6px; }
.cta-banner-text .h2 { font-size: 30px; }
.body-text--light { color: #d9e8cf; }
.btn-primary--dark { background: var(--green-dark); }
.btn-primary--dark:hover { box-shadow: 0 12px 28px rgba(30,68,41,.4); }

/* ---------- Números ---------- */
.numeros {
  padding: 80px 24px;
  background: repeating-linear-gradient(90deg, #1d4a2a 0px, #1d4a2a 60px, #215430 60px, #215430 120px);
}
.numeros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}
.numero-item { display: flex; flex-direction: column; gap: 6px; }
.numero-val { font-family: 'Bitter', serif; font-size: 52px; color: #cfe6b8; line-height: 1; display: inline-block; }
.numero-val.pop { animation: numeroPop .45s cubic-bezier(.34,1.56,.64,1); }
@keyframes numeroPop {
  0% { transform: scale(1); }
  45% { transform: scale(1.18); color: #fff; }
  100% { transform: scale(1); }
}
.numero-label { color: #b9cdae; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; font-size: 13px; }

/* ---------- Galeria ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.gallery-item {
  position: relative; height: 240px; border-radius: 12px; overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(46,32,19,0);
  transition: box-shadow .35s ease;
}
.gallery-item:hover { box-shadow: 0 16px 32px rgba(20,14,6,.28); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.6,.2,1); }
.gallery-item:hover img { transform: scale(1.09); }
.gallery-zoom {
  position: absolute; top: 10px; right: 10px; width: 38px; height: 38px;
  border-radius: 10px; border: none; cursor: pointer;
  background: rgba(14,42,22,.6); color: #f6e9d4; font-size: 17px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s, background .2s;
}
.gallery-zoom:hover { transform: scale(1.12); background: var(--green); }
.gallery-label {
  position: absolute; left: 12px; bottom: 34px;
  background: rgba(14,42,22,.65); color: #f0e6d6; font-size: 12.5px; font-weight: 600;
  padding: 5px 10px; border-radius: 7px; pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
}
.gallery-item:hover .gallery-label,
.gallery-item:focus-within .gallery-label { opacity: 1; }

.lightbox-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px 22px;
  background: linear-gradient(to top, rgba(14,10,6,.88), transparent);
  color: #f6e9d4; font-weight: 600; font-size: 15px; text-align: center;
  pointer-events: none;
}

.lightbox {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(18,12,6,.9);
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
}
.lightbox[hidden] { display: none; }
.lightbox-inner { position: relative; width: min(1100px, 94vw); height: min(74vh, 700px); border-radius: 14px; overflow: hidden; }
.lightbox-inner img { width: 100%; height: 100%; object-fit: contain; background: #0e0a06; }
.lightbox-close {
  position: absolute; top: 22px; right: 26px; width: 44px; height: 44px;
  border-radius: 50%; border: none; cursor: pointer;
  background: rgba(246,233,212,.14); color: #f6e9d4; font-size: 20px;
  transition: transform .2s, background .2s;
}
.lightbox-close:hover { transform: scale(1.1); background: var(--green); }

/* ---------- Diferenciais ---------- */
.diferencial-card {
  background: var(--card-bg);
  border-radius: 14px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(46,32,19,.08);
  transition: transform .3s cubic-bezier(.2,.6,.2,1), box-shadow .3s;
}
.diferencial-card:hover { transform: translateY(-5px); box-shadow: 0 14px 30px rgba(46,32,19,.14); }
.diferencial-card h3 { font-family: 'Bitter', serif; font-size: 20px; color: var(--green-dark); }
.diferencial-card p { line-height: 1.65; color: var(--text-soft); font-size: 15px; }
.diferencial-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.diferencial-card:hover .diferencial-icon { transform: rotate(-8deg) scale(1.08); }
.diferencial-icon--green { background: var(--green); }
.diferencial-icon--orange { background: var(--orange); }
.diferencial-icon--darkgreen { background: var(--green-link); }
.diferencial-icon-img { width: 26px; height: auto; filter: brightness(0) invert(1); }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 860px; }
.faq-item {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 4px 22px;
  box-shadow: 0 2px 8px rgba(46,32,19,.08);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 28px 18px 0;
  font-family: 'Bitter', serif;
  font-weight: 700;
  font-size: 16.5px;
  color: var(--green-dark);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: var(--green);
  transition: transform .35s cubic-bezier(.2,.6,.2,1);
}
.faq-item.js-open summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p {
  margin: 0; max-height: 0; opacity: 0; overflow: hidden;
  line-height: 1.65; color: var(--text-soft); font-size: 15px;
  transition: max-height .4s cubic-bezier(.2,.6,.2,1), opacity .3s ease, margin .4s cubic-bezier(.2,.6,.2,1);
}
.faq-item.js-open p { opacity: 1; margin: 0 0 20px; }

/* ---------- Depoimentos ---------- */
.testimonial {
  background: var(--card-bg);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 8px rgba(46,32,19,.08);
}
.stars { color: var(--orange); font-size: 22px; letter-spacing: 2px; }
.testimonial blockquote {
  font-family: 'Bitter', serif; font-style: italic; font-size: 17px; line-height: 1.6; color: #5e3c14;
}
.testimonial figcaption { font-weight: 700; color: var(--green-dark); font-size: 14px; }
.testimonial figcaption span { display: block; font-weight: 500; color: #8a7a62; font-size: 13px; }

/* ---------- Contato ---------- */
.contato { padding: 100px 24px; background: var(--green-mid); }
.contato-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 48px; }
.contato-info { display: flex; flex-direction: column; gap: 22px; }
.contato-details { display: flex; flex-direction: column; gap: 12px; color: #e5d9c4; line-height: 1.6; font-size: 15.5px; }
.contato-details strong { color: #cfe6b8; }
.contato-details a { color: #e5d9c4; }
.contato-map { border-radius: 14px; overflow: hidden; height: 260px; border: 1px solid rgba(217,164,91,.25); }

.contato-form {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: start;
}
.contato-form h3 { font-family: 'Bitter', serif; font-size: 22px; color: var(--green-dark); }
.contato-form p { line-height: 1.65; color: var(--text-soft); font-size: 15px; }
.contato-form input,
.contato-form textarea {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(109,78,43,.3);
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: #fff;
}
.contato-form textarea { resize: vertical; }
.btn-block { width: 100%; justify-content: center; }
.btn-whatsapp {
  background: #25d366; color: #fff; border: none; padding: 16px; border-radius: 10px;
  font-weight: 700; font-size: 16px; cursor: pointer; font-family: 'Archivo', sans-serif;
  transition: transform .2s, box-shadow .2s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-whatsapp:hover { transform: scale(1.03); box-shadow: 0 10px 24px rgba(37,211,102,.4); color: #fff; }
.btn-outline-green {
  border: 2px solid var(--green);
  color: var(--green-dark);
  padding: 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  transition: background .2s;
}
.btn-outline-green:hover { background: rgba(47,138,68,.08); }
.link-instagram { color: var(--text-soft); text-align: center; font-weight: 600; font-size: 14.5px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-deep); padding: 48px 24px 90px; color: #b3c4a8; }
.footer-grid {
  display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; align-items: flex-start;
  font-size: 14px; line-height: 1.7;
}
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col:first-child { max-width: 320px; }
.footer-col strong { color: #f0e6d6; }
.footer-brand { font-family: 'Bitter', serif; font-size: 17px; }
.footer-col a { color: #b3c4a8; }
.footer-copy {
  margin-top: 36px; padding-top: 20px; border-top: 1px solid rgba(184,168,142,.2);
  font-size: 12.5px; color: #8a7a62;
}

/* ---------- WhatsApp float button ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.12); }
/* Anel pulsante via transform/opacity (composto, sem repintura) em vez de
   animar box-shadow — mesmo efeito visual, sem custo de paint contínuo. */
.wa-float::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,.45);
  animation: waPulse 2.4s infinite;
  pointer-events: none;
  z-index: -1;
}

/* =====================================================================
   Responsivo — tablets e celulares
   ===================================================================== */

/* ---------- Tablets: <= 768px ---------- */
@media (max-width: 768px) {
  .wrap { padding: 0 18px; }

  .section { padding: 64px 18px; }
  .contato { padding: 64px 18px; }
  .numeros { padding: 56px 18px; }

  .h2 { font-size: 28px; }
  .section-head { margin-bottom: 32px; }

  .hero-content { padding: 120px 18px 70px; }
  .hero-h1 { font-size: 34px; }
  .hero-p { font-size: 16px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas a { text-align: center; }

  .sobre-grid { gap: 36px; }
  .sobre-cards { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .sobre-highlights { grid-template-columns: repeat(2, 1fr); padding: 16px; }

  .cards-grid,
  .cards-grid--3 { grid-template-columns: 1fr; gap: 18px; }

  .cta-banner { padding: 44px 18px; }
  .cta-banner-inner { flex-direction: column; align-items: flex-start; gap: 22px; }
  .cta-banner-text .h2 { font-size: 24px; }

  .numeros-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .numero-val { font-size: 40px; }

  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
  .gallery-item { height: 190px; }

  .lightbox { padding: 16px; }
  .lightbox-inner { height: min(60vh, 700px); }
  .lightbox-close { top: 12px; right: 12px; width: 40px; height: 40px; }

  .contato-grid { gap: 32px; }
  .contato-form { padding: 26px 22px; }
  .contato-map { height: 220px; }

  .footer-grid { gap: 26px; }

  .wa-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}

/* ---------- Celulares pequenos: <= 480px ---------- */
@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .header-inner { padding: 12px 16px; }
  .brand-logo { width: 38px; height: 38px; }
  .brand-text strong { font-size: 15px; }
  .brand-text small { font-size: 10px; }

  .section { padding: 48px 16px; }
  .contato { padding: 48px 16px; }
  .numeros { padding: 44px 16px; }

  .eyebrow { font-size: 12px; }
  .h2 { font-size: 24px; }
  .body-text { font-size: 14.5px; }

  .hero { min-height: 92vh; }
  .hero-content { padding: 100px 16px 56px; }
  .hero-h1 { font-size: 28px; }
  .hero-p { font-size: 15px; }
  .btn-primary,
  .btn-outline { padding: 14px 20px; font-size: 15px; }

  .quote { font-size: 16px; padding: 16px 18px; }

  .sobre-cards { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .card-label span { font-size: 11px; }
  .sobre-highlights { grid-template-columns: 1fr 1fr; gap: 12px; padding: 14px; }
  .highlight span { font-size: 12px; }

  .service-img { height: 160px; }
  .service-body { padding: 18px 18px 20px; }
  .service-body h3 { font-size: 19px; }

  .numeros-grid { grid-template-columns: repeat(2, 1fr); gap: 22px 14px; }
  .numero-val { font-size: 32px; }
  .numero-label { font-size: 11.5px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-item { height: 150px; }
  .gallery-label { font-size: 11px; left: 8px; bottom: 28px; padding: 4px 8px; }
  .gallery-zoom { width: 32px; height: 32px; font-size: 14px; }

  .diferencial-card,
  .testimonial { padding: 22px 20px; }

  .faq-item { padding: 2px 16px; }
  .faq-item summary { font-size: 15px; padding: 15px 26px 15px 0; }

  .contato-details { font-size: 14.5px; }
  .contato-map { height: 190px; }
  .contato-form { padding: 22px 18px; }

  .footer-grid { flex-direction: column; gap: 22px; }
  .footer-col:first-child { max-width: none; }

  .wa-float { right: 14px; bottom: 14px; width: 50px; height: 50px; }
  .wa-float svg { width: 24px; height: 24px; }
}

/* ---------- Telas muito pequenas: <= 360px ---------- */
@media (max-width: 360px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .sobre-cards { grid-template-columns: 1fr; }
  .numeros-grid { grid-template-columns: 1fr; }
}
