/* ============================================================
   PAGES v3 — Port LITERAL de src/app/pages/{QuemSomos,Bienal,CCBA,Exposicoes}.tsx
   ============================================================ */


/* ============================================================
   PADRÃO COMUM: HERO DE PÁGINA INTERNA
   <section className="pt-32 pb-20 bg-white border-b border-black/10">
     <div className="max-w-[1400px] mx-auto px-4 sm:px-6 lg:px-8">
       <div className="grid grid-cols-1 md:grid-cols-12 gap-10 items-end">
         <div className="md:col-span-7"> kicker + h1 </div>
         <div className="md:col-span-4 md:col-start-9"> lead + extras </div>
   ============================================================ */

.v3-page-hero {
	padding-top: 8rem;          /* pt-32 */
	padding-bottom: 5rem;       /* pb-20 */
	background: #fff;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}
.v3-page-hero__container {
	max-width: 1400px;
	margin-inline: auto;
	padding-inline: 1rem;
}
@media (min-width: 640px)  { .v3-page-hero__container { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .v3-page-hero__container { padding-inline: 2rem; } }

.v3-page-hero__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;                /* gap-10 */
	align-items: end;
}
@media (min-width: 768px) {
	.v3-page-hero__grid { grid-template-columns: repeat(12, 1fr); }
}

.v3-page-hero__main {
	display: block;
}
@media (min-width: 768px) {
	.v3-page-hero__main { grid-column: span 7 / span 7; }
}
.v3-page-hero__side {
	display: block;
}
@media (min-width: 768px) {
	.v3-page-hero__side { grid-column: 9 / span 4; }
}

/* Kicker:
   <p className="text-xs font-bold uppercase tracking-[0.22em] text-[#???] mb-6">
*/
.v3-page-hero__kicker {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 12px;            /* text-xs */
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.22em;     /* tracking-[0.22em] */
	color: rgba(0,0,0,0.4);
	margin: 0 0 1.5rem 0;       /* mb-6 */
}
.v3-page-hero__kicker--magenta   { color: #CA047A; }
.v3-page-hero__kicker--orange    { color: #FF6600; }
.v3-page-hero__kicker--blue      { color: #0047FF; }
.v3-page-hero__kicker--turquoise { color: #00C1AC; }
.v3-page-hero__kicker--red       { color: #B30000; }

/* Título:
   <h1 className="font-[900] uppercase tracking-tighter leading-[0.88]"
       style={{ fontSize: 'clamp(3rem,7vw,7.5rem)' }}>
*/
.v3-page-hero__title {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: clamp(3rem, 7vw, 7.5rem);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -0.05em;    /* tracking-tighter */
	line-height: 0.88;
	color: #000;
	margin: 0;
}

/* Lead:
   <p className="text-base font-medium text-black/50 leading-relaxed">
   (Bienal usa font-['Georgia',serif] text-black/55)
*/
.v3-page-hero__lead {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: rgba(0,0,0,0.5);
	line-height: 1.625;         /* leading-relaxed */
	margin: 0;
}
.v3-page-hero__lead--serif {
	font-family: Georgia, 'Times New Roman', serif;
	color: rgba(0,0,0,0.55);
}


/* ============================================================
   BIENAL — Cards das Edições
   <Link className="group relative overflow-hidden flex flex-col min-h-[420px]">
   ============================================================ */

.v3-bienal-edicoes {
	padding-block: 5rem;        /* py-20 */
	border-bottom: 1px solid rgba(0,0,0,0.1);
}
.v3-bienal-edicoes__container {
	max-width: 1400px;
	margin-inline: auto;
	padding-inline: 1rem;
}
@media (min-width: 640px)  { .v3-bienal-edicoes__container { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .v3-bienal-edicoes__container { padding-inline: 2rem; } }

.v3-bienal-edicoes__kicker {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	color: rgba(0,0,0,0.35);
	margin: 0 0 2.5rem 0;       /* mb-10 */
}
.v3-bienal-edicoes__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;                /* gap-6 */
}
@media (min-width: 768px) {
	.v3-bienal-edicoes__grid { grid-template-columns: repeat(2, 1fr); }
}
.v3-bienal-card {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	min-height: 420px;          /* min-h-[420px] */
	color: #fff;
	text-decoration: none;
}
.v3-bienal-card__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(100%) brightness(0.35);
	transition: filter 700ms ease;
}
.v3-bienal-card:hover .v3-bienal-card__img {
	filter: grayscale(0%) brightness(0.35);
}
.v3-bienal-card__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, #000 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
}
.v3-bienal-card__body {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 2.5rem;            /* p-10 */
	flex: 1;
}
.v3-bienal-card__year {
	display: inline-block;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 0.125rem 0.5rem;
	align-self: flex-start;
	margin-bottom: 1rem;        /* mb-4 */
	color: #fff;
}
.v3-bienal-card__num {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 4.5rem;          /* text-7xl */
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.05em;
	margin: 0 0 0.5rem 0;       /* mb-2 */
}
.v3-bienal-card__title {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 30px;            /* text-3xl */
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -0.05em;
	color: #fff;
	line-height: 1.25;
	margin: 0 0 0.5rem 0;       /* mb-2 */
}
@media (min-width: 768px) { .v3-bienal-card__title { font-size: 36px; } } /* md:text-4xl */
.v3-bienal-card__cur {
	color: rgba(255,255,255,0.5);
	font-size: 14px;
	font-weight: 500;
	margin: 0 0 1.5rem 0;       /* mb-6 */
}
.v3-bienal-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #fff;
	border-bottom: 1px solid;
	padding-bottom: 0.125rem;
	align-self: flex-start;
	transition: gap 300ms ease;
}
.v3-bienal-card:hover .v3-bienal-card__cta { gap: 1rem; }


/* ============================================================
   BIENAL — Impacto Acumulado (banner preto)
   ============================================================ */

.v3-bienal-impacto {
	background: #000;
	color: #fff;
	padding-block: 5rem;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}
.v3-bienal-impacto__container {
	max-width: 1400px;
	margin-inline: auto;
	padding-inline: 1rem;
}
@media (min-width: 640px)  { .v3-bienal-impacto__container { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .v3-bienal-impacto__container { padding-inline: 2rem; } }
.v3-bienal-impacto__kicker {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255,255,255,0.3);
	margin: 0 0 2.5rem 0;       /* mb-10 */
}
.v3-bienal-impacto__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1px;
	background: rgba(255,255,255,0.1);
}
@media (min-width: 768px) {
	.v3-bienal-impacto__grid { grid-template-columns: repeat(4, 1fr); }
}
.v3-bienal-impacto__cell {
	background: #000;
	padding: 2rem;              /* p-8 */
}
@media (min-width: 768px) { .v3-bienal-impacto__cell { padding: 2.5rem; } } /* md:p-10 */
.v3-bienal-impacto__value {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 36px;            /* text-4xl */
	font-weight: 900;
	letter-spacing: -0.05em;
	color: #fff;
	margin: 0 0 0.5rem 0;
}
@media (min-width: 768px) { .v3-bienal-impacto__value { font-size: 48px; } }
.v3-bienal-impacto__label {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255,255,255,0.3);
	margin: 0;
}


/* ============================================================
   BIENAL — Mídia Kit
   ============================================================ */

.v3-bienal-midia {
	padding-block: 5rem;
	background: #f4f4f4;
	color: #000;
	text-align: center;
}
.v3-bienal-midia__container {
	max-width: 1400px;
	margin-inline: auto;
	padding-inline: 1rem;
}
@media (min-width: 640px)  { .v3-bienal-midia__container { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .v3-bienal-midia__container { padding-inline: 2rem; } }
.v3-bienal-midia__title {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 36px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -0.05em;
	margin: 0 0 1rem 0;
}
@media (min-width: 768px) { .v3-bienal-midia__title { font-size: 48px; } }
.v3-bienal-midia__lead {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 20px;            /* text-xl */
	color: rgba(0,0,0,0.6);
	max-width: 36rem;           /* max-w-xl */
	margin: 0 auto 2.5rem auto; /* mb-10 */
}
.v3-bienal-midia__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: #000;
	color: #fff;
	padding: 1rem 2.5rem;       /* px-10 py-4 */
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	text-decoration: none;
	transition: background 200ms ease;
}
.v3-bienal-midia__btn:hover { background: rgba(0,0,0,0.7); color: #fff; }


/* ============================================================
   CCBA — Hero direita (endereço + horários + instagram)
   ============================================================ */

.v3-ccba-meta {
	margin-top: 1.5rem;
}
.v3-ccba-meta__block {
	display: flex;
	flex-direction: column;
	gap: 0;
	border-top: 1px solid rgba(0,0,0,0.1);
	padding-top: 1.25rem;       /* pt-5 */
	margin-bottom: 1.25rem;     /* mb-5 */
}
.v3-ccba-meta__addr {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin: 0 0 0.25rem 0;      /* mb-1 */
}
.v3-ccba-meta__addr-sub {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 12px;
	font-weight: 500;
	color: rgba(0,0,0,0.45);
	margin: 0;
}
.v3-ccba-meta__hours {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	border-top: 1px solid rgba(0,0,0,0.1);
	padding-top: 1.25rem;
}
.v3-ccba-meta__hour-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
}
.v3-ccba-meta__hour-label {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 12px;
	font-weight: 500;
	color: rgba(0,0,0,0.4);
}
.v3-ccba-meta__hour-val {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}
.v3-ccba-meta__nota {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 11px;
	font-weight: 500;
	color: rgba(0,0,0,0.3);
	margin-top: 0.25rem;
}
.v3-ccba-meta__ig {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 1rem;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(0,0,0,0.4);
	text-decoration: none;
	transition: color 200ms ease;
}
.v3-ccba-meta__ig:hover { color: #CA047A; }


/* ============================================================
   CCBA — Galeria Rotativa (full bleed)
   ============================================================ */

.v3-ccba-galeria {
	position: relative;
	width: 100%;
	height: 65vh;
	overflow: hidden;
}
.v3-ccba-galeria__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 1000ms ease;
}
.v3-ccba-galeria__slide.is-active { opacity: 1; }
.v3-ccba-galeria__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.v3-ccba-galeria__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
	pointer-events: none;
}
.v3-ccba-galeria__overlay {
	position: absolute;
	bottom: 2rem;
	left: 2rem;
	right: 2rem;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	pointer-events: none;
}
.v3-ccba-galeria__label {
	color: #fff;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	margin: 0;
}
.v3-ccba-galeria__dots {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	pointer-events: auto;
}
.v3-ccba-galeria__dot {
	width: 0.375rem;
	height: 0.375rem;
	border-radius: 9999px;
	background: rgba(255,255,255,0.4);
	border: 0;
	cursor: pointer;
	padding: 0;
	transition: width 300ms ease, background 300ms ease;
}
.v3-ccba-galeria__dot.is-active {
	width: 2rem;
	background: #fff;
}


