/**
 * Programação CGOT — tema claro (fundo branco alinhado ao box Elementor).
 */

.cgot-programacao-root {
	--cgot-gold: #c29647;
	--cgot-gold-soft: #a67c35;
	--cgot-text: #1f2937;
	--cgot-text-strong: #0f172a;
	--cgot-muted: #6b7280;
	--cgot-line: #e5e7eb;
	--cgot-bg-subtle: #f9fafb;
	--cgot-font: var(--e-global-typography-text-font-family, "Montserrat", "Poppins", sans-serif);
	--cgot-btn-font: "avenir-lt-pro", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--cgot-btn-radius: 999px;
	--cgot-radius-pill: 999px;
	--cgot-radius-card: 14px;
	/* Paleta institucional — cartões de sessão (barras + tons claros) */
	--cgot-brand-maroon: #561415;
	--cgot-brand-olive: #283618;
	--cgot-brand-navy: #03273b;

	box-sizing: border-box;
	font-family: var(--cgot-font);
	font-size: 1rem;
	line-height: 1.55;
	color: var(--cgot-text);
	padding: 0;
	margin: 30px 15px 0;
	border-radius: 0;
	background: transparent;
	border: none;
	box-shadow: none;
	isolation: isolate;
	accent-color: var(--cgot-gold);
	color-scheme: light;
}

/* Elementor / tema: botões costumam usar --e-global-color-accent (rosa). Reverter só aqui dentro. */
.cgot-programacao-root :where(button) {
	-webkit-appearance: none;
	appearance: none;
	background-image: none;
	box-shadow: none;
}

.cgot-programacao-root :where(button):not(:focus-visible) {
	outline: none;
}

.cgot-programacao-root *,
.cgot-programacao-root *::before,
.cgot-programacao-root *::after {
	box-sizing: inherit;
}

.cgot-programacao__sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ——— Toolbar ——— */

.cgot-programacao__toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.85rem 1rem;
	margin-bottom: 1.1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--cgot-line);
}

.cgot-programacao__toolbar-main {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem 1rem;
	flex: 1 1 auto;
	min-width: 0;
}

.cgot-programacao__days {
	display: flex;
	flex-wrap: nowrap;
	gap: 0.5rem;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: x proximity;
	scrollbar-width: thin;
	padding-bottom: 4px;
	margin-bottom: -4px;
}

.cgot-programacao__days::-webkit-scrollbar {
	height: 4px;
}

.cgot-programacao__days::-webkit-scrollbar-thumb {
	background: var(--cgot-line);
	border-radius: 4px;
}

.cgot-programacao__day-btn {
	flex: 0 0 auto;
	scroll-snap-align: start;
}

/* Botões toolbar — alinhados ao .elementor-button do site (Avenir, dourado, borda branca no ativo). */
.cgot-programacao-root button.cgot-programacao__day-btn,
.cgot-programacao-root button.cgot-programacao__view-btn,
.cgot-programacao-root button.cgot-programacao__sala-filter-btn {
	cursor: pointer;
	font-family: var(--cgot-btn-font);
	font-size: 21px;
	font-weight: 600;
	line-height: 1.2;
	padding: 15px 25px;
	min-height: 44px;
	min-width: 44px;
	border-style: solid;
	border-width: 1px;
	border-radius: var(--cgot-btn-radius);
	background-color: #fff;
	border-color: var(--cgot-gold);
	color: var(--cgot-gold);
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	touch-action: manipulation;
	align-items: center;
	display: inline-flex;
	justify-content: center;
	text-align: center;
}

.cgot-programacao-root button.cgot-programacao__day-btn:hover:not(.is-active),
.cgot-programacao-root button.cgot-programacao__view-btn:hover:not(.is-active),
.cgot-programacao-root button.cgot-programacao__sala-filter-btn:hover:not(.is-active) {
	background-color: rgba(194, 150, 71, 0.08);
	border-color: var(--cgot-gold);
	color: var(--cgot-gold);
}

