:root{
  --bg:#ffffff;
  --bg-alt:#f6f6f6;
  --text:#1f1f1f;
  --muted:#555;
  --border:#e7e7e7;
  --shadow: 0 10px 30px rgba(0,0,0,.08);

  --primary:#25D366; /* WhatsApp */
  --primary-dark:#1fb85a;

  --radius:14px;
  --container: 1100px;
}

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

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

/* Topbar */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  border-bottom:1px solid var(--border);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  font-weight:800;
  text-decoration:none;
  color:var(--text);
}

.nav{
  display:flex;
  gap:18px;
}
.nav a{
  text-decoration:none;
  color:var(--muted);
  font-weight:600;
  font-size:.95rem;
}
.nav a:hover{ color:var(--text); }

.burger{
  display:none;
  background:transparent;
  border:0;
  cursor:pointer;
}
.burger span{
  display:block;
  width:26px;
  height:3px;
  background:#222;
  margin:5px 0;
  border-radius:99px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 18px;
  border-radius:10px;
  text-decoration:none;
  font-weight:800;
  border:1px solid transparent;
  transition:.2s;
  white-space:nowrap;
}
.btn--primary{
  background:var(--primary);
  color:#fff;
}
.btn--primary:hover{ background:var(--primary-dark); }

.btn--light{
  background:#fff;
  border-color:var(--border);
  color:var(--text);
}
.btn--light:hover{ transform: translateY(-1px); }

.btn--ghost{
  background:transparent;
  border-color:var(--border);
  color:var(--text);
}
.btn--ghost:hover{ background:#fff; }

.link{
  color:var(--text);
  text-decoration:none;
  font-weight:800;
}
.link:hover{ text-decoration:underline; }

.topbar__cta{ display:inline-flex; }

/* Hero */
.hero{
  padding:56px 0 30px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:26px;
  align-items:center;
}
.badge{
  display:inline-block;
  padding:8px 12px;
  border:1px solid var(--border);
  border-radius:999px;
  color:var(--muted);
  font-weight:800;
  margin-bottom:14px;
}
.hero h1{
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height:1.1;
  margin-bottom:12px;
}
.hero p{
  color:var(--muted);
  line-height:1.6;
  margin-bottom:18px;
  max-width: 52ch;
}
.hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:18px;
}
.hero__meta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.meta{
  display:flex;
  gap:10px;
  align-items:center;
  padding:10px 12px;
  border:1px solid var(--border);
  border-radius:12px;
  background:#fff;
}

.hero__media{
  display:grid;
  gap:14px;
}
.hero__photo{
  height:340px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border:1px solid var(--border);

  /* Placeholder: parece piso madeira */
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.6), transparent 50%),
    linear-gradient(120deg, #6b3f2a, #9b5b3b, #c08a60);
}
.hero__card{
  border-radius: var(--radius);
  border:1px solid var(--border);
  background:#fff;
  box-shadow: var(--shadow);
  padding:16px;
}
.hero__card h3{ margin-bottom:6px; }
.hero__card p{ margin-bottom:10px; max-width: 46ch; }

/* Sections */
.section{
  padding:70px 0;
}
.section--alt{ background: var(--bg-alt); }
.section__head{
  text-align:center;
  margin-bottom:30px;
}
.section__head h2{
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  margin-bottom:8px;
}
.section__head p{ color:var(--muted); line-height:1.6; }

/* Grid cards */
.grid{
  display:grid;
  gap:16px;
}
.grid--3{ grid-template-columns: repeat(3, 1fr); }

.card{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background:#fff;
  box-shadow: var(--shadow);
  padding:18px;
}
.card h3{ margin-bottom:8px; }
.card p{ color:var(--muted); line-height:1.5; }

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.shot{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow: var(--shadow);
  background:#fff;
}
.shot img{
  width:100%;
  height:240px;
  object-fit: cover;
  display:block;
}

/* Features */
.feature{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background:#fff;
  box-shadow: var(--shadow);
  padding:18px;
}
.feature p{ color:var(--muted); line-height:1.5; margin-top:8px; }

