/* Estilos personalizados para a página */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: url('../../assets/img/jardim.jpg') right bottom no-repeat;
    background-size: 100% 100%;
}
h2{
  font-size: 26px;
  text-align:center;
  padding: 10px 10px;
}
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;

}

.container p {
    flex: 0 0 100%;
}

.payment-container {
    flex: 0 0 100%;
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.payment-option {
    width: 300px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-option img {
    max-width: 100%;
    max-height: 100%;
}

/* Estilos para responsividade */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .payment-container {
        flex-direction: column;
        align-items: center;
    }

    .payment-option {
        margin: 5px 0;
    }
}
/* Estilização do botão "Comprar Agora" */
.buy-whatsapp {
  background-color: #4CAF50; /* Cor verde */
  color: #fff; /* Texto branco */
  border: none; /* Remover borda */
  padding: 15px 32px; /* Espaçamento interno (vertical horizontal) */
  text-align: center; /* Alinhar texto ao centro */
  text-decoration: none; /* Remover decoração de texto */
  display: inline-block; /* Tornar o botão um elemento em linha */
  font-size: 16px; /* Tamanho da fonte */
  font-weight: bold; /* Texto em negrito */
  cursor: pointer; /* Cursor de seta ao passar por cima */
  border-radius: 8px; /* Bordas arredondadas */
  transition: background-color 0.3s; /* Transição suave de cor ao passar o mouse */
}

/* Estilização do botão "Comprar Agora" ao passar o mouse */
.buy-whatsapp:hover {
  background-color: #45a049; /* Cor verde mais escura */
}
