:root {
  --purple: #7248ff;
  --bg-light: #f8f9fa;
  --tag-bg: #ede7ff;
  --tag-text: #4d34c3;
}

body {
  background: var(--bg-light);
  font-family: "Inter", Arial, sans-serif;
}

.navbar {
  background-color: #f1eeff !important;
}

/* ----- UTILITÁRIOS ----- */
.w-70 {
  width: 55% !important;
}

/* ----- CONTAINERS & LAYOUT ----- */
.box {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
  margin-bottom: 24px;
  position: relative; /* necessário p/ botão share */
}

.profile-card.fixed {
  position: fixed !important;
}

.profile-card.absolute {
  position: absolute;
}

/* ----- ICONS & TAGS ----- */
.info-item .iconify {
  font-size: 22px;
  color: var(--purple);
}

.info-item span.label {
  font-weight: 600;
}

.tag {
  background: var(--bg-light);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 14px;
  margin: 4px;
  display: inline-block;
}

/* ----- SHARE ICON ----- */
.share-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, .85);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  border: 1px solid #eee;
  transition: background .2s;
}

.share-icon:hover {
  background: #fff;
}

.share-icon .iconify {
  font-size: 20px;
  color: var(--purple);
}

/* -----Preço e duração ----- */

.price-time {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  text-align: start;
}

.price-time-card {
  flex: 1;
  background: #f8f9fa;
  padding: 0.6rem 0.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
}

.price-time-card .icon-wrapper .iconify {
  font-size: 20px;
  color: #7248ff;
}

.price-time-card .label {
  color: #6c757d;
  font-size: 0.75rem;
  line-height: 1;
}

.price-time-card .value {
  font-weight: bold;
  font-size: 0.9rem;
  line-height: 1.2;
}



/* ----- CONSULT BUTTON ----- */
.btn-consultar {
  background: #00c851;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  padding: 12px 20px;
}

.btn-consultar:hover {
  background: #00b246;
  color: #fff;
}

/* ----- SOCIAL ICONS ----- */
.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4e8ff;
  color: #7e22cd;
  margin: 0 4px;
  transition: background .25s;
  text-decoration: none;
}

.social-icons a:hover {
  background: #e1e1e1;
}

/* =========================
   MOBILE CONSULT BAR (desktop = oculto)
   ========================= */
.mobile-consult {
  display: none !important;          /* sempre inicia invisível  */
}

/* -----  TODA a lógica visual do bar só vale em telas <= 991px  ----- */
@media (max-width: 991.98px) {

  /* contêiner principal */
  .mobile-consult {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 8px 16px;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    transition: transform .25s ease, opacity .25s ease;
    transform: translateY(100%);     /* começa fora da tela      */
    opacity: 0;
  }

  /* quando o JS acrescenta .show (botão do card fora de vista) */
  .mobile-consult.show {
    display: block !important;
    transform: translateY(0);
    opacity: 1;
  }

  /* ---- elementos internos ---- */

  /* foto de perfil um pouco maior */
  .mobile-consult .mini-profile img {
    width: 58px!important;
    height: 58px!important;
    object-fit: cover;
  }

  /* preço e tempo – mais friendly */
  .mobile-consult .price-duration {
    font-size: 15px;      /* ligeiramente maior       */
    font-weight: 600;     /* destaque amigável        */
    color: #333;
    line-height: 1.2;
  }
  .mobile-consult .price-duration .iconify {
    color: var(--purple);
    font-size: 20px;
  }

  /* botão “Quero me consultar” */
  .mobile-consult .btn-consultar {
    width: 100%;
    margin: 0;
    padding: 14px 24px;   /* mais alto                */
    border-radius: 18px;  /* menos arredondado        */
    font-size: 20px;
    font-weight: 500;
  }
}