.cgot-programacao-root button.cgot-programacao__day-btn.is-active,
.cgot-programacao-root button.cgot-programacao__view-btn.is-active,
.cgot-programacao-root button.cgot-programacao__sala-filter-btn.is-active {
	background-color: #c29647;
	border-color: #fff;
	color: #fff;
	font-weight: 600;
}

.cgot-programacao-root button.cgot-programacao__day-btn:focus-visible,
.cgot-programacao-root button.cgot-programacao__view-btn:focus-visible,
.cgot-programacao-root button.cgot-programacao__sala-filter-btn:focus-visible {
	outline: 2px solid var(--cgot-gold);
	outline-offset: 3px;
}

.cgot-programacao__views {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
}

.cgot-programacao__search {
	flex: 0 1 280px;
	min-width: 0;
	max-width: 100%;
	margin-left: auto;
}

/* Uma só borda no input (pílula); evita retângulo dentro do wrapper. */
.cgot-programacao__search-label {
	display: block;
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
}

/* Campo de busca — mesmo “look” dos botões (Avenir, pílula, borda dourada). */
.cgot-programacao-root input.cgot-programacao__input {
	display: block;
	width: 100%;
	min-height: 44px;
	margin: 0;
	padding: 14px 22px;
	font-family: var(--cgot-btn-font);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--cgot-text);
	background-color: #fff;
	border: 1px solid var(--cgot-gold);
	border-radius: var(--cgot-btn-radius);
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
	touch-action: manipulation;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.cgot-programacao-root input.cgot-programacao__input:hover {
	background-color: rgba(194, 150, 71, 0.06);
	border-color: var(--cgot-gold);
}

.cgot-programacao-root input.cgot-programacao__input::-webkit-search-decoration,
.cgot-programacao-root input.cgot-programacao__input::-webkit-search-results-button,
.cgot-programacao-root input.cgot-programacao__input::-webkit-search-results-decoration {
	-webkit-appearance: none;
	appearance: none;
}

.cgot-programacao-root input.cgot-programacao__input::-webkit-search-cancel-button {
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
	opacity: 0.65;
}

.cgot-programacao-root input.cgot-programacao__input::placeholder {
	color: var(--cgot-gold-soft);
	opacity: 1;
}

.cgot-programacao-root input.cgot-programacao__input:focus {
	outline: none;
	border-color: var(--cgot-gold);
	box-shadow: 0 0 0 2px rgba(194, 150, 71, 0.28);
}

.cgot-programacao-root input.cgot-programacao__input:focus-visible {
	outline: 2px solid var(--cgot-gold);
	outline-offset: 3px;
	box-shadow: none;
}

/* ——— Resultados da busca ——— */

.cgot-programacao__results {
	min-height: 1.35em;
	font-size: 0.88rem;
	margin: 0 0 0.85rem;
	color: var(--cgot-muted);
}

/* ——— Legendas (cores como calendario/cgot2026.html) ——— */

.cgot-programacao__legends {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	margin-bottom: 1rem;
	padding-bottom: 0.9rem;
	border-bottom: 1px solid var(--cgot-line);
}

.cgot-programacao__legend {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.45rem 1rem;
	font-size: 0.8rem;
	line-height: 1.35;
	color: #4b5563;
}

.cgot-programacao__legend--salas {
	gap: 0.4rem 0.85rem;
}

.cgot-programacao__legend-item {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.cgot-programacao__legend-sub {
	font-size: 0.7rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--cgot-gold-soft);
	margin-right: 0.15rem;
}

.cgot-programacao__legend-dot {
	display: inline-block;
	width: 0.7rem;
	height: 0.7rem;
	border-radius: 5px;
	flex-shrink: 0;
}

.cgot-programacao__legend-dot--palestra {
	background: var(--cgot-brand-navy);
}

.cgot-programacao__legend-dot--mrm {
	background: var(--cgot-brand-olive);
}

.cgot-programacao__legend-dot--magna {
	background: var(--cgot-gold);
}

