:root {
  /* Tema escuro: base azul-navio + acentos alinhados à marca */
  --bg: #050b14;
  --bg-soft: #0a1424;
  --card: rgba(10, 22, 40, 0.88);
  --card-strong: #0f1f38;
  --text: #e8f0ff;
  --muted: #94a8c4;
  --line: rgba(96, 165, 250, 0.18);
  --accent: #60a5fa;
  --accent-strong: #3b82f6;
  --accent-soft: #93c5fd;
  --accent-warm: #38bdf8;
  --success: #4ade80;
  --shadow: 0 20px 56px rgba(0, 8, 24, 0.55);
  --radius: 24px;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

[data-theme="light"] {
  --bg: #e8f0fc;
  --bg-soft: #ffffff;
  --card: #ffffff;
  --card-strong: #f4f8ff;
  --text: #0a1629;
  --muted: #3d5670;
  --line: rgba(29, 78, 150, 0.16);
  --accent: #2563eb;
  --accent-strong: #1d4ed8;
  --accent-soft: #60a5fa;
  --accent-warm: #3b82f6;
  --success: #059669;
  --shadow: 0 12px 40px rgba(15, 55, 120, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Custom scrollbars */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--accent-strong) transparent;
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--accent-strong);
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}
::-webkit-scrollbar-corner {
  background: transparent;
}
body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(ellipse 120% 80% at 50% -30%, rgba(59, 130, 246, 0.22), transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.12), transparent 40%),
    linear-gradient(180deg, var(--bg) 0%, #020508 100%);
}
[data-theme="light"] body {
  background:
    radial-gradient(ellipse 100% 60% at 50% -10%, rgba(37, 99, 235, 0.08), transparent 50%),
    linear-gradient(180deg, #f4f8ff 0%, var(--bg) 100%);
}
a { color: inherit; }
button, input { font: inherit; }
/* Loading overlay */
.loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.loading-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loading-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.loading-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
[data-theme="dark"] .loading-logo {
  filter: brightness(0) invert(1);
}
.loading-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--line);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.loading-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 30;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--accent-strong);
  color: #fff;
}
[data-theme="light"] .skip-link:focus {
  color: #fff;
}
.site-header,
.section-shell,
.content-grid { width: min(1240px, calc(100% - 2rem)); margin: 0 auto; }
.site-header { padding: 1rem 0 0; }
.header-shell {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(8, 20, 40, 0.55);
  backdrop-filter: blur(18px);
}
[data-theme="light"] .header-shell {
  background: rgba(255, 255, 255, 0.97);
  border-color: var(--line);
  box-shadow: 0 1px 0 rgba(29, 78, 150, 0.06);
}
.brand, .footer-di-brand {
  display: inline-flex;
  gap: 0.95rem;
  align-items: center;
  text-decoration: none;
}
.brand-text-block strong,
.footer-brand-text {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}
.brand-text-block small { color: var(--muted); display: block; }
.brand-logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.brand-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}
/* Logo a cores no claro; monocromática branca no escuro */
.brand-logo-img--product {
  filter: none;
}
[data-theme="dark"] .brand-logo-img--product {
  filter: brightness(0) invert(1);
}
.theme-toggle svg,
.search-box svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.search-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: min(26rem, 56vw);
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
}
.search-box input {
  width: 100%;
  height: 3rem;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--text);
}
.search-box input::placeholder {
  color: var(--muted);
  opacity: 0.9;
}
[data-theme="light"] .search-box input::placeholder {
  color: #4a6682;
  opacity: 1;
}
.theme-toggle,
.ghost-btn {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-radius: 999px;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.theme-toggle { width: 3rem; height: 3rem; display: inline-grid; place-items: center; }
.ghost-btn { padding: 0.9rem 1.15rem; }
.theme-toggle:hover,
.ghost-btn:hover,
.channel-card:hover,
.live-chip:hover { transform: translateY(-1px); }
[data-theme="dark"] .theme-toggle:hover,
[data-theme="dark"] .ghost-btn:hover,
[data-theme="dark"] .channel-card:hover,
[data-theme="dark"] .live-chip:hover { border-color: rgba(96, 165, 250, 0.45); }
[data-theme="light"] .theme-toggle:hover,
[data-theme="light"] .ghost-btn:hover,
[data-theme="light"] .channel-card:hover,
[data-theme="light"] .live-chip:hover { border-color: rgba(37, 99, 235, 0.28); }
.theme-icon--sun { display: none; }
[data-theme="light"] .theme-icon--moon { display: none; }
[data-theme="light"] .theme-icon--sun { display: block; }
.panel,
.live-strip,
.category-pills {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.section-kicker {
  margin: 0 0 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}
h1, h2, h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.04em;
}
.section-title,
.panel-title,
.live-block-title {
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 700;
}
.live-block {
  display: grid;
  gap: 0.65rem;
}
.live-block-title {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.live-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25);
  animation: live-pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25); }
  50% { box-shadow: 0 0 0 6px rgba(239, 68, 68, 0.12); }
}
.section-copy,
.empty-state p,
.detail-copy,
.channel-meta,
.program-meta,
.footer-contact-link,
.footer-col-list a,
.footer-link-btn,
.fmodal-success-desc,
.fform-hint { color: var(--muted); }
.section-copy--hint { font-size: 0.95rem; }
.section-shell { padding: 0.5rem 0 1.2rem; }
.section-heading,
.panel-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1rem;
}
.section-copy { margin: 0; max-width: 34rem; text-align: right; }
@media (max-width: 720px) {
  .section-copy { text-align: left; }
}
.category-pills,
.live-strip {
  border-radius: 24px;
  padding: 1rem;
}
.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.pill-btn,
.day-chip {
  padding: 0.78rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}
