/* =============================================================
   Portal da Saudade - main.css
   ============================================================= */

/* ---- Tokens ---- */
:root {
	--pds-dark: #003631;
	--pds-dark-2: #00554c;
	--pds-dark-3: #042b28;
	--pds-green: #009966;
	--pds-green-dark: #007a51;
	--pds-green-light: #e6f7f0;
	--pds-whatsapp: #25d366;
	--pds-text: #2f3b39;
	--pds-muted: #66736f;
	--pds-border: #e4e9e7;
	--pds-bg-alt: #f4f7f5;
	--pds-radius: 16px;
	--pds-radius-sm: 10px;
	--pds-shadow: 0 10px 30px rgba(0, 54, 49, 0.08);
	--pds-shadow-lg: 0 24px 50px rgba(0, 54, 49, 0.14);
	--pds-container: 1200px;
	--pds-font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--pds-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- Reset / base ---- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--pds-font);
	font-size: 16px;
	line-height: 1.7;
	color: var(--pds-text);
	background: #fff;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--pds-green);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: var(--pds-green-dark);
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 0.6em;
	line-height: 1.2;
	color: var(--pds-dark);
	font-weight: 800;
	letter-spacing: -0.02em;
}

p {
	margin: 0 0 1em;
}

[hidden] {
	display: none !important;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
}

.pds-skip-link {
	position: absolute;
	left: -999px;
	top: 0;
	z-index: 9999;
	background: var(--pds-dark);
	color: #fff;
	padding: 12px 20px;
	border-radius: 0 0 10px 0;
}

.pds-skip-link:focus {
	left: 0;
	color: #fff;
}

.pds-container {
	max-width: var(--pds-container);
	margin: 0 auto;
	padding-left: 24px;
	padding-right: 24px;
}

/* =============================================================
   Top bar (navbar 1)
   ============================================================= */

.pds-site-header {
	position: relative;
}

.pds-topbar {
	background: var(--pds-dark-3);
	color: rgba(255, 255, 255, 0.85);
	font-size: 13px;
}

.pds-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 42px;
	flex-wrap: wrap;
	padding-top: 6px;
	padding-bottom: 6px;
}

.pds-topbar__social {
	display: flex;
	align-items: center;
	gap: 6px;
}

.pds-social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	transition: var(--pds-transition);
}

.pds-social:hover {
	background: var(--pds-green);
	color: #fff;
}

.pds-social svg {
	width: 15px;
	height: 15px;
}

.pds-topbar__menu .pds-top-menu {
	display: flex;
	align-items: center;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
	flex-wrap: wrap;
}

.pds-top-menu li + li::before {
	content: '';
	display: inline-block;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: var(--pds-green);
	margin: 0 8px;
	vertical-align: middle;
}

.pds-top-menu a {
	display: inline-block;
	padding: 4px 6px;
	color: rgba(255, 255, 255, 0.8);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.pds-top-menu a:hover {
	color: var(--pds-green);
}

.pds-topbar__phone {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 600;
	white-space: nowrap;
}

.pds-topbar__phone:hover {
	color: var(--pds-green);
}

.pds-topbar__phone-label {
	color: rgba(255, 255, 255, 0.55);
	font-weight: 500;
}

/* =============================================================
   Navbar principal (navbar 2)
   ============================================================= */

.pds-navbar {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #fff;
	border-bottom: 1px solid var(--pds-border);
	transition: box-shadow 0.3s ease;
}

.pds-navbar.is-scrolled {
	box-shadow: 0 8px 30px rgba(0, 54, 49, 0.12);
}

.pds-navbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 78px;
}

.pds-logo {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
}

.pds-logo img {
	height: 52px;
	width: auto;
	max-width: 220px;
}

.pds-logo .custom-logo-link {
	display: inline-flex;
}

.pds-nav {
	flex: 1;
	display: flex;
	justify-content: flex-end;
}

.pds-menu {
	display: flex;
	align-items: center;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pds-menu > li {
	position: relative;
}

.pds-menu > li > a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 14px;
	color: var(--pds-text);
	font-weight: 700;
	font-size: 15px;
	border-radius: 8px;
	transition: var(--pds-transition);
}

.pds-menu > li > a:hover,
.pds-menu > li.current-menu-item > a,
.pds-menu > li.current-menu-ancestor > a {
	color: var(--pds-green);
	background: var(--pds-green-light);
}

.pds-menu li.menu-item-has-children > a::after {
	content: '';
	width: 7px;
	height: 7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
	margin-left: 2px;
}

.pds-menu .sub-menu {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	min-width: 230px;
	margin: 0;
	padding: 10px;
	list-style: none;
	background: #fff;
	border: 1px solid var(--pds-border);
	border-radius: var(--pds-radius-sm);
	box-shadow: var(--pds-shadow-lg);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: var(--pds-transition);
	z-index: 50;
}

.pds-menu li:hover > .sub-menu,
.pds-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.pds-menu .sub-menu a {
	display: block;
	padding: 9px 12px;
	border-radius: 6px;
	color: var(--pds-text);
	font-weight: 600;
	font-size: 14px;
}

.pds-menu .sub-menu a:hover {
	background: var(--pds-green-light);
	color: var(--pds-green-dark);
}

.pds-navbar__actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.pds-icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--pds-border);
	border-radius: 50%;
	background: #fff;
	color: var(--pds-dark);
	cursor: pointer;
	transition: var(--pds-transition);
}

.pds-icon-btn:hover {
	background: var(--pds-green);
	border-color: var(--pds-green);
	color: #fff;
}

.pds-icon-btn svg {
	width: 18px;
	height: 18px;
}

.pds-burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 42px;
	height: 42px;
	padding: 0 10px;
	background: var(--pds-dark);
	border: none;
	border-radius: 10px;
	cursor: pointer;
}

.pds-burger__line {
	display: block;
	height: 2px;
	width: 100%;
	background: #fff;
	border-radius: 2px;
	transition: var(--pds-transition);
}

.pds-burger.is-open .pds-burger__line:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.pds-burger.is-open .pds-burger__line:nth-child(2) {
	opacity: 0;
}

.pds-burger.is-open .pds-burger__line:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ---- Search panel ---- */

.pds-search-panel {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #fff;
	border-bottom: 1px solid var(--pds-border);
	box-shadow: var(--pds-shadow-lg);
	padding: 22px 0;
	z-index: 90;
	display: flex;
	align-items: center;
}

.pds-search-panel .pds-container {
	display: flex;
	align-items: center;
	gap: 16px;
	width: 100%;
}

.pds-search-form {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 1;
}

.pds-search-form__input {
	flex: 1;
	padding: 15px 20px;
	border: 1px solid var(--pds-border);
	border-radius: 999px;
	font-family: inherit;
	font-size: 16px;
	outline: none;
	transition: var(--pds-transition);
}

