/* =========================
   QUEM SOMOS
   ========================= */
.about{
  background: #ffffff;
  padding: 70px 20px;
}

.about-inner{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
}

.about-text h2{
  margin: 0 0 14px 0;
  font-size: 26px;
  color: #c6933a;
  font-weight: 900;
}

.about-text p{
  margin: 0;
  color: #666;
  line-height: 1.8;
  font-size: 18px;
  max-width: 620px;
  text-align: justify;
}

.about-art{
  display: flex;
  justify-content: flex-end;
}

.about-art img{
  width: min(300px, 100%);
  height: auto;
  display: block;
}

/* =========================
   RODAPÉ
   ========================= */
.footer{
  background: #2f2f2f;
  color: #fff;
  padding: 46px 20px 0;
}

.footer-inner{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
  gap: 36px;
  align-items: start;
}

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

.footer-logo{
  width: 120px;
  height: 120px;
  object-fit: contain;
  display: block;

}

.footer-slogan{
  color: rgba(255,255,255,.75);
  font-size: 13px;
  line-height: 1.4;
  max-width: 240px;
  text-align: center;
}

.footer-ttl{
  font-weight: 900;
  letter-spacing: .5px;
  margin-bottom: 14px;
  font-size: 14px;
}

.footer-link{
  display: block;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  margin: 10px 0;
  font-size: 13px;
}

.footer-link:hover{
  color: #c6933a;
}

.social{
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.social-btn{
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: #c6933a;
  text-decoration: none;
  font-weight: 900;
}

.social-btn:hover{
  filter: brightness(.95);
}
@media (max-width: 768px){
  .social{
    justify-content: center;
  }
}

.copyright{
  margin-top: 32px;
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 14px 20px;
  text-align: center;
  color: rgba(255,255,255,.70);
  font-size: 12px;
}

/* =========================
   RESPONSIVO
   ========================= */
@media (max-width: 900px){
  .about-inner{
    grid-template-columns: 1fr;
  }

  .about-art{
    justify-content: center;
  }

  .footer-inner{
    grid-template-columns: 1fr;
  }
}

/* ===== QUEM SOMOS MOBILE ===== */
@media (max-width: 720px){

  .about-text h2{
    font-size:22px;
  }

  .about-text p{
    font-size:13px;
    line-height:1.7;
  }

  .about-art img{
    width: min(260px, 40%);
  }

}

/* ===== FIX: mobile não precisa reservar 100vh pro preview ===== */
@media (max-width: 900px){
  .preview-wrap{
    min-height: auto !important;
  }
}


