/* ============================================================
   BANCÁRIOS DF — Sistema de Design
   Paleta da Logomarca:
   Navy  #003087  |  Amarelo #F5A800  |  Magenta #E5007E
   Cyan  #00AEEF  |  Preto   #1a1a2e  |  DF-Red  #E20613
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:      #003087;
  --navy-dark: #001f5b;
  --navy-light:#0056b3;
  --yellow:    #F5A800;
  --yellow-dk: #d48f00;
  --magenta:   #E5007E;
  --cyan:      #00AEEF;
  --cyan-dark: #008abf;
  --red-df:    #E20613;
  --black:     #1a1a2e;
  --white:     #ffffff;
  --gray-100:  #f8f9fc;
  --gray-200:  #eef0f5;
  --gray-400:  #ced4da;
  --gray-600:  #6c757d;
  --gray-800:  #343a40;
  --shadow-sm: 0 2px 8px rgba(0,48,135,.08);
  --shadow-md: 0 8px 30px rgba(0,48,135,.14);
  --shadow-lg: 0 20px 60px rgba(0,48,135,.18);
  --radius:    12px;
  --radius-sm: 8px;
  --transition:.22s ease;
}

/* ── Reset base ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--gray-100);
  color: var(--black);
  min-height: 100vh;
  line-height: 1.6;
}

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--cyan); }

/* ── Page background ───────────────────────────────────────── */
.bs-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #001f5b 0%, #003087 40%, #005bb5 70%, #00AEEF 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 30px 16px 60px;
}

/* ── Accent stripe (top of card) ───────────────────────────── */
.bs-stripe {
  height: 5px;
  background: linear-gradient(90deg, var(--yellow) 0%, var(--magenta) 50%, var(--cyan) 100%);
  border-radius: var(--radius) var(--radius) 0 0;
}

/* ── Card ──────────────────────────────────────────────────── */
.bs-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 520px;
  overflow: hidden;
  animation: cardIn .4s ease;
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bs-card-body { padding: 36px 40px 40px; }

/* ── Logo header ───────────────────────────────────────────── */
.bs-logo-wrap {
  text-align: center;
  padding: 28px 24px 20px;
  border-bottom: 1px solid var(--gray-200);
}
.bs-logo-wrap img {
  max-width: 240px;
  height: auto;
}

/* ── Card title ────────────────────────────────────────────── */
.bs-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 24px;
  text-align: center;
}

.bs-subtitle {
  font-size: .875rem;
  color: var(--gray-600);
  text-align: center;
  margin-top: -16px;
  margin-bottom: 24px;
}

/* ── Form group ────────────────────────────────────────────── */
.bs-form-group {
  margin-bottom: 18px;
  position: relative;
}

.bs-label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px;
}

/* ── Inputs ────────────────────────────────────────────────── */
.bs-input,
.bs-select {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1.5px solid var(--gray-400);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .9375rem;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
  appearance: none;
}

.bs-input:focus,
.bs-select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0,48,135,.12);
  background: #fff;
}

.bs-input[readonly],
.bs-input:disabled {
  background: var(--gray-100);
  color: var(--gray-600);
  cursor: not-allowed;
}

.bs-input::placeholder { color: var(--gray-400); }

/* ── Custom select ─────────────────────────────────────────── */
.bs-select-wrap {
  position: relative;
}
.bs-select-wrap::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--navy);
  pointer-events: none;
}
.bs-select { padding-right: 40px; cursor: pointer; }

/* ── Radio/Checkbox group ──────────────────────────────────── */
.bs-option-group { display: flex; flex-direction: column; gap: 10px; }

.bs-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-400);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  font-size: .9375rem;
}
.bs-option:hover {
  border-color: var(--navy);
  background: rgba(0,48,135,.04);
}
.bs-option input[type="radio"] { accent-color: var(--navy); width: 18px; height: 18px; flex-shrink: 0; }
.bs-option.selected {
  border-color: var(--navy);
  background: rgba(0,48,135,.06);
}