.pds-search-form__input:focus {
	border-color: var(--pds-green);
	box-shadow: 0 0 0 4px var(--pds-green-light);
}

.pds-search-form__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border: none;
	border-radius: 50%;
	background: var(--pds-green);
	color: #fff;
	cursor: pointer;
	transition: var(--pds-transition);
}

.pds-search-form__submit:hover {
	background: var(--pds-green-dark);
}

.pds-search-form__submit svg {
	width: 20px;
	height: 20px;
}

/* ---- Mobile menu ---- */

.pds-mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--pds-dark);
	color: #fff;
	z-index: 95;
	padding: 100px 24px 40px;
	overflow-y: auto;
	transform: translateY(-102%);
	transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	display: none;
}

.pds-mobile-menu.is-open {
	transform: translateY(0);
}

.pds-mobile-menu__inner {
	max-width: 640px;
	margin: 0 auto;
}

.pds-mobile-menu__list,
.pds-mobile-menu .sub-menu,
.pds-mobile-menu .pds-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.pds-mobile-menu > .menu > li > a,
.pds-mobile-menu__list > li > a,
.pds-mobile-menu .pds-menu > li > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 4px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	color: #fff;
	font-size: 20px;
	font-weight: 700;
}

.pds-mobile-menu .sub-menu {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
	padding-left: 18px;
}

.pds-mobile-menu li.is-open > .sub-menu {
	max-height: 500px;
}

.pds-mobile-menu .sub-menu a {
	display: block;
	padding: 12px 4px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.8);
	font-size: 16px;
}

.pds-mobile-menu__contact {
	display: flex;
	gap: 12px;
	margin-top: 28px;
	flex-wrap: wrap;
}

/* =============================================================
   Botões
   ============================================================= */

.pds-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 30px;
	border-radius: 999px;
	font-family: inherit;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	border: 2px solid transparent;
	cursor: pointer;
	transition: var(--pds-transition);
	text-align: center;
}

.pds-btn--lg {
	padding: 17px 38px;
	font-size: 16px;
}

.pds-btn svg {
	width: 18px;
	height: 18px;
}

.pds-btn--green {
	background: var(--pds-green);
	color: #fff;
	border-color: var(--pds-green);
}

.pds-btn--green:hover {
	background: var(--pds-green-dark);
	border-color: var(--pds-green-dark);
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 12px 26px rgba(0, 153, 102, 0.32);
}

.pds-btn--outline {
	background: transparent;
	color: var(--pds-green);
	border-color: var(--pds-green);
}

.pds-btn--outline:hover {
	background: var(--pds-green);
	color: #fff;
	transform: translateY(-3px);
}

.pds-btn--ghost {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(6px);
}

.pds-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.22);
	color: #fff;
	transform: translateY(-3px);
}

.pds-btn--ghost-light {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.5);
}

.pds-btn--ghost-light:hover {
	background: #fff;
	color: var(--pds-dark);
	transform: translateY(-3px);
}

.pds-btn--white {
	background: #fff;
	color: var(--pds-green-dark);
	border-color: #fff;
}

.pds-btn--white:hover {
	background: var(--pds-green-light);
	color: var(--pds-green-dark);
	transform: translateY(-3px);
}

.pds-btn--whatsapp {
	background: var(--pds-whatsapp);
	color: #fff;
	border-color: var(--pds-whatsapp);
}

.pds-btn--whatsapp:hover {
	background: #1fb959;
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 12px 26px rgba(37, 211, 102, 0.4);
}

.pds-btn--custom:hover {
	filter: brightness(0.95);
	transform: translateY(-3px);
}

.pds-btn-row {
	margin: 14px 0;
}

.pds-btn-row--center {
	text-align: center;
}

.pds-btn-row .pds-btn {
	margin: 6px;
}

/* =============================================================
   Seções genéricas
   ============================================================= */

.pds-section {
	padding: clamp(60px, 8vw, 104px) 0;
}

.pds-section--alt {
	background: var(--pds-bg-alt);
}

.pds-section--small {
	padding: 44px 0;
}

.pds-section--medium {
	padding: 60px 0;
}

.pds-section--none {
	padding: 0;
}

.pds-section--huge {
	padding: clamp(80px, 12vw, 150px) 0;
}

.pds-section__head {
	max-width: 720px;
	margin-bottom: 46px;
}

.pds-section__head--center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.pds-section__eyebrow {
	display: inline-block;
	margin-bottom: 12px;
	color: var(--pds-green);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.pds-section__title {
	font-size: clamp(1.6rem, 3.4vw, 2.5rem);
	margin-bottom: 12px;
}

.pds-section__intro {
	color: var(--pds-muted);
	font-size: 17px;
}

.pds-section__actions {
	margin-top: 44px;
	text-align: center;
}

.pds-hr {
	display: inline-block;
	height: 3px;
	border: none;
	border-radius: 3px;
	margin: 20px 0;
}

.pds-hr--left {
	margin-left: 0;
	margin-right: auto;
}

.pds-hr--center {
	margin-left: auto;
	margin-right: auto;
}

.pds-hr--right {
	margin-left: auto;
	margin-right: 0;
}

.pds-hr-icon--left {
	justify-content: flex-start;
}

.pds-hr-icon--right {
	justify-content: flex-end;
}

/* ---- Reveal ---- */

.pds-reveal {
	opacity: 0;
	transform: translateY(32px);
	transition: opacity 0.7s ease, transform 0.7s ease;
	transition-delay: var(--delay, 0s);
	will-change: opacity, transform;
}

.pds-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* =============================================================
   Hero
   ============================================================= */

.pds-hero {
	position: relative;
	height: min(92vh, 840px);
	min-height: 560px;
	background: var(--pds-dark);
	overflow: hidden;
}

.pds-hero__slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 1.1s ease;
	display: flex;
	align-items: center;
}

.pds-hero__slide.is-active {
	opacity: 1;
	z-index: 2;
}

.pds-hero__slide::before {
	content: '';
	position: absolute;
	inset: -6%;
	background-image: inherit;
	background-size: cover;
	background-position: center;
	z-index: 0;
	will-change: transform;
}

.pds-hero__slide.is-active::before {
	animation: pdsKenBurns 9s ease-out forwards;
}

@keyframes pdsKenBurns {
	from {
		transform: scale(1);
	}
	to {
		transform: scale(1.08);
	}
}

.pds-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(0, 22, 20, 0.35) 0%, rgba(0, 22, 20, 0.72) 100%);
}

.pds-hero__content {
	position: relative;
	z-index: 3;
	width: 100%;
	text-align: center;
	color: #fff;
	max-width: 860px;
}

