/* =====================================================
   FORMULÁRIO CONTACTO — BANCO SOL
===================================================== */

.bs-contact-form{
  padding: 70px 0; /* ↓ antes 100px */
  background:
    radial-gradient(circle at top left, rgba(255,210,0,.08), transparent 25%),
    linear-gradient(180deg, #0c0c0c 0%, #111111 100%);
  position: relative;
}

.bs-contact-form .container{
  max-width: 1100px; /* controla largura */
}

/* HEADER */
.bs-contact-form__header{
  max-width: 620px;
  margin-bottom: 28px; /* ↓ reduzido */
}

.bs-contact-form__header h2{
  font-size: 34px; /* ↓ menor */
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.bs-contact-form__header p{
  color: rgba(255,255,255,.65);
  font-size: 15px;
}

/* FORM */
.bs-form{
  display: grid;
  gap: 18px; /* ↓ menos espaçamento */
}

/* linhas */
.bs-form__row{
  display: grid;
  gap: 16px;
}

.bs-form__row--3{
  grid-template-columns: repeat(3, 1fr);
}

.bs-form__row--2{
  grid-template-columns: repeat(2, 1fr);
}

/* labels */
.bs-form__group label{
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.65);
}

.bs-form__group label span{
  color: #ff6b5b;
}

/* inputs */
.bs-form input,
.bs-form select,
.bs-form textarea{
  height: 52px; /* ↓ menor */
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.06);
  padding: 0 14px;
  font-size: 14px;
  color: #ffffff;
  backdrop-filter: blur(6px);
  transition: all .2s ease;
}

.bs-form textarea{
  height: 120px;
  padding: 14px;
}

/* placeholder */
.bs-form input::placeholder,
.bs-form textarea::placeholder{
  color: rgba(255,255,255,.35);
}

/* focus premium */
.bs-form input:focus,
.bs-form select:focus,
.bs-form textarea:focus{
  border-color: #ffd200;
  background: rgba(255,255,255,.08);
  box-shadow: 0 0 0 3px rgba(255,210,0,.15);
}

/* erro */
.bs-error{
  font-size: 11px;
  color: #ff6b5b;
}

/* footer */
.bs-form__footer{
  margin-top: 8px;
}

.bs-form__footer p{
  font-size: 12px;
  color: rgba(255,255,255,.5);
  margin-bottom: 14px;
}

/* botão */
.bs-btn--gold{
  height: 48px;
  padding: 0 22px;
  font-size: 13px;
  background: #ffd200;
  color: #111;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(255,210,0,.25);
}

.bs-btn--gold:hover{
  transform: translateY(-2px);
  background: #e6bf00;
}

/* alertas */
.bs-form-alert--success{
  background: rgba(50,150,80,.12);
  border: 1px solid rgba(50,150,80,.25);
  color: #9be7b3;
}

.bs-form-alert--error{
  background: rgba(255,80,60,.12);
  border: 1px solid rgba(255,80,60,.25);
  color: #ff8b7c;
}

/* RESPONSIVO */
@media (max-width: 991px){
  .bs-form__row--3{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px){
  .bs-form__row--3,
  .bs-form__row--2{
    grid-template-columns: 1fr;
  }

  .bs-contact-form__header h2{
    font-size: 26px;
  }
}