:root {
  --cob-light: #eaf6ff;
  --cob-light-2: #d9edff;
  --cob-light-3: #f7fbff;
  --cob-dark: #06152b;
  --cob-dark-2: #0b2f63;
  --cob-dark-3: #0f4f9e;
  --cob-blue: #1676d2;
  --cob-blue-2: #2296f3;
  --cob-cyan: #8fe4ff;
  --cob-text: #06152b;
  --cob-muted: #405772;
  --cob-white: #ffffff;
  --cob-soft-white: rgba(255,255,255,.88);
  --cob-border-light: rgba(9, 57, 112, .14);
  --cob-border-dark: rgba(255, 255, 255, .16);
  --cob-shadow: 0 20px 50px rgba(8, 35, 75, .16);
  --cob-shadow-dark: 0 22px 60px rgba(0, 0, 0, .24);
  --cob-radius-lg: 28px;
  --cob-radius-md: 20px;
  --cob-radius-sm: 14px;
  --cob-transition: all .25s ease;
}

html {
  scroll-behavior: smooth;
}

.cobranca-page {
  font-family: 'Montserrat', 'Open Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--cob-light);
  color: var(--cob-text);
  overflow-x: hidden;
}

.cobranca-page *,
.cobranca-page *::before,
.cobranca-page *::after {
  box-sizing: border-box;
}

.cob-section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

.cob-section-light {
  background: var(--cob-light);
  color: var(--cob-text);
}

.cob-section-dark {
  background:
    radial-gradient(circle at 12% 0%, rgba(143, 228, 255, .18), transparent 42%),
    radial-gradient(circle at 86% 96%, rgba(34, 150, 243, .22), transparent 44%),
    linear-gradient(135deg, var(--cob-dark) 0%, var(--cob-dark-2) 58%, var(--cob-dark-3) 100%);
  color: var(--cob-white);
}

.cob-section-light h1,
.cob-section-light h2,
.cob-section-light h3,
.cob-section-light h4,
.cob-section-light p,
.cob-section-light li,
.cob-section-light span {
  color: var(--cob-text);
}

.cob-section-dark h1,
.cob-section-dark h2,
.cob-section-dark h3,
.cob-section-dark h4 {
  color: var(--cob-white) !important;
}

.cob-section-dark p,
.cob-section-dark li,
.cob-section-dark span,
.cob-section-dark small {
  color: var(--cob-soft-white) !important;
}

.cob-hero-section {
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 126px 0 96px;
  background:
    radial-gradient(circle at 0% 0%, rgba(34, 150, 243, .10), transparent 38%),
    linear-gradient(180deg, #eef9ff 0%, var(--cob-light) 100%);
}

.cob-hero-row {
  row-gap: 38px;
}

.cob-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(22, 118, 210, .22);
  background: rgba(22, 118, 210, .08);
  color: #0c4f96 !important;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.cob-section-dark .cob-kicker {
  background: rgba(143, 228, 255, .14);
  border-color: rgba(143, 228, 255, .30);
  color: var(--cob-cyan) !important;
}

.cob-hero-title {
  max-width: 660px;
  color: var(--cob-text) !important;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -.055em;
  margin: 0 0 20px;
}

.cob-hero-subtitle {
  max-width: 620px;
  color: var(--cob-muted) !important;
  font-size: 18px;
  line-height: 1.75;
  margin: 0;
}

.cob-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.cob-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  font-size: 14px;
  text-decoration: none !important;
  cursor: pointer;
  transition: var(--cob-transition);
  line-height: 1;
}

.cob-btn-primary {
  background: linear-gradient(135deg, var(--cob-blue), var(--cob-blue-2));
  color: var(--cob-white) !important;
  box-shadow: 0 14px 34px rgba(22, 118, 210, .30);
}

.cob-btn-primary:hover,
.cob-btn-primary:focus {
  transform: translateY(-2px);
  color: var(--cob-white) !important;
  box-shadow: 0 20px 44px rgba(22, 118, 210, .42);
}

.cob-btn-outline {
  background: rgba(255,255,255,.72);
  border-color: rgba(22, 118, 210, .18);
  color: #0c4f96 !important;
}

.cob-section-dark .cob-btn-outline {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.22);
  color: var(--cob-white) !important;
}

.cob-btn-outline:hover,
.cob-btn-outline:focus {
  transform: translateY(-2px);
  background: rgba(34, 150, 243, .12);
  color: #0c4f96 !important;
}

