@charset "UTF-8";
/* ============================================================
   EscXel — consolidated site styles
   Replaces the generated SP Page Builder CSS stack
   (site_css_original / global_styles / inline_styles /
   inline/general-inline). Values extracted from the computed
   styles of the original pages at 1280 / 900 / 375 px.

   Load order: bootstrap → template.css → preset5.css →
   joomla-fontawesome → font-jakarta → font-icomoon →
   site.css → layout.css
   ============================================================ */

:root {
	--brand-green: #23AD7C;
	--brand-green-2: #00B381;
	--brand-navy: #0D4882;
	--brand-dark: #161F3A;
	--grey-light: #F1F1F1;
}

.text-white { color: #fff; }

/* ---------------------------------------------------------- */
/* Base typography                                             */
/* ---------------------------------------------------------- */
body {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: #000;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	line-height: 1.2;
}
h1 { font-size: 96px; font-weight: 600; }
h2 { font-size: 64px; }
h3 { font-size: 48px; }
h4 { font-size: 34px; }
h5 { font-size: 24px; }
h6 { font-size: 20px; }
@media (max-width: 991px) {
	h1 { font-size: 64px; }
	h2 { font-size: 52px; }
	h3 { font-size: 38px; }
	h6 { font-size: 18px; }
}
@media (max-width: 767px) {
	h1 { font-size: 36px; }
	h2 { font-size: 40px; }
	h3 { font-size: 28px; }
	h5 { font-size: 20px; }
	h6 { font-size: 16px; }
}

/* ---------------------------------------------------------- */
/* Containers                                                  */
/* ---------------------------------------------------------- */
.container-narrow {
	max-width: 906px;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
}

/* ---------------------------------------------------------- */
/* Content sections                                            */
/* ---------------------------------------------------------- */
.content-section {
	padding: 95px 0 130px;
}
.content-section--dark  { background: var(--brand-dark);  color: #fff; }
.content-section--green { background: var(--brand-green-2); color: #fff; }
.content-section--grey  { background: var(--grey-light); }
@media (max-width: 991px) {
	.content-section { padding: 120px 0; }
}
@media (max-width: 767px) {
	.content-section { padding: 60px 0; }
}

.content-section h3 {
	color: var(--brand-navy);
	margin: 15px 0 30px;
	display: inline-block;
}
.content-section--dark h3,
.content-section--green h3 {
	color: #fff;
}
.content-section p {
	margin: 0 0 16px;
}
@media (max-width: 991px) {
	.content-section p { font-size: 14px; }
}
.page-body img {
	max-width: 100%;
	height: auto;
}

/* ---------------------------------------------------------- */
/* Buttons                                                     */
/* ---------------------------------------------------------- */
.btn-pill {
	display: inline-block;
	padding: 10px 25px;
	border: 0;
	border-radius: 4px;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.4;
	text-decoration: none;
	cursor: pointer;
	transition: background-color .2s ease, color .2s ease;
}
.btn-pill .fas { margin-left: 8px; }
.btn-pill--white { background: #fff; color: var(--brand-green); }
.btn-pill--white:hover { background: var(--brand-navy); color: #fff; }
.btn-pill--light { background: #fff; color: var(--brand-dark); }
.btn-pill--light:hover { background: var(--brand-navy); color: #fff; }
.btn-pill--green { background: var(--brand-green); color: #fff; }
.btn-pill--green:hover { background: var(--brand-navy); color: #fff; }
@media (max-width: 991px) {
	.btn-pill { font-size: 18px; }
}
@media (max-width: 767px) {
	.btn-pill { font-size: 15px; padding: 8px 20px; }
}
/* header "Área Reservada" */
.btn-reserved {
	display: inline-block;
	padding: 8px 22px;
	border-radius: 4px;
	background: #fff;
	color: var(--brand-dark);
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	transition: background-color .2s ease, color .2s ease;
}
.btn-reserved:hover { background: var(--brand-green); color: #fff; }

/* ---------------------------------------------------------- */
/* Reserved-area account views (login / register / profile /   */
/* recover) — com_users template overrides                     */
/* ---------------------------------------------------------- */
.reserved-auth {
	max-width: 520px;
	margin: 0 auto;
	padding: 8px 0 16px;
}
.reserved-auth h2 { margin-bottom: 16px; }
.reserved-auth-intro,
.reserved-auth > p { margin-bottom: 24px; }

.reserved-form { margin-top: 8px; }
.reserved-field { margin-bottom: 20px; }
.reserved-field > label,
.reserved-field label.control-label,
.reserved-field .control-label,
.reserved-field .controls > label {
	display: inline-block;
	margin-bottom: 6px;
	font-weight: 600;
}
.reserved-field input[type="text"],
.reserved-field input[type="email"],
.reserved-field input[type="password"],
.reserved-field input[type="tel"],
.reserved-field select,
.reserved-field textarea,
.reserved-field .form-control {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid rgba(0,0,0,.2);
	border-radius: 4px;
	font-size: 15px;
	line-height: 1.4;
	background: #fff;
	color: var(--brand-dark);
}
.reserved-field input:focus,
.reserved-field select:focus,
.reserved-field textarea:focus {
	outline: none;
	border-color: var(--brand-green);
	box-shadow: 0 0 0 3px rgba(35,173,124,.15);
}

/* checkbox rows (remember / privacy) */
.reserved-field--check {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 16px;
}
.reserved-field--check input[type="checkbox"] {
	width: auto;
	margin-top: 3px;
	flex: 0 0 auto;
}
.reserved-field--check label { margin: 0; font-weight: 400; }
/* keep a clear gap between the last consent checkbox and the action buttons */
.reserved-field--privacy { margin-bottom: 34px; }

/* password field + show/hide toggle */
.reserved-pw-wrap { position: relative; }
.reserved-pw-wrap input { padding-right: 44px; }
.reserved-pw-toggle {
	position: absolute; top: 0; right: 0; height: 100%;
	width: 42px; border: 0; background: none; cursor: pointer;
	display: flex; align-items: center; justify-content: center;
	color: var(--brand-dark); opacity: .55; padding: 0;
}
.reserved-pw-toggle:hover { opacity: 1; }
.reserved-pw-toggle svg { width: 20px; height: 20px; display: block; }
.reserved-pw-toggle .icon-eye-off { display: none; }
.reserved-pw-toggle.is-visible .icon-eye { display: none; }
.reserved-pw-toggle.is-visible .icon-eye-off { display: block; }

/* inline validation messages (site-language, replaces native tooltips) */
.reserved-error {
	display: none;
	margin-top: 6px;
	font-size: 13px;
	color: #c0392b;
}
.reserved-field.has-error .reserved-error { display: block; }
.reserved-field.has-error input,
.reserved-field.has-error select,
.reserved-field.has-error textarea { border-color: #c0392b; }

/* action rows */
.reserved-form-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px 28px;
	margin-top: 28px;
}
.reserved-form-actions .btn-reserved {
	background: var(--brand-green);
	color: #fff;
	cursor: pointer;
	border: 0;
}
.reserved-form-actions .btn-reserved:hover { background: var(--brand-navy); color: #fff; }
/* outlined "log out" / secondary variant */
.reserved-form-actions .btn-reserved--logout,
.reserved-form-actions .btn-reserved--ghost {
	background: transparent;
	color: var(--brand-navy);
	border: 1px solid rgba(13,72,130,.4);
}
.reserved-form-actions .btn-reserved--logout:hover,
.reserved-form-actions .btn-reserved--ghost:hover {
	background: var(--brand-navy);
	color: #fff;
	border-color: var(--brand-navy);
}
.reserved-link {
	color: var(--brand-navy);
	text-decoration: underline;
	font-size: 15px;
}
.reserved-link:hover { color: var(--brand-green); }

.reserved-auth-links {
	list-style: none;
	margin: 22px 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.reserved-auth-links a { color: var(--brand-navy); text-decoration: underline; }
.reserved-auth-links a:hover { color: var(--brand-green); }

/* profile summary */
.reserved-profile-list {
	margin: 0 0 8px;
	display: grid;
	grid-template-columns: minmax(150px, auto) 1fr;
	gap: 12px 22px;
}
.reserved-profile-list dt { font-weight: 600; color: var(--brand-navy); margin: 0; }
.reserved-profile-list dd { margin: 0; }

@media (max-width: 575px) {
	.reserved-form-actions { flex-direction: column; align-items: stretch; }
	.reserved-form-actions .btn-reserved { text-align: center; }
	.reserved-profile-list { grid-template-columns: 1fr; gap: 2px 0; }
	.reserved-profile-list dd { margin-bottom: 12px; }
}

/* ---------------------------------------------------------- */
/* Cookie notification banner                                  */
/* ---------------------------------------------------------- */
.notification-block {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(13, 72, 130, .96); /* var(--brand-navy) */
	z-index: 499;
	display: none;
}
.notification-inner {
	padding-top: 24px;
	padding-bottom: 24px;
}
.notification-items {
	display: flex;
	align-items: center;
}
.notification-desc {
	color: #fff;
	font-size: 16px;
	line-height: 1.5;
	max-width: 752px;
	margin-right: 30px;
}
.notification-desc a {
	color: #fff;
	text-decoration: underline;
}
.notification-desc a:hover { color: var(--grey-light); }
.notification-actions {
	display: flex;
	align-items: center;
	flex-flow: row nowrap;
	gap: 12px;
	margin-left: auto;
	white-space: nowrap;
}
.notification-actions .btn-pill { font-size: 16px; padding: 8px 26px; }
.notification-actions .btn-pill--green:hover { background: var(--brand-green-2); color: #fff; }
.notification-actions .btn-pill--white:hover { background: var(--grey-light); color: var(--brand-navy); }
@media (max-width: 767px) {
	.notification-items { flex-flow: column; align-items: flex-start; }
	.notification-desc { margin-right: 0; font-size: 14px; }
	.notification-actions { padding-top: 16px; margin-left: 0; }
}

/* ---------------------------------------------------------- */
/* Stats band (green numbers box — sobre, objetivos)           */
/* ---------------------------------------------------------- */
.stats-band {
	background: var(--brand-green);
	border-radius: 4px;
	padding: 30px 40px 35px;
	margin: 20px 0 50px;
}
@media (max-width: 767px) {
	.stats-band { padding: 25px 25px 35px; }
}

/* ---------------------------------------------------------- */
/* Page hero (home)                                            */
/* ---------------------------------------------------------- */
.page-hero {
	position: relative;
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
}
/* green multiply tint over the hero photo */
.page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--brand-green);
	mix-blend-mode: multiply;
	z-index: 1;
}
.page-hero-inner {
	position: relative;
	z-index: 2;
	padding-top: 102px;
	padding-bottom: 231px;
}
.page-hero-content { max-width: 876px; }
.page-hero h1 {
	color: #fff;
	margin: 0 0 64px;
}
@media (max-width: 991px) {
	.page-hero-inner { padding-top: 102px; padding-bottom: 200px; }
	.page-hero h1 { margin-bottom: 48px; }
}
@media (max-width: 767px) {
	.page-hero-inner { padding-top: 30px; padding-bottom: 47px; }
	.page-hero h1 { margin-bottom: 30px; }
}

/* ---------------------------------------------------------- */
/* Principles band (home, dark) — white cards with line shapes */
/* ---------------------------------------------------------- */
.principles-band .band-title {
	color: #fff;
	font-weight: 500;
	margin: 0 0 32px;
}
.principles-band .row > [class*="col-"] { margin: 15px 0; }
.principle-card {
	background: #fff;
	border-radius: 4px;
	padding: 30px 39px 42px;
	height: 100%;
	color: #000;
}
.principle-card .principle-shape {
	width: 192px;
	max-width: 100%;
	height: 158px;
	display: block;
	margin-bottom: 190px;
}
.principle-card .principle-shape .st0 { fill: #fff; stroke: #00B381; stroke-width: 1.75; }
.principle-card .principle-shape .st4 { fill: none; stroke: #00B381; stroke-width: 1.75; }
.principle-card h4 {
	font-size: 32px;
	font-weight: 500;
	line-height: 1.25;
	margin: 0 0 31px;
	color: #0D4882;
}
.principle-card p { font-size: 16px; line-height: 1.4; margin: 0; }
@media (max-width: 991px) {
	.principle-card .principle-shape { margin-bottom: 60px; }
	.principle-card h4 { font-size: 28px; }
}

/* full-width image strip between sections */
.band-image img { display: block; width: 100%; height: auto; }

/* ---------------------------------------------------------- */
/* Objectives band (home, green)                               */
/* ---------------------------------------------------------- */
.objectives-band {
	background: var(--brand-green-2);
	padding: 120px 0 0;
	overflow: hidden;
}
.objectives-band-inner { padding-left: 11%; }
.objectives-band h2 { margin: 0; padding: 15px 0 32px; color: var(--brand-dark); }
.objectives-band h2 .text-white { color: #fff; }
.feature-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	row-gap: 40px;
}
.feature-item { padding: 0 25px; }
.feature-item h5 { color: var(--brand-dark); margin: 12px 0 15px; font-size: 30px; }
.feature-item p { color: #fff; margin: 0; }
.stripes-art { margin-top: 60px; }
.stripes-art svg { display: block; width: 509px; max-width: 60%; height: 152px; }
@media (max-width: 991px) {
	.objectives-band-inner { padding-left: 15px; padding-right: 15px; }
}
@media (max-width: 767px) {
	.objectives-band { padding-top: 60px; }
	.feature-grid { grid-template-columns: 1fr; row-gap: 30px; }
	.feature-item { padding: 0; }
}

/* ---------------------------------------------------------- */
/* Eixos link list (home)                                      */
/* ---------------------------------------------------------- */
.section-intro { font-size: 24px; font-weight: 500; line-height: 1.26; }
@media (max-width: 991px) { .section-intro { font-size: 18px; } }
@media (max-width: 767px) { .section-intro { font-size: 14px; } }
.eixos-list-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 0;
	margin: 26px 0;
	color: #000;
	text-decoration: none;
}
.eixos-list-item span {
	font-size: 20px;
	font-weight: 700;
	color: var(--brand-navy);
	padding-right: 60px;
}
.eixos-list-item i { font-size: 16px; color: #000; }
.eixos-list-item:hover span { color: var(--brand-green); }

/* ---------------------------------------------------------- */
/* Accordion (eixos, escolas)                                  */
/* ---------------------------------------------------------- */
.accordion-item {
	margin: 32px 0;
	border-radius: 4px;
	background: #f9f9f9;
	border: 0;
	overflow: hidden;
}
.accordion-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 32px;
	background: transparent;
	border: 0;
	cursor: pointer;
	text-align: left;
	font-family: inherit;
}
.accordion-header span {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--brand-navy);
	padding-right: 20px;
}
.accordion-header i { color: #000; font-size: 16px; flex-shrink: 0; transition: transform .3s ease; }
.accordion-body {
	max-height: 0;
	overflow: hidden;
	padding: 0 32px;
	color: #fff;
	transition: max-height .35s ease;
}
/* Bottom breathing room as a block spacer that lives INSIDE the clipped,
   measured region — works for any content (paragraphs, inline links, <br>,
   bare text) and collapses to nothing when the panel is closed. */
.accordion-body::after { content: ""; display: block; height: 32px; }
.accordion-body p { color: #fff; margin-bottom: 0; }
.accordion-body p + p { margin-top: 16px; }
.accordion-body a { color: #fff; text-decoration: underline; }
.accordion-item.is-open {
	background: var(--brand-green);
	border-bottom-color: transparent;
}
.accordion-item.is-open .accordion-header span { color: #fff; }
.accordion-item.is-open .accordion-header i { color: #fff; transform: rotate(90deg); }
@media (max-width: 767px) {
	.accordion-header { padding: 20px; }
	.accordion-body { padding: 0 20px; }
	.accordion-body::after { height: 20px; }
	.accordion-header span { font-size: 16px; }
}

/* ---------------------------------------------------------- */
/* Section head (title + action button on one line)            */
/* ---------------------------------------------------------- */
.section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;
	flex-wrap: wrap;
	margin-bottom: 52px;
}
.section-head h2 { margin: 0; }

/* ---------------------------------------------------------- */
/* Portfolio / initiatives cards (home, projetos)              */
/* ---------------------------------------------------------- */
.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
.portfolio-media {
	position: relative;
	overflow: hidden;
	border-radius: 4px;
    height: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.portfolio-media img {
	border-radius: 4px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.portfolio-media:hover img {
	transform: scale(1.1);
}
.portfolio-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	opacity: 0;
	background: rgba(22, 31, 58, .6);
	transition: opacity .25s ease;
}
.portfolio-media:hover .portfolio-overlay,
.portfolio-media:focus-within .portfolio-overlay { opacity: 1; }
.portfolio-overlay a {
	background: #fff;
	color: #000;
	padding: 8px 16px;
	border-radius: 4px;
	font-size: 14px;
}
.portfolio-body { padding: 20px 0; }
.portfolio-body h3 {
	font-size: 24px;
	line-height: 1.2;
	margin: 0 0 15px;
	color: #000;
}
.portfolio-body h3 a { color: #0D4882; }
.portfolio-body h3 a:hover { color: var(--brand-green); }
.portfolio-tags {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px 14px;
	font-size: 14px;
}
@media (max-width: 991px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) { .portfolio-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------- */
/* Article layout (equipa, agenda, publicações — sidebar+body) */
/* ---------------------------------------------------------- */
.article-body-wrap {
	max-width: 1320px;
	margin: 0 auto;
	padding: 120px 0;
}
.article-right-sidebar { margin-right: 30px; }
@media (max-width: 991px) {
	.article-body-wrap { padding: 90px 0; }
	.article-right-sidebar { margin-right: 0; margin-bottom: 40px; }
}
@media (max-width: 767px) {
	.article-body-wrap { padding: 60px 0; }
}

/* ---------------------------------------------------------- */
/* Team detail (equipa individual)                             */
/* ---------------------------------------------------------- */
.content-section--compact { padding: 75px 0 95px; }
@media (max-width: 767px) {
	.content-section--compact { padding: 60px 0; }
}
/* the template's h4 rule is inline-block; force these back to block so the
   name, role and bio heading stack instead of running onto one line */
.team-detail-name { display: block; font-size: 36px; font-weight: 600; margin: 0 0 4px; }
.team-detail-role { display: block; margin: 0 0 25px; color: rgba(0, 0, 0, .55); }
.team-detail-sub { display: block; font-size: 30px; font-weight: 600; margin: 30px 0 20px; }
.team-detail .btn-pill { margin-top: 30px; }
/* member photo fills the column width */
.team-detail .col-team-image img { width: 100%; height: auto; display: block; border-radius: 4px; }
@media (max-width: 767px) {
	.team-detail-name { font-size: 32px; }
	.team-detail-sub { font-size: 16px; }
}

@media (max-width: 767px) {
	/* template.css hides these on mobile — keep them visible: the
	   category nav stacks on top, recent posts move below the article */
	.sp-module.articles-category,
	.sp-module.articles-recent-post { display: block; }
	.article-body > [class*="col-"]:has(.articles-recent-post) { order: 2; }
}

/* ---------------------------------------------------------- */
/* Contact page                                                */
/* ---------------------------------------------------------- */
.contact-info h5 { color: var(--brand-navy); margin: 0 0 24px; }
.contact-info .contact-block { margin-bottom: 40px; }
.contact-form-title { color: var(--brand-navy); margin: 0 0 24px; }
.contact-form .form-group { margin-bottom: 20px; }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
	display: block;
	width: 100%;
	background: #F4F4F4;
	border: 0;
	border-radius: 4px;
	padding: 17px 24px !important;
	font-size: 20px;
	font-family: inherit;
	color: #000;
}
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-form button[type="submit"] {
	margin-top: 40px;
	padding: 14px 24px;
	border: 0;
	border-radius: 4px;
	background: var(--brand-green);
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	cursor: pointer;
	transition: background-color .2s ease;
}
.contact-form button[type="submit"]:hover { background: var(--brand-navy); }
.contact-form button[type="submit"]:disabled { opacity: .6; cursor: default; }
@media (max-width: 767px) {
	.contact-form input[type="text"],
	.contact-form input[type="email"],
	.contact-form textarea { font-size: 16px; }
}

/* privacy policy consent */
.contact-form .form-group-privacy { margin-top: 24px; }
.contact-form .contact-consent {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
	color: var(--brand-navy);
	cursor: pointer;
}
.contact-form .contact-consent input[type="checkbox"] {
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	margin-top: 2px;
	accent-color: var(--brand-green);
	cursor: pointer;
}
.contact-form .contact-consent a { text-decoration: underline; }
.contact-form .contact-consent input.is-invalid {
	background: none;
	box-shadow: none;
	outline: 2px solid #d64545;
	outline-offset: 2px;
}

/* validation state */
.contact-form input.is-invalid,
.contact-form textarea.is-invalid {
	box-shadow: inset 0 0 0 1px #d64545;
	background: #fdf2f2;
}
.contact-form .field-error {
	display: block;
	margin-top: 6px;
	font-size: 14px;
	color: #d64545;
}
.contact-form .field-error:empty { display: none; }

/* honeypot — visually removed, still submitted */
.contact-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* result message; on success .is-sent hides the fields, leaving the box */
.contact-result {
	margin-top: 24px;
	padding: 20px 24px;
	border-radius: 4px;
	font-weight: 500;
}
.contact-result.is-success { background: var(--brand-green); color: #fff; }
.contact-result.is-error { background: #fdf2f2; color: #b02a2a; box-shadow: inset 0 0 0 1px #e7b6b6; }
.contact-form.is-sent .form-group,
.contact-form.is-sent .contact-hp,
.contact-form.is-sent button[type="submit"] { display: none; }
.contact-form.is-sent .contact-result { margin-top: 0; }

/* ---------------------------------------------------------- */
/* CTA band (green "Entre em contacto" strip above the footer) */
/* ---------------------------------------------------------- */
.bottom-banner {
	background: var(--brand-green);
	overflow: hidden;
}
.cta-band {
	display: flex;
	align-items: center;
	padding-top: 50px;
}
.cta-band-content {
	flex: 0 0 50%;
	max-width: 50%;
	color: #fff;
}
.cta-band-content > .icon {
	font-size: 60px;
	line-height: 1;
	color: #fff;
}
.cta-band-heading {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 30px 40px;
	margin: 25px 0;
}
.cta-band-heading h2 { color: #fff; margin: 0; }
.cta-band-content p {
	font-weight: 500;
	color: #fff;
	max-width: 450px;
	margin: 0;
}
.cta-band-art {
	flex: 0 0 50%;
	max-width: 50%;
	align-self: flex-end;
}
.cta-band-art img {
	display: block;
	margin-left: auto;
	max-width: 100%;
	height: auto;
}
@media (max-width: 991px) {
	.cta-band { padding: 60px 0 60px; }
	.cta-band-content { flex: 0 0 100%; max-width: 100%; }
	.cta-band-art { display: none; }
}
@media (max-width: 767px) {
	.cta-band { padding: 50px 0 60px; }
}

/* ---------------------------------------------------------- */
/* Footer (#sp-bottom) content                                 */
/* ---------------------------------------------------------- */
.footer-logos-col img { max-width: 100%; height: auto; }

.footer-newsletter-title {
	font-size: 16px;
	color: #fff;
	margin: 0 0 15px;
}
.footer-newsletter-text {
	color: rgba(255, 255, 255, 0.7);
	max-width: 525px;
}
.footer-form {
	display: flex;
	align-items: center;
	gap: 15px;
	background: rgba(255, 255, 255, .1);
	border-radius: 4px;
	padding: 18px 25px;
	margin-top: 25px;
	max-width: 430px;
}
.footer-form input[type="email"] {
	flex: 1;
	min-width: 0;
	background: transparent;
	border: 0;
	outline: none;
	color: #fff;
	font-size: 16px;
}
.footer-form input[type="email"]::placeholder { color: rgba(255, 255, 255, .7); }
.footer-form button {
	background: none;
	border: 0;
	padding: 0;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
}
.footer-col-title {
	font-size: 20px;
	color: #fff;
	margin: 0 0 30px;
}
@media (max-width: 991px) { .footer-col-title { font-size: 18px; } }
@media (max-width: 767px) { .footer-col-title { font-size: 16px; } }
.footer-menu,
.footer-cols nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.footer-menu li,
.footer-cols nav li { margin-bottom: 10px; }
.footer-menu a,
.footer-cols nav a {
	display: block;
	color: #fff;
	font-size: 16px;
}
.footer-contacts p {
	color: #fff;
	font-size: 16px;
	margin: 0 0 16px;
	line-height: 20px;
}
.footer-contacts a { color: #fff; }

#sp-footer a:hover,#sp-footer a:active,#sp-footer a:focus,#sp-bottom a:hover,#sp-bottom a:active,#sp-bottom a:focus,
#sp-bottom .active a {
    color: #23ad7c
}

@media (max-width: 767px) {
	.footer-cols > [class*="col-"] { margin-bottom: 40px; }
	.footer-cols > [class*="col-"]:last-child { margin-bottom: 0; }
}
/* terms/privacy line in #sp-footer */
.footer-terms { margin: 0 0 16px; }

/* Parceiros */
.partners-image-block img { max-width: 100%; height: auto; }

/* ---------------------------------------------------------- */
/* Generic content helpers (t-general, article pages)          */
/* ---------------------------------------------------------- */
.steps-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px 30px;
	margin: 30px 0;
}
.steps-label { color: var(--brand-green); font-size: 14px; margin: 0 0 8px; }
.steps-item p { font-weight: 700; margin: 0; }
@media (max-width: 767px) { .steps-grid { grid-template-columns: 1fr; } }
.check-list { list-style: none; margin: 0 0 30px; padding: 0; }
.check-list li { margin-bottom: 12px; font-weight: 700; }
.check-list li i { color: var(--brand-green); margin-right: 10px; }

/* testimonial quote (article pages) */
.testimonial-quote {
	border-left: 4px solid var(--brand-green);
	margin: 30px 0;
	padding: 10px 0 10px 25px;
	font-size: 20px;
	font-weight: 500;
}
.testimonial-quote p { margin: 0; }

/* ---------------------------------------------------------- */
/* Category views (Joomla overrides)                           */
/* ---------------------------------------------------------- */
.no-articles-message {
	background: var(--grey-light);
	border-radius: 4px;
	padding: 30px;
	margin: 40px 0;
	font-weight: 500;
}
/* pagination (page-item/page-link markup from the layout overrides) */
.pagination-block .pagination { justify-content: center; }
.pagination .page-link {
	color: var(--brand-navy);
	border: 0;
	background: transparent;
	font-weight: 700;
	padding: 10px 14px;
	border-radius: 4px;
}
.pagination .page-item.active .page-link {
	background: var(--brand-green);
	color: #fff;
}
.pagination .page-item.disabled .page-link { color: rgba(0, 0, 0, .3); }
.pagination .page-link:hover { background: var(--grey-light); color: var(--brand-navy); }

/* ---------------------------------------------------------- */
/* AcyMailing front pages (com_acym overrides)                 */
/* AcyMailing wraps our overrides in #acym_wrapper and applies */
/* ID-specificity resets in front_global.min.css:             */
/*   #acym_wrapper div    { margin:0; padding:0 }              */
/*   #acym_wrapper button { background:0 0; padding:0; border:0}*/
/* The rules below re-establish the site layout/buttons inside */
/* that wrapper (they must out-specify the #acym_wrapper ids). */
/* ---------------------------------------------------------- */

/* Restore Bootstrap container centering/padding (max-width is kept) */
#acym_wrapper .page-body .container {
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
}

/* Restore the site pill buttons (search / submit) */
#acym_wrapper .btn-pill {
	display: inline-block;
	width: auto !important;
	padding: 10px 25px !important;
	border: 0 !important;
	border-radius: 4px;
	font-size: 20px !important;
	line-height: 1.4;
}
#acym_wrapper .btn-pill--green { background: var(--brand-green) !important; color: #fff !important; }
#acym_wrapper .btn-pill--green:hover { background: var(--brand-navy) !important; color: #fff !important; }

/* Unsubscribe / email-preferences page (frontusers/unsubscribepage override) */
#acym_wrapper .acym__unsubscribe__form { max-width: 620px; margin: 0 auto; }
#acym_wrapper .acym__unsubscribe__header { margin-bottom: 30px; }
#acym_wrapper .acym__unsubscribe__logo { max-height: 90px; width: auto; margin-bottom: 20px; }
#acym_wrapper .acym__unsubscribe__language__select { max-width: 260px; margin-top: 15px; }

#acym_wrapper .acym__unsubscribe__lists { list-style: none; margin: 0 0 25px; padding: 0; }
#acym_wrapper .acym__unsubscribe__list__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 16px 0;
	border-bottom: 1px solid var(--grey-light, #e3e3e3);
}
#acym_wrapper .acym__unsubscribe__list__display__name { font-weight: 700; margin: 0; }
#acym_wrapper .acym__unsubscribe__list__description { margin: 4px 0 0; font-size: .9rem; color: rgba(0, 0, 0, .6); }
#acym_wrapper .acym__unsubscribe__list__switch { flex: 0 0 auto; }

#acym_wrapper .acym__unsubscribe__reason__section { margin: 10px 0 25px; }
#acym_wrapper .acym__unsubscribe__reason__label { display: flex; align-items: baseline; gap: 8px; margin-bottom: 8px; }
#acym_wrapper .acym__unsubscribe__reason { font-weight: 600; margin: 0; }
#acym_wrapper .acym__optional { font-size: .85rem; color: rgba(0, 0, 0, .5); }
#acym_wrapper .acym__unsubscribe__reason__section input[type="text"],
#acym_wrapper .acym__unsubscribe__reason__select {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid var(--grey-light, #d3d3d3);
	border-radius: 4px;
}

#acym_wrapper .acym__unsubscribe__actions { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 10px; }
/* secondary ("unsubscribe all") — outlined pill, visible over the #acym_wrapper button reset */
#acym_wrapper .acym__unsubscribe__actions .btn-pill--light {
	background: #fff !important;
	color: var(--brand-navy) !important;
	border: 2px solid var(--brand-green) !important;
	padding: 8px 25px !important;
}
#acym_wrapper .acym__unsubscribe__actions .btn-pill--light:hover { background: var(--brand-green) !important; color: #fff !important; }
