/* fundo geral */
.subrodape {
    background: #1E3A8A;
    padding: 40px 20px;
    text-align: center;
}

/* container */
.loja {
    max-width: 900px;
    margin: 0 auto;
}

/* H1 grande branco */
.loja h1 {
    font-family: 'Montserrat', sans-serif;
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

/* H3 pequeno + linha */
.loja h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 300;
    color: #ddd;
  
    padding-bottom: 16px;
    border-bottom: 1px solid #fff;
    margin-bottom: 20px;
}

/* icones */
.grupo-social {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 20px;
}

/* base dos ícones */
.social {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* TODOS os ícones */
.social1 img {
    width: 30px;
    height: 30px;
}

/* SOMENTE FACEBOOK com círculo */
.social.facebook {

    width: 38px;
    height: 38px;
    border-radius: 50%;
}

/* outros sem fundo */
.social:not(.facebook) {
    background: transparent;
    width: auto;
    height: auto;
}

.site-footer {
  background: #141034;
  padding: 15px 0;
}

.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 300;
  font-size: 1.2rem; /* Levemente menor */
  text-align: center;
  padding: 0 10px;
}