.pill-btn.active,
.day-chip.active {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent-warm));
  color: #fff;
  border-color: transparent;
}
.live-strip {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
}
.live-chip {
  min-width: 16rem;
  border-radius: 20px;
  padding: 1rem;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  flex-shrink: 0;
}
[data-theme="light"] .live-chip {
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 55, 120, 0.05);
}
.live-chip strong,
.channel-card h3 { display: block; margin-bottom: 0.3rem; }
.panel {
  border-radius: 28px;
  padding: 1.3rem;
}
.channels-section {
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
  padding-bottom: 2rem;
}
.channel-grid--home {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.channel-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}
.channel-more-btn {
  flex-shrink: 0;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.35rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.92rem;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.channel-more-btn:hover {
  border-color: rgba(96, 165, 250, 0.55);
  background: rgba(59, 130, 246, 0.12);
  color: var(--accent-soft);
}
[data-theme="light"] .channel-more-btn {
  background: #fff;
}
[data-theme="light"] .channel-more-btn:hover {
  background: #f0f6ff;
}
.channel-card {
  text-align: left;
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  color: inherit;
  cursor: pointer;
}
a.channel-card.channel-card--link {
  display: block;
  text-decoration: none;
  cursor: pointer;
}
a.channel-card.channel-card--link:hover {
  color: inherit;
}
[data-theme="light"] .channel-card {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  box-shadow: 0 1px 2px rgba(15, 55, 120, 0.04);
}
.channel-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
.channel-logo {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: contain;
  border-radius: 18px;
  padding: 0.45rem;
  background: rgba(255,255,255,0.95);
}
.channel-code {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  font-weight: 800;
}
.live-badge {
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(85, 244, 165, 0.18);
  color: var(--success);
}
.live-badge--off {
  background: rgba(255, 80, 80, 0.15);
  color: #f87171;
}
[data-theme="light"] .live-badge--off {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}
.live-badge--next {
  background: rgba(59, 130, 246, 0.2);
  color: var(--accent-soft);
}
[data-theme="light"] .live-badge--next {
  background: rgba(37, 99, 235, 0.12);
  color: var(--accent-strong);
}
.channel-meta,
.program-meta { font-size: 0.92rem; line-height: 1.6; }
.progress-block {
  margin-top: 0.85rem;
}
.progress-bar {
  height: 0.5rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}
.progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-warm));
}
.progress-end {
  margin: 0.4rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-soft);
  letter-spacing: 0.02em;
}
.progress-end--muted {
  font-weight: 500;
  color: var(--muted);
}
[data-theme="light"] .progress-end {
  color: var(--accent-strong);
}
.detail-termina {
  margin: 0.6rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}
.detail-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.detail-header { display: grid; gap: 1rem; }
.detail-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.detail-brand img,
.detail-brand .channel-code { width: 4rem; height: 4rem; }
.detail-copy { margin: 0; line-height: 1.7; }
.day-chips {
  display: flex;
  gap: 0.65rem;
  overflow: auto;
  padding-bottom: 0.25rem;
  margin: 1rem 0;
}
.schedule-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}
.schedule-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}
.schedule-time {
  font: 800 1.15rem/1 var(--font-display);
  color: var(--accent);
}
.empty-state {
  min-height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
}
.status-line {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}
.status-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(85, 244, 165, 0.1);
}

/* Rodapé: ver css/footer-di.css (padrão DI / Virtues) */
.footer-gtv-brand {
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.footer-gtv-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.15;
  letter-spacing: -0.02em;
  transition: color 180ms ease, opacity 180ms ease;
}
.footer-gtv-brand:hover .footer-gtv-title {
  color: rgba(255, 255, 255, 0.88);
}
.footer-gtv-logo {
  display: flex;
  align-items: center;
  line-height: 0;
}
.footer-gtv-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
  filter: none;
  opacity: 0.95;
  transition: opacity 180ms ease, filter 180ms ease;
}
[data-theme="dark"] .footer-gtv-img {
  filter: brightness(0) invert(1);
  opacity: 0.88;
}
[data-theme="light"] .footer-gtv-img {
  filter: none;
  opacity: 1;
}
.footer-gtv-brand:hover .footer-gtv-img {
  opacity: 1;
}
[data-theme="dark"] .footer-gtv-brand:hover .footer-gtv-img {
  opacity: 1;
}

