/* =========================================================
   ALTANEIRAS — Design Tokens
   ========================================================= */
:root {
	--navy: #0A1F44;
	--navy-soft: #12305F;
	--blue: #1D4E89;
	--gold: #C9A227;
	--red: #D8354A;
	--offwhite: #F5F3EC;
	--gray: #6B7280;
	--ink: #1C2530;
	--white: #FFFFFF;
	--border: #E3E0D5;

	--font-head: 'Playfair Display', Georgia, serif;
	--font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

	--radius: 14px;
	--radius-sm: 8px;
	--max-width: 1180px;
	--gap: 1.75rem;
}

/* =========================================================
   RESET
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--ink);
	background: var(--white);
	line-height: 1.6;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
	font-family: var(--font-head);
	color: var(--navy);
	line-height: 1.2;
	margin: 0 0 0.6em;
	font-weight: 700;
}
p { margin: 0 0 1em; }

.screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
	position: fixed; top: 1rem; left: 1rem; z-index: 9999;
	background: var(--navy); color: var(--white); padding: 0.75rem 1.25rem;
	border-radius: var(--radius-sm); width: auto; height: auto; clip: auto;
}
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	* { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* =========================================================
   LAYOUT HELPERS
   ========================================================= */
.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.wrap--narrow { max-width: 820px; }
.text-gold { color: var(--gold); }

