:root {
  --imob-light: #eaf6ff;
  --imob-light-2: #d9edff;
  --imob-light-card: #ffffff;
  --imob-dark: #03152b;
  --imob-dark-2: #0a356a;
  --imob-blue: #156fd6;
  --imob-blue-2: #38a5ff;
  --imob-cyan: #7dd3fc;
  --imob-text: #07172d;
  --imob-muted: #475569;
  --imob-white: #ffffff;
  --imob-border: rgba(21, 111, 214, 0.18);
  --imob-dark-border: rgba(125, 211, 252, 0.28);
  --imob-shadow: 0 18px 45px rgba(15, 54, 95, 0.16);
  --imob-dark-shadow: 0 22px 60px rgba(2, 10, 28, 0.35);
  --imob-radius-xl: 28px;
  --imob-radius-lg: 22px;
  --imob-radius-md: 16px;
  --imob-transition: all 0.25s ease;
}

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

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

.imob-section {
  position: relative;
  padding: 92px 0;
  overflow: hidden;
}

.imob-section-light {
  background: linear-gradient(180deg, var(--imob-light) 0%, var(--imob-light-2) 100%);
  color: var(--imob-text);
}

.imob-section-dark {
  background:
    radial-gradient(circle at 12% 10%, rgba(56, 165, 255, 0.24), transparent 40%),
    radial-gradient(circle at 90% 100%, rgba(125, 211, 252, 0.18), transparent 42%),
    linear-gradient(135deg, var(--imob-dark) 0%, #072957 54%, var(--imob-dark-2) 100%);
  color: var(--imob-white);
}

.imob-page .container {
  position: relative;
  z-index: 2;
}

.imob-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(21, 111, 214, 0.10);
  border: 1px solid rgba(21, 111, 214, 0.18);
  color: #0f59b8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.imob-section-dark .imob-kicker {
  background: rgba(125, 211, 252, 0.12);
  border-color: rgba(125, 211, 252, 0.30);
  color: #bdeaff;
}

.imob-hero-grid,
.imob-two-col,
.imob-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.imob-hero-title {
  max-width: 780px;
  margin: 22px 0 18px;
  color: var(--imob-text);
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.05em;
  overflow-wrap: anywhere;
}

.imob-hero-subtitle,
.imob-section-text,
.imob-section-header p {
  max-width: 760px;
  color: var(--imob-muted);
  font-size: 17px;
  line-height: 1.75;
  margin: 0;
  overflow-wrap: anywhere;
}

.imob-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

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

.imob-btn-primary {
  background: linear-gradient(135deg, var(--imob-blue), #1d8dff);
  color: #ffffff !important;
  box-shadow: 0 16px 34px rgba(21, 111, 214, 0.28);
}

.imob-btn-primary:hover,
.imob-btn-primary:focus {
  transform: translateY(-2px);
  color: #ffffff !important;
  box-shadow: 0 20px 42px rgba(21, 111, 214, 0.36);
}

.imob-btn-outline {
  background: rgba(255, 255, 255, 0.72);
  color: #0b376f !important;
  border-color: rgba(21, 111, 214, 0.24);
}

.imob-section-dark .imob-btn-outline {
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.24);
}

.imob-btn-outline:hover,
.imob-btn-outline:focus {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.95);
  color: #08214a !important;
}

.imob-btn-block {
  width: 100%;
}

.imob-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.imob-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid rgba(21, 111, 214, 0.14);
  color: #173762;
  font-size: 13px;
  font-weight: 800;
}

.imob-hero-panel,
.imob-calculator-card,
.imob-message-card,
.imob-form-card,
.imob-location-card,
.imob-filter-panel,
.imob-checklist-box {
  border-radius: var(--imob-radius-xl);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(21, 111, 214, 0.16);
  box-shadow: var(--imob-shadow);
  overflow: hidden;
}

.imob-hero-panel {
  padding: 20px;
  min-width: 0;
}

.imob-window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 18px 18px 0 0;
  background: #f8fcff;
  color: #173762;
  border: 1px solid rgba(21, 111, 214, 0.12);
  border-bottom: 0;
}

.imob-window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7dd3fc;
}

.imob-window-bar strong {
  margin-left: 8px;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.imob-dashboard-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border-radius: 0 0 18px 18px;
  border: 1px solid rgba(21, 111, 214, 0.12);
  background: #ffffff;
}

.imob-dashboard-card {
  min-width: 0;
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f4fbff, #e8f5ff);
  border: 1px solid rgba(21, 111, 214, 0.12);
}

.imob-dashboard-card.imob-wide {
  grid-column: span 2;
}

.imob-dashboard-card small,
.imob-dashboard-card em {
  display: block;
  color: #52708f;
  font-style: normal;
  font-size: 12px;
  overflow-wrap: anywhere;
}