.fmodal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 8, 14, 0.74);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 50;
}
.fmodal-overlay.open { display: flex; }
.fmodal {
  width: min(100%, 36rem);
  border-radius: 28px;
  background: var(--bg-soft);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.fmodal-header,
.fmodal-tabs {
  display: flex;
  align-items: center;
}
.fmodal-header {
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}
.fmodal-tabs { gap: 0.6rem; }
.fmodal-tab,
.fmodal-close,
.fform-submit {
  border: 0;
  cursor: pointer;
}
.fmodal-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.04);
  color: var(--text);
}
.fmodal-tab.active { background: linear-gradient(135deg, var(--accent-strong), var(--accent-warm)); color: #fff; }
.fmodal-close {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-size: 1.35rem;
}
.fmodal-body { padding: 1.1rem; }
.fform-group { display: grid; gap: 0.45rem; margin-bottom: 1rem; }
.fform-label { font-weight: 700; }
.fform-input,
.fform-textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  padding: 0.95rem 1rem;
  outline: 0;
}
.fform-textarea { min-height: 8rem; resize: vertical; }
[data-theme="light"] .fform-input,
[data-theme="light"] .fform-textarea {
  background: #f1f5f9;
}
[data-theme="light"] .fmodal-close {
  background: #e2e8f0;
}
.fform-submit {
  width: 100%;
  border-radius: 18px;
  padding: 1rem 1.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent-warm));
  color: #fff;
}
.fmodal-msg.error {
  margin-bottom: 1rem;
  border-radius: 14px;
  padding: 0.85rem 1rem;
  background: rgba(255, 95, 95, 0.12);
  color: #ffb5b5;
}
.fmodal-success-view {
  text-align: center;
  padding: 2rem 1rem;
}
.fmodal-success-icon svg {
  width: 3rem;
  height: 3rem;
  color: var(--success);
}
.fmodal-success-title {
  margin-top: 1rem;
  font: 800 1.5rem/1.1 var(--font-display);
}

/* Página Todos os canais (pesquisa / filtros) */
.page-canais .site-header {
  padding-bottom: 0.25rem;
}
.nav-back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-right: auto;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.nav-back:hover {
  color: var(--text);
  border-color: rgba(96, 165, 250, 0.4);
}
.nav-back svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.header-shell--canais {
  flex-wrap: wrap;
}
.header-shell--canais .brand-lockup {
  order: 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
@media (min-width: 900px) {
  .header-shell--canais .brand-lockup {
    width: auto;
    flex: 1;
  }
}
.explore-main {
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
  padding-bottom: 2.5rem;
}
.explore-toolbar {
  display: grid;
  gap: 1rem;
  margin: 1rem 0 1.25rem;
}
.explore-search {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.explore-search .search-box {
  flex: 1;
  min-width: min(100%, 18rem);
}
.search-box--explore {
  min-width: 100%;
}
.explore-filters-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
}
.explore-live-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.92rem;
  color: var(--text);
  user-select: none;
}
.explore-live-toggle input {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--accent-strong);
}
.explore-results-line {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.channel-grid--explore {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

@media (max-width: 720px) {
  .site-header, .section-shell, .channels-section, .footer-main { width: min(100% - 1rem, 1240px); }
  .header-shell,
  .section-heading,
  .panel-heading { align-items: stretch; }
  .header-shell,
  .header-actions,
  .section-heading,
  .panel-heading { flex-direction: column; }
  .search-box { min-width: 100%; }
  .channel-grid--explore { grid-template-columns: 1fr; }
  .channel-grid--home { grid-template-columns: 1fr; }
  .schedule-item { grid-template-columns: 1fr; }
}

/* Dedicated channel page */
.canal-main {
  width: min(720px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0.5rem 0 2.5rem;
}
.canal-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.canal-header img,
.canal-header .channel-code {
  width: 4.5rem;
  height: 4.5rem;
  flex-shrink: 0;
}
.canal-header img {
  object-fit: contain;
  border-radius: 20px;
  padding: 0.5rem;
  background: rgba(255,255,255,0.95);
}
.canal-header-info h1 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
}
.canal-header-info .detail-copy {
  margin: 0.25rem 0 0;
}
.canal-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--line);
}
.canal-status .status-dot { flex-shrink: 0; }
.canal-progress {
  margin-bottom: 1.5rem;
}
.canal-progress .progress-bar {
  margin-bottom: 0.35rem;
}