/* ── Highlight value box ───────────────────────────────────── */
.bs-value-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.bs-value-item { text-align: center; }
.bs-value-label { font-size: .68rem; font-weight: 600; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .06em; }
.bs-value-amount { font-size: 1.25rem; font-weight: 700; color: var(--yellow); margin-top: 2px; }
.bs-value-item.total { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.15); padding-top: 12px; }
.bs-value-item.total .bs-value-amount { font-size: 1.5rem; color: #fff; }

/* ── Info row ──────────────────────────────────────────────── */
.bs-info-row {
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
}
.bs-info-row .bs-label { margin-bottom: 2px; }
.bs-info-value {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--black);
}

/* ── Divider ───────────────────────────────────────────────── */
.bs-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 24px 0;
}

/* ── Buttons ───────────────────────────────────────────────── */
.bs-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 52px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .9375rem;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  margin-bottom: 10px;
}

.bs-btn-primary {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,48,135,.3);
}
.bs-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,48,135,.4);
  color: var(--white);
}
.bs-btn-primary:active { transform: translateY(0); }

.bs-btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.bs-btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
}

.bs-btn-accent {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--magenta) 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(229,0,126,.25);
}
.bs-btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(229,0,126,.4);
  color: var(--white);
}

.bs-btn svg, .bs-btn i { font-size: 1rem; }

/* ── Alert boxes ───────────────────────────────────────────── */
.bs-alert {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: .9rem;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.bs-alert-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 1px; }
.bs-alert-warning {
  background: #fff8e1;
  border-left: 4px solid var(--yellow);
  color: #7a5000;
}
.bs-alert-info {
  background: #e8f4fd;
  border-left: 4px solid var(--cyan);
  color: #004f70;
}
.bs-alert-success {
  background: #e8f8ee;
  border-left: 4px solid #28a745;
  color: #1a5c2e;
}
.bs-alert-error {
  background: #fde8eb;
  border-left: 4px solid var(--red-df);
  color: #7a0011;
}

