/**
 * Arquivo de Projetos COTEC.
 *
 * A barra vermelha dos títulos é a assinatura visual do arquivo: identifica
 * cada fronteira temática sem adicionar uma navegação ou decoração redundante.
 */

body.cotec-projetos-archive {
	background: var(--cotec-color-surface-soft, #F2F2F2);
}

.cotec-projetos {
	--cotec-projetos-ink: var(--cotec-color-text, #141414);
	--cotec-projetos-muted: var(--cotec-color-muted, #6D6E71);
	--cotec-projetos-paper: var(--cotec-color-surface-soft, #F2F2F2);
	--cotec-projetos-white: var(--cotec-color-surface, #FFFFFF);
	--cotec-projetos-line: var(--cotec-color-border, #D9D9D9);
	--cotec-projetos-red: var(--cotec-color-red, #A50505);
	--cotec-projetos-salmon: var(--cotec-color-salmon, #E68A63);
	--cotec-projetos-shell: 1461px;
	--cotec-projetos-gutter: clamp(1rem, 4vw, 2.5rem);
	color: var(--cotec-projetos-ink);
	background: var(--cotec-projetos-white);
	-webkit-font-smoothing: antialiased;
}

.cotec-projetos *,
.cotec-projetos *::before,
.cotec-projetos *::after {
	box-sizing: border-box;
}

.cotec-projetos a {
	color: inherit;
}

.cotec-projetos a:focus-visible,
.cotec-projetos-single .cotec-projetos-back__link:focus-visible {
	outline: 3px solid var(--cotec-color-focus, #A50505);
	outline-offset: 3px;
}

.cotec-projetos-shell {
	width: 100%;
	max-width: var(--cotec-projetos-shell);
	margin-inline: auto;
	padding-inline: var(--cotec-projetos-gutter);
}

.cotec-projetos-intro > .cotec-projetos-shell {
	max-width: none;
}

.cotec-projetos-intro {
	padding: clamp(2.75rem, 6vw, 4.7rem) 0 clamp(2.15rem, 4vw, 3.25rem);
	text-align: center;
	background: var(--cotec-projetos-white);
}

.cotec-projetos-intro h1 {
	margin: 0;
	color: var(--cotec-projetos-ink);
	font-size: clamp(2.15rem, 4.8vw, 3.35rem);
	font-weight: 400;
	letter-spacing: 0.025em;
	line-height: 1.08;
	text-transform: uppercase;
}

.cotec-projetos-topic-section,
.cotec-projetos-grid-view {
	padding: clamp(3.25rem, 7vw, 5.7rem) 0;
	background: var(--cotec-projetos-paper);
}

.cotec-projetos-topic-sections .cotec-projetos-topic-section:nth-child(even) {
	background: var(--cotec-projetos-white);
}

.cotec-projetos-section-title {
	display: flex;
	align-items: stretch;
	gap: 0.85rem;
	margin: 0 0 clamp(1.5rem, 3vw, 2.25rem);
	color: var(--cotec-projetos-ink);
	font-size: clamp(1.25rem, 2.3vw, 1.65rem);
	font-weight: 700;
	letter-spacing: -0.018em;
	line-height: 1.16;
	text-transform: uppercase;
}

.cotec-projetos-section-title::before {
	flex: 0 0 0.28rem;
	width: 0.28rem;
	min-height: 1.2em;
	content: "";
	background: var(--cotec-projetos-red);
}

.cotec-projetos-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1.5rem, 3vw, 2.4rem);
}

.cotec-projetos-card {
	min-width: 0;
	margin: 0;
}

.cotec-projetos-media {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--cotec-projetos-line);
}

.cotec-projetos-media::after {
	position: absolute;
	inset: 0;
	content: "";
	border: 1px solid rgb(20 20 20 / 16%);
	pointer-events: none;
}

.cotec-projetos-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 240ms ease;
}

.cotec-projetos-media--placeholder {
	isolation: isolate;
	background:
		linear-gradient(135deg, transparent 0 48%, rgb(20 20 20 / 16%) 48% 51%, transparent 51% 100%),
		var(--cotec-projetos-line);
}

.cotec-projetos-placeholder-band {
	position: absolute;
	z-index: -1;
	top: 50%;
	right: -4%;
	left: -4%;
	height: 29%;
	background: var(--cotec-projetos-red);
	transform: translateY(-50%) rotate(-2deg);
}

.cotec-projetos-placeholder-label {
	position: absolute;
	top: 50%;
	left: 50%;
	color: var(--cotec-projetos-white);
	font-size: clamp(0.86rem, 2vw, 1.3rem);
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1;
	text-transform: uppercase;
	transform: translate(-50%, -50%);
}

.cotec-projetos-card-copy {
	padding-top: 1rem;
}

.cotec-projetos-card-title {
	margin: 0;
	color: var(--cotec-projetos-ink);
	font-size: clamp(1rem, 1.55vw, 1.18rem);
	font-weight: 700;
	letter-spacing: -0.022em;
	line-height: 1.28;
}

.cotec-projetos-card-title a {
	text-decoration: none;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.22em;
}

.cotec-projetos-card-title a:hover {
	color: var(--cotec-projetos-red);
	text-decoration: underline;
}

.cotec-projetos-card-excerpt {
	display: -webkit-box;
	margin: 0.7rem 0 0;
	overflow: hidden;
	color: var(--cotec-projetos-muted);
	font-size: 0.8rem;
	line-height: 1.55;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.cotec-projetos-more-wrap {
	display: flex;
	justify-content: center;
	margin-top: clamp(2rem, 5vw, 3.4rem);
}

.cotec-projetos-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.75rem;
	padding: 0.5rem 0.9rem;
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
}

.cotec-projetos-more:hover {
	color: var(--cotec-projetos-red);
	text-decoration: underline;
	text-underline-offset: 0.24em;
}

.cotec-projetos-pagination {
	margin-top: clamp(2.7rem, 6vw, 4.6rem);
	padding-top: 1.2rem;
	border-top: 1px solid var(--cotec-projetos-line);
}

.cotec-projetos-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.3rem;
}

.cotec-projetos-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.75rem;
	min-height: 2.75rem;
	padding: 0.45rem 0.7rem;
	color: var(--cotec-projetos-muted);
	border: 1px solid transparent;
	font-size: 0.72rem;
	font-weight: 600;
	text-decoration: none;
}

.cotec-projetos-pagination a.page-numbers:hover {
	color: var(--cotec-projetos-red);
	border-color: var(--cotec-projetos-red);
}

.cotec-projetos-pagination .page-numbers.current {
	color: var(--cotec-projetos-white);
	background: var(--cotec-projetos-red);
	border-color: var(--cotec-projetos-red);
}

.cotec-projetos-empty {
	max-width: 44rem;
	margin: 1rem auto;
	padding: clamp(2.5rem, 7vw, 5rem) clamp(1rem, 4vw, 3rem);
	text-align: center;
	background: var(--cotec-projetos-white);
	border: 1px solid var(--cotec-projetos-line);
}

.cotec-projetos-empty-mark {
	display: block;
	width: 3.5rem;
	height: 0.3rem;
	margin: 0 auto 1.4rem;
	background: var(--cotec-projetos-red);
}

.cotec-projetos-empty h2 {
	margin: 0;
	font-size: clamp(1.3rem, 3vw, 1.8rem);
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.2;
}

.cotec-projetos-empty p {
	max-width: 48ch;
	margin: 0.75rem auto 0;
	color: var(--cotec-projetos-muted);
	font-size: 0.86rem;
	line-height: 1.55;
}

.cotec-projetos-back {
	display: flex;
	margin: 1.5rem 0 0;
}

.cotec-projetos-back__link {
	display: inline-flex;
	align-items: center;
	min-height: 2.75rem;
	color: var(--cotec-color-text, #141414);
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: underline;
	text-decoration-color: var(--cotec-color-red, #A50505);
	text-underline-offset: 0.24em;
}

.cotec-projetos-back__link:hover {
	color: var(--cotec-color-red, #A50505);
}

/* ==========================================================
   Ficha individual do projeto
   Cabeçalho editorial em duas colunas e corpo de leitura.
   ========================================================== */

body.cotec-projetos-single {
	background: var(--cotec-color-surface, #FFFFFF);
}

body.cotec-projetos-single .site-content > .ast-container {
	display: block;
	width: 100%;
	max-width: none;
	padding: 0;
}

.cotec-projetos-single-main {
	--cotec-projetos-single-ink: var(--cotec-color-text, #141414);
	--cotec-projetos-single-muted: var(--cotec-color-muted, #6D6E71);
	--cotec-projetos-single-soft: var(--cotec-color-surface-soft, #F2F2F2);
	--cotec-projetos-single-white: var(--cotec-color-surface, #FFFFFF);
	--cotec-projetos-single-line: var(--cotec-color-border, #D9D9D9);
	--cotec-projetos-single-red: var(--cotec-color-red, #A50505);
	--cotec-projetos-single-salmon: var(--cotec-color-salmon, #E68A63);
	width: 100%;
	margin: 0;
	color: var(--cotec-projetos-single-ink);
	background: var(--cotec-projetos-single-white);
	font-family: var(--cotec-font-family, "Gotham", Arial, Helvetica, sans-serif);
	-webkit-font-smoothing: antialiased;
}

.cotec-projetos-single-main *,
.cotec-projetos-single-main *::before,
.cotec-projetos-single-main *::after {
	box-sizing: border-box;
}

.cotec-projetos-single-shell {
	width: min(100%, 84rem);
	margin-inline: auto;
	padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.cotec-projetos-single-hero {
	padding-block: clamp(2.5rem, 5vw, 4.5rem);
	background: var(--cotec-projetos-single-soft);
}

.cotec-projetos-single-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(24rem, 1fr);
	align-items: center;
	gap: clamp(2.5rem, 4vw, 4rem);
}

.cotec-projetos-single-hero__copy {
	min-width: 0;
}

.cotec-projetos-single-hero .cotec-projetos-back {
	margin: 0 0 clamp(2rem, 5vw, 3.75rem);
}

.cotec-projetos-single-hero .cotec-projetos-back__link {
	min-height: 2.25rem;
	color: var(--cotec-projetos-single-muted);
	font-size: 0.9rem;
	font-weight: 500;
	text-decoration: none;
}

.cotec-projetos-single-hero .cotec-projetos-back__link:hover {
	color: var(--cotec-projetos-single-red);
	text-decoration: underline;
	text-underline-offset: 0.22em;
}

.cotec-projetos-single-hero__topic {
	margin: 0 0 0.8rem;
	color: var(--cotec-projetos-single-red);
	font-size: clamp(0.92rem, 1.2vw, 1.05rem);
	font-weight: 700;
	letter-spacing: 0.035em;
	line-height: 1.25;
	text-transform: uppercase;
}

.cotec-projetos-single-hero h1 {
	max-width: 30ch;
	margin: 0;
	color: var(--cotec-projetos-single-ink);
	font-size: clamp(1.9rem, 3.2vw, 3rem);
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.04;
	text-transform: uppercase;
	text-wrap: balance;
	overflow-wrap: anywhere;
}

.cotec-projetos-social {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.85rem;
	margin-top: clamp(2rem, 5vw, 3.75rem);
}

.cotec-projetos-social__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	color: var(--cotec-projetos-single-ink);
	border: 1.5px solid rgb(255 255 255 / 85%);
	border-radius: 50%;
	text-decoration: none;
	transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.cotec-projetos-social__link:hover {
	color: var(--cotec-projetos-single-red);
	background: var(--cotec-projetos-single-white);
	border-color: var(--cotec-projetos-single-white);
}

.cotec-projetos-social__link svg {
	display: block;
	width: 1.2rem;
	height: 1.2rem;
	fill: currentColor;
}

.cotec-projetos-single-main a:focus-visible {
	outline: 3px solid var(--cotec-color-focus, #A50505);
	outline-offset: 3px;
}

.cotec-projetos-single-visual {
	position: relative;
	display: block;
	width: 100%;
	margin: 0;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--cotec-projetos-single-line);
}

.cotec-projetos-single-visual__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.cotec-projetos-single-visual.is-placeholder {
	isolation: isolate;
	background:
		linear-gradient(135deg, transparent 0 48%, rgb(20 20 20 / 14%) 48% 51%, transparent 51% 100%),
		var(--cotec-projetos-single-line);
}

.cotec-projetos-single-visual__band {
	position: absolute;
	z-index: -1;
	top: 50%;
	right: -4%;
	left: -4%;
	height: 29%;
	background: var(--cotec-projetos-single-red);
	transform: translateY(-50%) rotate(-2deg);
}

.cotec-projetos-single-visual__label {
	position: absolute;
	top: 50%;
	left: 50%;
	color: var(--cotec-projetos-single-white);
	font-size: clamp(0.9rem, 2vw, 1.25rem);
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1;
	text-transform: uppercase;
	transform: translate(-50%, -50%);
}

.cotec-projetos-single-body {
	padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 4vw, 3rem) clamp(5rem, 10vw, 9rem);
	background: var(--cotec-projetos-single-white);
}

.cotec-projetos-single-content {
	width: min(100%, 60rem);
	margin-inline: auto;
	color: var(--cotec-projetos-single-ink);
	font-size: clamp(1rem, 1.35vw, 1.12rem);
	line-height: 1.72;
	overflow-wrap: anywhere;
}

.cotec-projetos-single-content > *:first-child {
	margin-top: 0;
}

.cotec-projetos-single-content > *:last-child {
	margin-bottom: 0;
}

.cotec-projetos-single-content > p:first-child {
	font-weight: 600;
}

.cotec-projetos-single-content p {
	margin: 0 0 1.45em;
}

.cotec-projetos-single-content h2,
.cotec-projetos-single-content h3,
.cotec-projetos-single-content h4 {
	margin: 2.4em 0 0.7em;
	color: var(--cotec-projetos-single-red);
	font-weight: 700;
	letter-spacing: 0.018em;
	line-height: 1.25;
	text-transform: uppercase;
}

.cotec-projetos-single-content h2 {
	font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.cotec-projetos-single-content h3 {
	font-size: clamp(1rem, 1.7vw, 1.15rem);
}

.cotec-projetos-single-content h4 {
	font-size: 1rem;
}

.cotec-projetos-single-content ul,
.cotec-projetos-single-content ol {
	margin: 0 0 1.45em;
	padding-left: 1.35em;
}

.cotec-projetos-single-content li + li {
	margin-top: 0.45em;
}

.cotec-projetos-single-content a {
	color: var(--cotec-projetos-single-red);
	font-weight: 600;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
}

.cotec-projetos-single-content a:hover {
	color: var(--cotec-projetos-single-salmon);
}

.cotec-projetos-single-content img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
}

.cotec-projetos-single-content figure,
.cotec-projetos-single-content .wp-block-image {
	max-width: 100%;
	margin: 2rem 0;
}

.cotec-projetos-single-content figcaption {
	margin-top: 0.6rem;
	color: var(--cotec-projetos-single-muted);
	font-size: 0.76rem;
	line-height: 1.5;
}

.cotec-projetos-single-content blockquote {
	margin: 2rem 0;
	padding: 0.25rem 0 0.25rem 1.4rem;
	color: var(--cotec-projetos-single-muted);
	border-left: 0.25rem solid var(--cotec-projetos-single-red);
}

.cotec-projetos-single-content table {
	width: 100%;
	margin: 2rem 0;
	border-collapse: collapse;
}

.cotec-projetos-single-content th,
.cotec-projetos-single-content td {
	padding: 0.75rem;
	border: 1px solid var(--cotec-projetos-single-line);
	text-align: left;
	vertical-align: top;
}

.cotec-projetos-single-content th {
	background: var(--cotec-projetos-single-soft);
}

.cotec-projetos-single-content .wp-block-button__link,
.cotec-projetos-single-content a.button,
.cotec-projetos-single-content a.wp-element-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.75rem;
	padding: 0.65rem 1.35rem;
	color: var(--cotec-projetos-single-white);
	background: var(--cotec-projetos-single-red);
	border: 2px solid var(--cotec-projetos-single-red);
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
}

.cotec-projetos-single-content .wp-block-button__link:hover,
.cotec-projetos-single-content a.button:hover,
.cotec-projetos-single-content a.wp-element-button:hover {
	color: var(--cotec-projetos-single-red);
	background: var(--cotec-projetos-single-white);
}

.cotec-projetos-single-content iframe,
.cotec-projetos-single-content video {
	max-width: 100%;
}

@media (hover: hover) and (pointer: fine) {
	.cotec-projetos-card:hover .cotec-projetos-media img {
		transform: scale(1.025);
	}
}

@media (max-width: 62rem) {
	.cotec-projetos-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cotec-projetos-single-hero__grid {
		grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 1fr);
		gap: clamp(2rem, 5vw, 3.5rem);
	}
}

@media (max-width: 47.99rem) {
	.cotec-projetos-single-hero__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.cotec-projetos-single-hero .cotec-projetos-back {
		margin-bottom: 2rem;
	}

	.cotec-projetos-single-hero h1 {
		max-width: none;
	}

	.cotec-projetos-social {
		margin-top: 1.75rem;
	}

	.cotec-projetos-single-visual {
		margin-top: 0.5rem;
	}
}

@media (max-width: 35.99rem) {
	.cotec-projetos-intro {
		padding-top: 2.5rem;
	}

	.cotec-projetos-card-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 2.2rem;
	}

	.cotec-projetos-card-title {
		font-size: 1.1rem;
	}

	.cotec-projetos-pagination .prev,
	.cotec-projetos-pagination .next {
		width: 100%;
	}

	.cotec-projetos-single-hero {
		padding-block: 2rem 2.75rem;
	}

	.cotec-projetos-single-body {
		padding-block: 3rem 5rem;
	}

	.cotec-projetos-single-content {
		font-size: 1rem;
		line-height: 1.65;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cotec-projetos *,
	.cotec-projetos *::before,
	.cotec-projetos *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

@media print {
	.cotec-projetos-more-wrap,
	.cotec-projetos-pagination,
	.cotec-projetos-back {
		display: none !important;
	}

	.cotec-projetos-intro,
	.cotec-projetos-topic-section,
	.cotec-projetos-grid-view {
		padding: 8mm 0;
		background: #FFFFFF !important;
	}

	.cotec-projetos-single-hero,
	.cotec-projetos-single-body {
		padding: 8mm 0;
		background: #FFFFFF !important;
	}

	.cotec-projetos-social {
		display: none !important;
	}

	.cotec-projetos-single-hero__grid {
		grid-template-columns: 1fr 1fr;
		gap: 10mm;
	}

	.cotec-projetos-card-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 8mm;
	}

	.cotec-projetos-card {
		break-inside: avoid;
	}
}