.pds-hero__eyebrow {
	display: inline-block;
	margin-bottom: 18px;
	padding: 8px 18px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 999px;
	background: rgba(0, 54, 49, 0.35);
	backdrop-filter: blur(4px);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #eafff6;
	opacity: 0;
	transform: translateY(20px);
}

.pds-hero__slide.is-active .pds-hero__eyebrow {
	animation: pdsFadeUp 0.8s 0.2s ease forwards;
}

.pds-hero__title {
	font-size: clamp(1.9rem, 4.6vw, 3.6rem);
	color: #fff;
	line-height: 1.12;
	margin-bottom: 16px;
	text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
	opacity: 0;
	transform: translateY(26px);
}

.pds-hero__slide.is-active .pds-hero__title {
	animation: pdsFadeUp 0.8s 0.35s ease forwards;
}

.pds-hero__subtitle {
	font-size: clamp(1rem, 1.8vw, 1.35rem);
	color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
	margin-bottom: 0;
	opacity: 0;
	transform: translateY(26px);
}

.pds-hero__slide.is-active .pds-hero__subtitle {
	animation: pdsFadeUp 0.8s 0.5s ease forwards;
}

.pds-hero__actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 32px;
	opacity: 0;
	transform: translateY(26px);
}

.pds-hero__slide.is-active .pds-hero__actions {
	animation: pdsFadeUp 0.8s 0.62s ease forwards;
}

@keyframes pdsFadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.pds-hero__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 6;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: rgba(0, 0, 0, 0.25);
	color: #fff;
	cursor: pointer;
	transition: var(--pds-transition);
	backdrop-filter: blur(4px);
}

.pds-hero__arrow:hover {
	background: var(--pds-green);
	border-color: var(--pds-green);
}

.pds-hero__arrow svg {
	width: 22px;
	height: 22px;
}

.pds-hero__arrow--prev {
	left: 24px;
}

.pds-hero__arrow--next {
	right: 24px;
}

.pds-hero__dots {
	position: absolute;
	bottom: 26px;
	left: 0;
	right: 0;
	z-index: 6;
	display: flex;
	justify-content: center;
	gap: 10px;
}

.pds-hero__dots button {
	width: 11px;
	height: 11px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	cursor: pointer;
	transition: var(--pds-transition);
}

.pds-hero__dots button.is-active {
	background: var(--pds-green);
	width: 28px;
	border-radius: 6px;
}

/* =============================================================
   Stats
   ============================================================= */

.pds-stats {
	background: var(--pds-dark);
	padding: clamp(44px, 6vw, 68px) 0;
}

.pds-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.pds-stat {
	text-align: center;
	color: #fff;
	padding: 10px 12px;
}

.pds-stat__number {
	display: block;
	font-size: clamp(2rem, 4.6vw, 3.4rem);
	font-weight: 800;
	line-height: 1.1;
	color: var(--pds-green);
	letter-spacing: -0.02em;
}

.pds-stat__label {
	display: block;
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

/* =============================================================
   Cards / serviços
   ============================================================= */

.pds-services__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.pds-card {
	background: #fff;
	border: 1px solid var(--pds-border);
	border-radius: var(--pds-radius);
	overflow: hidden;
	box-shadow: var(--pds-shadow);
	transition: var(--pds-transition);
	display: flex;
	flex-direction: column;
}

.pds-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--pds-shadow-lg);
}

.pds-card__media {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--pds-bg-alt);
}

.pds-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.pds-card:hover .pds-card__media img {
	transform: scale(1.08);
}

.pds-card__arrow {
	position: absolute;
	right: 16px;
	bottom: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--pds-green);
	color: #fff;
	box-shadow: 0 8px 20px rgba(0, 153, 102, 0.4);
	transition: var(--pds-transition);
}

.pds-card__arrow svg {
	width: 18px;
	height: 18px;
}

.pds-card:hover .pds-card__arrow {
	transform: rotate(-45deg);
	background: var(--pds-dark);
}

.pds-card__body {
	padding: 24px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.pds-card__title {
	font-size: 1.15rem;
	margin-bottom: 10px;
}

.pds-card__title a {
	color: var(--pds-dark);
}

.pds-card__title a:hover {
	color: var(--pds-green);
}

.pds-card__text {
	color: var(--pds-muted);
	font-size: 14.5px;
	flex: 1;
}

.pds-card__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 16px;
	font-weight: 800;
	font-size: 14.5px;
	color: var(--pds-green);
}

.pds-card__link svg {
	width: 16px;
	height: 16px;
	transition: transform 0.3s ease;
}

.pds-card__link:hover svg {
	transform: translateX(5px);
}

/* =============================================================
   Notícias
   ============================================================= */

.pds-news__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.pds-news__grid--2 {
	grid-template-columns: repeat(2, 1fr);
}

.pds-post {
	background: #fff;
	border: 1px solid var(--pds-border);
	border-radius: var(--pds-radius);
	overflow: hidden;
	box-shadow: var(--pds-shadow);
	transition: var(--pds-transition);
	display: flex;
	flex-direction: column;
}

.pds-post:hover {
	transform: translateY(-8px);
	box-shadow: var(--pds-shadow-lg);
}

.pds-post__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--pds-bg-alt);
}

.pds-post__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.pds-post:hover .pds-post__media img {
	transform: scale(1.06);
}

.pds-post__date {
	position: absolute;
	left: 16px;
	top: 16px;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(0, 54, 49, 0.82);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	backdrop-filter: blur(4px);
}

.pds-post__body {
	padding: 22px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.pds-post__title {
	font-size: 1.08rem;
	margin-bottom: 8px;
}

.pds-post__title a {
	color: var(--pds-dark);
}

.pds-post__title a:hover {
	color: var(--pds-green);
}

.pds-post__excerpt {
	color: var(--pds-muted);
	font-size: 14px;
	flex: 1;
}

/* =============================================================
   Galeria
   ============================================================= */

.pds-gallery__wrap {
	position: relative;
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 56px;
}

.pds-gallery__viewport {
	overflow: hidden;
	border-radius: var(--pds-radius);
	box-shadow: var(--pds-shadow-lg);
}

.pds-gallery__track {
	display: flex;
	transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pds-gallery__slide {
	flex: 0 0 100%;
	aspect-ratio: 16 / 8;
	margin: 0;
}

.pds-gallery__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pds-gallery__slide {
	position: relative;
}

.pds-gallery__cap {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 28px 18px 14px;
	background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
}

.pds-gallery__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border: 1px solid var(--pds-border);
	border-radius: 50%;
	background: #fff;
	color: var(--pds-dark);
	cursor: pointer;
	box-shadow: var(--pds-shadow);
	transition: var(--pds-transition);
}

.pds-gallery__arrow:hover {
	background: var(--pds-green);
	border-color: var(--pds-green);
	color: #fff;
}

.pds-gallery__arrow svg {
	width: 20px;
	height: 20px;
}

.pds-gallery__arrow--prev {
	left: 0;
}

.pds-gallery__arrow--next {
	right: 0;
}

.pds-gallery__dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 22px;
}

