/* AJ Showcasy Contact Form — CSS isolado e forçado (tema não estraga) */

.ajscf-section{
  --ajscf-text: #0b0f14;
  --ajscf-muted: rgba(20,24,31,.28);
  --ajscf-sub: rgba(20,24,31,.68);
  --ajscf-line: rgba(20,24,31,.14);
  --ajscf-pill: rgba(20,24,31,.16);
  --ajscf-pill-hover: rgba(20,24,31,.26);
  --ajscf-shadow: rgba(16,24,40,.08);
  --ajscf-btn: #0b0f14;

  width:100%;
  box-sizing:border-box;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}

.ajscf-section.ajscf-bg-white{
  background:#fff !important;
  padding:70px 16px !important;
}

.ajscf-section.ajscf-bg-transparent{
  background: transparent !important;
  padding: 0 !important;
}

.ajscf-inner{
  margin:0 auto;
  max-width: 1100px;
  padding: 70px 16px;
  box-sizing:border-box;
}

.ajscf-wide .ajscf-inner{ max-width: 980px; }
.ajscf-narrow .ajscf-inner{ max-width: 1100px; }

/* HERO */
.ajscf-hero{ margin:0 0 40px 0; }

.ajscf-h1{
  margin:0 !important;
  font-family: "Inter Tight", Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  font-size: 96px !important;
  line-height: 0.92 !important;
  letter-spacing: -3px !important;
  font-weight: 900 !important;
  color: var(--ajscf-text) !important;
  text-align:left !important;
}

.ajscf-muted{ color: var(--ajscf-muted) !important; margin-right: 12px; }
.ajscf-strong{ color: var(--ajscf-text) !important; }

.ajscf-sub{
  margin: 18px 0 0 0 !important;
  font-family: "Inter Tight", Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  font-size: 22px !important;
  line-height: 1.55 !important;
  color: var(--ajscf-sub) !important;
  text-align:left !important;
}

/* FORM */
.ajscf-form{
  font-family: "Inter Tight", Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
}

.ajscf-row{ margin-bottom: 22px; }

.ajscf-label{
  display:block;
  font-size: 12px !important;
  font-weight: 800 !important;
  color: rgba(20,24,31,.70) !important;
  margin: 0 0 10px 0 !important;
}

.ajscf-input,
.ajscf-textarea{
  width: 100% !important;
  box-sizing: border-box !important;
  border: none !important;
  border-bottom: 1px solid var(--ajscf-line) !important;
  background: transparent !important;
  padding: 12px 0 !important;
  font-size: 14px !important;
  color: var(--ajscf-text) !important;
  outline: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.ajscf-textarea{ min-height: 90px; resize: vertical; }

.ajscf-input::placeholder,
.ajscf-textarea::placeholder{ color: rgba(20,24,31,.35) !important; }

.ajscf-input:focus,
.ajscf-textarea:focus{
  border-bottom-color: rgba(20,24,31,.85) !important;
  box-shadow: 0 6px 0 -5px rgba(20,24,31,.35) !important;
}

/* PILLS */
.ajscf-pills{ display:flex; flex-wrap:wrap; gap: 10px; }

.ajscf-pill{ position:relative; display:inline-flex; }

.ajscf-pill input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.ajscf-pill span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--ajscf-pill) !important;
  border-radius:999px !important;
  padding: 8px 12px !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  color: rgba(20,24,31,.78) !important;
  cursor:pointer !important;
  user-select:none;
  transition: transform .12s, box-shadow .12s, border-color .12s, background .12s, color .12s;
  background: transparent !important;
}

.ajscf-pill span:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 26px var(--ajscf-shadow);
  border-color: var(--ajscf-pill-hover) !important;
}

.ajscf-pill input:checked + span{
  background: var(--ajscf-btn) !important;
  border-color: var(--ajscf-btn) !important;
  color: #fff !important;
}

/* BOTTOM */
.ajscf-bottom{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap: 14px;
  margin-top: 30px;
}

.ajscf-response{
  margin-right:auto;
  font-size:13px;
  color: rgba(20,24,31,.55);
}

.ajscf-response .ok{ color:#0a7a3f; font-weight:800; }
.ajscf-response .err{ color:#c0262d; font-weight:800; }

.ajscf-btn{
  border:none !important;
  background: var(--ajscf-btn) !important;
  color:#fff !important;
  border-radius:999px !important;
  padding: 14px 22px !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  cursor:pointer !important;
  display:inline-flex;
  align-items:center;
  gap: 10px;
  box-shadow: 0 18px 50px rgba(11,15,20,.18);
  transition: transform .12s, box-shadow .12s, opacity .12s;
}

.ajscf-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 22px 58px rgba(11,15,20,.22);
}

.ajscf-btn:active{ transform: translateY(0); opacity:.96; }

.ajscf-arrow{
  width:28px;
  height:28px;
  border-radius:999px;
  background: rgba(255,255,255,.12);
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

@media (max-width: 560px){
  .ajscf-inner{ padding: 52px 16px; }
  .ajscf-h1{ font-size: 52px !important; letter-spacing: -1.6px !important; line-height: 0.95 !important; }
  .ajscf-muted{ display:block; margin:0 0 8px 0; }
  .ajscf-sub{ font-size: 16px !important; }
  .ajscf-bottom{ flex-direction:column; align-items:stretch; }
  .ajscf-btn{ justify-content:center; }
  .ajscf-response{ margin-right:0; text-align:center; }
}


/* Mais espaço à volta do botão */
.ajscf-bottom{
  margin-top: 48px !important;   /* afasta do campo mensagem */
  padding-bottom: 40px !important; /* espaço inferior */
}

/* Botão mais “respirado” */
.ajscf-btn{
  padding: 16px 28px !important;
  font-size: 14px !important;
}

/* Dá mais presença ao botão */
.ajscf-btn:hover{
  transform: translateY(-2px);
}

/* Mobile: ainda mais espaço */
@media (max-width: 768px){
  .ajscf-bottom{
    margin-top: 56px !important;
    padding-bottom: 48px !important;
  }
}


/* Mais espaço entre "Enviar" e a seta */
.ajscf-btn{
  gap: 16px !important; /* antes estava muito pequeno */
}

/* Seta com mais respiro */
.ajscf-arrow{
  margin-left: 16px !important;
}

/* Centrar a seta opticamente dentro da bolinha */
.ajscf-arrow{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding-left: 1px; /* ajuste fino horizontal */
  padding-top: 1px;  /* ajuste fino vertical */
}

