/* ======== ESTILO GERAL ======== */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #f4fdf4;
  color: #1a1a1a;
}

/* ======== CONTAINER PRINCIPAL ======== */

/* ======== CONDIÇÕES DE PAGAMENTO ======== */
/* ======== CONDIÇÕES DE PAGAMENTO (CENTRALIZADO) ======== */
.pagamento-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: clamp(420px, 70vh, 780px);
  text-align: center;
  padding: 64px 16px 32px;
  /*background-color: #f4fdf4;*/
  box-sizing: border-box;
  padding: 20px;
}

.pagamento-conteudo {
  display: flex;
  flex-direction: column; /* imagem em cima, texto embaixo */
  flex-direction: row;
  align-items: center;
  justify-content: center;
  justify-content: space-around;
  max-width: 700px;
  text-align: left;
  gap: 40px;
  /*margin: 0 auto;*/
}

/* IMAGEM */
.logo-pagamento {
  width: clamp(140px, 22vw, 220px);
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  object-fit: contain;
  margin-bottom: 30px;
}

/* TEXTO */
.texto-pagamento {
  max-width: 600px;
}

.texto-pagamento h2 {
  font-size: 1.8rem;
  color: #1a4d2e;
  margin-bottom: 20px;
  font-weight: 600;
}

.texto-pagamento p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 8px 0;
  color: #1a1a1a;
}

/* ======== RESPONSIVO ======== */
@media (max-width: 768px) {
  .pagamento-container {
    padding: 40px 10px;
    height: auto;
  }

  .logo-pagamento {
    width: 160px;
    margin-bottom: 20px;
  }

  .texto-pagamento h2 {
    font-size: 1.5rem;
  }

  .texto-pagamento p {
    font-size: 0.95rem;
  }
}

