/* Estilo geral do footer */
footer {
    background-color: #681C7B; /* Cor de fundo do footer */
    color: #fff; /* Cor do texto */
    padding: 40px 20px;
    font-family: 'Source Sans 3', sans-serif;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-col {
    flex: 1;
    margin-right: 20px;
  }
  
  .footer-col h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #ffffff;
    text-align: start;
  }
  
  .footer-col ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-col ul li {
    margin: 8px 0;
  }
  
  .footer-col ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1em;
    text-align: start;
  }
  
  .footer-col ul li a:hover {
    color: #36003A; 
  }
  
  /* Estilo das imagens de formas de pagamento */
  .payment-icons {
    display: flex;
    flex-direction: column;
  }
  
  .payment-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
  }
  
  .payment-row img {
    width: 42px; /* Tamanho das imagens */
    height: auto;
  }

  .payment-row-2 {
    display: flex;
    gap: 70px;
    margin-bottom: 10px;
  }

  .payment-row-2 img{
    width: 90px; /* Tamanho das imagens */
    height: auto;
  }
  
  /* Estilo da coluna de horário de atendimento */
  .footer-col p {
    font-size: 1em;
    color: #FFFFFF;
  }
  
  /* Responsividade - Ajustar o layout em telas menores */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }

    .payment-row{
        flex-wrap: wrap;
    }

    .payment-row img {
        width: 54px;
        height: auto;
      }

    .footer-col {
      margin-right: 0;
      margin-bottom: 20px;
      text-align: start;
    }
  
    .payment-row {
      justify-content: center;
    }
  
    .payment-row img {
      margin: 0 10px;
    }

    .payment-row img:nth-child(5) {
        width: 128px;
        height: auto;
      }

      .payment-row-2 {
        justify-content: center;
      }
    
  }
  