.imob-dashboard-card strong {
  display: block;
  color: #08214a;
  font-size: 24px;
  font-weight: 900;
  margin: 5px 0;
  overflow-wrap: anywhere;
}

.imob-progress,
.imob-vistoria-progress {
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(21, 111, 214, 0.13);
}

.imob-progress span,
.imob-vistoria-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--imob-blue), var(--imob-blue-2));
  transition: width 0.3s ease;
}

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

.imob-section-header h2,
.imob-section-title {
  color: inherit;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -0.04em;
  margin: 16px 0 14px;
  overflow-wrap: anywhere;
}

.imob-section-dark .imob-section-header p,
.imob-section-dark .imob-section-text,
.imob-section-dark .imob-feature-card p,
.imob-section-dark .imob-doc-card p,
.imob-section-dark .imob-report-card p,
.imob-section-dark .imob-filter-panel p,
.imob-section-dark .imob-checklist-box p {
  color: rgba(226, 241, 255, 0.84);
}

.imob-feature-grid,
.imob-doc-grid,
.imob-report-grid,
.imob-automation-grid {
  display: grid;
  gap: 18px;
}

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

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

.imob-feature-card,
.imob-doc-card,
.imob-report-card,
.imob-property-card {
  min-width: 0;
  height: 100%;
  border-radius: var(--imob-radius-lg);
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: normal;
}

.imob-feature-card {
  display: block;
  width: 100%;
  min-height: 230px;
  padding: 26px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.07));
  border: 1px solid var(--imob-dark-border);
  box-shadow: var(--imob-dark-shadow);
  color: #ffffff;
  text-align: left;
  cursor: pointer;
  transition: var(--imob-transition);
}

.imob-feature-card:hover,
.imob-feature-card:focus {
  transform: translateY(-5px);
  border-color: rgba(125, 211, 252, 0.58);
  outline: none;
}

.imob-icon,
.imob-doc-card i {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #d7f1ff;
  color: #062b5c;
  font-size: 23px;
  margin-bottom: 18px;
}

.imob-feature-card h3,
.imob-doc-card h3,
.imob-report-card strong,
.imob-property-card strong,
.imob-filter-panel h3,
.imob-checklist-box h3,
.imob-calculator-card h3,
.imob-message-card h3,
.imob-form-card h3,
.imob-location-info h3 {
  color: inherit;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 900;
  margin: 0 0 10px;
  overflow-wrap: anywhere;
}

.imob-feature-card p,
.imob-doc-card p,
.imob-report-card p,
.imob-property-card span,
.imob-filter-panel p,
.imob-checklist-box p,
.imob-calculator-card p,
.imob-message-card p,
.imob-form-card p,
.imob-location-info p {
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
  overflow-wrap: anywhere;
}

.imob-filter-panel {
  margin-top: 28px;
  padding: 26px;
  background: rgba(255,255,255,0.10);
  border-color: var(--imob-dark-border);
  color: #ffffff;
}

.imob-filter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.imob-filter-actions button {
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  border-radius: 999px;
  padding: 9px 16px;
  font-weight: 800;
  transition: var(--imob-transition);
}

.imob-filter-actions button.active,
.imob-filter-actions button:hover {
  background: #d7f1ff;
  color: #062b5c;
}

.imob-property-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.imob-property-card {
  padding: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
}

.imob-property-card.is-hidden {
  display: none;
}

.imob-check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.imob-check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  color: #173762;
  font-weight: 700;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.imob-check-list i {
  color: var(--imob-blue);
  margin-top: 3px;
}

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

.imob-calculator-card label,
.imob-message-card label {
  display: block;
  margin: 14px 0 7px;
  color: #173762;
  font-size: 13px;
  font-weight: 900;
}

.imob-calculator-card input,
.imob-message-card select,
.imob-form-card .form-control {
  width: 100%;
  min-height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(21, 111, 214, 0.20);
  background: #f8fcff;
  color: #08214a;
  padding: 12px 14px;
  box-shadow: none;
  outline: none;
}

.imob-form-card textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

.imob-calculator-card input:focus,
.imob-message-card select:focus,
.imob-form-card .form-control:focus {
  border-color: var(--imob-blue);
  box-shadow: 0 0 0 3px rgba(21, 111, 214, 0.10);
}

.imob-total-box {
  margin-top: 20px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--imob-blue), var(--imob-blue-2));
  color: #ffffff;
}

.imob-total-box small,
.imob-total-box strong {
  display: block;
}

.imob-total-box strong {
  font-size: 28px;
  font-weight: 950;
  margin-top: 5px;
  overflow-wrap: anywhere;
}

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

.imob-doc-card {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.07));
  border: 1px solid var(--imob-dark-border);
  color: #ffffff;
}