.cob-section-dark .cob-btn-outline:hover,
.cob-section-dark .cob-btn-outline:focus {
  background: rgba(143, 228, 255, .16);
  color: var(--cob-white) !important;
}

.cob-btn-full {
  width: 100%;
}

.cob-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 610px;
  margin-top: 32px;
}

.cob-hero-metrics div {
  padding: 18px 16px;
  border-radius: var(--cob-radius-sm);
  background: rgba(255,255,255,.72);
  border: 1px solid var(--cob-border-light);
  box-shadow: 0 12px 30px rgba(8, 35, 75, .08);
}

.cob-hero-metrics strong {
  display: block;
  color: #0b4b93;
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 7px;
}

.cob-hero-metrics span {
  display: block;
  color: var(--cob-muted) !important;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.cob-hero-panel,
.cob-calculator-card,
.cob-pix-card,
.cob-form-card,
.cob-location-card,
.cob-app-mockup {
  background: rgba(255,255,255,.74);
  border: 1px solid var(--cob-border-light);
  border-radius: var(--cob-radius-lg);
  box-shadow: var(--cob-shadow);
}

.cob-hero-panel {
  padding: 22px;
  min-height: 430px;
}

.cob-browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px 20px;
}

.cob-browser-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #87d9ff;
}

.cob-browser-bar small {
  margin-left: 8px;
  color: var(--cob-muted);
  font-size: 12px;
  font-weight: 800;
}

.cob-dashboard-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px;
  border-radius: 20px;
  background: linear-gradient(135deg, #09295b, #1769c6);
  color: var(--cob-white);
}

.cob-dashboard-card small,
.cob-dashboard-card strong {
  display: block;
  color: var(--cob-white) !important;
}

.cob-dashboard-card small {
  opacity: .78;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.cob-dashboard-card strong {
  font-size: 30px;
  font-weight: 900;
}

.cob-dashboard-card i {
  font-size: 44px;
  color: #9ee8ff;
}

.cob-dashboard-grid,
.cob-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.cob-dashboard-grid div,
.cob-mini-grid div {
  padding: 18px;
  border-radius: 16px;
  background: var(--cob-light-3);
  border: 1px solid var(--cob-border-light);
}

.cob-dashboard-grid strong,
.cob-mini-grid strong {
  display: block;
  color: #0d529a;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 6px;
}

.cob-dashboard-grid span,
.cob-mini-grid span {
  color: var(--cob-muted) !important;
  font-size: 13px;
  font-weight: 700;
}

.cob-flow-line {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
  padding: 14px;
  border-radius: 999px;
  background: rgba(22, 118, 210, .08);
  color: #0b4b93;
  font-size: 12px;
  font-weight: 900;
}

.cob-flow-line i,
.cob-flow-line span {
  color: #0b4b93 !important;
}

.cob-section-head {
  max-width: 850px;
  margin: 0 auto 46px;
  text-align: center;
}

.cob-section-head-left {
  margin-left: 0;
  text-align: left;
}

.cob-section-head h2 {
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: -.04em;
  margin: 0 0 15px;
}

.cob-section-head p {
  font-size: 17px;
  line-height: 1.75;
  margin: 0;
  color: var(--cob-muted);
}

.cob-grid {
  display: grid;
  gap: 22px;
}

.cob-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cob-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cob-card {
  height: 100%;
  min-width: 0;
  padding: 28px 24px;
  border-radius: var(--cob-radius-md);
  transition: var(--cob-transition);
  overflow-wrap: anywhere;
  word-break: normal;
}

.cob-section-light .cob-card {
  background: rgba(255,255,255,.72);
  border: 1px solid var(--cob-border-light);
  box-shadow: var(--cob-shadow);
}

.cob-section-dark .cob-card {
  background: rgba(255,255,255,.10);
  border: 1px solid var(--cob-border-dark);
  box-shadow: var(--cob-shadow-dark);
  backdrop-filter: blur(6px);
}

.cob-card:hover {
  transform: translateY(-6px);
}

.cob-card-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #c9efff;
  color: #074b8f;
  font-size: 23px;
  margin-bottom: 20px;
}

.cob-section-dark .cob-card-icon {
  background: rgba(143, 228, 255, .18);
  color: var(--cob-cyan);
}

.cob-card h3 {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
  margin: 0 0 10px;
}

.cob-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

.cob-check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.cob-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--cob-muted);
  line-height: 1.6;
  font-weight: 700;
}

.cob-check-list i {
  min-width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cob-blue);
  color: var(--cob-white);
  font-size: 11px;
  margin-top: 2px;
}

