.elementor-20645 .elementor-element.elementor-element-b9cda2d{width:var( --container-widget-width, 100.534% );max-width:100.534%;--container-widget-width:100.534%;--container-widget-flex-grow:0;}/* Start custom CSS for html, class: .elementor-element-b9cda2d */.entry-title,
.page-title {
  display: none !important;
}

.tele-page {
  --c1: #0d6fbf;
  --c2: #0b5ea3;
  --surface: #ffffff;
  --line: #d8e7f9;
  --text: #0b2540;
  --muted: #4b5b70;
  --radius: 14px;
  --shadow: 0 4px 16px rgba(13, 111, 191, 0.08);
  --shadow-hover: 0 6px 22px rgba(13, 111, 191, 0.12);

  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.7;
  padding: 28px;

  /* mesma largura e centrado da Teleconsultoria */
  max-width: 1080px;
  margin: 0 auto;
}

/* ===== Reset/base ===== */
.tele-page * { box-sizing: border-box; }
.tele-page p {
  color: var(--muted);
  margin: 0 0 14px 0;
  text-align: justify;
  font-size: 1.03rem;
}
.tele-page a {
  text-decoration: none;
  color: var(--c1);
  font-weight: 600;
  transition: color .2s ease;
}
.tele-page a:hover { color: var(--c2); }

/* ===== Título principal (igual Teleconsultoria) ===== */
.tele-page h1, .tele-h1 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.2rem;
  line-height: 1.3;
  position: relative;
  text-align: left;
  padding-bottom: 6px;
}
.tele-page h1::after, .tele-h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  margin-top: 8px;
  background: linear-gradient(90deg, var(--c1), var(--c2));
  border-radius: 2px;
}

/* ===== Subtítulo de seção ===== */
.tele-sub {
  background: linear-gradient(90deg, var(--c1), var(--c2));
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 10px 12px;
  border-radius: var(--radius);
  margin: 26px 0 16px;
  letter-spacing: .3px;
  box-shadow: 0 4px 12px rgba(13,111,191,.15);
}

/* ===== Blocos ===== */
.tele-box {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 20px 0;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .25s ease;
}
.tele-box:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.tele-box strong { color: var(--c1); }

/* ===== Grid de redes ===== */
.tele-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
  margin: 16px 0 28px;
  justify-items: left;
  align-items: stretch;
}

/* ===== Botões das redes ===== */
.tele-btn {
  background: #fff;
  color: var(--c1);
  border: 2px solid var(--c1);
  border-radius: 10px;
  padding: 14px 12px;
  font-weight: 700;
  font-size: .96rem;
  width: 100%;
  max-width: 250px;
  min-height: 58px;
  text-align: center;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: normal;
  word-break: break-word;
  cursor: pointer;
  transition: all .2s ease;
  box-shadow: 0 2px 6px rgba(13,111,191,.05);
}
.tele-btn:hover { background: #f3f8ff; border-color: #bcdcff; }
.tele-btn.is-active {
  background: linear-gradient(90deg, var(--c1), var(--c2));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(13,111,191,.15);
}
.tele-btn:focus-visible { outline: 3px solid #bfe0ff; outline-offset: 2px; }

/* ===== Skeleton ===== */
.tele-skel {
  height: 52px;
  border-radius: 10px;
  background: linear-gradient(90deg, #f0f6fc 25%, #e4eefc 37%, #f0f6fc 63%);
  background-size: 400% 100%;
  animation: tele-skel 1.4s ease infinite;
}
@keyframes tele-skel {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* ===== Cabeçalho do detalhe ===== */
.tele-detail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 2px solid var(--line);
  margin-bottom: 16px;
  padding-bottom: 8px;
}
.tele-detail-head h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin: 0;
  line-height: 1.3;
}
.tele-close {
  appearance: none;
  border: 0;
  background: #eef5ff;
  color: var(--c1);
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s;
}
.tele-close:hover { background: #dceeff; }

/* ===== Tags/Pills ===== */
.tele-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.tele-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #fff;
  color: var(--text);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  line-height: 1;
  box-shadow: 0 1px 0 rgba(13,111,191,.05);
  transition: all .2s ease;
}
.tele-pill:hover { background: #f3f8ff; border-color: #cfe3fb; }
.tele-pill .ico { width: 18px; height: 18px; color: var(--c1); }
.tele-pill--wide { justify-content: flex-start; min-width: 200px; padding: 10px 14px; font-size: .95rem; }
.tele-badge {
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #eef5ff;
  color: var(--c1);
  font-weight: 800;
  font-size: 11px;
  border: 1px solid var(--line);
}

/* ===== Listas ===== */
.tele-list { list-style: none; padding-left: 0; margin: 8px 0 0 0; }
.tele-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 6px;
  color: var(--muted);
  line-height: 1.6;
  font-size: .98rem;
}
.tele-list li::before {
  content: "•";
  color: var(--c1);
  font-weight: bold;
  position: absolute;
  left: 6px;
  top: 0;
}
/* subnível */
.tele-list ul { list-style: disc; padding-left: 26px; margin-top: 6px; color: var(--muted); }
.tele-list ul li { padding-left: 0; }

/* ===== Colunas ===== */
.tele-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 14px 0;
}
.tele-cols h3 {
  font-size: 1.05rem;
  color: var(--c1);
  margin-bottom: 10px;
  font-weight: 700;
}

/* ===== Links/ações (inclui botão "Vídeo") ===== */
.tele-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
}
.tele-page .tele-linkbtn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  border: 1.5px solid var(--line);
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform .12s ease, border-color .15s ease, box-shadow .2s ease;
  cursor: pointer;
  min-height: 46px;
}
.tele-page .tele-linkbtn:hover { transform: translateY(-1px); border-color: #cfe1f6; box-shadow: var(--shadow-hover); }
.tele-page .tele-linkbtn:focus-visible { outline: 3px solid #bfe0ff; outline-offset: 2px; }
.tele-page .tele-linkbtn .ico { width: 18px; height: 18px; color: var(--c1); }
.tele-page .tele-linkbtn .ico--end { margin-left: 6px; opacity: .75; transition: transform .2s ease; }
.tele-page .tele-linkbtn[aria-expanded="true"] .ico--end { transform: rotate(180deg); }

/* ===== Vídeo ===== */
.tele-video-wrap {
  width: 100%;
  margin-top: 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 12px;
}
.tele-video-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.tele-closepill {
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--text);
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: border-color .2s ease, transform .12s ease;
  box-shadow: var(--shadow);
}
.tele-closepill:hover { transform: translateY(-1px); border-color: #cfe1f6; }
.tele-closepill:focus-visible { outline: 3px solid #bfe0ff; outline-offset: 2px; }
.tele-video-wrap video {
  width: 100%;
  border-radius: 12px;
  background: #000;
  box-shadow: 0 4px 20px rgba(13,111,191,.08);
}

/* ===== Animação dos painéis (suave) ===== */
.tele-tabpanel { display: block; animation: fadeIn .3s ease; padding-top: 4px; }
.tele-tabpanel[hidden] { display: none; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* ===== Responsivo (iguais) ===== */
@media (max-width: 960px) {
  .tele-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
}
@media (max-width: 640px) {
  .tele-grid { grid-template-columns: 1fr; gap: 10px; }
  .tele-btn { max-width: 100%; min-height: 52px; }
}/* End custom CSS */