/* ----- REORDER & FULL WIDTH FOR <992px ----- */
@media (max-width: 991.98px) {
  body {
    background-color: #ffffff;
  }
  
  .col-lg-8,
  .col-lg-4 {
    display: contents;
  }
  
  .row {
    flex-direction: column;
  }
  
  .profile-card {
    order: 1;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    width: 100vw !important;
    margin-top: -26px !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-left-radius: 18px !important;
    border-bottom-right-radius: 18px !important;
    background-color: #f1eeff !important;
  }
  
  .profile-inner {
    max-width: 380px;
    width: 100%;
    margin: 0 auto;
    padding: 24px;
    background-color: #f1eeff !important;
  }

  .section-bio {
    order: 2;
  }

  .section-info {
    order: 3;
    width: 100% !important;
    max-width: none !important;
  }

  .section-tags {
    order: 4;
    width: 100% !important;
  }
  .share-icon {
  position: absolute;
  top: 15px;
  right: 35px;
}

}

/* ----- PADDING FOR LARGE SCREENS (>1134px) ----- */
@media (min-width: 1134px) {
  .perfil-container, .choose-container {
    max-width: 1250px;
  }
}

/* ----- CUSTOM SHARE MODAL ----- */
.modal-content {
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.report-btn-icon {
  position: absolute;
  top: 90px;
  right: 50px;
  background-color: #4c53de;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: 0.3s;
  width: 40px;
  height: 40px;
}

@media (min-width: 900px) {
  .report-btn-icon {
    right: 80px;
  }
}

.report-btn-icon:hover {
  transform: translateY(-2px);
  color: #dde4f0;
}

.report-btn-icon i {
  color: white;
  margin-right: 10px;
}

.report-btn-text {
  display: none !important;
  color: white;
  font-weight: bold;
  margin-left: 8px;
}

.share-btn {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  color: #ffffff !important;
  font-weight: bold;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.share-btn:hover {
  transform: translateY(-2px);
  color: #dde4f0;
}

.whatsapp {
  background: linear-gradient(45deg, #25D366, #128C7E);
}

.facebook {
  background: linear-gradient(45deg, #1877F2, #1258B1);
}

.telegram {
  background: linear-gradient(45deg, #0088CC, #006699);
}

.twitter {
  background: linear-gradient(45deg, #000000, #333333);
}

.threads {
  background: linear-gradient(45deg, #000000, #3d3d3d);
}

.email {
  background: linear-gradient(45deg, #D44638, #A03026);
}

.copy {
  background: linear-gradient(45deg, #6c757d, #495057);
}


/* ===== CARD ===== */
    .advisor-card {
      border: 2px solid var(--purple);
      border-radius: 1rem;
      background: #fff;
    }
    .advisor-card .card-body {
      padding: 1.75rem 1.5rem;
    }

    /* ===== TEXTO ===== */
    .advisor-card h2 {
      font-size: clamp(1.35rem, 1.2vw + 1rem, 1.9rem);
      font-weight: 700;
      margin-bottom: 1rem;
    }
    .advisor-card p.lead {
      font-size: 1.05rem;
      margin-bottom: .9rem;
    }
    .advisor-card p.lead span {
      color: var(--purple);
      font-weight: 600;
      text-decoration: none;
    }
    .advisor-card ul {
      padding-left: 1.25rem;
      margin: .8rem 0 1rem 0;
    }
    .advisor-card ul li {
      margin-bottom: .4rem;
      font-size: 1rem;
    }
    .advisor-card .note {
      color: #767676;
      font-size: .95rem;
      margin-bottom: 0;
    }

    /* ===== VISUAL ===== */
    .visual-wrapper {
      position: relative;
      text-align: center;
    }
    .visual-wrapper img.main-img {
      width: 280px;
      max-width: 100%;
    }

    /* ===== MEDIA QUERIES ===== */
    @media (min-width: 992px) {
      .advisor-card .card-body {
        padding: 2.5rem 3rem;
      }
      .visual-wrapper img.main-img {
        width: 300px;
      }
    }