.pds-gallery__dots button {
	width: 9px;
	height: 9px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: #c9d2cf;
	cursor: pointer;
	transition: var(--pds-transition);
}

.pds-gallery__dots button.is-active {
	background: var(--pds-green);
	width: 24px;
	border-radius: 6px;
}

/* =============================================================
   Seções informativas
   ============================================================= */

.pds-info--dark {
	background: var(--pds-dark);
}

.pds-info--dark .pds-section__title {
	color: #fff;
}

.pds-info--dark .pds-info__list {
	color: rgba(255, 255, 255, 0.85);
}

.pds-info__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}

.pds-info__content .pds-section__title {
	margin-bottom: 24px;
}

.pds-info__list {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
	display: grid;
	gap: 14px;
}

.pds-info__list li {
	position: relative;
	padding-left: 34px;
}

.pds-info__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 7px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--pds-green);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M4 12l5 5L20 6'/%3E%3C/svg%3E");
	background-size: 11px;
	background-position: center;
	background-repeat: no-repeat;
}

.pds-info__media img {
	width: 100%;
	border-radius: var(--pds-radius);
	box-shadow: var(--pds-shadow-lg);
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.pds-info__media--slider {
	position: relative;
}

.pds-info__slider {
	overflow: hidden;
	border-radius: var(--pds-radius);
	box-shadow: var(--pds-shadow-lg);
}

.pds-info__track {
	display: flex;
	transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pds-info__slide {
	flex: 0 0 100%;
	aspect-ratio: 4 / 3;
	margin: 0;
}

.pds-info__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* =============================================================
   Contato
   ============================================================= */

.pds-contact__grid {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 56px;
	align-items: stretch;
}

.pds-contact__list {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
	display: grid;
	gap: 18px;
}

.pds-contact__list li {
	display: flex;
	gap: 16px;
}

.pds-contact__ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: var(--pds-green-light);
	color: var(--pds-green);
}

.pds-contact__ico svg {
	width: 20px;
	height: 20px;
}

.pds-contact__list strong {
	display: block;
	color: var(--pds-dark);
	font-size: 15px;
	margin-bottom: 2px;
}

.pds-contact__list p {
	margin: 0;
	color: var(--pds-muted);
	font-size: 14.5px;
}

.pds-contact__map {
	border-radius: var(--pds-radius);
	overflow: hidden;
	box-shadow: var(--pds-shadow-lg);
	min-height: 420px;
}

.pds-contact__map iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 420px;
}

/* =============================================================
   CTA
   ============================================================= */

.pds-cta {
	padding: 0;
}

.pds-cta__inner {
	background: linear-gradient(135deg, var(--pds-green) 0%, var(--pds-green-dark) 100%);
	border-radius: 24px;
	padding: clamp(48px, 7vw, 80px) 32px;
	text-align: center;
	color: #fff;
	box-shadow: 0 30px 60px rgba(0, 153, 102, 0.3);
}

.pds-cta__title {
	color: #fff;
	font-size: clamp(1.6rem, 3.6vw, 2.6rem);
	margin-bottom: 14px;
}

.pds-cta__text {
	color: rgba(255, 255, 255, 0.92);
	font-size: 17px;
	max-width: 620px;
	margin: 0 auto 30px;
}

.pds-cta__actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

/* =============================================================
   Página interna (hero)
   ============================================================= */

.pds-page-hero {
	background: linear-gradient(160deg, var(--pds-dark) 0%, var(--pds-dark-2) 100%);
	color: #fff;
	padding: clamp(44px, 7vw, 84px) 0;
	position: relative;
	overflow: hidden;
}

.pds-page-hero::after {
	content: '';
	position: absolute;
	right: -120px;
	top: -120px;
	width: 340px;
	height: 340px;
	border-radius: 50%;
	background: rgba(0, 153, 102, 0.16);
}

.pds-page-hero .pds-container {
	position: relative;
	z-index: 2;
}

