/* =========================================================
   BARBERBOT - LANDING PAGE / PÁGINA DE VENDAS
   Paleta azul tom sobre tom com alternância rigorosa por seção.
   ========================================================= */

:root {
  --bb-light-bg: #eaf7ff;
  --bb-light-bg-2: #dff2ff;
  --bb-light-card: #ffffff;
  --bb-dark-1: #020b1e;
  --bb-dark-2: #06264f;
  --bb-dark-3: #0b3f7c;
  --bb-blue: #1565c0;
  --bb-blue-2: #1e88e5;
  --bb-cyan: #5ecfff;
  --bb-text-dark: #061525;
  --bb-text-muted: #435b73;
  --bb-text-light: #eaf7ff;
  --bb-white: #ffffff;
  --bb-border-light: rgba(21, 101, 192, 0.16);
  --bb-border-dark: rgba(174, 225, 255, 0.24);
  --bb-shadow-light: 0 18px 50px rgba(21, 101, 192, 0.12);
  --bb-shadow-dark: 0 18px 50px rgba(0, 11, 34, 0.35);
  --bb-radius-xl: 28px;
  --bb-radius-lg: 22px;
  --bb-radius-md: 16px;
  --bb-transition: all 0.28s ease;
}

html {
  scroll-behavior: smooth;
}

.barberbot-page {
  background: var(--bb-light-bg);
  color: var(--bb-text-dark);
  overflow-x: hidden;
  font-family: "Montserrat", "Open Sans", Arial, sans-serif;
}

.barberbot-page * {
  box-sizing: border-box;
}

.bb-section {
  position: relative;
  padding: 86px 0;
  overflow: hidden;
}

.bb-section-light {
  background:
    radial-gradient(circle at 12% 8%, rgba(94, 207, 255, 0.28), transparent 34%),
    linear-gradient(180deg, var(--bb-light-bg), var(--bb-light-bg-2));
  color: var(--bb-text-dark);
}

.bb-section-dark {
  background:
    radial-gradient(circle at 12% 0%, rgba(94, 207, 255, 0.18), transparent 36%),
    radial-gradient(circle at 90% 95%, rgba(30, 136, 229, 0.20), transparent 40%),
    linear-gradient(135deg, var(--bb-dark-1), var(--bb-dark-2) 58%, var(--bb-dark-3));
  color: var(--bb-text-light);
}

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

.bb-section-kicker,
.bb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(21, 101, 192, 0.22);
  background: rgba(255, 255, 255, 0.68);
  color: #0b4e94;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.bb-section-dark .bb-section-kicker,
.bb-section-dark .bb-eyebrow {
  background: rgba(174, 225, 255, 0.10);
  border-color: rgba(174, 225, 255, 0.24);
  color: var(--bb-cyan);
}

.bb-section-head h2,
.bb-content-box h2 {
  margin: 0 0 16px;
  color: inherit;
  font-size: clamp(28px, 3.1vw, 42px);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.bb-section-head p,
.bb-content-box p {
  margin: 0;
  color: var(--bb-text-muted);
  font-size: 16px;
  line-height: 1.75;
}

.bb-section-dark .bb-section-head p,
.bb-section-dark .bb-content-box p,
.bb-section-dark .bb-feature-card p,
.bb-section-dark .bb-metric-card span {
  color: rgba(234, 247, 255, 0.82);
}

/* HERO */

.bb-hero-section {
  padding: 92px 0 86px;
}

.bb-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.92fr);
  gap: 42px;
  align-items: center;
}

.bb-hero-copy {
  min-width: 0;
}

.bb-hero-title {
  margin: 0 0 20px;
  max-width: 760px;
  color: var(--bb-text-dark);
  font-size: clamp(34px, 4.5vw, 64px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.bb-hero-text {
  max-width: 700px;
  margin: 0;
  color: var(--bb-text-muted);
  font-size: 17px;
  line-height: 1.85;
}

.bb-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

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

.bb-btn-primary {
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--bb-blue), var(--bb-blue-2));
  box-shadow: 0 16px 32px rgba(21, 101, 192, 0.28);
}

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

.bb-btn-outline {
  color: var(--bb-text-dark) !important;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(21, 101, 192, 0.18);
}

.bb-btn-outline:hover,
.bb-btn-outline:focus {
  color: #0b4e94 !important;
  transform: translateY(-2px);
  background: #ffffff;
}

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

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

.bb-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(21, 101, 192, 0.12);
  color: #1d4e80;
  font-size: 13px;
  font-weight: 800;
}

.bb-hero-points i {
  color: var(--bb-blue);
}

.bb-hero-panel {
  min-width: 0;
}

