/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 04 2025 | 12:40:00 */
/* --- Estilo do Checkout do Funnel (aplicar somente dentro do container do funnel) --- */
.funnel-checkout,
.funnel-checkout * {
  box-sizing: border-box;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* Container central */
.funnel-checkout .funnel-wrapper {
  max-width: 980px;
  margin: 30px auto;
  padding: 28px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(15,23,42,0.06);
}

/* Headline */
.funnel-checkout h1,
.funnel-checkout .funnel-title {
  font-size: 24px;
  font-weight: 700;
  color: #223322; /* ajuste conforme sua paleta */
  margin-bottom: 12px;
}

/* Campos e inputs */
.funnel-checkout input[type="text"],
.funnel-checkout input[type="email"],
.funnel-checkout input[type="tel"],
.funnel-checkout select,
.funnel-checkout textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e6eef3;
  border-radius: 8px;
  background: #fafcff;
  margin-bottom: 12px;
  font-size: 14px;
}

/* Botão principal */
.funnel-checkout .btn-primary,
.funnel-checkout button[type="submit"] {
  display: inline-block;
  padding: 12px 20px;
  background: #556B2F; /* verde musgo - ajuste se quiser */
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 6px 18px rgba(85,107,47,0.12);
}

.funnel-checkout .btn-primary:hover,
.funnel-checkout button[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(85,107,47,0.16);
}

/* Cart summary (lado direito em layouts com 2 colunas) */
.funnel-checkout .cart-summary {
  background: #fbfdf7;
  border-radius: 8px;
  padding: 16px;
  border: 1px solid rgba(85,107,47,0.06);
}

/* Responsivo: empilha colunas em mobile */
@media (max-width: 900px) {
  .funnel-checkout .funnel-wrapper { padding: 18px; }
  .funnel-checkout .funnel-columns { display:block; }
  .funnel-checkout .funnel-main, .funnel-checkout .cart-summary { width:100%; }
}

