@charset "utf-8";

/* =========================
   RODAPÉ
   ========================= */
.site-footer{
  background: #000;
  color: #fff;
  padding: 24px 0 30px;
}
.footer-div{
  height: 1px;
  border: 0;
  background: #1a1a1a;
  margin: 18px 0;
}

/* Head: logo + redes */
.footer-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-logo img{
  max-height: 40px;
  width: auto;
}

/* Redes sociais – 50x50px */
.footer-social{
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-btn{
  width: 50px;
  height: 50px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50px 50px; /* troque os caminhos abaixo */
  filter: none;
  transition: transform .12s ease, opacity .2s ease;
}
.social-btn:hover,
.social-btn:focus-visible{ transform: translateY(-2px); opacity: .9; }
.social-btn.ig{ background-image: url(../imagens/menu_rodape/bt_instagram.svg); }
.social-btn.fb{ background-image: url(../imagens/menu_rodape/bt_facebook.svg); }
.social-btn.gp{ background-image: url(../imagens/menu_rodape/bt_google.svg); }
.social-btn.yt{ background-image: url(../imagens/menu_rodape/bt_youtube.svg); }
.social-btn.wt{ background-image: url(../imagens/menu_rodape/bt_whatsapp.svg); }

/* Grid de colunas */
.footer-grid{
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 24px 32px;
}
.footer-col h3{
  font-size: 1.1rem;
  font-weight: 700;
  color: #00DC00; /* título verde como no print */
  margin: 2px 0 10px;
}
.footer-col ul{ list-style: none; margin: 0; padding: 0; }
.footer-col li{
  position: relative;
  padding-left: 0;
  line-height: 1.8;
}
.footer-col li a{
  color: #fff;
  text-decoration: none;
  transition: color .2s ease;
}
.footer-col li::before{
  content: "•";
  display: inline-block;
  margin-right: 8px;
  color: #fff;
  opacity: .9;
}
.footer-col li a:hover,
.footer-col li a:focus-visible{ color: #00DC00; }

/* Base do rodapé */
.footer-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-logos{
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-logos img{
  height: 28px; /* ajuste se quiser maior/menor */
  width: auto;
}

/* Responsivo */
@media (max-width: 1100px){
  .footer-grid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 760px){
  .footer-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-logo img{ max-height: 36px; }
}
@media (max-width: 520px){
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-head{ flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-bottom{ flex-direction: column; align-items: flex-start; }
}