.bb-browser-card {
  width: 100%;
  min-height: 470px;
  padding: 22px;
  border-radius: var(--bb-radius-xl);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(21, 101, 192, 0.14);
  box-shadow: var(--bb-shadow-light);
}

.bb-browser-dots {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.bb-browser-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--bb-cyan);
}

.bb-dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, #083b75, #1565c0);
}

.bb-dashboard-header strong,
.bb-dashboard-header small {
  display: block;
  color: #ffffff;
}

.bb-dashboard-header strong {
  font-size: 22px;
  line-height: 1.2;
}

.bb-dashboard-header small {
  margin-top: 6px;
  opacity: 0.84;
}

.bb-dashboard-header i {
  font-size: 46px;
  opacity: 0.78;
}

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

.bb-mini-card {
  min-width: 0;
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(21, 101, 192, 0.14);
}

.bb-mini-card strong,
.bb-mini-card span {
  display: block;
}

.bb-mini-card strong {
  color: #0a3768;
  font-size: 16px;
  line-height: 1.2;
}

.bb-mini-card span {
  margin-top: 6px;
  color: var(--bb-text-muted);
  font-size: 13px;
}

.bb-dashboard-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(21, 101, 192, 0.08);
  color: #0a3768;
  font-size: 13px;
  font-weight: 800;
}

.bb-dashboard-flow i {
  color: var(--bb-blue);
}

/* CARDS */

.bb-cards-grid {
  display: grid;
  gap: 20px;
}

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

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

.bb-feature-card {
  min-width: 0;
  height: 100%;
  padding: 28px 22px;
  border-radius: var(--bb-radius-lg);
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid var(--bb-border-dark);
  box-shadow: var(--bb-shadow-dark);
  transition: var(--bb-transition);
  overflow: hidden;
  overflow-wrap: anywhere;
}

.bb-section-light .bb-feature-card,
.bb-section-light .bb-plan-card {
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--bb-border-light);
  box-shadow: var(--bb-shadow-light);
}

.bb-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(94, 207, 255, 0.55);
}

.bb-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #bdeeff;
  color: #06264f;
  font-size: 24px;
  margin-bottom: 22px;
  transition: var(--bb-transition);
}

.bb-section-dark .bb-icon {
  background: rgba(174, 225, 255, 0.95);
  color: #06264f;
}

.bb-feature-card:hover .bb-icon {
  transform: scale(1.06) rotate(-2deg);
}

.bb-feature-card h3 {
  margin: 0 0 12px;
  color: inherit;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.bb-feature-card p {
  margin: 0;
  color: var(--bb-text-muted);
  font-size: 14.5px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

/* DUAS COLUNAS */

.bb-two-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.88fr);
  gap: 38px;
  align-items: center;
}

.bb-two-columns-reverse {
  grid-template-columns: minmax(340px, 0.88fr) minmax(0, 1.02fr);
}

.bb-content-box {
  min-width: 0;
}

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

.bb-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: #1d4e80;
  font-weight: 700;
  line-height: 1.5;
}

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

/* SIMULADOR */

.bb-simulator-card,
.bb-whatsapp-card,
.bb-form-card,
.bb-location-card {
  min-width: 0;
  border-radius: var(--bb-radius-xl);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--bb-border-light);
  box-shadow: var(--bb-shadow-light);
  overflow: hidden;
}

.bb-simulator-card {
  padding: 26px;
}

.bb-simulator-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.bb-simulator-head strong {
  color: var(--bb-text-dark);
  font-size: 20px;
  font-weight: 900;
}

.bb-simulator-head span {
  padding: 8px 12px;
  border-radius: 999px;
  background: #dff2ff;
  color: #0b4e94;
  font-size: 12px;
  font-weight: 900;
}