.cob-calculator-card,
.cob-form-card,
.cob-location-card {
  padding: 30px;
}

.cob-calculator-head h3,
.cob-form-card h3,
.cob-location-card h3 {
  color: var(--cob-text) !important;
  font-size: 24px;
  font-weight: 900;
  margin: 0 0 6px;
}

.cob-calculator-head p,
.cob-form-card p,
.cob-location-card p {
  color: var(--cob-muted) !important;
  margin: 0 0 22px;
}

.cob-form-row {
  margin-bottom: 16px;
}

.cob-form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.cob-form-row label {
  display: block;
  color: #12365f;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 7px;
}

.cob-form-row input,
.cob-form-row select,
.cob-form-card .form-control {
  width: 100%;
  min-height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(9, 57, 112, .20);
  background: #ffffff;
  color: var(--cob-text) !important;
  padding: 12px 15px;
  outline: none;
  box-shadow: none;
}

.cob-form-card textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.cob-form-card .form-control::placeholder {
  color: #637996 !important;
  opacity: 1;
}

.cob-form-row input:focus,
.cob-form-row select:focus,
.cob-form-card .form-control:focus {
  border-color: var(--cob-blue-2);
  box-shadow: 0 0 0 3px rgba(34, 150, 243, .14);
}

.cob-result-box {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, #09295b, #1769c6);
}

.cob-result-box span,
.cob-result-box strong,
.cob-result-box small {
  display: block;
  color: var(--cob-white) !important;
}

.cob-result-box span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .10em;
  opacity: .82;
}

.cob-result-box strong {
  font-size: 30px;
  font-weight: 900;
  margin: 8px 0;
}

.cob-result-box small {
  opacity: .82;
}

.cob-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.cob-timeline-step {
  min-width: 0;
  padding: 24px 22px;
  border-radius: var(--cob-radius-md);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  cursor: pointer;
  transition: var(--cob-transition);
  overflow-wrap: anywhere;
}

.cob-timeline-step:hover,
.cob-timeline-step.active {
  transform: translateY(-5px);
  background: rgba(143, 228, 255, .16);
  border-color: rgba(143, 228, 255, .38);
}

.cob-timeline-step span {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(143, 228, 255, .18);
  color: var(--cob-cyan) !important;
  font-weight: 900;
  margin-bottom: 16px;
}

.cob-timeline-step strong {
  display: block;
  color: var(--cob-white);
  font-size: 18px;
  margin-bottom: 8px;
}

.cob-message-preview {
  max-width: 420px;
  margin: 32px auto 0;
}

.cob-phone-frame {
  padding: 18px;
  border-radius: 30px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.20);
}

.cob-phone-top {
  width: 72px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.28);
  margin: 0 auto 24px;
}

.cob-whatsapp-bubble {
  padding: 18px;
  border-radius: 18px 18px 4px 18px;
  background: #25d366;
  color: #ffffff !important;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
}

.cob-pix-card {
  padding: 28px;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.cob-pix-qr {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  width: 180px;
  height: 180px;
  padding: 14px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--cob-border-light);
}

.cob-pix-qr span {
  display: block;
  border-radius: 5px;
  background: #0b4b93;
}

.cob-pix-qr span:nth-child(2n) {
  background: #9bdfff;
}

.cob-pix-info small {
  display: block;
  color: #0b4b93;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

.cob-pix-info strong {
  display: block;
  max-width: 100%;
  margin-bottom: 16px;
  padding: 12px;
  border-radius: 12px;
  background: var(--cob-light-3);
  color: var(--cob-text);
  font-size: 12px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.cob-pix-info p {
  margin: 12px 0 0;
  color: var(--cob-muted) !important;
  font-weight: 700;
}

.cob-app-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 16px;
}

.cob-app-tabs button {
  border: 1px solid rgba(9, 57, 112, .18);
  background: #ffffff;
  color: #0b4b93;
  border-radius: 999px;
  min-height: 42px;
  padding: 10px 18px;
  font-weight: 900;
  cursor: pointer;
}

.cob-app-tabs button.active {
  background: var(--cob-blue);
  color: #ffffff;
  border-color: var(--cob-blue);
}

.cob-app-content {
  display: none;
}

.cob-app-content.active {
  display: block;
}

.cob-app-mockup {
  max-width: 360px;
  padding: 18px;
  margin: 0 auto;
  border-radius: 36px;
}

.cob-app-screen {
  min-height: 520px;
  border-radius: 28px;
  padding: 22px;
  background: linear-gradient(180deg, #09295b, #1769c6);
  color: #ffffff;
}

.cob-app-header,
.cob-app-balance span,
.cob-app-balance strong,
.cob-app-list span,
.cob-app-list strong {
  color: #ffffff !important;
}

.cob-app-header {
  font-weight: 900;
  margin-bottom: 28px;
}

.cob-app-balance {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.14);
  margin-bottom: 20px;
}

.cob-app-balance span {
  display: block;
  opacity: .82;
  margin-bottom: 8px;
}

.cob-app-balance strong {
  display: block;
  font-size: 30px;
  font-weight: 900;
}

.cob-app-list {
  display: grid;
  gap: 12px;
}

.cob-app-list div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.12);
}