/* ============================================================
   CCBA — Espaços (grid 6 cards)
   ============================================================ */

.v3-ccba-espacos {
	padding-block: 5rem;
	background: #fff;
}
.v3-ccba-espacos__container {
	max-width: 1400px;
	margin-inline: auto;
	padding-inline: 1rem;
}
@media (min-width: 640px)  { .v3-ccba-espacos__container { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .v3-ccba-espacos__container { padding-inline: 2rem; } }

.v3-ccba-espacos__head {
	margin-bottom: 4rem;        /* mb-16 */
}
.v3-ccba-espacos__kicker {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	color: rgba(0,0,0,0.35);
	margin: 0 0 1rem 0;         /* mb-4 */
}
.v3-ccba-espacos__lead {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 20px;            /* text-xl */
	color: rgba(0,0,0,0.6);
	max-width: 42rem;           /* max-w-2xl */
	margin: 0;
}

.v3-ccba-espacos__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1px;
	background: rgba(0,0,0,0.08);
	margin-bottom: 2.5rem;      /* mb-10 */
}
@media (min-width: 640px)  { .v3-ccba-espacos__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .v3-ccba-espacos__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .v3-ccba-espacos__grid { grid-template-columns: repeat(6, 1fr); } }
.v3-ccba-espaco {
	background: #fff;
	padding: 2rem;              /* p-8 */
	color: inherit;
	text-decoration: none;
	display: block;
	transition: background 200ms ease;
}
.v3-ccba-espaco:hover { background: #f9fafb; }
.v3-ccba-espaco__icon {
	width: 3rem;                /* w-12 */
	height: 3rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	margin-bottom: 1.5rem;      /* mb-6 */
}
.v3-ccba-espaco__title {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 20px;            /* text-xl */
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -0.025em;
	margin: 0 0 0.75rem 0;      /* mb-3 */
}
.v3-ccba-espaco__desc {
	color: rgba(0,0,0,0.6);
	font-weight: 500;
	line-height: 1.625;
	font-size: 14px;            /* text-sm */
	margin: 0 0 1rem 0;
}
.v3-ccba-espaco__cta {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	opacity: 0;
	transition: opacity 200ms ease;
}
.v3-ccba-espaco:hover .v3-ccba-espaco__cta { opacity: 1; }

/* Acessibilidade */
.v3-ccba-a11y {
	border-top: 1px solid rgba(0,0,0,0.1);
	padding-top: 2rem;
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
}
.v3-ccba-a11y__icon {
	width: 3rem;
	height: 3rem;
	background: #000;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	flex-shrink: 0;
}
.v3-ccba-a11y__title {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin: 0 0 0.5rem 0;
}
.v3-ccba-a11y__desc {
	font-size: 14px;
	color: rgba(0,0,0,0.5);
	font-weight: 500;
	line-height: 1.625;
	text-align: justify;
	max-width: 42rem;
	margin: 0;
}


/* ============================================================
   QUEM SOMOS — Seção sticky (História / Marcos / Premissas / etc)
   <div className="grid grid-cols-1 md:grid-cols-4 gap-16">
     <div className="md:col-span-1"> kicker sticky </div>
     <div className="md:col-span-3"> conteúdo </div>
   ============================================================ */

.v3-qs-section {
	padding-block: 5rem;        /* py-20 */
	border-bottom: 1px solid rgba(0,0,0,0.1);
}
.v3-qs-section--manifesto {
	padding-block: 6rem;
	background: #000;
	color: #fff;
	text-align: center;
}
.v3-qs-section__container {
	max-width: 1400px;
	margin-inline: auto;
	padding-inline: 1rem;
}
@media (min-width: 640px)  { .v3-qs-section__container { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .v3-qs-section__container { padding-inline: 2rem; } }

.v3-qs-section__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;                  /* gap-16 */
}
@media (min-width: 768px) {
	.v3-qs-section__grid { grid-template-columns: repeat(4, 1fr); }
}
.v3-qs-section__kicker {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	color: rgba(0,0,0,0.35);
	margin: 0;
	position: sticky;
	top: 8rem;
	align-self: start;
}
@media (min-width: 768px) {
	.v3-qs-section__kicker-col { grid-column: span 1 / span 1; }
	.v3-qs-section__body { grid-column: span 3 / span 3; }
}

/* História — parágrafos em serif */
.v3-qs-historia {
	max-width: 42rem;           /* max-w-2xl */
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}
.v3-qs-historia p {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 20px;            /* text-xl */
	line-height: 1.625;
	color: rgba(0,0,0,0.75);
	margin: 0;
}

/* Marcos — timeline */
.v3-qs-marcos {
	display: flex;
	flex-direction: column;
	border-top: 1px solid rgba(0,0,0,0.1);
}
.v3-qs-marcos__bloco {
	padding-block: 2.5rem;      /* py-10 */
	border-bottom: 1px solid rgba(0,0,0,0.1);
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}
@media (min-width: 768px) {
	.v3-qs-marcos__bloco { grid-template-columns: repeat(12, 1fr); }
}
.v3-qs-marcos__ano {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 2rem;
	font-weight: 900;
	line-height: 1;
}
@media (min-width: 768px) { .v3-qs-marcos__ano-col { grid-column: span 2 / span 2; } }
.v3-qs-marcos__eventos {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
@media (min-width: 768px) { .v3-qs-marcos__eventos-col { grid-column: span 10 / span 10; } }
.v3-qs-marcos__evento {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}
.v3-qs-marcos__dot {
	margin-top: 0.375rem;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	flex-shrink: 0;
}
.v3-qs-marcos__titulo {
	font-family: 'Inter', system-ui, sans-serif;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: -0.025em;
	margin: 0 0 0.25rem 0;
}
.v3-qs-marcos__desc {
	font-size: 14px;
	color: rgba(0,0,0,0.55);
	font-weight: 500;
	line-height: 1.625;
	margin: 0;
}

/* Premissas — grid 2 cols */
.v3-qs-premissas {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
}
@media (min-width: 768px) {
	.v3-qs-premissas { grid-template-columns: repeat(2, 1fr); }
}
.v3-qs-premissa__num {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 3rem;            /* text-5xl */
	font-weight: 900;
	display: block;
	margin-bottom: 1.25rem;     /* mb-5 */
}
.v3-qs-premissa__titulo {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: clamp(1.1rem, 2vw, 1.4rem);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -0.05em;
	margin: 0 0 0.75rem 0;
}
.v3-qs-premissa__desc {
	font-size: 16px;
	color: rgba(0,0,0,0.65);
	font-weight: 500;
	line-height: 1.625;
	margin: 0;
}

/* Manifesto */
.v3-qs-manifesto__container {
	max-width: 1400px;
	margin-inline: auto;
	padding-inline: 1rem;
	text-align: center;
}
@media (min-width: 640px)  { .v3-qs-manifesto__container { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .v3-qs-manifesto__container { padding-inline: 2rem; } }
.v3-qs-manifesto__quote {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 6rem;
	font-weight: 900;
	color: #00C1AC;
	line-height: 1;
	display: block;
	margin-bottom: 2rem;
}
.v3-qs-manifesto__text {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.75rem, 4vw, 3.5rem);
	line-height: 1.25;
	max-width: 56rem;
	margin: 0 auto 3rem auto;
	color: rgba(255,255,255,0.9);
}
.v3-qs-manifesto__author {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255,255,255,0.4);
}

/* Diretoria — h3 + grid de FichaPessoa */
.v3-qs-h3 {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -0.05em;
	margin: 0 0 3rem 0;         /* mb-12 */
	color: #000;
}
.v3-qs-fichas {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}
@media (min-width: 640px) { .v3-qs-fichas { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .v3-qs-fichas { grid-template-columns: repeat(3, 1fr); } }
.v3-qs-ficha { display: block; }

/* Photo container — aspect-ratio 3/4 */
.v3-qs-ficha__photo {
	width: 100%;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	margin-bottom: 1rem;
	background: #f3f4f6;        /* bg-gray-100 fallback */
	display: flex;
	align-items: center;
	justify-content: center;
}
.v3-qs-ficha__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(100%);
	transition: filter 500ms ease;
}
.v3-qs-ficha:hover .v3-qs-ficha__photo img { filter: grayscale(0%); }
.v3-qs-ficha__initials {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 2.5rem;
	font-weight: 900;
	color: rgba(0,0,0,0.2);
	letter-spacing: -0.02em;
}

/* Cargo (azul) */
.v3-qs-ficha__cargo {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #0047FF;
	margin: 0 0 0.25rem 0;
}

/* Nome */
.v3-qs-ficha__nome {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 1.1rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -0.025em;
	margin: 0 0 0.75rem 0;
}

/* Bio (serif) */
.v3-qs-ficha__bio {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 0.9rem;
	color: rgba(0,0,0,0.65);
	line-height: 1.6;
	margin: 0 0 0.75rem 0;
}

/* LinkedIn */
.v3-qs-ficha__linkedin {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	color: rgba(0,0,0,0.4);
	text-decoration: none;
	transition: color 200ms ease;
}
.v3-qs-ficha__linkedin:hover { color: #0047FF; }


/* ============================================================
   QUEM SOMOS — Organograma
   ============================================================ */

.v3-qs-organo {
	margin-top: 5rem;           /* mt-20 */
	padding-top: 4rem;          /* pt-16 */
	border-top: 1px solid rgba(0,0,0,0.1);
}
.v3-qs-organo__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 2.5rem;
}
.v3-qs-organo__title {
	font-size: 2rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	margin: 0;
}
.v3-qs-organo__download {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.7rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	border-bottom: 1px solid rgba(0,0,0,0.3);
	padding-bottom: 0.1rem;
	color: #000;
	text-decoration: none;
	transition: color 200ms ease, border-color 200ms ease;
}
.v3-qs-organo__download:hover { color: #0047FF; border-color: #0047FF; }

.v3-qs-organo__chart { overflow-x: auto; }
.v3-qs-organo__chart-inner { min-width: 640px; }

/* Box (caixa de cargo) */
.v3-qs-organo__box {
	border: 1px solid rgba(0,0,0,0.2);
	padding: 0.75rem 1rem;
	text-align: center;
}
.v3-qs-organo__box--presidencia {
	border: 2px solid #000;
	padding: 1rem 2rem;
}
.v3-qs-organo__box-label {
	font-size: 0.6rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: rgba(0,0,0,0.4);
	margin: 0 0 0.2rem 0;
}
.v3-qs-organo__box--presidencia .v3-qs-organo__box-label {
	font-size: 0.65rem;
	letter-spacing: 0.15em;
}
.v3-qs-organo__box-nome {
	font-size: 0.8rem;
	font-weight: 800;
	text-transform: uppercase;
	margin: 0;
}
.v3-qs-organo__box--presidencia .v3-qs-organo__box-nome { font-size: 0.9rem; }

.v3-qs-organo__center {
	display: flex;
	justify-content: center;
	margin-bottom: 1.5rem;
}
.v3-qs-organo__vline {
	display: flex;
	justify-content: center;
}
.v3-qs-organo__vline-bar {
	width: 2px;
	height: 32px;
	background: rgba(0,0,0,0.15);
}
.v3-qs-organo__hline {
	display: flex;
	justify-content: center;
}
.v3-qs-organo__hline-bar {
	width: 75%;
	height: 2px;
	background: rgba(0,0,0,0.15);
}
.v3-qs-organo__diretorias {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	margin-bottom: 2rem;
}
.v3-qs-organo__diretoria-col {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.v3-qs-organo__box--diretoria {
	width: 100%;
	border-top-width: 3px;
}
.v3-qs-organo__conselhos {
	border-top: 1px dashed rgba(0,0,0,0.15);
	padding-top: 1.5rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}
.v3-qs-organo__conselhos-label {
	font-size: 0.6rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: rgba(0,0,0,0.35);
	flex-shrink: 0;
	margin: 0;
}
.v3-qs-organo__conselhos-line {
	flex: 1;
	height: 1px;
	background: rgba(0,0,0,0.1);
	min-width: 24px;
}
.v3-qs-organo__box--conselho {
	padding: 0.75rem 1.25rem;
	border-top-width: 3px;
}

/* Relatórios */
.v3-qs-relatorios {
	display: flex;
	flex-direction: column;
	border-top: 1px solid rgba(0,0,0,0.1);
}
.v3-qs-relatorio {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding-block: 2rem;        /* py-8 */
	border-bottom: 1px solid rgba(0,0,0,0.1);
	text-decoration: none;
	color: inherit;
	transition: padding 300ms ease;
}
.v3-qs-relatorio:hover { padding-inline: 1.5rem; }
@media (min-width: 640px) {
	.v3-qs-relatorio { flex-direction: row; align-items: center; justify-content: space-between; }
}
.v3-qs-relatorio__left {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
@media (min-width: 640px) {
	.v3-qs-relatorio__left { flex-direction: row; align-items: center; gap: 3rem; }
}
.v3-qs-relatorio__year {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 20px;
	font-weight: 900;
	color: rgba(0,0,0,0.4);
	transition: color 200ms ease;
}
.v3-qs-relatorio:hover .v3-qs-relatorio__year { color: #B30000; }
.v3-qs-relatorio__title {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 20px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: -0.025em;
}
@media (min-width: 768px) { .v3-qs-relatorio__title { font-size: 24px; } }
.v3-qs-relatorio__right {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}
.v3-qs-relatorio__size {
	font-size: 14px;
	color: rgba(0,0,0,0.5);
	font-weight: 500;
}
.v3-qs-relatorio__icon {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	border: 1px solid rgba(0,0,0,0.1);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
}
.v3-qs-relatorio:hover .v3-qs-relatorio__icon {
	background: #B30000;
	border-color: #B30000;
	color: #fff;
}

/* Faça seu evento (CTA magenta) */
.v3-qs-evento {
	padding-block: 5rem;
}
.v3-qs-evento__container {
	max-width: 1400px;
	margin-inline: auto;
	padding-inline: 1rem;
}
@media (min-width: 640px)  { .v3-qs-evento__container { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .v3-qs-evento__container { padding-inline: 2rem; } }
.v3-qs-evento__box {
	position: relative;
	overflow: hidden;
	background: #CA047A;
	color: #fff;
	padding: 3rem;              /* p-12 */
}
@media (min-width: 768px) { .v3-qs-evento__box { padding: 6rem; } } /* md:p-24 */

/* <div className="absolute inset-0 opacity-20 mix-blend-multiply transition-transform duration-1000 group-hover:scale-105"> */
.v3-qs-evento__bg {
	position: absolute;
	inset: 0;
	opacity: 0.2;
	mix-blend-mode: multiply;
	transition: transform 1000ms ease;
	pointer-events: none;
	z-index: 1;
}
.v3-qs-evento__box:hover .v3-qs-evento__bg { transform: scale(1.05); }
/* <ImageWithFallback className="w-full h-full object-cover grayscale" /> */
.v3-qs-evento__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: grayscale(100%);
}
.v3-qs-evento__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: end;
}
@media (min-width: 768px) {
	.v3-qs-evento__inner { grid-template-columns: 1fr 1fr; }
}
.v3-qs-evento__title {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 48px;            /* text-5xl */
	font-weight: 900;
	text-transform: uppercase;
	line-height: 1;
	letter-spacing: -0.05em;
	margin: 0 0 1.5rem 0;
}
@media (min-width: 768px) { .v3-qs-evento__title { font-size: 72px; } } /* md:text-7xl */
.v3-qs-evento__lead {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 24px;            /* text-2xl */
	color: rgba(255,255,255,0.9);
	max-width: 28rem;
	margin: 0;
}
.v3-qs-evento__btn {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	background: #fff;
	color: #000;
	padding: 1.25rem 2.5rem;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	text-decoration: none;
	transition: background 200ms ease, color 200ms ease;
}
.v3-qs-evento__btn:hover { background: #000; color: #fff; }
@media (min-width: 768px) {
	.v3-qs-evento__btn-wrap { display: flex; justify-content: flex-end; }
}


/* ============================================================
   EXPOSIÇÕES — Hero stats (3 colunas)
   ============================================================ */

.v3-expo-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: rgba(0,0,0,0.1);
}
.v3-expo-stat {
	background: #fff;
	padding: 0.75rem 1rem;      /* px-4 py-3 */
	text-align: center;
}
.v3-expo-stat__n {
	font-family: 'Inter', system-ui, sans-serif;
	font-weight: 900;
	line-height: 1;
	color: #CA047A;
	font-size: clamp(1.5rem, 3vw, 2rem);
	margin: 0;
}
.v3-expo-stat__l {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(0,0,0,0.4);
	margin: 0.25rem 0 0 0;
}


/* ============================================================
   EXPOSIÇÕES — Filtros (sticky)
   ============================================================ */

.v3-expo-filtros {
	position: sticky;
	top: 6rem; /* abaixo do header h-24 */
	z-index: 20;
	background: #fff;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}
.v3-expo-filtros__container {
	max-width: 1400px;
	margin-inline: auto;
	padding-inline: 1rem;
}
@media (min-width: 640px)  { .v3-expo-filtros__container { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .v3-expo-filtros__container { padding-inline: 2rem; } }
.v3-expo-filtros__row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0;
}
.v3-expo-filtros__group {
	display: flex;
	border-right: 1px solid rgba(0,0,0,0.1);
}
.v3-expo-filtros__btn {
	padding: 1rem 1.25rem;      /* py-4 px-5 */
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(0,0,0,0.4);
	background: transparent;
	border: 0;
	cursor: pointer;
	white-space: nowrap;
	transition: color 200ms ease, background 200ms ease;
	text-decoration: none;
}
.v3-expo-filtros__btn:hover { color: #000; }
.v3-expo-filtros__btn.is-active {
	background: #000;
	color: #fff;
}


/* ============================================================
   EXPOSIÇÕES — Lista por status
   ============================================================ */

.v3-expo-list {
	padding-block: 5rem;
	background: #fff;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}
.v3-expo-list--proximas { background: #f9fafb; }
.v3-expo-list--encerradas { background: #fff; }
.v3-expo-list__container {
	max-width: 1400px;
	margin-inline: auto;
	padding-inline: 1rem;
}
@media (min-width: 640px)  { .v3-expo-list__container { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .v3-expo-list__container { padding-inline: 2rem; } }

.v3-expo-list__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 3rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	gap: 1rem;
	flex-wrap: wrap;
}
.v3-expo-list__title-wrap {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.v3-expo-list__dot {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
}
.v3-expo-list__title {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: clamp(1.5rem, 3vw, 2.5rem);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -0.05em;
	margin: 0;
}

.v3-expo-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1px;
	background: rgba(0,0,0,0.08);
}
@media (min-width: 768px) { .v3-expo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .v3-expo-grid { grid-template-columns: repeat(4, 1fr); } }

.v3-expo-card {
	background: #fff;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	transition: background 200ms ease;
}
.v3-expo-card:hover { background: #f9fafb; }
.v3-expo-card__media {
	position: relative;
	overflow: hidden;
}
.v3-expo-card__media img {
	width: 100%;
	height: 13rem;              /* h-52 */
	object-fit: cover;
	filter: grayscale(100%);
	transition: filter 700ms ease, transform 700ms ease;
}
.v3-expo-card:hover .v3-expo-card__media img {
	filter: grayscale(0%);
	transform: scale(1.03);
}
.v3-expo-card__tags {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.v3-expo-card__tag {
	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 0.125rem 0.5rem;
	color: #fff;
}
.v3-expo-card__body {
	padding: 1.5rem;            /* p-6 */
	display: flex;
	flex-direction: column;
	flex: 1;
}
.v3-expo-card__bar {
	width: 1.25rem;             /* w-5 */
	height: 2px;                /* h-0.5 */
	margin-bottom: 1rem;        /* mb-4 */
	transition: width 300ms ease;
}
.v3-expo-card:hover .v3-expo-card__bar { width: 2.5rem; } /* hover:w-10 */
.v3-expo-card__titulo {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: clamp(0.9rem, 1.4vw, 1rem);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -0.025em;
	line-height: 1.25;
	margin: 0 0 0.5rem 0;
}
.v3-expo-card__subtitulo {
	font-size: 12px;
	font-weight: 500;
	color: rgba(0,0,0,0.45);
	line-height: 1.375;
	margin: 0 0 0.75rem 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.v3-expo-card__foot {
	margin-top: auto;
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(0,0,0,0.08);
}
.v3-expo-card__curadoria {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin: 0;
}
.v3-expo-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.v3-expo-card__data {
	font-size: 10px;
	font-weight: 500;
	color: rgba(0,0,0,0.35);
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	margin: 0;
}

/* CTA programação (banner preto) */
.v3-expo-cta {
	padding-block: 4rem;
	background: #000;
	color: #fff;
	border-top: 1px solid rgba(255,255,255,0.1);
}
.v3-expo-cta__container {
	max-width: 1400px;
	margin-inline: auto;
	padding-inline: 1rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1.5rem;
}
@media (min-width: 640px) {
	.v3-expo-cta__container { flex-direction: row; align-items: center; padding-inline: 1.5rem; }
}
@media (min-width: 1024px) { .v3-expo-cta__container { padding-inline: 2rem; } }
.v3-expo-cta__kicker {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #FF6600;
	margin: 0 0 0.5rem 0;
}
.v3-expo-cta__title {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -0.05em;
	line-height: 1.25;
	margin: 0;
}
.v3-expo-cta__sub {
	color: rgba(255,255,255,0.5);
	font-weight: 500;
	font-size: 14px;
	margin: 0.25rem 0 0 0;
}
.v3-expo-cta__btns {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}
.v3-expo-cta__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 1rem 2rem;
	text-decoration: none;
	transition: background 200ms ease;
}
.v3-expo-cta__btn--primary {
	background: #FF6600;
	color: #000;
}
.v3-expo-cta__btn--primary:hover { background: #fff; color: #000; }
.v3-expo-cta__btn--secondary {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255,255,255,0.2);
}
.v3-expo-cta__btn--secondary:hover { border-color: #fff; color: #fff; }
