<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Footer */
.footer {
    background-color: #922124; /* Cor padrÃ£o do site */
    padding: 20px 0;
    position: relative;
}

/* Linha azul no topo */
.linha-azul {
    width: 100%;
    height: 5px;
    background-color: #0056b3; /* Azul padrÃ£o */
    position: absolute;
    top: 0;
    left: 0;
}

/* ConteÃºdo do footer */
.footer-content {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    padding-top: 10px;
}

/* Logo */
.footer-logo img {
    width: 150px;
}

/* Texto geral */
.footer-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.footer-content p {
    font-size: 14px;
    margin: 3px 0;
}

/* Contato */
.footer-contato p {
    font-size: 14px;
    font-weight: bold;
}

/* Redes sociais */
.footer-social {
    text-align: center;
}

.footer-social .social-icons {
    display: flex;
    align-items: center;
}

.footer-social .social-icons img {
    width: 50px; /* Ajuste conforme necessÃ¡rio */
    padding-left: 5px;
    margin-top: 5px;
}

/* Linhas divisÃ³rias */
.footer-localizacao,
.footer-contato {
    height: 80px;
    border-left: 2px solid white;
    padding-left: 20px;
}


/* RESPONSIVIDADE */

/* Telas atÃ© 1024px */
@media (max-width: 1024px) {
    .footer-content {
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
      gap: 20px;
    }
  
    .footer-localizacao,
    .footer-contato {
      border-left: none;
      padding-left: 0;
      height: auto;
    }
  
    .footer-social .social-icons {
      justify-content: flex-start;
    }
  }
  
  /* Telas atÃ© 768px */
  @media (max-width: 768px) {
    .footer-logo img {
      width: 120px;
    }
  
    .footer-content h4 {
      font-size: 14px;
    }
  
    .footer-content p,
    .footer-contato p {
      font-size: 13px;
    }
  
    .footer-social .social-icons img {
      width: 40px;
    }
  }
  
  /* Telas atÃ© 480px */
  @media (max-width: 480px) {
    .footer-content {
      gap: 15px;
    }
  
    .footer-content h4 {
      font-size: 13px;
    }
  
    .footer-content p,
    .footer-contato p {
      font-size: 12px;
    }
  
    .footer-social .social-icons {
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .footer-social .social-icons img {
      width: 35px;
      margin-top: 8px;
    }
  }
  </pre></body></html>