.cob-contact-grid {
  row-gap: 28px;
}

.cob-section-dark .cob-form-card,
.cob-section-dark .cob-location-card {
  background: rgba(255,255,255,.96);
  border-color: rgba(255,255,255,.22);
}

.cob-form-card .form-group {
  margin-bottom: 15px;
}

.cob-form-card .jc-form-privacy {
  background: #f4f9ff !important;
  border: 1px solid rgba(9, 57, 112, .16) !important;
  color: #12365f !important;
  border-radius: 14px !important;
  margin: 8px 0 16px !important;
}

.cob-form-card .jc-form-privacy label,
.cob-form-card .jc-form-privacy a {
  color: #12365f !important;
}

.cob-form-card .jc-form-privacy a {
  font-weight: 900 !important;
}

.cob-location-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.cob-map-frame {
  width: 100%;
  height: 270px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--cob-border-light);
  background: var(--cob-light-2);
}

.cob-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.cob-location-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 12px;
}

.cob-location-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--cob-text) !important;
  font-weight: 800;
  line-height: 1.45;
}

.cob-location-list i {
  min-width: 18px;
  color: var(--cob-blue);
  margin-top: 3px;
}

#bottom-widget,
footer {
  background:
    radial-gradient(circle at 15% 0%, rgba(143, 228, 255, .12), transparent 42%),
    linear-gradient(135deg, #06152b 0%, #0b2f63 100%) !important;
  color: #ffffff !important;
}

#bottom-widget h1,
#bottom-widget h2,
#bottom-widget h3,
#bottom-widget h4,
#bottom-widget h5,
#bottom-widget h6,
#bottom-widget p,
#bottom-widget a,
#bottom-widget li,
footer,
footer p,
footer a,
footer li,
footer span,
footer strong {
  color: #ffffff !important;
}

.social-network .fa-circle.fa-stack-2x,
footer .fa-circle.fa-stack-2x,
#bottom-widget .fa-circle.fa-stack-2x {
  color: #eaf6ff !important;
  opacity: 1 !important;
}

.social-network .fa-stack-1x.fa-inverse,
footer .fa-stack-1x.fa-inverse,
#bottom-widget .fa-stack-1x.fa-inverse {
  color: #0b2f63 !important;
  opacity: 1 !important;
}

.social-network a:hover .fa-circle.fa-stack-2x,
footer a:hover .fa-circle.fa-stack-2x,
#bottom-widget a:hover .fa-circle.fa-stack-2x {
  color: #8fe4ff !important;
}

@media (max-width: 1199px) {
  .cob-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .cob-section {
    padding: 78px 0;
  }

  .cob-hero-section {
    min-height: auto;
    padding-top: 104px;
  }

  .cob-section-head-left {
    text-align: center;
    margin-left: auto;
  }

  .cob-hero-title,
  .cob-hero-subtitle,
  .cob-hero-copy {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .cob-hero-actions {
    justify-content: center;
  }

  .cob-timeline,
  .cob-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .cob-section {
    padding: 62px 0;
  }

  .cob-hero-section {
    padding-top: 86px;
  }

  .cob-hero-metrics,
  .cob-grid-4,
  .cob-grid-3,
  .cob-timeline,
  .cob-dashboard-grid,
  .cob-mini-grid,
  .cob-form-grid-2,
  .cob-pix-card {
    grid-template-columns: 1fr;
  }

  .cob-pix-card {
    justify-items: center;
    text-align: center;
  }

  .cob-pix-info {
    width: 100%;
  }

  .cob-card,
  .cob-calculator-card,
  .cob-form-card,
  .cob-location-card {
    padding: 22px;
  }

  .cob-btn {
    width: 100%;
  }

  .cob-section-head h2 {
    font-size: 28px;
  }

  .cob-section-head p,
  .cob-hero-subtitle {
    font-size: 15px;
  }

  .cob-app-screen {
    min-height: 430px;
  }
}