.pds-page-hero__crumb {
	margin-bottom: 10px;
	color: rgba(255, 255, 255, 0.6);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.pds-page-hero__crumb a {
	color: rgba(255, 255, 255, 0.75);
}

.pds-page-hero__crumb a:hover {
	color: var(--pds-green);
}

.pds-page-hero__title {
	color: #fff;
	font-size: clamp(1.8rem, 4.4vw, 3.2rem);
	margin-bottom: 8px;
}

.pds-page-hero__meta {
	color: rgba(255, 255, 255, 0.75);
	font-size: 14px;
}

.pds-page-hero__sub {
	color: rgba(255, 255, 255, 0.8);
}

.pds-page-hero__sub mark {
	background: var(--pds-green);
	color: #fff;
	padding: 2px 8px;
	border-radius: 6px;
}

/* =============================================================
   Conteúdo (artigo / página)
   ============================================================= */

.pds-page {
	padding: clamp(44px, 6vw, 72px) 24px clamp(48px, 6vw, 80px);
	max-width: var(--pds-container);
}

.pds-article__thumb {
	margin: 0 0 28px;
	border-radius: var(--pds-radius);
	overflow: hidden;
}

.pds-content {
	font-size: 16.5px;
	line-height: 1.85;
}

.pds-content h2,
.pds-content h3,
.pds-content h4 {
	margin-top: 1.4em;
}

.pds-content a {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.pds-content ul,
.pds-content ol {
	padding-left: 24px;
}

.pds-content img {
	border-radius: var(--pds-radius);
}

.pds-content iframe {
	max-width: 100%;
}

.pds-post-nav {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin: 44px 0 20px;
	padding-top: 24px;
	border-top: 1px solid var(--pds-border);
	font-weight: 700;
}

.pds-pagination {
	margin: 44px 0;
}

.pds-pagination .nav-links {
	display: flex;
	gap: 8px;
	justify-content: center;
	flex-wrap: wrap;
}

.pds-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border: 1px solid var(--pds-border);
	border-radius: 10px;
	color: var(--pds-text);
	font-weight: 700;
}

.pds-pagination .page-numbers.current {
	background: var(--pds-green);
	border-color: var(--pds-green);
	color: #fff;
}

.pds-404 {
	text-align: center;
	padding: clamp(70px, 10vw, 130px) 24px;
}

.pds-404__code {
	font-size: clamp(4rem, 12vw, 7rem);
	font-weight: 800;
	line-height: 1;
	color: var(--pds-green);
	margin: 0;
}

.pds-404__title {
	margin-top: 12px;
}

.pds-empty {
	text-align: center;
	padding: 40px 0;
}

/* ---- Comments (básico) ---- */

.pds-comments {
	margin-top: 40px;
}

.pds-comments .comment-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.pds-comments .comment-body {
	border: 1px solid var(--pds-border);
	border-radius: var(--pds-radius-sm);
	padding: 18px;
	margin-bottom: 16px;
}

/* =============================================================
   Compatibilidade com shortcodes Enfold
   ============================================================= */

.pds-av-section {
	position: relative;
}

.pds-av-section--full {
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.pds-av-section__overlay {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.pds-av-section__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
}

.pds-av-section__inner > .pds-col {
	display: flex;
	flex-direction: column;
}

.pds-col {
	flex: 0 0 auto;
}

.pds-heading {
	line-height: 1.2;
	margin-bottom: 16px;
}

.pds-heading--center {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.pds-heading__sub {
	display: block;
	margin-top: 8px;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.5;
	color: var(--pds-muted);
}

.pds-heading--classic {
	padding-left: 18px;
	border-left: 5px solid var(--pds-green);
	color: var(--pds-green-dark);
}

.pds-textblock p:last-child {
	margin-bottom: 0;
}

.pds-textblock + .pds-textblock {
	margin-top: 8px;
}

.pds-av-image--center {
	text-align: center;
}

.pds-av-image--center img {
	margin: 0 auto;
}

.pds-av-image img {
	border-radius: var(--pds-radius);
	box-shadow: var(--pds-shadow);
	width: auto;
}

.pds-av-image--circle img {
	border-radius: 50%;
	width: min(260px, 70%);
}

.pds-rotator {
	line-height: 1.2;
	margin-bottom: 16px;
}

.pds-rotator--center {
	text-align: center;
}

.pds-rotator__word {
	display: inline-block;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.pds-rotator__word.is-out {
	opacity: 0;
	transform: translateY(8px);
}

.pds-hr-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin: 24px 0;
	color: var(--pds-hr-color, var(--pds-green));
}

.pds-hr-icon svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.pds-hr-icon__line {
	height: 2px;
	width: 60px;
	background: var(--pds-hr-color, var(--pds-green));
	border-radius: 2px;
}

/* ---- Hotspot (av_image_hotspot) ---- */

.pds-hotspot {
	position: relative;
	margin: 0 0 24px;
}

.pds-hotspot img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: var(--pds-radius);
	box-shadow: var(--pds-shadow);
}

.pds-hotspot__markers {
	position: absolute;
	inset: 0;
}

.pds-hotspot__marker {
	position: absolute;
	transform: translate(-50%, -50%);
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	z-index: 2;
}

.pds-hotspot__marker > a {
	display: block;
	text-decoration: none;
}

.pds-hotspot__dot {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #fff;
	color: #888;
	font-size: 11px;
	font-weight: 800;
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.55);
	position: relative;
	transition: transform 0.2s ease;
}

.pds-hotspot__dot::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: var(--pds-pulse, rgba(0, 153, 102, 0.55));
	z-index: -1;
	animation: pdsHotspotPulse 2.2s ease-out infinite;
}

.pds-hotspot__dot--num {
	font-size: 11px;
}

.pds-hotspot__marker:hover .pds-hotspot__dot,
.pds-hotspot__marker:focus .pds-hotspot__dot,
.pds-hotspot__marker.is-active .pds-hotspot__dot {
	transform: scale(1.18);
}

@keyframes pdsHotspotPulse {
	0% {
		transform: scale(1);
		opacity: 0.6;
	}
	100% {
		transform: scale(2.6);
		opacity: 0;
	}
}

.pds-hotspot__tip {
	position: absolute;
	left: 50%;
	bottom: calc(100% + 12px);
	transform: translateX(-50%) translateY(6px);
	background: #fff;
	color: #222;
	font-size: 12.5px;
	font-weight: 600;
	line-height: 1.35;
	text-align: center;
	padding: 8px 12px;
	border-radius: 8px;
	box-shadow: var(--pds-shadow);
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
	pointer-events: none;
	z-index: 3;
}

.pds-hotspot__tip::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 6px solid transparent;
	border-top-color: #fff;
}

.pds-hotspot__marker[data-hotspot-tip-below] .pds-hotspot__tip {
	bottom: auto;
	top: calc(100% + 12px);
}

.pds-hotspot__marker[data-hotspot-tip-below] .pds-hotspot__tip::after {
	top: auto;
	bottom: 100%;
	border-top-color: transparent;
	border-bottom-color: #fff;
}

.pds-hotspot__marker:hover .pds-hotspot__tip,
.pds-hotspot__marker:focus .pds-hotspot__tip,
.pds-hotspot__marker.is-active .pds-hotspot__tip {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.pds-hotspot__marker[data-hotspot-empty] {
	pointer-events: none;
}

.pds-hotspot__marker[data-hotspot-empty] .pds-hotspot__dot::before {
	display: none;
}

.pds-hotspot__marker[data-hotspot-empty] .pds-hotspot__dot {
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4);
	opacity: 0.85;
}

.pds-av-map {
	border-radius: var(--pds-radius);
	overflow: hidden;
	box-shadow: var(--pds-shadow-lg);
}

.pds-av-map iframe {
	width: 100%;
	height: 100%;
	display: block;
}

.pds-iconbox {
	background: #fff;
	border: 1px solid var(--pds-border);
	border-radius: var(--pds-radius);
	padding: 32px 26px;
	text-align: center;
	box-shadow: var(--pds-shadow);
	height: 100%;
	transition: var(--pds-transition);
}

.pds-iconbox:hover {
	transform: translateY(-6px);
	box-shadow: var(--pds-shadow-lg);
}

.pds-iconbox__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: var(--pds-green-light);
	color: var(--pds-green);
	transition: var(--pds-transition);
}

.pds-iconbox:hover .pds-iconbox__icon {
	background: var(--pds-green);
	color: #fff;
	transform: scale(1.08);
}

.pds-iconbox__icon svg {
	width: 28px;
	height: 28px;
}

.pds-iconbox__title {
	font-size: 1.1rem;
	margin-bottom: 10px;
}

.pds-iconbox__text {
	color: var(--pds-muted);
	font-size: 14.5px;
}

.pds-iconbox__text p:last-child {
	margin-bottom: 0;
}

.pds-testimonials {
	position: relative;
	text-align: center;
	max-width: 820px;
	margin: 0 auto;
}

.pds-testimonial {
	display: none;
	padding: 20px 8px;
}

.pds-testimonial.is-active {
	display: block;
	animation: pdsFadeUp 0.5s ease;
}