.imob-checklist-box {
  margin-top: 28px;
  padding: 28px;
  background: rgba(255,255,255,0.10);
  border-color: var(--imob-dark-border);
  color: #ffffff;
}

.imob-vistoria-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0;
}

.imob-vistoria-list label {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  min-width: 0;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.imob-automation-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.imob-automation-grid div {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(21, 111, 214, 0.14);
  color: #173762;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.imob-automation-grid i {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #d7f1ff;
  color: #062b5c;
}

.imob-phone-preview {
  margin-top: 18px;
  border-radius: 22px;
  background: #102236;
  color: #eaf6ff;
  overflow: hidden;
  box-shadow: 0 16px 35px rgba(15, 54, 95, 0.20);
}

.imob-phone-head {
  padding: 13px 16px;
  background: #0c7b50;
  color: #ffffff;
  font-weight: 900;
}

.imob-phone-preview p {
  padding: 22px;
  min-height: 120px;
  color: #eaf6ff;
}

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

.imob-report-card {
  padding: 26px 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.07));
  border: 1px solid var(--imob-dark-border);
  color: #ffffff;
  text-align: center;
}

.imob-report-card span {
  display: block;
  color: #bdeaff;
  font-size: 44px;
  font-weight: 950;
  line-height: 1;
  margin-bottom: 12px;
}

.imob-bars {
  margin-top: 30px;
  padding: 28px;
  border-radius: var(--imob-radius-xl);
  background: rgba(255,255,255,0.10);
  border: 1px solid var(--imob-dark-border);
}

.imob-bars div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
}

.imob-bars span {
  font-weight: 900;
  color: #ffffff;
  overflow-wrap: anywhere;
}

.imob-bars i {
  display: block;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7dd3fc, #38a5ff);
}

.imob-contact-grid {
  align-items: stretch;
}

.imob-form-card,
.imob-location-card {
  height: 100%;
}

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

.imob-form-card .form-group {
  margin-bottom: 14px;
}

.imob-form-card .jc-form-privacy {
  background: #f8fcff;
  color: #173762;
  border-color: rgba(21, 111, 214, 0.16);
}

.imob-form-card .jc-form-privacy a {
  color: #0f59b8;
}

.imob-location-card {
  padding: 0;
}

.imob-map-frame {
  height: 310px;
  width: 100%;
  overflow: hidden;
  background: #d9edff;
}

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

.imob-location-info {
  padding: 28px;
}

.imob-location-info p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: #173762;
  font-weight: 800;
}

.imob-location-info i {
  color: var(--imob-blue);
  margin-top: 3px;
}

.imob-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.imob-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.imob-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 10, 28, 0.76);
  backdrop-filter: blur(5px);
}

.imob-modal-box {
  position: relative;
  width: min(640px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  border-radius: 26px;
  padding: 34px;
  background: #ffffff;
  color: #08214a;
  box-shadow: 0 25px 70px rgba(2, 10, 28, 0.42);
}

.imob-modal-box h2 {
  color: #08214a;
  font-size: 30px;
  font-weight: 950;
  line-height: 1.15;
  margin: 18px 0 14px;
  overflow-wrap: anywhere;
}

.imob-modal-box p {
  color: #475569;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 22px;
  overflow-wrap: anywhere;
}

.imob-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #eaf6ff;
  color: #08214a;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

#bottom-widget,
footer {
  background: linear-gradient(135deg, var(--imob-dark) 0%, #072957 55%, var(--imob-dark-2) 100%) !important;
  color: #ffffff !important;
}

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

footer .social-network a,
#bottom-widget .social-network a {
  color: #ffffff !important;
}

footer .fa,
#bottom-widget .fa {
  color: #ffffff !important;
}

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

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

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

  .imob-hero-grid,
  .imob-two-col,
  .imob-contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .imob-hero-title {
    font-size: 38px;
  }

  .imob-doc-grid {
    grid-template-columns: 1fr;
  }

  .imob-bars div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

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

  .imob-hero-title {
    font-size: 31px;
  }

  .imob-hero-subtitle,
  .imob-section-text,
  .imob-section-header p {
    font-size: 15px;
  }

  .imob-feature-grid,
  .imob-property-grid,
  .imob-report-grid,
  .imob-automation-grid,
  .imob-vistoria-list,
  .imob-form-row {
    grid-template-columns: 1fr;
  }

  .imob-dashboard-preview {
    grid-template-columns: 1fr;
  }

  .imob-dashboard-card.imob-wide {
    grid-column: auto;
  }

  .imob-btn {
    width: 100%;
  }

  .imob-calculator-card,
  .imob-message-card,
  .imob-form-card,
  .imob-location-info,
  .imob-filter-panel,
  .imob-checklist-box,
  .imob-bars,
  .imob-modal-box {
    padding: 22px;
  }

  .imob-map-frame {
    height: 260px;
  }
}