.section { padding: 5rem 0; }
.section--tint { background: var(--offwhite); }
.section--dark { background: var(--navy); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--cta { background: var(--offwhite); padding: 4rem 0; }

.eyebrow {
	font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em;
	text-transform: uppercase; color: var(--blue); margin-bottom: 0.75rem;
}
.eyebrow--gold { color: var(--gold); }

.section__title { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 0.75rem; }
.section__title--light { color: var(--white); }
.section__intro { max-width: 640px; color: var(--gray); font-size: 1.05rem; }
.section__intro--light { color: #CADCFC; }
.section__link { margin-top: 1.5rem; }
.section__link a { color: var(--blue); font-weight: 600; }
.section__link a:hover { color: var(--navy); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
	position: sticky; top: 0; z-index: 500;
	background: linear-gradient(160deg, #0e2f96 0%, #0a2270 100%);
	backdrop-filter: blur(6px);
	border-bottom: 1px solid rgba(232, 200, 106, 0.25);
	box-shadow: 0 10px 30px -18px rgba(4, 9, 30, 0.6);
}
.site-header__inner {
	display: flex; align-items: center; justify-content: space-between;
	padding: 1rem 1.5rem;
}
.site-branding__text { display: flex; flex-direction: column; }
.site-branding__name { font-family: var(--font-head); font-weight: 700; color: var(--white); font-size: 1.15rem; }
.site-branding__tagline { color: var(--gold); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* Logo (Customizer) */
.site-branding .custom-logo-link { display: inline-block; line-height: 0; }
.site-branding .custom-logo { max-height: 56px; width: auto; }

.primary-nav { display: flex; align-items: center; gap: 2rem; }
#primary-menu { display: flex; gap: 1.75rem; }
#primary-menu a {
	color: rgba(255, 255, 255, 0.85); font-size: 0.92rem; font-weight: 500;
	white-space: nowrap;
	transition: color 0.2s ease;
}
#primary-menu a:hover, #primary-menu .current-menu-item > a { color: #E8C86A; }
.nav-cta {
	white-space: nowrap;
	background: linear-gradient(135deg, #E8C86A, #C9A227) !important;
	color: #0A1A33 !important;
	border: none !important;
	border-radius: 12px;
	font-weight: 800;
	box-shadow: 0 6px 20px rgba(201, 162, 39, 0.45);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.nav-cta:hover {
	transform: translateY(-2px);
	color: #0A1A33 !important;
	box-shadow: 0 10px 28px rgba(201, 162, 39, 0.6);
	opacity: 1;
}

.menu-toggle {
	display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 0.5rem;
}
.menu-toggle__bar { width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

@media (max-width: 900px) {
	.menu-toggle { display: flex; }
	.primary-nav {
		position: absolute; top: 100%; left: 0; right: 0;
		background: #0a2270; flex-direction: column; align-items: flex-start;
		padding: 1.5rem; gap: 1.25rem;
		border-bottom: 1px solid rgba(232, 200, 106, 0.25);
		display: none;
	}
	.primary-nav.is-open { display: flex; }
	#primary-menu { flex-direction: column; gap: 1rem; }
	.site-branding .custom-logo { max-height: 44px; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
	display: inline-block; padding: 0.85rem 1.75rem; border-radius: 999px;
	font-weight: 600; font-size: 0.95rem; transition: transform 0.15s ease, opacity 0.15s ease;
	border: 2px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn--small { padding: 0.55rem 1.2rem; font-size: 0.85rem; }
.btn--cta { background: var(--red); color: var(--white); }
.btn--cta:hover { opacity: 0.92; }
.btn--cta-invert { background: var(--navy); color: var(--white); }
.btn--outline { border-color: rgba(255,255,255,0.5); color: var(--white); }
.hero .btn--outline { border-color: rgba(255,255,255,0.4); }
.page-hero .btn--outline { border-color: var(--navy); color: var(--navy); }

/* =========================================================
   HERO (Home)
   ========================================================= */
.hero {
	position: relative; background: var(--navy); color: var(--white);
	padding: 6.5rem 0 0; overflow: hidden;
}
.hero__glow {
	position: absolute; border-radius: 50%; background: var(--blue); opacity: 0.35; filter: blur(10px);
}
.hero__glow--1 { width: 320px; height: 320px; top: -140px; right: -80px; }
.hero__glow--2 { width: 260px; height: 260px; bottom: -140px; left: -100px; }
.hero__inner {
	position: relative; z-index: 2; padding-bottom: 4rem;
	display: grid; grid-template-columns: 1.1fr 0.7fr; gap: 2rem; align-items: center;
}
.hero__col--text { max-width: 640px; }
.hero__title { font-size: clamp(2.1rem, 5vw, 3.1rem); color: var(--white); margin-bottom: 1rem; }
.hero__subtitle { font-size: 1.1rem; color: #CADCFC; max-width: 600px; }
.hero__actions { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }

.hero__col--emblem { display: flex; justify-content: center; }
.emblem { width: 100%; max-width: 280px; }
.emblem__ring { fill: none; stroke: var(--gold); opacity: 0.55; }
.emblem__ring--outer { stroke-width: 1; }
.emblem__ring--inner { stroke-width: 1; opacity: 0.35; }
.emblem__wing { fill: none; stroke: #CADCFC; stroke-width: 1.5; opacity: 0.8; }
.emblem__star { fill: var(--gold); opacity: 0.9; }

@media (max-width: 900px) {
	.hero__inner { grid-template-columns: 1fr; }
	.hero__col--emblem { display: none; }
}

/* Reveal-on-load (respects reduced motion) */
.reveal { animation: altaneiras-fade-up 0.7s ease both; }
.reveal--delay-1 { animation-delay: 0.08s; }
.reveal--delay-2 { animation-delay: 0.16s; }
.reveal--delay-3 { animation-delay: 0.24s; }
@keyframes altaneiras-fade-up {
	from { opacity: 0; transform: translateY(14px); }
	to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
	.reveal { animation: none; }
}

/* =========================================================
   STATS — cartão flutuante sobre o hero
   ========================================================= */
.stats-float-wrap {
	position: relative; z-index: 3;
	margin-top: -70px;
}
.stats-float {
	background: var(--white); border-radius: var(--radius);
	box-shadow: 0 24px 48px rgba(10, 31, 68, 0.18);
	display: grid; grid-template-columns: repeat(4, 1fr);
}
.stats-float .stat {
	padding: 2rem 1.75rem; border-right: 1px solid var(--border);
}
.stats-float .stat:last-child { border-right: none; }
.stat { text-align: left; }
.stat__number { display: block; font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: var(--blue); }
.stat__label { display: block; color: var(--gray); font-size: 0.85rem; margin-top: 0.35rem; line-height: 1.4; }

.section--after-float { padding-top: 5rem; }

@media (max-width: 800px) {
	.stats-float-wrap { margin-top: -40px; }
	.stats-float { grid-template-columns: repeat(2, 1fr); }
	.stats-float .stat:nth-child(2) { border-right: none; }
	.stats-float .stat { border-bottom: 1px solid var(--border); }
	.section--after-float { padding-top: 3rem; }
}

/* =========================================================
   CARD GRIDS
   ========================================================= */
.card-grid { display: grid; gap: var(--gap); margin-top: 2.5rem; }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .card-grid--3, .card-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .card-grid--2, .card-grid--3, .card-grid--4 { grid-template-columns: 1fr; } }

.mini-card {
	background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.mini-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(10, 31, 68, 0.08); border-color: transparent; }
.mini-card h3 { font-size: 1.1rem; margin: 1rem 0 0.5rem; }
.mini-card p { color: var(--gray); font-size: 0.92rem; margin: 0; }
.mini-card__icon {
	display: flex; align-items: center; justify-content: center;
	width: 46px; height: 46px; border-radius: 50%; font-size: 1.2rem;
}
.mini-card__icon--blue { background: rgba(29, 78, 137, 0.1); color: var(--blue); }
.mini-card__icon--gold { background: rgba(201, 162, 39, 0.14); color: var(--gold); }

/* =========================================================
   PULL QUOTE / TESTIMONIAL
   ========================================================= */
.quote-section { position: relative; text-align: center; }
.quote-section__mark {
	position: absolute; top: 0.5rem; left: 50%; transform: translateX(-50%);
	font-family: var(--font-head); font-size: 7rem; color: var(--gold); opacity: 0.14; line-height: 1;
	pointer-events: none;
}
.pull-quote {
	position: relative; margin: 0 auto; font-family: var(--font-head); font-style: italic; font-weight: 700;
	font-size: clamp(1.3rem, 2.6vw, 1.9rem); color: var(--blue); text-align: center; max-width: 820px;
}
.testimonial {
	background: var(--navy-soft); border-radius: var(--radius); padding: 2rem 2.25rem; margin: 2rem 0 0;
	position: relative;
}
.testimonial__mark { font-family: var(--font-head); font-size: 3rem; color: var(--gold); line-height: 1; display: block; margin-bottom: 0.25rem; }
.testimonial p { font-style: italic; font-size: 1.1rem; color: var(--white); margin-bottom: 0.75rem; }
.testimonial cite { color: #CADCFC; font-style: normal; font-size: 0.9rem; }
.testimonial--light { background: var(--offwhite); border: 1px solid var(--border); }
.testimonial--light p { color: var(--ink); }
.testimonial--light cite { color: var(--gray); }
.testimonial--light .testimonial__mark { color: var(--gold); }

/* =========================================================
   EVENT LIST (page interna) & EVENT TILES (home)
   ========================================================= */
.event-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.event-list__item { display: flex; align-items: center; gap: 1rem; }
.event-list__badge { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; }
.event-list__badge--navy { background: var(--navy); }
.event-list__badge--gold { background: var(--gold); }
.event-list__item h3 { margin: 0; font-size: 1.05rem; }
.event-list__item p { margin: 0; color: var(--gray); font-size: 0.9rem; }

.event-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; }
.event-card__tag { display: inline-block; width: 40px; height: 6px; border-radius: 3px; margin-bottom: 1rem; }
.event-card__tag--navy { background: var(--navy); }
.event-card__tag--gold { background: var(--gold); }
.event-card p { color: var(--gray); font-size: 0.95rem; margin: 0; }

.event-tile {
	background: var(--offwhite); border-radius: var(--radius); padding: 2rem;
	transition: background 0.2s ease;
}
.event-tile:hover { background: var(--white); box-shadow: 0 16px 32px rgba(10, 31, 68, 0.08); }
.event-tile__num { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--gold); }
.event-tile h3 { margin: 0.75rem 0 0.4rem; font-size: 1.1rem; }
.event-tile p { margin: 0; color: var(--gray); font-size: 0.9rem; }

/* =========================================================
   CTA BOX
   ========================================================= */
.section--cta { position: relative; overflow: hidden; }
.cta-glow {
	position: absolute; top: 50%; left: 50%; width: 700px; height: 700px;
	transform: translate(-50%, -50%); border-radius: 50%;
	background: radial-gradient(circle, rgba(29,78,137,0.08) 0%, rgba(29,78,137,0) 70%);
	pointer-events: none;
}
.cta-box { position: relative; text-align: center; max-width: 760px; margin: 0 auto; }
.cta-box h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
.cta-box__headline {
	font-size: clamp(1.6rem, 3.2vw, 2.3rem); line-height: 1.25; margin-bottom: 1rem;
}
.cta-box__actions { display: flex; gap: 1rem; justify-content: center; margin-top: 1.75rem; flex-wrap: wrap; }
.btn--outline-navy { border-color: var(--navy); color: var(--navy); }
.btn--outline-navy:hover { background: rgba(10,31,68,0.05); }
.cta-box p { color: var(--gray); }
.cta-box--inline {
	display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
	background: var(--offwhite); border-radius: var(--radius); padding: 1.75rem 2rem; margin-top: 2.5rem; text-align: left; max-width: none;
}
.cta-box--inline p { margin: 0; font-weight: 600; color: var(--navy); }
@media (max-width: 600px) { .cta-box--inline { flex-direction: column; align-items: flex-start; } }

/* =========================================================
   PAGE HERO (páginas internas)
   ========================================================= */
.page-hero { padding: 4.5rem 0 3rem; background: var(--white); }
.page-hero--tint { background: var(--offwhite); }
.page-hero--dark { background: var(--navy); }
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.page-hero__title--light { color: var(--white); font-size: clamp(1.9rem, 4vw, 2.6rem); font-family: var(--font-head); font-weight: 700; margin-bottom: 0.75rem; }
.page-hero__lead { color: var(--gray); font-size: 1.05rem; max-width: 640px; }
.page-hero__lead--light { color: #CADCFC; }

/* =========================================================
   TIMELINE (Quem Somos)
   ========================================================= */
.timeline { position: relative; margin: 3rem 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.timeline__line { position: absolute; top: 44px; left: 0; right: 0; height: 2px; background: var(--border); z-index: 0; }
.timeline__item { position: relative; z-index: 1; text-align: center; }
.timeline__year { display: block; font-family: var(--font-head); font-weight: 700; color: var(--blue); font-size: 1.1rem; margin-bottom: 0.75rem; }
.timeline__dot { display: block; width: 14px; height: 14px; border-radius: 50%; background: var(--navy); border: 3px solid var(--offwhite); margin: 0 auto 0.75rem; }
.timeline__item h3 { font-size: 0.95rem; margin-bottom: 0.35rem; }
.timeline__item p { font-size: 0.82rem; color: var(--gray); }
@media (max-width: 800px) {
	.timeline { grid-template-columns: 1fr; }
	.timeline__line { display: none; }
}

/* =========================================================
   TWO-COLUMN / LISTS / INFO CARDS
   ========================================================= */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin: 2.5rem 0; }
@media (max-width: 700px) { .two-col { grid-template-columns: 1fr; } }
.check-list li { position: relative; padding-left: 1.4rem; margin-bottom: 0.6rem; color: var(--ink); }
.check-list li::before { content: "•"; color: var(--gold); font-weight: 700; position: absolute; left: 0; }

.info-card { background: var(--offwhite); border-radius: var(--radius); padding: 1.75rem; }
.info-card h2 { font-size: 1.15rem; margin-bottom: 0.75rem; }

/* =========================================================
   FEATURE ROWS (O que fazemos)
   ========================================================= */
.feature-row { display: flex; gap: 1.5rem; align-items: flex-start; margin-bottom: 2rem; }
.feature-row__icon { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; margin-top: 0.2rem; }
.feature-row__icon--blue { background: var(--blue); }
.feature-row__icon--gold { background: var(--gold); }
.feature-row h2 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.feature-row p { color: var(--gray); margin: 0; }

.highlight-card { background: var(--offwhite); border-radius: var(--radius); padding: 2rem; margin-top: 2.5rem; }
.highlight-card h2 { font-size: 1.2rem; }
.highlight-card p { color: var(--gray); }
.highlight-card__stat { border-top: 1px solid var(--border); padding-top: 1rem; margin-top: 1rem; }
.highlight-card__stat span { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--blue); margin-right: 0.75rem; }
.highlight-card__stat small { color: var(--gray); }

/* =========================================================
   RESULTS TABLE
   ========================================================= */
.table-wrap { overflow-x: auto; margin-top: 2rem; }
.results-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; min-width: 720px; }
.results-table th {
	text-align: left; background: var(--navy); color: var(--white); padding: 0.85rem 1rem; font-weight: 600;
}
.results-table td { padding: 0.85rem 1rem; border-bottom: 1px solid var(--border); color: var(--ink); }
.results-table tr:nth-child(even) td { background: var(--offwhite); }
.table-note { color: var(--gray); font-size: 0.85rem; margin-top: 1rem; font-style: italic; }

/* =========================================================
   PARTNER / REASON CARDS
   ========================================================= */
.partner-card, .reason-card { background: var(--offwhite); border-radius: var(--radius); padding: 1.75rem; }
.partner-card__badge { display: block; width: 46px; height: 46px; border-radius: 50%; background: var(--navy); margin-bottom: 1rem; }
.partner-card h2, .reason-card h2 { font-size: 1.1rem; }
.partner-card p, .reason-card p { color: var(--gray); font-size: 0.92rem; margin: 0; }
.reason-card { border-left: 3px solid var(--gold); }

/* =========================================================
   ASSOCIATE BOX
   ========================================================= */
.associate-box {
	background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
	padding: 2.5rem; margin-top: 3rem; text-align: center;
}
.associate-box h2 { font-size: 1.3rem; }
.associate-box p { color: var(--gray); margin-bottom: 1.5rem; }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-block { margin-bottom: 2rem; }
.contact-block h2 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.contact-block a { color: var(--blue); font-weight: 600; }

/* =========================================================
   GENERIC PAGE CONTENT (conteúdo do editor WP)
   ========================================================= */
.page-content { color: var(--ink); }
.page-content--extra { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.lede { font-size: 1.15rem; color: var(--navy); font-weight: 500; margin-bottom: 2rem; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--navy); color: #B9C6DE; padding: 3.5rem 0 1.5rem; }
.site-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 800px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .site-footer__grid { grid-template-columns: 1fr; } }
.site-footer__brand { font-family: var(--font-head); color: var(--white); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.4rem; }
.site-footer__tagline { font-style: italic; color: #CADCFC; margin-bottom: 0.4rem; }
.site-footer__meta { font-size: 0.85rem; color: #8FA0C0; }
.footer-widget__title { color: var(--white); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1rem; font-family: var(--font-body); font-weight: 700; }
.footer-nav li { margin-bottom: 0.6rem; }
.footer-nav a:hover { color: var(--white); }
.site-footer__col a { color: #B9C6DE; }
.site-footer__col a:hover { color: var(--white); }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 3rem; padding-top: 1.5rem; font-size: 0.82rem; color: #6E7FA0; }

/* =========================================================
   POST GRID / POST CARD (index.php — notícias/atualizações)
   ========================================================= */
.post-grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap);
	margin-top: 2.5rem;
}
@media (max-width: 900px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .post-grid { grid-template-columns: 1fr; } }

.post-card {
	background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
	overflow: hidden; display: flex; flex-direction: column;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.post-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(10, 31, 68, 0.1); }
.post-card__thumb-link { display: block; }
.post-card__thumb { aspect-ratio: 16 / 10; overflow: hidden; background: var(--offwhite); }
.post-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-card__thumb--placeholder {
	display: flex; align-items: center; justify-content: center;
	background: linear-gradient(135deg, var(--navy), var(--blue));
}
.post-card__thumb-mark { font-family: var(--font-head); font-size: 2.75rem; font-weight: 700; color: var(--gold); }
.post-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post-card__date { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold); font-weight: 700; margin-bottom: 0.5rem; }
.post-card__title { font-size: 1.15rem; margin-bottom: 0.6rem; }
.post-card__title a:hover { color: var(--blue); }
.post-card__excerpt { color: var(--gray); font-size: 0.92rem; flex: 1; }
.post-card__excerpt p { margin: 0; }
.post-card__link { color: var(--blue); font-weight: 600; font-size: 0.9rem; margin-top: 0.75rem; }
.post-card__link:hover { color: var(--navy); }

/* =========================================================
   PAGINATION
   ========================================================= */
.pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 3rem; flex-wrap: wrap; }
.pagination .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 40px; height: 40px; padding: 0 0.75rem;
	border-radius: 999px; border: 1px solid var(--border); color: var(--navy);
	font-size: 0.9rem; font-weight: 600; transition: background 0.15s ease, color 0.15s ease;
}
.pagination .page-numbers:hover { background: var(--offwhite); }
.pagination .page-numbers.current { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* =========================================================
   EMPTY STATE
   ========================================================= */
.empty-state {
	text-align: center; max-width: 480px; margin: 2rem auto; padding: 3rem 2rem;
	background: var(--offwhite); border-radius: var(--radius);
}
.empty-state__mark { font-size: 2.5rem; color: var(--red); display: block; margin-bottom: 1rem; }
.empty-state h2 { font-size: 1.3rem; }
.empty-state p { color: var(--gray); margin-bottom: 1.5rem; }

/* =========================================================
   SINGLE POST
   ========================================================= */
.single-thumb { margin: -1.5rem auto 2rem; border-radius: var(--radius); overflow: hidden; }
.single-content { font-size: 1.05rem; color: var(--ink); }
.single-content p { margin-bottom: 1.3em; }
.single-content h2 { margin-top: 2em; }
.single-content img { border-radius: var(--radius-sm); }
.single-nav { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.single-nav__back { border-color: var(--border); color: var(--navy); }

/* =========================================================
   NOTICE BOX (avisos de público-alvo / restrições de atendimento)
   ========================================================= */
.notice-box {
	background: var(--offwhite); border-left: 3px solid var(--gold); border-radius: var(--radius-sm);
	padding: 1.1rem 1.4rem; margin-bottom: 2.5rem;
}
.notice-box p { margin: 0; color: var(--navy); font-size: 0.92rem; font-weight: 500; }
.section__note { color: var(--gray); font-size: 0.85rem; font-style: italic; margin-top: 1.5rem; max-width: 640px; }

/* =========================================================
   VALUE CARDS (Missão / Visão / Compromisso)
   ========================================================= */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin: 2.5rem 0; }
@media (max-width: 700px) { .value-grid { grid-template-columns: 1fr; } }
.value-card { border-radius: var(--radius); padding: 1.75rem; color: var(--white); }
.value-card h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 0.6rem; }
.value-card p { margin: 0; font-size: 0.92rem; line-height: 1.5; }
.value-card--navy { background: var(--navy); }
.value-card--blue { background: var(--blue); }
.value-card--gold { background: var(--gold); }
.value-card--gold p, .value-card--gold h3 { color: var(--navy); }

/* =========================================================
   STAT ICONS
   ========================================================= */
.stat__icon { width: 26px; height: 26px; color: var(--gold); margin-bottom: 0.6rem; display: block; }

/* =========================================================
   EVENTOS — destaque + lista (Home)
   ========================================================= */
.events-showcase { display: grid; grid-template-columns: 1.1fr 1fr; gap: 2.5rem; margin-top: 2.5rem; align-items: start; }
@media (max-width: 860px) { .events-showcase { grid-template-columns: 1fr; } }

.event-featured__image {
	aspect-ratio: 16/10; border-radius: var(--radius); overflow: hidden; margin-bottom: 1.25rem;
	background: linear-gradient(135deg, var(--navy), var(--blue));
	display: flex; align-items: center; justify-content: center;
}
.event-featured__mark { font-family: var(--font-head); font-size: 3.5rem; font-weight: 700; color: var(--gold); }
.event-featured__meta {
	display: flex; align-items: center; gap: 0.4rem; color: var(--gray); font-size: 0.85rem; margin-bottom: 0.6rem;
}
.icon-inline { width: 15px; height: 15px; vertical-align: -2px; color: var(--gold); }
.icon-inline--spaced { margin-left: 0.9rem; }
.event-featured h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.event-featured p { color: var(--gray); margin-bottom: 1.25rem; }

.event-list-rich { display: flex; flex-direction: column; gap: 1.5rem; }
.event-list-rich__item { display: flex; gap: 1.1rem; align-items: flex-start; }
.event-badge {
	flex-shrink: 0; width: 76px; border-radius: var(--radius-sm); padding: 0.6rem 0.4rem;
	text-align: center; color: var(--white);
}
.event-badge--navy { background: var(--navy); }
.event-badge--gold { background: var(--gold); color: var(--navy); }
.event-badge__day { display: block; font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; line-height: 1; }
.event-badge__month { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.2rem; }
.event-list-rich__item h4 { font-size: 1.02rem; margin: 0 0 0.3rem; }
.event-list-rich__item p { margin: 0; color: var(--gray); font-size: 0.88rem; }

/* =========================================================
   GALERIA DE FOTOS (Home)
   ========================================================= */
.photo-grid {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.5rem;
}
@media (max-width: 900px) { .photo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .photo-grid { grid-template-columns: repeat(2, 1fr); } }

.photo-grid__item {
	position: relative; display: block; aspect-ratio: 1 / 1; overflow: hidden; border-radius: var(--radius-sm);
	background: var(--offwhite);
}
.photo-grid__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.photo-grid__item:hover img { transform: scale(1.06); }
.photo-grid__zoom {
	position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
	background: rgba(10, 31, 68, 0); transition: background 0.25s ease;
}
.photo-grid__zoom svg {
	width: 34px; height: 34px; color: var(--white); opacity: 0; transform: scale(0.8);
	transition: opacity 0.25s ease, transform 0.25s ease;
}
.photo-grid__item:hover .photo-grid__zoom { background: rgba(10, 31, 68, 0.35); }
.photo-grid__item:hover .photo-grid__zoom svg { opacity: 1; transform: scale(1); }

/* Lightbox */
.altaneiras-lightbox {
	position: fixed; inset: 0; z-index: 9999; background: rgba(10, 31, 68, 0.92);
	display: flex; align-items: center; justify-content: center; padding: 2rem;
	opacity: 0; visibility: hidden; transition: opacity 0.25s ease;
}
.altaneiras-lightbox.is-open { opacity: 1; visibility: visible; }
.altaneiras-lightbox__img { max-width: 90vw; max-height: 80vh; border-radius: var(--radius-sm); box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.altaneiras-lightbox__caption { color: #CADCFC; text-align: center; margin-top: 1rem; font-size: 0.95rem; }
.altaneiras-lightbox__close {
	position: absolute; top: 1.5rem; right: 1.5rem; width: 44px; height: 44px; border-radius: 50%;
	background: rgba(255,255,255,0.1); border: none; color: var(--white); font-size: 1.5rem; cursor: pointer;
	display: flex; align-items: center; justify-content: center;
}
.altaneiras-lightbox__close:hover { background: rgba(255,255,255,0.2); }