.pds-testimonial__content {
	font-size: clamp(1.05rem, 2vw, 1.35rem);
	font-style: italic;
	line-height: 1.7;
	color: var(--pds-text);
	max-width: 700px;
	margin: 0 auto 22px;
}

.pds-testimonial__content::before {
	content: '\201C';
	display: block;
	font-size: 64px;
	line-height: 0.6;
	color: var(--pds-green);
	opacity: 0.35;
	margin-bottom: 14px;
	font-style: normal;
}

.pds-testimonial__author {
	display: block;
	font-style: normal;
	font-weight: 800;
	color: var(--pds-dark);
	font-size: 15px;
}

.pds-testimonial__sub {
	display: block;
	color: var(--pds-muted);
	font-weight: 500;
	font-size: 13px;
	margin-top: 3px;
}

.pds-testimonials__dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 18px;
}

.pds-testimonials__dots button {
	width: 9px;
	height: 9px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: #c9d2cf;
	cursor: pointer;
	transition: var(--pds-transition);
}

.pds-testimonials__dots button.is-active {
	background: var(--pds-green);
	width: 24px;
	border-radius: 6px;
}

/* ---- Fade slider genérico (compat) ---- */

.pds-fade-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 22px;
}

.pds-fade-dots button {
	width: 9px;
	height: 9px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: #c9d2cf;
	cursor: pointer;
	transition: var(--pds-transition);
}

.pds-fade-dots button.is-active {
	background: var(--pds-green);
	width: 24px;
	border-radius: 6px;
}

.pds-fade-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 6;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: rgba(0, 0, 0, 0.25);
	color: #fff;
	cursor: pointer;
	transition: var(--pds-transition);
	backdrop-filter: blur(4px);
}

.pds-fade-arrow:hover {
	background: var(--pds-green);
	border-color: var(--pds-green);
}

.pds-fade-arrow svg {
	width: 22px;
	height: 22px;
}

.pds-fade-arrow--prev {
	left: 24px;
}

.pds-fade-arrow--next {
	right: 24px;
}

/* ---- Fullscreen slider (av_fullscreen) ---- */

.pds-av-fullscreen {
	position: relative;
	min-height: min(92vh, 840px);
	min-height: 560px;
	background: var(--pds-dark);
	overflow: hidden;
	display: flex;
	align-items: center;
}

.pds-av-fullscreen__slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 1.1s ease;
	display: flex;
	align-items: center;
}

.pds-av-fullscreen__slide.is-active {
	opacity: 1;
	z-index: 2;
}

.pds-av-fullscreen__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(0, 22, 20, 0.35) 0%, rgba(0, 22, 20, 0.72) 100%);
}

.pds-av-fullscreen__content {
	position: relative;
	z-index: 3;
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
	color: #fff;
	padding: 0 24px;
}

.pds-av-fullscreen__text {
	font-size: clamp(1.5rem, 4.4vw, 3rem);
	font-weight: 800;
	line-height: 1.14;
	color: #fff;
	margin: 0;
	text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

/* ---- Content slider (av_content_slider) ---- */

.pds-content-slider {
	position: relative;
	max-width: 860px;
	margin: 0 auto;
	text-align: center;
	min-height: 220px;
}

.pds-content-slide {
	display: none;
	padding: 10px;
}

.pds-content-slide.is-active {
	display: block;
	animation: pdsFadeUp 0.5s ease;
}

.pds-content-slide__title {
	font-size: clamp(1.2rem, 2.6vw, 1.7rem);
	margin-bottom: 10px;
}

.pds-content-slide__text {
	color: var(--pds-muted);
	font-size: 16px;
}

.pds-content-slide__text p:last-child {
	margin-bottom: 0;
}

/* ---- Timeline (av_timeline) ---- */

.pds-timeline {
	position: relative;
	padding-left: 34px;
	display: grid;
	gap: 30px;
	max-width: 820px;
	margin: 0 auto;
}

.pds-timeline::before {
	content: '';
	position: absolute;
	left: 8px;
	top: 8px;
	bottom: 8px;
	width: 2px;
	background: var(--pds-green-light);
}

.pds-timeline__item {
	position: relative;
}

.pds-timeline__dot {
	position: absolute;
	left: -31px;
	top: 8px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--pds-green);
	border: 3px solid #fff;
	box-shadow: 0 0 0 2px var(--pds-green);
}

.pds-timeline__year {
	display: inline-block;
	padding: 4px 14px;
	border-radius: 999px;
	background: var(--pds-green-light);
	color: var(--pds-green-dark);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.06em;
}

.pds-timeline__title {
	margin: 10px 0 4px;
	font-size: 1.2rem;
}

.pds-timeline__text {
	color: var(--pds-muted);
	margin: 0;
}

/* ---- Tabs (av_tab_container) ---- */

.pds-tabs {
	border: 1px solid var(--pds-border);
	border-radius: var(--pds-radius);
	background: #fff;
	box-shadow: var(--pds-shadow);
	overflow: hidden;
}

.pds-tabs__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	padding: 12px 12px 0;
	border-bottom: 1px solid var(--pds-border);
	background: var(--pds-bg-alt);
}

.pds-tabs__tab {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 18px;
	border: 1px solid transparent;
	border-bottom: none;
	border-radius: 10px 10px 0 0;
	background: transparent;
	color: var(--pds-muted);
	font-family: inherit;
	font-size: 14.5px;
	font-weight: 700;
	cursor: pointer;
	transition: var(--pds-transition);
}

.pds-tabs__tab:hover {
	color: var(--pds-green);
}

.pds-tabs__tab.is-active {
	background: #fff;
	color: var(--pds-green-dark);
	border-color: var(--pds-border);
	box-shadow: 0 -4px 0 var(--pds-green) inset;
}

.pds-tabs__icon {
	display: inline-flex;
	width: 16px;
	height: 16px;
	color: var(--pds-green);
}

.pds-tabs__icon svg {
	width: 100%;
	height: 100%;
}

.pds-tabs__panels {
	padding: clamp(20px, 3vw, 32px);
}

.pds-tabs__panel {
	display: none;
}

.pds-tabs__panel.is-active {
	display: block;
	animation: pdsFadeUp 0.4s ease;
}

.pds-tabs__panel > *:last-child {
	margin-bottom: 0;
}

/* ---- Table (av_table / av_cell) ---- */

.pds-table-wrap {
	overflow-x: auto;
	border: 1px solid var(--pds-border);
	border-radius: var(--pds-radius);
	box-shadow: var(--pds-shadow);
}

.pds-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
	min-width: 520px;
}

.pds-table caption {
	padding: 16px;
	font-weight: 800;
	color: var(--pds-dark);
	text-align: left;
	border-bottom: 1px solid var(--pds-border);
	background: var(--pds-bg-alt);
}