.bb-face-preview {
  position: relative;
  height: 260px;
  border-radius: 24px;
  background: linear-gradient(180deg, #eaf7ff, #ffffff);
  border: 1px solid rgba(21, 101, 192, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bb-face-circle {
  width: 132px;
  height: 156px;
  border-radius: 48% 48% 46% 46%;
  background: #f3c8a8;
  border: 5px solid rgba(6, 21, 37, 0.08);
  z-index: 1;
}

.bb-hair-shape {
  position: absolute;
  top: 59px;
  width: 156px;
  height: 70px;
  border-radius: 62px 62px 25px 25px;
  background: #15181c;
  z-index: 2;
  transition: var(--bb-transition);
}

.bb-hair-shape.is-degrade {
  height: 60px;
  border-radius: 80px 80px 18px 18px;
  background: linear-gradient(180deg, #0a0c10, #2e3542);
}

.bb-hair-shape.is-executivo {
  width: 144px;
  height: 82px;
  border-radius: 46px 72px 26px 34px;
  transform: translateX(6px) rotate(-3deg);
}

.bb-face-lines {
  position: absolute;
  top: 150px;
  width: 74px;
  height: 26px;
  border-top: 4px solid rgba(6, 21, 37, 0.36);
  border-radius: 50%;
  z-index: 3;
}

.bb-simulator-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.bb-sim-option {
  min-height: 44px;
  border: 1px solid rgba(21, 101, 192, 0.18);
  border-radius: 999px;
  background: #ffffff;
  color: #0a3768;
  font-weight: 900;
  transition: var(--bb-transition);
}

.bb-sim-option.is-active,
.bb-sim-option:hover,
.bb-sim-option:focus {
  background: var(--bb-blue);
  color: #ffffff;
}

/* MÉTRICAS */

.bb-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.bb-metric-card {
  min-width: 0;
  padding: 24px;
  border-radius: var(--bb-radius-lg);
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid var(--bb-border-dark);
  text-align: center;
  overflow-wrap: anywhere;
}

.bb-metric-card strong {
  display: block;
  color: #ffffff;
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
  margin-bottom: 8px;
}

.bb-metric-card span {
  display: block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* WHATSAPP */

.bb-whatsapp-card {
  padding: 28px;
}

.bb-phone-frame {
  max-width: 360px;
  margin: 0 auto;
  min-height: 470px;
  border-radius: 34px;
  padding: 22px 16px;
  background: linear-gradient(180deg, #05213f, #0b4e94);
  box-shadow: 0 20px 42px rgba(6, 21, 37, 0.22);
}

.bb-phone-top {
  width: 88px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  margin: 0 auto 32px;
}

.bb-chat-bubble {
  max-width: 86%;
  padding: 12px 14px;
  border-radius: 18px;
  margin-bottom: 13px;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.bb-chat-left {
  background: #ffffff;
  color: #0a3768;
  border-bottom-left-radius: 4px;
}

.bb-chat-right {
  margin-left: auto;
  background: #bdeeff;
  color: #06345f;
  border-bottom-right-radius: 4px;
}

.bb-inline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.bb-inline-grid div {
  min-width: 0;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid rgba(21, 101, 192, 0.12);
  overflow-wrap: anywhere;
}

.bb-inline-grid i,
.bb-inline-grid strong,
.bb-inline-grid span {
  display: block;
}

.bb-inline-grid i {
  color: var(--bb-blue);
  font-size: 22px;
  margin-bottom: 10px;
}

.bb-inline-grid strong {
  color: var(--bb-text-dark);
  font-size: 15px;
  margin-bottom: 6px;
}

.bb-inline-grid span {
  color: var(--bb-text-muted);
  font-size: 13px;
  line-height: 1.55;
}

.bb-plan-card.is-featured {
  border-color: rgba(94, 207, 255, 0.72);
  box-shadow: 0 24px 58px rgba(94, 207, 255, 0.18);
}

/* CONTATO */

.bb-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(380px, 1.04fr);
  gap: 26px;
  align-items: stretch;
}

.bb-form-card,
.bb-location-card {
  padding: 28px;
}

.bb-form-card h3,
.bb-location-card h3 {
  margin: 0 0 8px;
  color: var(--bb-text-dark);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 950;
}

.bb-form-card p,
.bb-location-card p {
  margin: 0 0 20px;
  color: var(--bb-text-muted);
  line-height: 1.65;
}

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

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

.bb-form-card .form-control {
  width: 100%;
  min-height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(21, 101, 192, 0.18);
  background: #ffffff;
  color: var(--bb-text-dark);
  box-shadow: none;
  padding: 12px 14px;
  outline: none;
}

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

.bb-form-card .form-control::placeholder {
  color: #6e8295;
}

.bb-form-card .form-control:focus {
  border-color: var(--bb-blue-2);
  box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.12);
}

.bb-form-card .jc-form-privacy {
  background: #f7fbff;
  border-color: rgba(21, 101, 192, 0.16);
  color: #26394e;
}

.bb-form-card .jc-form-privacy a {
  color: #0b4e94;
}

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

.bb-location-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 17px;
  background: linear-gradient(135deg, var(--bb-blue), var(--bb-blue-2));
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.bb-map-frame {
  width: 100%;
  height: 320px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(21, 101, 192, 0.18);
  box-shadow: 0 14px 32px rgba(21, 101, 192, 0.12);
  background: #dff2ff;
}

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

.bb-location-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.bb-location-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #1d4e80;
  font-weight: 800;
  line-height: 1.45;
  margin-bottom: 11px;
  overflow-wrap: anywhere;
}

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

.validation {
  color: #c62828;
  font-size: 12px;
  margin-top: 4px;
}

#sendmessage,
#errormessage {
  margin-bottom: 12px;
}

/* FOOTER GLOBAL DO SISTEMA COMO PRÓXIMA SEÇÃO ESCURA */
.barberbot-page + #bottom-widget,
.barberbot-page ~ #bottom-widget,
body:has(.barberbot-page) #bottom-widget,
body:has(.barberbot-page) footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(94, 207, 255, 0.16), transparent 36%),
    linear-gradient(135deg, var(--bb-dark-1), var(--bb-dark-2) 58%, var(--bb-dark-3)) !important;
  color: var(--bb-text-light) !important;
}

body:has(.barberbot-page) #bottom-widget *,
body:has(.barberbot-page) footer * {
  color: var(--bb-text-light) !important;
}

/* RESPONSIVO */

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

  .bb-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  }
}

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

  .bb-hero-grid,
  .bb-two-columns,
  .bb-two-columns-reverse,
  .bb-contact-grid {
    grid-template-columns: 1fr;
  }

  .bb-hero-panel,
  .bb-whatsapp-card {
    order: 2;
  }

  .bb-content-box {
    order: 1;
  }

  .bb-browser-card {
    min-height: auto;
  }

  .bb-grid-3,
  .bb-metrics-row {
    grid-template-columns: 1fr;
  }
}

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

  .bb-hero-section {
    padding-top: 62px;
  }

  .bb-hero-title {
    font-size: 34px;
  }

  .bb-hero-actions,
  .bb-hero-actions .bb-btn {
    width: 100%;
  }

  .bb-hero-points {
    display: none;
  }

  .bb-dashboard-grid,
  .bb-grid-4,
  .bb-inline-grid,
  .bb-form-row,
  .bb-simulator-options {
    grid-template-columns: 1fr;
  }

  .bb-dashboard-flow {
    display: none;
  }

  .bb-feature-card,
  .bb-form-card,
  .bb-location-card,
  .bb-simulator-card,
  .bb-whatsapp-card {
    padding: 22px 18px;
  }

  .bb-phone-frame {
    min-height: 400px;
  }

  .bb-map-frame {
    height: 270px;
  }
}

