.elementor-22560 .elementor-element.elementor-element-8648a8b > .elementor-element-populated{padding:40px 40px 40px 40px;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-22560 .elementor-element.elementor-element-3d02594 .elementor-heading-title{font-family:"Roboto", Sans-serif;font-size:20px;font-weight:600;color:#000000;}.elementor-22560 .elementor-element.elementor-element-97df394{text-align:center;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-23b719c */.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);
}
.tele-search {
  display: flex;
  justify-content: center;
  margin: 20px 0 30px;
}
.tele-search input {
  width: 80%;
  max-width: 520px;
  padding: 10px 14px;
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: 0.2s ease;
}
.tele-search input:focus {
  outline: 3px solid #bfe0ff;
  border-color: var(--c1);
}

.tele-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0 6px 10px;
}
.tele-scroll::-webkit-scrollbar {
  height: 8px;
}
.tele-scroll::-webkit-scrollbar-thumb {
  background: var(--c1);
  border-radius: 4px;
}

.tele-card {
  flex: 0 0 220px;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 12px;
}
.tele-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.tele-cover {
  position: relative;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  width: 100%;
}
.tele-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease;
}
.tele-cover:hover img {
  filter: brightness(0.85);
}
.tele-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.tele-cover:hover .tele-overlay {
  opacity: 1;
}
.tele-overlay span {
  font-size: 42px;
  color: var(--c1);
  background: rgba(255, 255, 255, 0.85);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.tele-card h4 {
  margin: 10px 0 6px;
  color: var(--text);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  padding: 0 10px;
}
.tele-card .tele-date {
  color: #0b5ea3;
  font-weight: 500;
  font-size: 0.9rem;
  margin: 0 0 2px;
  text-align: center;
}
.tele-card .tele-author {
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
  padding: 0 10px;
  line-height: 1.3;
}
.tele-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.tele-carousel {
  position: relative;
  display: flex;
  align-items: center;
}

.tele-arrow {
  background: linear-gradient(90deg, var(--c1), var(--c2));
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.2s, background 0.3s;
  position: absolute;
  z-index: 10;
}

.tele-arrow:hover {
  transform: scale(1.1);
  background: linear-gradient(90deg, var(--c2), var(--c1));
}

.tele-arrow.left {
  left: -18px;
}

.tele-arrow.right {
  right: -18px;
}/* End custom CSS */