.cta-row{
  margin-top:26px;
  display:flex;
  justify-content:center;
}

/* CTA section */
.section--cta{
  background: #0f0f10;
  color:#fff;
}
.cta-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding:26px;
}
.section--cta p{ color: rgba(255,255,255,.82); line-height:1.6; }
.cta-box__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.section--cta .btn--light{
  background: transparent;
  border-color: rgba(255,255,255,.25);
  color:#fff;
}
.section--cta .btn--light:hover{
  background: rgba(255,255,255,.07);
}

/* Footer */
.footer{
  padding:22px 0;
  border-top:1px solid var(--border);
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  color:var(--muted);
}

/* WhatsApp floating */
.wpp-float{
  position:fixed;
  right:18px;
  bottom:18px;
  background: var(--primary);
  color:#fff;
  font-weight:900;
  text-decoration:none;
  padding:14px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  border:1px solid rgba(0,0,0,.08);
}
.wpp-float:hover{ background: var(--primary-dark); }

/* Responsive */
@media (max-width: 900px){
  .hero__grid{ grid-template-columns: 1fr; }
  .hero__photo{ height:300px; }
  .grid--3{ grid-template-columns: repeat(2, 1fr); }
  .gallery{ grid-template-columns: repeat(2, 1fr); }
  .cta-box{ flex-direction:column; align-items:flex-start; }
}
@media (max-width: 600px){
  .nav{ display:none; }
  .burger{ display:block; }
  .topbar__cta{ display:none; }

  .grid--3{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr; }
  .shot img{ height:220px; }
}
.nav.is-open{
  display:flex;
  position:absolute;
  left:0;
  right:0;
  top:58px;
  background:#fff;
  border-bottom:1px solid var(--border);
  padding:12px 20px;
  flex-direction:column;
  gap:12px;
}

/* =========================
   EXTRA SEÇÕES (ROBUSTEZ)
   Cole no FINAL do style.css
========================= */

/* Helpers */
.center { text-align: center; }
.hint { color: var(--muted); margin-top: 12px; }

/* Steps (Como funciona) */
.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.step{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}
.step__num{
  width:38px;
  height:38px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  background: rgba(37, 211, 102, .12);
  color: var(--primary-dark);
  margin-bottom:12px;
}
.step h3{ margin-bottom:8px; }
.step p{ color: var(--muted); line-height:1.5; }