/* ── Status pages (message pages) ─────────────────────────── */
.bs-status-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}
.bs-status-icon.warning { background: #fff3cd; color: var(--yellow-dk); }
.bs-status-icon.info    { background: #d1ecf1; color: var(--cyan-dark); }
.bs-status-icon.success { background: #d4edda; color: #155724; }
.bs-status-icon.error   { background: #f8d7da; color: var(--red-df); }

.bs-status-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 10px;
}
.bs-status-msg {
  font-size: .9375rem;
  color: var(--gray-600);
  text-align: center;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ── Checkbox ──────────────────────────────────────────────── */
.bs-check-wrap {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .875rem;
  color: var(--gray-800);
  line-height: 1.5;
  margin-bottom: 18px;
}
.bs-check-wrap input[type="checkbox"] {
  accent-color: var(--navy);
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}
.bs-check-wrap a { color: var(--navy); font-weight: 600; text-decoration: underline; }

/* ── reCAPTCHA wrapper ─────────────────────────────────────── */
.bs-captcha { display: flex; justify-content: center; margin: 18px 0; }

/* ── Footer note ───────────────────────────────────────────── */
.bs-footer-note {
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  margin-top: 20px;
  padding: 0 8px;
}
.bs-footer-note a { color: rgba(255,255,255,.85); text-decoration: underline; }

/* ── Campaign banner ───────────────────────────────────────── */
.bs-campaign {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 16px;
  border: 2px solid var(--yellow);
}
.bs-campaign img { width: 100%; display: block; }
.bs-campaign-label {
  background: var(--yellow);
  color: var(--navy-dark);
  font-size: .78rem;
  font-weight: 700;
  text-align: center;
  padding: 6px 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ── Badge ─────────────────────────────────────────────────── */
.bs-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.bs-badge-navy { background: var(--navy); color: white; }
.bs-badge-yellow { background: var(--yellow); color: var(--navy-dark); }
.bs-badge-cyan { background: var(--cyan); color: white; }

/* ── Deposit info ──────────────────────────────────────────── */
.bs-bank-card {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 16px;
  background: var(--gray-100);
  margin-bottom: 8px;
}
.bs-bank-name {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 4px;
}
.bs-bank-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* ── WhatsApp float ────────────────────────────────────────── */
.bs-zap { position: fixed; bottom: 24px; right: 24px; z-index: 9999; }
.bs-zap-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.bs-zap-btn:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(37,211,102,.5); }
.bs-zap-btn img, .bs-zap-btn svg { width: 30px; height: 30px; }

.bs-zap-popup {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 290px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,.18);
  overflow: hidden;
  display: none;
  animation: zapIn .25s ease;
}
@keyframes zapIn { from { opacity:0; transform:translateY(10px);} to { opacity:1; transform:translateY(0);} }
.bs-zap-popup.open { display: block; }
.bs-zap-head { background: #075E54; color: white; padding: 12px 16px; }
.bs-zap-head strong { display: block; font-size: .9rem; }
.bs-zap-head span { font-size: .78rem; opacity: .85; }
.bs-zap-body { padding: 14px; background: #e5ddd5; }
.bs-zap-msg { background: white; border-radius: 8px; padding: 10px 12px; font-size: .875rem; margin-bottom: 10px; box-shadow: 0 1px 3px rgba(0,0,0,.1); }
.bs-zap-link {
  display: block;
  background: #25D366;
  color: white;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .875rem;
}
.bs-zap-link:hover { background: #20b85b; color: white; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 576px) {
  .bs-page { padding: 16px 12px 40px; }
  .bs-card-body { padding: 24px 20px 28px; }
  .bs-logo-wrap { padding: 20px 16px 16px; }
  .bs-logo-wrap img { max-width: 180px; }
  .bs-value-box { grid-template-columns: 1fr; }
  .bs-value-item.total { grid-column: 1; }
  .bs-bank-info { grid-template-columns: 1fr; }
  .bs-zap { bottom: 16px; right: 16px; }
}

/* ── Legacy override (compat with old classes) ─────────────── */
.container-contact100 {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg,#001f5b 0%,#003087 40%,#005bb5 70%,#00AEEF 100%);
  padding: 30px 16px 60px;
}
.wrap-contact100 {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 520px;
  overflow: hidden;
}
.wrap-contact100::before {
  content: '';
  display: block;
  height: 5px;
  background: linear-gradient(90deg,var(--yellow) 0%,var(--magenta) 50%,var(--cyan) 100%);
}
.contact100-form-title {
  display: block;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 24px 24px 4px;
}
.contact100-form-title img { max-width: 220px; height: auto; }
.contact100-form {
  padding: 20px 32px 32px;
}
.label-input100 {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 5px;
  margin-top: 14px;
}
.input100 {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1.5px solid var(--gray-400);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .9375rem;
  color: var(--black);
  background: white;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.input100:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0,48,135,.12);
}
.input100[readonly] { background: var(--gray-100); color: var(--gray-600); }
.wrap-input100 { margin-bottom: 14px; }
.bg1 { }
.rs1-wrap-input100 { }
select.basic, select.basic.simple {
  width: 100%;
  height: 48px;
  padding: 0 40px 0 16px;
  border: 1.5px solid var(--gray-400);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .9375rem;
  color: var(--black);
  background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23003087' d='M6 8L0 0h12z'/%3E%3C/svg%3E") no-repeat right 16px center;
  appearance: none;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  margin-top: 4px;
}
select.basic:focus, select.basic.simple:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0,48,135,.12);
}
.container-contact100-form-btn {
  padding: 16px 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact100-form-btn {
  width: 100%;
  height: 52px;
  border: none;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white;
  font-family: inherit;
  font-size: .9375rem;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(0,48,135,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}
.contact100-form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,48,135,.4);
  color: white;
}
input.contact100-form-btn {
  padding: 0;
  display: block;
  line-height: 52px;
}
.validate-form { padding: 20px 32px 8px; }
.checkmark { accent-color: var(--navy); }
h2, h3, h4, h5, h6 { color: var(--navy); font-weight: 700; }
h2 { font-size: 1.3rem; margin-bottom: 10px; }
h3 { font-size: 1.1rem; margin-bottom: 8px; }

@media (max-width: 576px) {
  .container-contact100 { padding: 14px 10px 40px; }
  .wrap-contact100 { border-radius: var(--radius-sm); }
  .validate-form, .contact100-form { padding: 14px 18px 8px; }
  .container-contact100-form-btn { padding: 10px 18px 20px; }
  .contact100-form-title { padding: 18px 16px 4px; font-size: .9rem; }
  .contact100-form-title img { max-width: 170px; }
}