.cgot-programacao__legend-dot--tema {
	background: var(--cgot-brand-maroon);
}

.cgot-programacao__legend-dot--carrossel {
	background: var(--cgot-gold);
}

.cgot-programacao__legend-dot--intervalo {
	background: #9ca3af;
}

.cgot-programacao__legend-dot--s1 {
	background: linear-gradient(135deg, #3d0f11, #561415);
}

.cgot-programacao__legend-dot--s2 {
	background: linear-gradient(135deg, #1a2310, #283618);
}

.cgot-programacao__legend-dot--s3 {
	background: linear-gradient(135deg, #7a5a26, #a67c35);
}

.cgot-programacao__legend-dot--s4 {
	background: linear-gradient(135deg, #021a27, #03273b);
}

.cgot-programacao__legend-dot--s5 {
	background: linear-gradient(135deg, #0a3d3a, #146e64);
}

/* ——— Salas: colunas lado a lado (protótipo cgot2026) ——— */

.cgot-programacao__salas-stack {
	width: 100%;
}

.cgot-programacao__sala-filter {
	margin-bottom: 0.75rem;
}

.cgot-programacao__sala-filter-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.45rem 0.5rem;
}

.cgot-programacao__sala-filter-label {
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--cgot-gold-soft);
	flex: 1 0 100%;
}

@media (min-width: 480px) {
	.cgot-programacao__sala-filter-label {
		flex: 0 0 auto;
		margin-right: 0.35rem;
	}
}

.cgot-programacao-root button.cgot-programacao__sala-filter-btn {
	font-size: 16px;
	padding: 10px 18px;
	min-height: 40px;
}

.cgot-programacao__salas-layout {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.cgot-programacao__sala-col--geral {
	width: 100%;
}

.cgot-programacao__salas-cols {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1rem;
	align-items: start;
}

@media (min-width: 1200px) {
	.cgot-programacao__salas-cols:not(.cgot-programacao__salas-cols--single) {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

/* Uma sala: coluna única, sem scroll horizontal no telemóvel */
.cgot-programacao__salas-cols--single {
	grid-template-columns: minmax(0, 1fr) !important;
	max-width: 100%;
}

@media (max-width: 900px) {
	.cgot-programacao__salas-cols:not(.cgot-programacao__salas-cols--single) {
		display: flex;
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		gap: 0.85rem;
		padding-bottom: 0.35rem;
		margin: 0 -0.15rem;
		padding-left: 0.15rem;
		padding-right: 0.15rem;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x proximity;
	}

	.cgot-programacao__salas-cols:not(.cgot-programacao__salas-cols--single) .cgot-programacao__sala-col {
		flex: 0 0 min(88vw, 300px);
		scroll-snap-align: start;
		min-width: 260px;
	}

	.cgot-programacao__salas-cols--single {
		display: grid !important;
		overflow-x: visible;
		padding-left: 0;
		padding-right: 0;
		margin-left: 0;
		margin-right: 0;
	}

	.cgot-programacao__salas-cols--single .cgot-programacao__sala-col {
		flex: none;
		min-width: 0;
		width: 100%;
	}
}

.cgot-programacao__sala-col {
	border-radius: var(--cgot-radius-card);
	overflow: hidden;
	border: 1px solid var(--cgot-line);
	background: #fff;
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.cgot-programacao__sala-col-head {
	padding: 0.75rem 1rem;
}

.cgot-programacao__sala-col-head-inner {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	min-width: 0;
}

/* Nome temático (especialidade) em destaque; "Sala N" secundário */
.cgot-programacao__sala-theme {
	font-size: 1.18rem;
	font-weight: 700;
	line-height: 1.25;
	color: var(--cgot-text-strong);
	letter-spacing: 0.01em;
	word-break: break-word;
}

.cgot-programacao__sala-label {
	font-size: 0.72rem;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--cgot-gold-soft);
}

/* Cabeçalhos por sala — gradientes (calendario/cgot2026.html) */
.cgot-programacao__room--geral .cgot-programacao__sala-col-head {
	background: linear-gradient(135deg, #faf6f0, #f0ebe3);
	border-bottom: 1px solid rgba(194, 150, 71, 0.3);
}

.cgot-programacao__room--geral .cgot-programacao__sala-theme {
	color: #1a1408;
}

.cgot-programacao__room--geral .cgot-programacao__sala-label {
	color: var(--cgot-gold);
}

.cgot-programacao__room--sn1 .cgot-programacao__sala-col-head {
	background: linear-gradient(135deg, #3d0f11, #561415);
}

.cgot-programacao__room--sn2 .cgot-programacao__sala-col-head {
	background: linear-gradient(135deg, #1a2310, #283618);
}

.cgot-programacao__room--sn3 .cgot-programacao__sala-col-head {
	background: linear-gradient(135deg, #7a5a26, #a67c35);
}

.cgot-programacao__room--sn4 .cgot-programacao__sala-col-head {
	background: linear-gradient(135deg, #021a27, #03273b);
}

.cgot-programacao__room--sn5 .cgot-programacao__sala-col-head {
	background: linear-gradient(135deg, #0a3d3a, #146e64);
}

.cgot-programacao__room--sn1 .cgot-programacao__sala-theme,
.cgot-programacao__room--sn2 .cgot-programacao__sala-theme,
.cgot-programacao__room--sn3 .cgot-programacao__sala-theme,
.cgot-programacao__room--sn4 .cgot-programacao__sala-theme,
.cgot-programacao__room--sn5 .cgot-programacao__sala-theme {
	color: #fff !important;
}

.cgot-programacao__room--sn1 .cgot-programacao__sala-label,
.cgot-programacao__room--sn2 .cgot-programacao__sala-label,
.cgot-programacao__room--sn3 .cgot-programacao__sala-label,
.cgot-programacao__room--sn4 .cgot-programacao__sala-label,
.cgot-programacao__room--sn5 .cgot-programacao__sala-label {
	color: rgba(255, 255, 255, 0.88) !important;
	font-weight: 500;
}

.cgot-programacao__sala-list {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	padding: 0.65rem 0.5rem 0.75rem;
	flex: 1;
	background: #fafafa;
}

/* ——— Sessão (cartão) ——— */

.cgot-programacao__session {
	border: 1px solid rgba(107, 114, 128, 0.35);
	border-radius: 12px;
	margin-bottom: 0;
	background: #fff;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
	overflow: hidden;
}

/* Bordas por tipo — timeline (cartões TL) */
.cgot-programacao__tl-card.cgot-programacao__session--palestra {
	border-left-color: var(--cgot-brand-navy);
}

.cgot-programacao__tl-card.cgot-programacao__session--mrm {
	border-left-color: var(--cgot-brand-olive);
}

.cgot-programacao__tl-card.cgot-programacao__session--magna {
	border-left-color: var(--cgot-gold);
}

.cgot-programacao__tl-card.cgot-programacao__session--tema {
	border-left-color: var(--cgot-brand-maroon);
}

.cgot-programacao__tl-card.cgot-programacao__session--carrossel {
	border-left-color: var(--cgot-gold);
}

.cgot-programacao__tl-card.cgot-programacao__session--intervalo {
	border-left-color: #9ca3af;
}

.cgot-programacao__tl-card.cgot-programacao__session--almoco {
	border-left-color: var(--cgot-brand-maroon);
}

.cgot-programacao__tl-card.cgot-programacao__session--intervalo {
	background: #f3f4f6;
}

.cgot-programacao__tl-card.cgot-programacao__session--almoco {
	background: #faf4f2;
}

/* Vista Salas: fundos claros (como antes) + paleta institucional nas barras / bordas */
.cgot-programacao__session.cgot-programacao__session--palestra {
	background: #e9eef2;
	border-color: rgba(3, 39, 59, 0.28);
}

.cgot-programacao__session.cgot-programacao__session--palestra .cgot-programacao__session-time-wrap {
	border-left: 4px solid var(--cgot-brand-navy);
}

.cgot-programacao__session.cgot-programacao__session--mrm {
	background: #ebede8;
	border-color: rgba(40, 54, 24, 0.28);
}

.cgot-programacao__session.cgot-programacao__session--mrm .cgot-programacao__session-time-wrap {
	border-left: 4px solid var(--cgot-brand-olive);
}

.cgot-programacao__session.cgot-programacao__session--magna {
	background: #faf6f0;
	border-color: rgba(194, 150, 71, 0.42);
}

.cgot-programacao__session.cgot-programacao__session--magna .cgot-programacao__session-time-wrap {
	border-left: 4px solid var(--cgot-gold);
}

.cgot-programacao__session.cgot-programacao__session--tema {
	background: #f5eded;
	border-color: rgba(86, 20, 21, 0.22);
}

.cgot-programacao__session.cgot-programacao__session--tema .cgot-programacao__session-time-wrap {
	border-left: 4px solid var(--cgot-brand-maroon);
}

.cgot-programacao__session.cgot-programacao__session--carrossel {
	background: #fdf7ef;
	border-color: rgba(194, 150, 71, 0.38);
}

.cgot-programacao__session.cgot-programacao__session--carrossel .cgot-programacao__session-time-wrap {
	border-left: 4px solid var(--cgot-gold);
}

.cgot-programacao__session.cgot-programacao__session--intervalo {
	background: #f3f4f6;
	border-color: rgba(156, 163, 175, 0.45);
}

.cgot-programacao__session.cgot-programacao__session--intervalo .cgot-programacao__session-time-wrap {
	border-left: 4px solid #9ca3af;
}

.cgot-programacao__session.cgot-programacao__session--almoco {
	background: #faf4f2;
	border-color: rgba(86, 20, 21, 0.2);
}

.cgot-programacao__session.cgot-programacao__session--almoco .cgot-programacao__session-time-wrap {
	border-left: 4px solid var(--cgot-brand-maroon);
}

.cgot-programacao__session-head,
.cgot-programacao-root button.cgot-programacao__session-toggle {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 0;
	width: 100%;
	min-height: 52px;
	padding: 0;
	text-align: left;
	font: inherit;
	color: inherit;
	background-color: transparent;
	border: none;
	border-radius: 11px;
	touch-action: manipulation;
	-webkit-tap-highlight-color: rgba(194, 150, 71, 0.12);
	/* UA: <button> usa white-space: nowrap e impede quebra do título */
	white-space: normal;
}

.cgot-programacao-root button.cgot-programacao__session-toggle {
	cursor: pointer;
}

.cgot-programacao__session-head--static {
	cursor: default;
}

.cgot-programacao-root button.cgot-programacao__session-toggle:focus-visible {
	outline: 2px solid var(--cgot-gold);
	outline-offset: 1px;
}

.cgot-programacao__session-time-wrap {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 0.1rem;
	min-width: 4.25rem;
	padding: 0.65rem 0.65rem 0.65rem 0.85rem;
	border-right: 1px solid rgba(15, 23, 42, 0.12);
	background: rgba(255, 255, 255, 0.5);
}

.cgot-programacao__session-time-start {
	font-size: 0.95rem;
	font-weight: 800;
	color: #0f172a;
	line-height: 1.15;
	letter-spacing: 0.02em;
	white-space: nowrap;
}

.cgot-programacao__session-time-end {
	font-size: 0.78rem;
	font-weight: 500;
	color: #64748b;
	line-height: 1.2;
	white-space: nowrap;
}

.cgot-programacao__session-time-wrap .cgot-programacao__now {
	margin-top: 0.15rem;
}

.cgot-programacao__time {
	flex: 0 0 auto;
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--cgot-gold);
	white-space: nowrap;
	letter-spacing: 0.03em;
}

.cgot-programacao__session-body {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	min-width: 0;
	flex: 1 1 0;
	padding: 0.65rem 0.75rem 0.65rem 0.85rem;
	justify-content: center;
}

.cgot-programacao__tipo {
	font-size: 0.65rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--cgot-gold-soft);
	font-weight: 600;
}

.cgot-programacao__title {
	font-size: 0.98rem;
	line-height: 1.45;
	color: var(--cgot-text-strong);
	font-weight: 600;
	word-break: break-word;
	overflow-wrap: anywhere;
	min-width: 0;
}

/* Vista Salas: até 3 linhas + reticências; ao expandir, título completo */
.cgot-programacao__session .cgot-programacao__title {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	text-overflow: ellipsis;
}

.cgot-programacao-root button.cgot-programacao__session-toggle[aria-expanded="true"] .cgot-programacao__title {
	display: block;
	-webkit-line-clamp: unset;
	line-clamp: unset;
	overflow: visible;
	text-overflow: clip;
}

/* Estado expandido: menos “corte” na divisória, mais respiro, palestrantes alinhados ao título */
.cgot-programacao__session:has(.cgot-programacao__session-toggle[aria-expanded="true"]) .cgot-programacao__session-head {
	border-radius: 12px 12px 0 0;
}

.cgot-programacao__session:has(.cgot-programacao__session-toggle[aria-expanded="true"]) .cgot-programacao__session-time-wrap {
	border-right-color: rgba(15, 23, 42, 0.08);
	background: rgba(255, 255, 255, 0.65);
}

.cgot-programacao__session:has(.cgot-programacao__session-toggle[aria-expanded="true"]) .cgot-programacao__session-body {
	padding: 0.8rem 1rem 0.95rem 1rem;
}

.cgot-programacao__session-detail {
	position: relative;
	padding: 0 0.95rem 0.85rem;
	border-top: 1px solid var(--cgot-line);
}

.cgot-programacao__session:has(.cgot-programacao__session-toggle[aria-expanded="true"]) .cgot-programacao__session-detail {
	border-top: none;
	/* Sem recuo “falso” da coluna de horas: essa faixa não repete o horário e o vazio à esquerda confunde */
	padding: 0.75rem 0.85rem 1rem;
	background: rgba(255, 255, 255, 0.55);
	box-shadow: inset 0 1px 0 rgba(15, 23, 42, 0.08);
}

.cgot-programacao__session:has(.cgot-programacao__session-toggle[aria-expanded="true"]) .cgot-programacao__session-detail::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: rgba(15, 23, 42, 0.1);
}

.cgot-programacao__now {
	font-size: 0.62rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--cgot-gold);
}

.cgot-programacao__participants {
	margin: 0;
	padding-left: 0;
	padding-inline-start: 0;
	list-style: none;
	font-size: 0.9rem;
	line-height: 1.5;
	color: var(--cgot-text-strong);
}

.cgot-programacao__session-detail .cgot-programacao__participants {
	padding-inline-start: 0;
}

.cgot-programacao__session-detail .cgot-programacao__participants li {
	margin-top: 0.35rem;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.cgot-programacao__session-detail .cgot-programacao__participants li:first-child {
	margin-top: 0;
}

.cgot-programacao__role {
	font-weight: 700;
	color: var(--cgot-gold);
	font-size: 0.82em;
	letter-spacing: 0.02em;
}

.cgot-programacao__session.is-live,
.cgot-programacao__tl-card.is-live {
	outline: 2px solid var(--cgot-gold);
	outline-offset: 0;
}

/* ——— Timeline vertical (sem colunas estreitas) ——— */

.cgot-programacao__timeline-inner {
	border: 1px solid var(--cgot-line);
	border-radius: var(--cgot-radius-card);
	background: var(--cgot-bg-subtle);
	padding: 0.85rem 0.75rem 1rem;
	overflow: visible;
}

.cgot-programacao__tl-stack {
	display: flex;
	flex-direction: column;
	gap: 1.35rem;
}

.cgot-programacao__tl-timeblock-label {
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--cgot-gold);
	margin-bottom: 0.6rem;
}

.cgot-programacao__tl-timeblock-cards {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.cgot-programacao__tl-card {
	border: 1px solid var(--cgot-line);
	border-left: 4px solid #6b7280;
	border-radius: 12px;
	padding: 0.75rem 0.95rem;
	background: #fff;
}

.cgot-programacao__tl-card-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.5rem 1rem;
	margin-bottom: 0.45rem;
}

.cgot-programacao__tl-card-sala {
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--cgot-gold-soft);
}

.cgot-programacao__tl-card-time {
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--cgot-gold);
	white-space: nowrap;
}

.cgot-programacao__tl-card-title {
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.45;
	color: var(--cgot-text-strong);
	word-break: break-word;
	overflow-wrap: anywhere;
	margin-bottom: 0.25rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	text-overflow: ellipsis;
	min-width: 0;
}

.cgot-programacao__tl-card-tipo {
	font-size: 0.68rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--cgot-muted);
	font-weight: 600;
}

.cgot-programacao__empty,
.cgot-programacao__error {
	margin: 1rem 0;
	color: var(--cgot-muted);
}

.cgot-programacao__error {
	color: #b91c1c;
}

/* ——— Skeleton (carregamento inicial) ——— */

@keyframes cgot-prog-sk-shimmer {
	0% {
		background-position: 100% 0;
	}

	100% {
		background-position: -100% 0;
	}
}

.cgot-programacao__sk-bone {
	background: linear-gradient(
		105deg,
		#e8e8ea 0%,
		#e8e8ea 38%,
		#f4f4f5 50%,
		#e8e8ea 62%,
		#e8e8ea 100%
	);
	background-size: 200% 100%;
	animation: cgot-prog-sk-shimmer 1.35s ease-in-out infinite;
	border-radius: 6px;
}

.cgot-programacao__skeleton {
	pointer-events: none;
	user-select: none;
}

.cgot-programacao__sk-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.85rem 1rem;
	margin-bottom: 1.1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--cgot-line);
}

.cgot-programacao__sk-toolbar-main {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem 1rem;
	flex: 1 1 auto;
	min-width: 0;
}

.cgot-programacao__sk-days {
	display: flex;
	flex-wrap: nowrap;
	gap: 0.5rem;
}

.cgot-programacao__sk-pill {
	height: 44px;
	width: 7.5rem;
	border-radius: 999px;
}

.cgot-programacao__sk-days .cgot-programacao__sk-pill:nth-child(2) {
	width: 7rem;
}

.cgot-programacao__sk-days .cgot-programacao__sk-pill:nth-child(3) {
	width: 6.5rem;
}

.cgot-programacao__sk-pill--view {
	width: 5.5rem;
}

.cgot-programacao__sk-views {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
}

.cgot-programacao__sk-search {
	flex: 0 1 280px;
	min-width: 12rem;
	max-width: 100%;
	height: 44px;
	margin-left: auto;
	border-radius: 999px;
}

.cgot-programacao__sk-legends {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	margin-bottom: 0.85rem;
}

.cgot-programacao__sk-legend-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.4rem 0.85rem;
}

.cgot-programacao__sk-legend-row--salas {
	align-items: center;
}

.cgot-programacao__sk-legend-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.cgot-programacao__sk-dot {
	display: inline-block;
	width: 0.7rem;
	height: 0.7rem;
	border-radius: 5px;
	flex-shrink: 0;
}

.cgot-programacao__sk-chip-text {
	width: 4.5rem;
	height: 0.65rem;
	border-radius: 4px;
}

.cgot-programacao__sk-chip-text--sala {
	width: 3.2rem;
}

.cgot-programacao__sk-legend-sub {
	width: 2.8rem;
	height: 0.55rem;
	border-radius: 4px;
	margin-right: 0.15rem;
}

.cgot-programacao__sk-results {
	height: 0.65rem;
	width: 40%;
	max-width: 280px;
	margin: 0.35rem 0 0.75rem;
	border-radius: 4px;
}

.cgot-programacao__sk-salas-cols {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
	align-items: start;
}

@media (min-width: 1200px) {
	.cgot-programacao__sk-salas-cols {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.cgot-programacao__sk-sala-col {
	border-radius: var(--cgot-radius-card);
	overflow: hidden;
	border: 1px solid var(--cgot-line);
	background: #fff;
	min-width: 0;
}

.cgot-programacao__sk-sala-head {
	height: 3.35rem;
	border-radius: 0;
}

.cgot-programacao__sk-sala-list {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	padding: 0.65rem 0.5rem 0.75rem;
	background: #fafafa;
}

.cgot-programacao__sk-session {
	display: flex;
	align-items: stretch;
	min-height: 52px;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--cgot-line);
	background: #fff;
}

.cgot-programacao__sk-session-time {
	width: 4.5rem;
	flex-shrink: 0;
	border-radius: 0;
	min-height: 100%;
}

.cgot-programacao__sk-session-body {
	flex: 1;
	min-width: 0;
	padding: 0.65rem 0.75rem;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	justify-content: center;
}

.cgot-programacao__sk-line {
	height: 0.72rem;
	border-radius: 4px;
}

.cgot-programacao__sk-line--title {
	width: 92%;
}

.cgot-programacao__sk-line--short {
	width: 55%;
}

@media (max-width: 782px) {
	.cgot-programacao__sk-toolbar {
		flex-direction: column;
		align-items: stretch;
	}

	.cgot-programacao__sk-search {
		margin-left: 0;
		width: 100%;
		max-width: none;
	}
}

@media (max-width: 900px) {
	.cgot-programacao__sk-salas-cols {
		display: flex;
		flex-wrap: nowrap;
		overflow-x: auto;
		gap: 0.85rem;
		padding-bottom: 0.35rem;
		-webkit-overflow-scrolling: touch;
	}

	.cgot-programacao__sk-sala-col {
		flex: 0 0 min(88vw, 300px);
		min-width: 260px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cgot-programacao__sk-bone {
		animation: none;
		background: #e8e8ea;
	}
}

/* ——— Responsivo ——— */

@media (max-width: 782px) {
	.cgot-programacao__toolbar {
		flex-direction: column;
		align-items: stretch;
		gap: 0.85rem;
	}

	.cgot-programacao__search {
		flex: 1 1 auto;
		width: 100%;
		max-width: none;
		margin-left: 0;
	}

	.cgot-programacao__toolbar-main {
		width: 100%;
	}

	.cgot-programacao__days {
		width: 100%;
	}

	.cgot-programacao-root button.cgot-programacao__day-btn,
	.cgot-programacao-root button.cgot-programacao__view-btn,
	.cgot-programacao-root button.cgot-programacao__sala-filter-btn {
		font-size: 18px;
		padding: 12px 20px;
	}

	.cgot-programacao-root input.cgot-programacao__input {
		padding: 12px 20px;
	}
}

@media (max-width: 480px) {
	.cgot-programacao-root {
		font-size: 0.95rem;
	}

	.cgot-programacao__time {
		flex: none;
	}

	.cgot-programacao-root button.cgot-programacao__day-btn,
	.cgot-programacao-root button.cgot-programacao__view-btn,
	.cgot-programacao-root button.cgot-programacao__sala-filter-btn {
		font-size: 16px;
		padding: 10px 18px;
	}

	.cgot-programacao-root input.cgot-programacao__input {
		font-size: 16px;
		padding: 10px 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cgot-programacao-root button.cgot-programacao__day-btn,
	.cgot-programacao-root button.cgot-programacao__view-btn,
	.cgot-programacao-root button.cgot-programacao__sala-filter-btn,
	.cgot-programacao-root input.cgot-programacao__input {
		transition: none;
	}

	.cgot-programacao__days {
		scroll-snap-type: none;
	}
}