.pds-table th,
.pds-table td {
	padding: 14px 18px;
	border-bottom: 1px solid var(--pds-border);
	text-align: left;
	vertical-align: middle;
}

.pds-table tr:last-child td,
.pds-table tr:last-child th {
	border-bottom: none;
}

.pds-table th {
	background: var(--pds-dark);
	color: #fff;
	font-weight: 800;
}

.pds-table td {
	background: #fff;
}

.pds-table tr:nth-child(even) td {
	background: var(--pds-bg-alt);
}

.pds-table--pricing {
	min-width: 0;
}

.pds-table .avia-highlight-col,
.pds-table td.avia-highlight-col {
	background: var(--pds-green-light);
	font-weight: 700;
	color: var(--pds-green-dark);
}

.pds-table .avia-desc-col {
	text-align: left;
}

.pds-table .avia-center-col {
	text-align: center;
}

/* ---- Accordion / toggles (av_toggle_container) ---- */

.pds-accordion {
	border: 1px solid var(--pds-border);
	border-radius: var(--pds-radius);
	background: #fff;
	box-shadow: var(--pds-shadow);
	overflow: hidden;
}

.pds-accordion__item + .pds-accordion__item {
	border-top: 1px solid var(--pds-border);
}

.pds-accordion__head {
	margin: 0;
}

.pds-accordion__title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	padding: 18px 22px;
	border: none;
	background: transparent;
	font-family: inherit;
	font-size: 16px;
	font-weight: 800;
	color: var(--pds-dark);
	text-align: left;
	cursor: pointer;
	transition: var(--pds-transition);
}

.pds-accordion__title:hover {
	color: var(--pds-green);
}

.pds-accordion__icon {
	position: relative;
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--pds-green-light);
	color: var(--pds-green);
	transition: var(--pds-transition);
}

.pds-accordion__icon::before,
.pds-accordion__icon::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 10px;
	height: 2px;
	background: currentColor;
	transform: translate(-50%, -50%);
	border-radius: 2px;
}

.pds-accordion__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
	transition: transform 0.3s ease;
}

.pds-accordion__item.is-open .pds-accordion__icon {
	background: var(--pds-green);
	color: #fff;
}

.pds-accordion__item.is-open .pds-accordion__icon::after {
	transform: translate(-50%, -50%) rotate(0deg);
}

.pds-accordion__body {
	transition: max-height 0.4s ease;
}

.pds-accordion__content {
	padding: 0 22px 22px;
	color: var(--pds-muted);
}

/* ---- Icon list (av_iconlist) ---- */

.pds-iconlist {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
	display: grid;
	gap: 14px;
}

.pds-iconlist__item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}

.pds-iconlist__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 26px;
	height: 26px;
	margin-top: 2px;
	border-radius: 50%;
	background: var(--pds-green-light);
	color: var(--pds-green);
}

.pds-iconlist__mark svg {
	width: 14px;
	height: 14px;
}

.pds-iconlist__title {
	display: block;
	color: var(--pds-dark);
	margin-bottom: 2px;
}

.pds-iconlist__text {
	color: var(--pds-muted);
	font-size: 14.5px;
}

.pds-iconlist__text p:last-child {
	margin-bottom: 0;
}

/* ---- Icon grid (av_icongrid) ---- */

.pds-icongrid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.pds-icongrid__item {
	background: #fff;
	border: 1px solid var(--pds-border);
	border-radius: var(--pds-radius);
	padding: 26px 22px;
	text-align: center;
	box-shadow: var(--pds-shadow);
	transition: var(--pds-transition);
}

.pds-icongrid__item:hover {
	transform: translateY(-6px);
	box-shadow: var(--pds-shadow-lg);
}

.pds-icongrid__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin-bottom: 14px;
	border-radius: 50%;
	background: var(--pds-green-light);
	color: var(--pds-green);
}

.pds-icongrid__icon svg {
	width: 26px;
	height: 26px;
}

.pds-icongrid__title {
	font-size: 1.05rem;
	margin-bottom: 6px;
}

.pds-icongrid__subtitle {
	color: var(--pds-green-dark);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.pds-icongrid__text {
	color: var(--pds-muted);
	font-size: 14px;
}

.pds-icongrid__text p:last-child {
	margin-bottom: 0;
}

/* ---- Notificação (av_notification) ---- */

.pds-notice {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	padding: 20px 22px;
	border-radius: var(--pds-radius);
	background: var(--pds-bg-alt);
	border: 1px solid var(--pds-border);
	margin-bottom: 24px;
}

.pds-notice__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fff;
	color: var(--pds-green);
}

.pds-notice__icon svg {
	width: 20px;
	height: 20px;
}

.pds-notice__title {
	display: block;
	color: var(--pds-dark);
	margin-bottom: 4px;
}

.pds-notice__text {
	color: var(--pds-muted);
	font-size: 14.5px;
}

.pds-notice__text p:last-child {
	margin-bottom: 0;
}

.pds-notice--green {
	background: var(--pds-green-light);
	border-color: var(--pds-green);
}

.pds-notice--red {
	background: #fdeeee;
	border-color: #e04f5f;
}

.pds-notice--red .pds-notice__icon {
	color: #e04f5f;
}

.pds-notice--blue {
	background: #eaf3fc;
	border-color: #3a8fd4;
}

.pds-notice--blue .pds-notice__icon {
	color: #3a8fd4;
}

.pds-notice--orange {
	background: #fef5e9;
	border-color: #e8933a;
}

.pds-notice--orange .pds-notice__icon {
	color: #e8933a;
}

/* ---- Promobox (av_promobox) ---- */

.pds-promobox {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	padding: clamp(24px, 4vw, 40px) clamp(24px, 4vw, 48px);
	border-radius: var(--pds-radius);
	background: linear-gradient(135deg, var(--pds-green) 0%, var(--pds-green-dark) 100%);
	color: #fff;
	box-shadow: 0 20px 44px rgba(0, 153, 102, 0.28);
	margin: 24px 0;
}

.pds-promobox__text {
	color: rgba(255, 255, 255, 0.94);
	font-size: 17px;
	flex: 1;
	min-width: 240px;
}

.pds-promobox__text p:last-child {
	margin-bottom: 0;
}

.pds-promobox__text strong {
	color: #fff;
}

/* ---- Vídeo (av_video) ---- */

.pds-video {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: var(--pds-radius);
	box-shadow: var(--pds-shadow-lg);
	background: #000;
	margin: 24px 0;
}

.pds-video--169 {
	aspect-ratio: 16 / 9;
}

.pds-video--43 {
	aspect-ratio: 4 / 3;
}

.pds-video iframe,
.pds-video video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: none;
}