/* AJUSTE FINAL - RODAPÉ / ÍCONES DAS REDES SOCIAIS
   Corrige o contraste dos ícones do rodapé sem alterar a lógica do rodape.php. */
body:has(.barberbot-page) footer .social-network,
body:has(.barberbot-page) #bottom-widget .social-network {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  margin: 10px 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

body:has(.barberbot-page) footer .social-network li,
body:has(.barberbot-page) #bottom-widget .social-network li {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
}

body:has(.barberbot-page) footer .social-network a,
body:has(.barberbot-page) #bottom-widget .social-network a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 54px !important;
  height: 54px !important;
  border-radius: 50% !important;
  background: #eaf7ff !important;
  border: 1px solid rgba(94, 207, 255, 0.35) !important;
  box-shadow: 0 12px 28px rgba(2, 18, 42, 0.28) !important;
  text-decoration: none !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease !important;
}

body:has(.barberbot-page) footer .social-network a:hover,
body:has(.barberbot-page) #bottom-widget .social-network a:hover {
  transform: translateY(-3px) !important;
  background: #ffffff !important;
  box-shadow: 0 18px 34px rgba(94, 207, 255, 0.34) !important;
  text-decoration: none !important;
}

body:has(.barberbot-page) footer .social-network .fa-stack,
body:has(.barberbot-page) #bottom-widget .social-network .fa-stack {
  width: 54px !important;
  height: 54px !important;
  line-height: 54px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

body:has(.barberbot-page) footer .social-network .fa-circle.fa-stack-2x,
body:has(.barberbot-page) #bottom-widget .social-network .fa-circle.fa-stack-2x {
  color: transparent !important;
}

body:has(.barberbot-page) footer .social-network .fa-stack-1x,
body:has(.barberbot-page) footer .social-network .fa-stack-1x.fa-inverse,
body:has(.barberbot-page) #bottom-widget .social-network .fa-stack-1x,
body:has(.barberbot-page) #bottom-widget .social-network .fa-stack-1x.fa-inverse {
  color: #06345f !important;
  font-size: 22px !important;
  line-height: 1 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

body:has(.barberbot-page) footer .social-network a:hover .fa-stack-1x,
body:has(.barberbot-page) footer .social-network a:hover .fa-stack-1x.fa-inverse,
body:has(.barberbot-page) #bottom-widget .social-network a:hover .fa-stack-1x,
body:has(.barberbot-page) #bottom-widget .social-network a:hover .fa-stack-1x.fa-inverse {
  color: #0b6fd3 !important;
}