/* Testimonials */
.testimonial{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.testimonial p{
  color: var(--muted);
  line-height:1.6;
}
.testimonial__meta{
  display:flex;
  flex-direction:column;
  gap:2px;
  color: var(--text);
}
.testimonial__meta span{ color: var(--muted); font-weight:600; }

/* Info grid (Atendimento) */
.info-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.info-box{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}
.info-box h3{ margin-bottom:8px; }
.info-box p{ color: var(--muted); line-height:1.5; }
.muted{ color: var(--muted); font-weight:600; }

/* Before/After */
.before-after{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
.before-after figcaption{
  padding:10px 12px;
  font-weight:800;
  color: var(--muted);
  background:#fff;
  border-top:1px solid var(--border);
}

/* Quick form */
.quick-form{
  max-width: 820px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}
.field{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.field--full{ grid-column: 1 / -1; }
.field label{
  font-weight:800;
  font-size:.95rem;
}
.field input,
.field select,
.field textarea{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  outline:none;
  background:#fff;
  font-size: 1rem;
}
.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color: rgba(37, 211, 102, .55);
  box-shadow: 0 0 0 4px rgba(37, 211, 102, .12);
}

/* FAQ */
.faq{
  max-width: 900px;
  margin: 0 auto;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.faq__item{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding:16px 16px;
  border-radius: var(--radius);
  background:#fff;
  border:1px solid var(--border);
  box-shadow: var(--shadow);
  cursor:pointer;
  font-weight:900;
  font-size: 1rem;
}
.faq__icon{
  font-size: 1.2rem;
  color: var(--muted);
}
.faq__panel{
  display:none;
  margin-top:-6px;
  padding: 0 16px 14px;
  color: var(--muted);
}
.faq__panel p{ line-height:1.6; }
.faq__item.is-open + .faq__panel{
  display:block;
}

/* Responsive extras */
@media (max-width: 900px){
  .steps{ grid-template-columns: 1fr; }
  .info-grid{ grid-template-columns: 1fr; }
  .before-after{ grid-template-columns: 1fr; }
  .quick-form{ grid-template-columns: 1fr; }
}

/* ===== Ajuste de densidade (menos espaço, mais impacto) ===== */
:root{
  --container: 1100px;
  --gap-section: 56px;   /* antes provavelmente estava 90/120 */
  --gap-block: 18px;
}

.container{
  max-width: var(--container);
}

.section{
  padding: var(--gap-section) 0;
}

.hero{
  padding: 56px 0 44px;
}

.section-title{
  margin-bottom: 18px;
}

.section-subtitle{
  margin-top: 8px;
  margin-bottom: 22px;
}

.grid{
  gap: 16px;
}

.card{
  padding: 16px;
}

.shot{
  background:#fff;
  border:1px solid #eee;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.shot img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}

.shot__caption{
  padding:12px 14px;
  border-top:1px solid #eee;
  text-align:left;
}

.shot__caption strong{
  display:block;
  font-size:14px;
  font-weight:700;
  color:#111;
}

.shot__caption span{
  display:block;
  margin-top:4px;
  font-size:12px;
  color:#666;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.lightbox.is-open {
  display: block;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.lightbox__content {
  position: relative;
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  margin: 6vh auto;
  padding: 18px;
  border-radius: 16px;
  background: #111;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}

.lightbox__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 12px;
}

.lightbox__caption {
  margin-top: 10px;
  color: rgba(255,255,255,.85);
  font-size: 14px;
  line-height: 1.4;
}

.lightbox__close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: rgba(255,255,255,.12);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  font-size: 22px;
  cursor: pointer;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: rgba(255,255,255,.12);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 28px;
  cursor: pointer;
}

.lightbox__prev { left: 12px; }
.lightbox__next { right: 12px; }

.shot__link {
  display: block;
}

/* =========================
   ANIMAÇÕES AO ROLAR (REVEAL)
   ========================= */
.reveal{
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity .6s ease, transform .6s ease;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.reveal.is-visible{
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

/* variações opcionais */
.reveal--fade{ transform: none; }
.reveal--left{ transform: translateX(-18px); }
.reveal--right{ transform: translateX(18px); }
.reveal--zoom{ transform: scale(.98); }

/* respeita quem prefere menos animação */
@media (prefers-reduced-motion: reduce){
  .reveal{ transition: none; transform: none; opacity: 1; }
}

/* ===== MOBILE FIXES ===== */
@media (max-width: 900px) {
  .container { padding-left: 16px; padding-right: 16px; }
}

@media (max-width: 680px) {
  .section { padding: 56px 0; }
  .section__head h2 { font-size: 28px; }
  .section__head p { font-size: 14px; }

  /* HERO: vira 1 coluna */
  .hero__grid { grid-template-columns: 1fr !important; gap: 18px !important; }
  .hero__title { font-size: 34px !important; line-height: 1.1 !important; }
  .hero__cta { flex-direction: column !important; align-items: stretch !important; }
  .hero__cta .btn { width: 100% !important; justify-content: center !important; }

  /* Cards: 1 coluna */
  .cards { grid-template-columns: 1fr !important; gap: 12px !important; }

  /* Galeria: 1 coluna (ou 2 se preferir) */
  .gallery { grid-template-columns: 1fr !important; gap: 12px !important; }
  .shot img { height: 220px !important; object-fit: cover !important; }

  /* Botão flutuante WhatsApp menor */
  .wpp-float { right: 14px !important; bottom: 14px !important; padding: 12px 16px !important; }
}

/* ===== Ajustes de texto para MOBILE ===== */
@media (max-width: 768px) {

  body {
    text-align: center;
  }

  .container {
    text-align: center;
  }

  /* Títulos */
  h1, h2, h3 {
    text-align: center;
  }

  /* Textos */
  p {
    text-align: center;
  }

}

@media (max-width: 768px) {

  .hero {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-badges {
    justify-content: center;
  }

}

@media (max-width: 768px) {

  .card,
  .service-card,
  .step,
  .testimonial,
  .faq-item {
    text-align: center;
  }

}

@media (max-width: 768px) {

  /* Textos gerais */
  h1, h2, h3, p {
    text-align: center;
  }

  /* Hero / topo */
  .hero,
  .hero * {
    text-align: center;
  }

  /* Por que escolher */
  .why,
  .why * {
    text-align: center;
  }

  /* Serviços */
  .services,
  .services * {
    text-align: center;
  }

  /* Como funciona */
  .steps,
  .step,
  .step * {
    text-align: center;
  }

  /* Depoimentos */
  .testimonials,
  .testimonial,
  .testimonial * {
    text-align: center;
  }

  /* CTA final */
  .section--cta,
  .section--cta * {
    text-align: center;
  }

  .cta-box_actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  /* Galeria legendas */
  .shot__caption {
    text-align: center;
  }
}

/* =========================
   FIX MOBILE: sem overflow + centralização
========================= */
@media (max-width: 768px){

  html, body{
    width: 100%;
    overflow-x: hidden;
  }

  img, video{
    max-width: 100%;
    height: auto;
    display: block;
  }

  /* garante que containers não “estourem” */
  .container, section, header, footer, main{
    max-width: 100%;
  }

  /* CENTRALIZAR textos principais no mobile (geral) */
  h1, h2, h3, p{
    text-align: center;
  }

  /* botões do hero/CTAs em coluna e centralizados */
  .btn, button, .cta-row a{
    display: inline-flex;
    justify-content: center;
  }

  .cta-row, .cta-box_actions, .hero__actions, .hero_actions{
    display: grid;
    gap: 10px;
    justify-items: center;
  }

  .cta-row a, .cta-box_actions .btn, .hero__actions .btn, .hero_actions .btn{
    width: 100%;
    max-width: 360px;
  }

  /* chips (Service limpo / prazo / capricho) centralizados */
  .badges, .hero__badges, .hero_badges{
    display: grid;
    gap: 10px;
    justify-items: center;
  }

  /* legendas da galeria: alinha bonito e não “quebra” */
  figcaption, .shot__caption{
    text-align: left;
    padding: 10px 12px;
  }

  /* WhatsApp flutuante: não estourar a tela */
  .wpp-float{
    right: 14px;
    bottom: 14px;
    max-width: calc(100vw - 28px);
  }
}

/* === FIX MOBILE: impedir layout "pro lado" (overflow) === */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* garante que cards/grids não estourem */
.section, .cta-box, .gallery, .shots, .grid, .cards {
  max-width: 100%;
}

/* se tiver algum elemento usando 100vw, isso costuma causar "lado" */
[class*="w-100vw"], [style*="100vw"] {
  width: 100% !important;
}

@media (max-width: 768px){
  .step__num{
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px auto;
    border-radius: 50%;
  }
}

/* CTA - centralizar textos e botões no CELULAR */
@media (max-width: 768px) {

  /* pega a seção do CTA do seu HTML */
  .section--cta .cta-box {
    text-align: center;
  }

  /* seu HTML usa underline aqui: cta_box__actions */
  .section--cta .cta_box__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .section--cta .cta_box__actions .btn {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    justify-content: center; /* caso seu .btn seja flex */
    text-align: center;
  }
}
/* =========================
   CTA - CENTRALIZAR NO MOBILE (FORÇADO)
   ========================= */
@media (max-width: 768px) {

  /* centraliza o texto do bloco */
  .section--cta,
  #contato {
    text-align: center !important;
  }

  /* centraliza a caixa do CTA */
  .section--cta .cta-box,
  #contato .cta-box,
  .section--cta .cta_box,
  #contato .cta_box {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  /* centraliza a área dos botões (pegando as 2 grafias) */
  .section--cta .cta_box__actions,
  #contato .cta_box__actions,
  .section--cta .cta-box__actions,
  #contato .cta-box__actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
  }

  /* centraliza os botões (a e .btn) */
  .section--cta .cta_box__actions a,
  #contato .cta_box__actions a,
  .section--cta .cta-box__actions a,
  #contato .cta-box__actions a,
  .section--cta .cta_box__actions .btn,
  #contato .cta_box__actions .btn,
  .section--cta .cta-box__actions .btn,
  #contato .cta-box__actions .btn {
    display: inline-flex !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 280px !important;
    margin: 0 auto !important;
    text-align: center !important;
  }
}
/* CTA: centralização blindada */
#contato .cta-box{
  max-width: 520px;         /* ajusta se quiser */
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Botões centralizados e consistentes */
#contato .cta-box__actions{
  width: 100%;
  display: grid;            /* grid é mais “blindado” pra center */
  gap: 12px;
  justify-items: center;    /* centro de verdade */
}

#contato .cta-box__actions a{
  width: min(280px, 100%);
  display: inline-flex;
  justify-content: center;
  text-align: center;
  margin: 0;                /* não deixa margem puxar */
}

@media (max-width: 768px){
  .benefits > *,
  .features > *{
    margin-inline: auto;
    max-width: 320px;
  }
}

/* Hero: centralizar lista (corrige padding padrão de UL) */
@media (max-width: 768px){
  #inicio ul,
  .hero ul,
  .section--hero ul{
    padding-left: 0;
    margin-left: 0;
    margin-right: 0;
    list-style: none;
  }

  #inicio ul li,
  .hero ul li,
  .section--hero ul li{
    margin-inline: auto;
    max-width: 320px;
    width: 100%;
  }
}
@media (max-width: 768px){
  #inicio ul,
  .hero ul,
  .section--hero ul{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
/* Centralizar meta do hero no mobile */
@media (max-width: 768px){
  .hero_meta{
    display: flex;
    flex-direction: column;
    align-items: center; /* ← isso resolve */
    gap: 10px;
  }

  .hero_meta .meta{
    width: 100%;
    max-width: 320px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
}
/* HERO META: centralização que não perde pra regras herdadas */
@media (max-width: 768px){

  /* pego as 2 possibilidades de nome */
  #inicio .hero_meta,
  #inicio .hero__meta,
  .hero .hero_meta,
  .hero .hero__meta{
    width: 100%;
    display: grid !important;
    justify-items: center !important;
    gap: 10px;
  }

  #inicio .hero_meta .meta,
  #inicio .hero__meta .meta,
  .hero .hero_meta .meta,
  .hero .hero__meta .meta{
    width: min(320px, 100%) !important;
    margin-inline: auto !important;
    display: flex;
    align-items: center;
    gap: 10px;
  }
}
@media (max-width: 768px){
  .hero_meta .meta{
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (max-width: 768px){
  .hero_meta{
    display: grid !important;
    justify-items: center !important;
    width: 100% !important;
  }

  .hero_meta .meta{
    width: min(320px, 100%) !important;
  }
}
@media (max-width: 768px){
  .hero__meta{
    width: 100%;
    display: grid;
    justify-items: center;
    gap: 10px;
  }

  .hero__meta .meta{
    width: min(320px, 100%);
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 10px;
  }
}

@media (max-width: 768px){
  .hero__meta .meta{
    justify-content: center;   /* centraliza conteúdo interno */
    text-align: center;
  }
}
@media (max-width: 768px){
  .section{
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

.section{
  background: var(--bg);
}

.section--alt{
  background: var(--bg-alt);
}

/* ===== FOOTER (FINAL) ===== */
.footer{
  background: #0b0b0b;
  color: #fff;
}

.footer .footer__inner{
  background: transparent;
}

.footer a{
  color: #fff;
}

/* FOOTER: corrigir container branco */
.footer,
.footer .container.footer__inner{
  background: #0b0b0b !important;
  color: #fff;
}

.footer a{
  color: #fff;
}

/* CTA FINAL - fundo escuro fixo */
.section--cta{
  background: #0b0b0b;
  color: #ffffff;
}

/* HERO - aumentar área da imagem */
.hero__photo{
  min-height: 360px;   /* desktop */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