/* ==========================================================
   AJUSTE FINAL - FORMULÁRIO E ÍCONES VISÍVEIS
   Corrige textos apagados nos campos, aviso LGPD e ícones do rodapé.
   Não altera PHP nem lógica do sistema.
   ========================================================== */
.imob-form-card,
.imob-location-card {
  color: #08214a !important;
}

.imob-form-card h1,
.imob-form-card h2,
.imob-form-card h3,
.imob-form-card h4,
.imob-form-card h5,
.imob-form-card h6,
.imob-form-card p,
.imob-form-card label,
.imob-form-card span,
.imob-form-card small,
.imob-form-card div,
.imob-location-card h1,
.imob-location-card h2,
.imob-location-card h3,
.imob-location-card h4,
.imob-location-card h5,
.imob-location-card h6,
.imob-location-card p,
.imob-location-card label,
.imob-location-card span,
.imob-location-card small,
.imob-location-card div {
  color: #08214a !important;
}

.imob-form-card .form-control,
.imob-form-card input.form-control,
.imob-form-card textarea.form-control,
.imob-form-card select.form-control {
  width: 100% !important;
  min-height: 52px !important;
  background: #ffffff !important;
  color: #07172d !important;
  -webkit-text-fill-color: #07172d !important;
  border: 1px solid rgba(21, 111, 214, 0.30) !important;
  border-radius: 14px !important;
  padding: 13px 16px !important;
  box-shadow: none !important;
  opacity: 1 !important;
}

.imob-form-card textarea.form-control {
  min-height: 132px !important;
  line-height: 1.55 !important;
}

.imob-form-card .form-control::placeholder,
.imob-form-card input.form-control::placeholder,
.imob-form-card textarea.form-control::placeholder {
  color: #64748b !important;
  -webkit-text-fill-color: #64748b !important;
  opacity: 1 !important;
}

.imob-form-card .form-control:focus,
.imob-form-card input.form-control:focus,
.imob-form-card textarea.form-control:focus,
.imob-form-card select.form-control:focus {
  background: #ffffff !important;
  color: #07172d !important;
  -webkit-text-fill-color: #07172d !important;
  border-color: #156fd6 !important;
  box-shadow: 0 0 0 3px rgba(21, 111, 214, 0.16) !important;
  outline: none !important;
}

.imob-form-card .jc-form-privacy {
  display: block !important;
  width: 100% !important;
  margin: 10px 0 16px !important;
  padding: 12px 14px !important;
  border-radius: 12px !important;
  background: #eef7ff !important;
  border: 1px solid rgba(21, 111, 214, 0.22) !important;
  color: #173762 !important;
  line-height: 1.55 !important;
  opacity: 1 !important;
}

.imob-form-card .jc-form-privacy label,
.imob-form-card .jc-form-privacy span,
.imob-form-card .jc-form-privacy p {
  color: #173762 !important;
  opacity: 1 !important;
}

.imob-form-card .jc-form-privacy input[type="checkbox"] {
  accent-color: #156fd6 !important;
}

.imob-form-card .jc-form-privacy a {
  color: #0f59b8 !important;
  font-weight: 800 !important;
  text-decoration: underline !important;
}

.imob-form-card .validation,
.imob-form-card .error,
.imob-form-card .help-block {
  color: #b91c1c !important;
  opacity: 1 !important;
}

.imob-form-card .imob-btn,
.imob-form-card .imob-btn i,
.imob-location-card .imob-btn,
.imob-location-card .imob-btn i {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.imob-icon,
.imob-doc-card i,
.imob-automation-grid i,
.imob-location-info i,
.imob-check-list i,
.imob-btn i,
.imob-kicker i,
.imob-hero-points i,
.imob-phone-head i {
  opacity: 1 !important;
  visibility: visible !important;
}

#bottom-widget .social-network,
footer .social-network {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
}

#bottom-widget .social-network a,
footer .social-network a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

#bottom-widget .social-network .fa-stack,
footer .social-network .fa-stack {
  width: 46px !important;
  height: 46px !important;
  line-height: 46px !important;
  margin: 0 4px !important;
}

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

#bottom-widget .social-network .fa-stack-1x.fa-inverse,
footer .social-network .fa-stack-1x.fa-inverse,
#bottom-widget .social-network .fa:not(.fa-circle),
footer .social-network .fa:not(.fa-circle) {
  color: #072957 !important;
  opacity: 1 !important;
}

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

#bottom-widget .social-network a:hover .fa-stack-1x.fa-inverse,
footer .social-network a:hover .fa-stack-1x.fa-inverse,
#bottom-widget .social-network a:hover .fa:not(.fa-circle),
footer .social-network a:hover .fa:not(.fa-circle) {
  color: #ffffff !important;
}