/* ---- Parceiros / logos (av_partner) ---- */

.pds-partners__heading {
	text-align: center;
	margin-bottom: 28px;
}

.pds-partners {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 18px;
	align-items: center;
}

.pds-partners__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	background: #fff;
	border: 1px solid var(--pds-border);
	border-radius: var(--pds-radius-sm);
	transition: var(--pds-transition);
	filter: grayscale(100%);
	opacity: 0.75;
}

.pds-partners__logo:hover {
	filter: none;
	opacity: 1;
	transform: translateY(-3px);
	box-shadow: var(--pds-shadow);
}

.pds-partners__logo img {
	max-height: 52px;
	width: auto;
	margin: 0 auto;
}

/* =============================================================
   Footer
   ============================================================= */

.pds-footer {
	background: var(--pds-dark-3);
	color: rgba(255, 255, 255, 0.78);
	margin-top: clamp(40px, 6vw, 72px);
}

.pds-footer__top {
	padding: clamp(48px, 6vw, 72px) 0 40px;
}

.pds-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 40px;
}

.pds-footer__logo img {
	height: 44px;
	width: auto;
	margin-bottom: 18px;
	opacity: 0.95;
}

.pds-footer__text {
	color: rgba(255, 255, 255, 0.62);
	font-size: 14.5px;
	max-width: 320px;
}

.pds-footer__social {
	display: flex;
	gap: 8px;
	margin-top: 18px;
}

.pds-footer__social .pds-social {
	background: rgba(255, 255, 255, 0.08);
}

.pds-footer__title {
	color: #fff;
	font-size: 15px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.pds-footer__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 14px;
}

.pds-footer__list li {
	display: flex;
	gap: 12px;
	font-size: 14.5px;
	line-height: 1.6;
}

.pds-footer__list a {
	color: rgba(255, 255, 255, 0.78);
}

.pds-footer__list a:hover {
	color: var(--pds-green);
}

.pds-footer__ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 34px;
	height: 34px;
	border-radius: 9px;
	background: rgba(0, 153, 102, 0.18);
	color: var(--pds-green);
}

.pds-footer__ico svg {
	width: 16px;
	height: 16px;
}

.pds-footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 6px;
}

.pds-footer-menu a {
	display: inline-block;
	padding: 6px 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 14.5px;
}

.pds-footer-menu a:hover {
	color: var(--pds-green);
	padding-left: 6px;
}

.pds-footer__socket {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 20px 0;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
}

.pds-footer__socket-inner {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}

.pds-footer__socket p {
	margin: 0;
}

.pds-footer__socket a {
	color: rgba(255, 255, 255, 0.7);
}

.pds-footer__socket a:hover {
	color: var(--pds-green);
}

.pds-footer__sep {
	margin: 0 8px;
	opacity: 0.5;
}

/* =============================================================
   WhatsApp flutuante
   ============================================================= */

.pds-whatsapp {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 80;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: var(--pds-whatsapp);
	color: #fff;
	box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
	transition: var(--pds-transition);
}

.pds-whatsapp svg {
	width: 30px;
	height: 30px;
}

.pds-whatsapp:hover {
	transform: translateY(-4px) scale(1.05);
	color: #fff;
	box-shadow: 0 16px 40px rgba(37, 211, 102, 0.55);
}

.pds-whatsapp::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: var(--pds-whatsapp);
	z-index: -1;
	animation: pdsPulse 2.4s infinite;
}

@keyframes pdsPulse {
	0% {
		transform: scale(1);
		opacity: 0.5;
	}
	70% {
		transform: scale(1.5);
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

/* =============================================================
   Responsivo
   ============================================================= */

@media (max-width: 1024px) {
	.pds-services__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.pds-news__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.pds-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 36px;
	}

	.pds-info__grid {
		gap: 36px;
	}

	.pds-icongrid {
		grid-template-columns: repeat(2, 1fr);
	}

	.pds-partners {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 900px) {
	.pds-nav {
		display: none;
	}

	.pds-burger {
		display: flex;
	}

	.pds-mobile-menu {
		display: block;
	}

	.pds-av-section__inner > .pds-col {
		width: 100% !important;
	}

	.pds-stats__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.pds-contact__grid {
		grid-template-columns: 1fr;
	}

	.pds-info__grid {
		grid-template-columns: 1fr;
	}

	.pds-info__media {
		order: 2;
	}

	.pds-info__grid--reverse .pds-info__media {
		order: 1;
	}

	.pds-hero__arrow {
		display: none;
	}

	.pds-gallery__wrap {
		padding: 0 44px;
	}
}

@media (max-width: 640px) {
	.pds-container {
		padding-left: 18px;
		padding-right: 18px;
	}

	.pds-topbar__phone-label {
		display: none;
	}

	.pds-topbar__inner {
		justify-content: center;
	}

	.pds-logo img {
		height: 42px;
	}

	.pds-navbar__inner {
		min-height: 66px;
	}

	.pds-services__grid,
	.pds-news__grid {
		grid-template-columns: 1fr;
	}

	.pds-stats__grid {
		grid-template-columns: 1fr 1fr;
	}

	.pds-footer__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.pds-hero {
		min-height: 520px;
	}

	.pds-gallery__wrap {
		padding: 0 0;
	}

	.pds-gallery__arrow {
		width: 42px;
		height: 42px;
		top: auto;
		bottom: 14px;
	}

	.pds-gallery__arrow--prev {
		left: auto;
		right: 72px;
	}

	.pds-gallery__arrow--next {
		right: 16px;
	}

	.pds-cta__actions .pds-btn {
		width: 100%;
	}

	.pds-icongrid {
		grid-template-columns: 1fr;
	}

	.pds-partners {
		grid-template-columns: repeat(2, 1fr);
	}

	.pds-promobox {
		flex-direction: column;
		text-align: center;
	}

	.pds-tabs__nav {
		flex-wrap: nowrap;
		overflow-x: auto;
		scrollbar-width: thin;
	}
}

/* =============================================================
   Acessibilidade
   ============================================================= */

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}

	.pds-reveal {
		opacity: 1;
		transform: none;
	}
}

/* ----------------------------------------------------------------
 * Carregar mais notícias
 * ---------------------------------------------------------------- */
.pds-loadmore {
	margin: 44px 0;
	text-align: center;
}

.pds-loadmore .pds-pagination {
	margin: 20px 0 0;
}

.pds-btn.is-loading {
	opacity: 0.6;
	pointer-events: none;
}

.pds-btn.is-loading::after {
	content: '';
	width: 16px;
	height: 16px;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-top-color: #fff;
	border-radius: 50%;
	animation: pds-spin 0.7s linear infinite;
}

@keyframes pds-spin {
	to {
		transform: rotate(360deg);
	}
}
