/* ============================================================
   TRANSIÇÃO DE PÁGINA — barra de progresso + fade in do conteúdo
   ============================================================ */

.amarte-page-progress {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	z-index: 99999;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.amarte-page-progress.is-active {
	opacity: 1;
}

.amarte-page-progress__bar {
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, var(--amarte-cor-principal, #28326a) 0%, var(--amarte-cor-secundaria, #ff7900) 100%);
	box-shadow: 0 0 8px rgba(255, 121, 0, 0.35);
	transition: width 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.amarte-page-progress.is-complete .amarte-page-progress__bar {
	width: 100% !important;
	transition: width 0.18s ease;
}

body.amarte-page-loading #content {
	opacity: 0;
	transform: translateY(14px);
}

body.amarte-page-loading.amarte-page-ready #content {
	opacity: 1;
	transform: translateY(0);
	transition:
		opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
	body.amarte-page-loading #content,
	body.amarte-page-loading.amarte-page-ready #content {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.amarte-page-progress {
		display: none;
	}
}

/* ============================================================
   BLOCO SOBRE / MISSÃO (page-home.php)
   ============================================================ */

.amarte-home {
	overflow-x: hidden;
}

/* Home — imagens completas, sem corte */
.amarte-home .amarte-sobre__img {
	height: auto;
	max-height: 520px;
	object-fit: contain;
}

.amarte-home .amarte-sobre__img-placeholder {
	height: auto;
	min-height: 280px;
}

/* Home — reveal lento (fade down) nas imagens O que fazemos / Quem Somos */
.amarte-home .amarte-home-reveal {
	opacity: 0;
	transform: translateY(-40px);
	transition:
		opacity 1.45s cubic-bezier(0.22, 1, 0.36, 1),
		transform 1.55s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
	.amarte-home .amarte-home-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

.amarte-home .amarte-dif__img {
	max-height: none;
	height: auto;
	object-fit: contain;
}

.amarte-home .amarte-servicos__card {
	background-size: cover;
	background-repeat: no-repeat;
}

.amarte-home .amarte-equipe-card__photo {
	aspect-ratio: auto;
	overflow: visible;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #eef1f7;
	min-height: 200px;
}

.amarte-home .amarte-equipe-card__photo img {
	width: 100%;
	height: auto;
	max-height: 320px;
	object-fit: contain;
}

.amarte-home .amarte-equipe-card:hover .amarte-equipe-card__photo img {
	transform: none;
}

.amarte-home .amarte-equipe-card__photo-placeholder {
	min-height: 200px;
	height: auto;
}

.amarte-home .amarte-blog__card-thumb {
	aspect-ratio: auto;
	overflow: visible;
	background: #eef1f7;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 160px;
}

.amarte-home .amarte-blog__card-thumb img {
	width: 100%;
	height: auto;
	max-height: 200px;
	object-fit: contain;
}

.amarte-home .amarte-blog__card:hover .amarte-blog__card-thumb img {
	transform: none;
}

.amarte-home .amarte-blog__card-placeholder {
	min-height: 160px;
	height: auto;
}

.amarte-sobre {
	padding: 90px 0;
}

.amarte-sobre__inner {
	max-width: 1420px;
	margin: 0 auto;
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 60px;
}

/* ── Texto direita ── */
.amarte-sobre__label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--amarte-cor-principal, #28326a);
	margin-bottom: 18px;
}

.amarte-sobre__label-bar {
	display: inline-block;
	width: 30px;
	height: 3px;
	background: var(--amarte-cor-principal, #28326a);
	border-radius: 2px;
	flex-shrink: 0;
}

.amarte-sobre__title {
	font-size: clamp(1.8rem, 3.5vw, 2.0rem);
	line-height: 1.2;
	color: #111;
	margin: 0 0 20px;
}

.amarte-sobre__title strong {
	color: var(--amarte-cor-principal, #28326a);
	font-weight: 800;
}

.amarte-sobre__desc {
	color: #666;
	font-size: 15px;
	line-height: 1.8;
	margin: 0 0 24px;
}

.amarte-sobre__checks {
	list-style: none;
	margin: 0 0 32px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.amarte-sobre__checks li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 15px;
	font-weight: 500;
	color: #222;
}

.amarte-sobre__check-icon {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--amarte-cor-secundaria, #ff7900);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.amarte-sobre__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--amarte-cor-principal, #28326a);
	color: #fff;
	padding: 14px 28px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	transition: background 0.2s ease;
}

.amarte-sobre__btn:hover {
	background: var(--amarte-cor-secundaria, #ff7900);
	color: #fff;
}

/* ── Imagem + badge esquerda ── */
.amarte-sobre__media {
	position: relative;
}

.amarte-sobre__img {
	display: block;
	width: 100%;
	height: 480px;
	object-fit: cover;
	border-radius: 8px;
}

.amarte-sobre__img-placeholder {
	width: 100%;
	height: 480px;
	background: #e8eaf0;
	border-radius: 8px;
}

.amarte-sobre__badge {
	position: absolute;
	bottom: 70px;
	left: 0;
	right: auto;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: var(--amarte-cor-secundaria, #ff7900);
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 20px;
	box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}

.amarte-sobre__badge-num {
	margin: 0;
	font-size: 11px;
	line-height: 1.2;
}

.amarte-sobre__badge-count {
	display: block;
	font-size: 3rem;
	font-weight: 800;
	margin: 0;
	line-height: 1.1;
}

.amarte-sobre__badge-text {
	margin: 8px 0 0;
	font-size: 14px;
	line-height: 1.35;
	font-weight: 600;
}

@media (max-width: 900px) {
	.amarte-sobre {
		padding: 30px 0;
	}

	.amarte-sobre__inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.amarte-sobre__title {
		font-size: clamp(1.6rem, 3.5vw, 2.0rem);
	}

	.amarte-sobre__badge {
		left: 10px;
		right: auto;
		bottom: 10px;
		width: 120px;
		height: 120px;
		padding: 12px;
	}

	.amarte-sobre__badge-count {
		font-size: 1.8rem;
	}

	.amarte-sobre__badge-text {
		font-size: 12px;
		margin-top: 4px;
	}
}

/* ============================================================
   Topo bar — fundo transparente, itens à direita, texto branco
   ============================================================ */
.amarte-topo-bar {
	background: transparent;
	color: #fff;
	font-size: 13px;
	border-bottom: none;
	margin-top: -20px;
	max-height: 80px;
	overflow: hidden;
	opacity: 1;
	transition: max-height 0.3s ease, opacity 0.25s ease;
}

/* Nas páginas que não são a home, topbar oculta */
body:not(.home) .amarte-topo-bar {
	display: none;
}

/* Nas páginas internas, sticky wrap com margem negativa no topo */
body:not(.home) .amarte-sticky-wrap {
	margin-top: -50px !important;
	margin-bottom: 0 !important;
}

/* Nas páginas internas, header sem padding vertical extra */
body:not(.home) #site-header.amarte-main-header .header-inner.amarte-header-split {
	min-height: 54px !important;
}
body:not(.home) .amarte-header-duha .amarte-header-col--brand {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}
body:not(.home) .amarte-desktop-nav .amarte-main-menu > li > a {
	min-height: 54px !important;
}
body:not(.home) .amarte-header-cta--duha {
	height: 36px !important;
}

/* Border-bottom com animação de brilho nas páginas internas */
@keyframes amarte-header-shine {
	0%   { background-position: -200% center; }
	100% { background-position: 200% center; }
}

body:not(.home) #site-header.amarte-main-header {
	position: relative;
	border-bottom: 2px solid var(--amarte-cor-secundaria, #ff7900);
}

body:not(.home) #site-header.amarte-main-header::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(
		90deg,
		transparent 0%,
		transparent 20%,
		rgba(255, 255, 255, 0.9) 50%,
		transparent 80%,
		transparent 100%
	);
	background-size: 200% 100%;
	animation: amarte-header-shine 2.4s linear infinite;
}

.amarte-topo-bar__inner {
	max-width: 1420px;
	margin: 0 auto;
	padding: 3px 40px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0;
	flex-wrap: wrap;
}

.amarte-topo-bar__right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 16px;
	flex-wrap: wrap;
}

.amarte-topo-bar__item {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: rgba(255, 255, 255, 0.92);
}

.amarte-topo-bar__item a {
	color: #fff;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.amarte-topo-bar__item a:hover {
	opacity: 0.75;
}

.amarte-topo-bar__social {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-left: 12px;
	border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.amarte-social {
	color: #fff;
	opacity: 0.85;
	transition: opacity 0.2s ease;
}

.amarte-social:hover {
	opacity: 1;
	color: #fff;
}

/* ============================================================
   WRAPPER STICKY — topbar + header colados ao topo juntos
   ============================================================ */

.amarte-sticky-wrap {
	position: sticky;
	top: 0;
	z-index: 500;
	width: 100%;
	border: none;
	outline: none;
	margin: 0 !important;
	padding: 0 !important;
}

/* ── Topbar: esconde ao rolar ── */
.amarte-sticky-wrap.is-scrolled .amarte-topo-bar {
	max-height: 0;
	opacity: 0;
}

/* ── Header: versão compacta ao rolar ── */
.amarte-sticky-wrap .header-inner.amarte-header-split {
	transition: min-height 0.3s ease;
}

.amarte-sticky-wrap.is-scrolled .header-inner.amarte-header-split {
	min-height: 40px !important;
}

.amarte-sticky-wrap.is-scrolled .amarte-header-duha .amarte-header-col--brand {
	padding: 4px 14px !important;
	flex: 0 0 clamp(100px, 12vw, 160px) !important;
}

.amarte-sticky-wrap.is-scrolled #site-header.amarte-main-header .custom-logo-link img {
	max-height: 24px !important;
	max-width: 90px !important;
}

.amarte-sticky-wrap.is-scrolled .amarte-header-duha .amarte-desktop-nav .amarte-main-menu > li > a {
	min-height: 40px !important;
	height: 40px !important;
	font-size: 12px !important;
	padding: 0 14px !important;
	line-height: 40px !important;
}

.amarte-sticky-wrap.is-scrolled .amarte-header-duha .amarte-header-col--nav {
	align-self: center !important;
}

.amarte-sticky-wrap.is-scrolled .amarte-header-col--actions {
	padding: 0 12px 0 8px !important;
	gap: 6px !important;
	align-self: center !important;
}

.amarte-sticky-wrap.is-scrolled .amarte-header-duha .amarte-header-cta--duha {
	height: 30px !important;
	font-size: 11px !important;
	padding: 0 14px !important;
}

.amarte-sticky-wrap.is-scrolled .amarte-header-duha .amarte-side-panel-toggle--duha {
	width: 34px !important;
	height: 34px !important;
	min-width: 34px !important;
	min-height: 34px !important;
}

/* Reset: alguns browsers/temas deixam margem default no body */
html, body {
	margin: 0;
	padding: 0;
	overflow-x: clip;
}

/* Admin bar — WP adiciona margin-top:32px ao html; zeramos qualquer margem extra do body */
html body.admin-bar {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

/* Impede que elementor/hello theme adicione padding-top ao body em páginas internas */
body:not(.home) {
	padding-top: 0 !important;
}

/* Desktop com admin bar: WP já adiciona html { margin-top:32px }, sticky gruda abaixo */
.admin-bar .amarte-sticky-wrap {
	top: 32px;
}

/* Mobile (600–782px): zera html margin e compensa com margin-top no sticky wrap
   → header fica rente ao topo do navegador sem gap visível */
@media screen and (max-width: 782px) {
	html.admin-bar {
		margin-top: 0 !important;
	}
	.admin-bar .amarte-sticky-wrap {
		top: 46px;
		margin-top: 46px !important;
	}
}

/* Mobile pequeno (<600px): admin bar oculta, sem compensação necessária */
@media screen and (max-width: 600px) {
	html.admin-bar {
		margin-top: 0 !important;
	}
	.admin-bar .amarte-sticky-wrap {
		top: 0 !important;
		margin-top: 0 !important;
	}
}

/* ============================================================
   HEADER PRINCIPAL — layout Duha (logo branca + menu laranja)
   ============================================================ */

#site-header.amarte-main-header {
	padding-block-start: 0 !important;
	padding-block-end: 0 !important;
	padding-inline: 0 !important;
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	background: transparent;
	box-shadow: none;
	position: static;
	z-index: auto;
	overflow: visible;
	overflow: visible;
}

#site-header.amarte-main-header .header-inner.amarte-header-split,
#site-header.amarte-main-header .header-inner.amarte-header-grid {
	display: flex !important;
	align-items: stretch !important;
	width: 100%;
	max-width: 1420px;
	margin: 0 auto;
	padding: 0;
	height: auto;
	min-height: 63px;
	gap: 0 !important;
	flex-wrap: nowrap !important;
}

/* ── Bloco branco: logo ── */
.amarte-header-duha .amarte-header-col--brand {
	flex: 0 0 clamp(200px, 24vw, 300px);
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6px 20px;
	align-self: stretch;
	position: relative;
}

/* Extende o fundo branco até a borda esquerda da tela em viewports > 1420px */
.amarte-header-duha .amarte-header-col--brand::before {
	content: '';
	position: absolute;
	top: 0;
	right: 100%;
	width: max(0px, calc((100vw - 1420px) / 2));
	height: 100%;
	background: #fff;
	pointer-events: none;
}

.amarte-header-duha .amarte-header-col--brand .site-branding {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.amarte-header-duha .amarte-header-col--brand .site-description {
	display: none;
}

#site-header.amarte-main-header .custom-logo-link {
	display: block;
	line-height: 0;
}

#site-header.amarte-main-header .custom-logo-link img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 80px;
}

#site-header.amarte-main-header .custom-logo-link {
	display: block;
	width: 100%;
	line-height: 0;
}

#site-header.amarte-main-header .site-title {
	font-size: 1.75rem;
	font-weight: 800;
	line-height: 1.1;
	margin: 0;
	text-align: center;
}

#site-header.amarte-main-header .site-title a {
	color: #111;
	text-decoration: none;
}

#site-header.amarte-main-header .site-branding.show-logo .site-title {
	display: none !important;
}

#site-header.amarte-main-header .site-branding.show-title .site-logo {
	display: none !important;
}

/* ── Bloco cor primária: menu + ações ── */
.amarte-header-duha .amarte-header-col--menu-bar {
	flex: 1 1 auto;
	background: var(--amarte-cor-principal, #28326a);
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	min-width: 0;
	position: relative;
}

/* Extende o fundo até a borda direita da tela em viewports > 1420px */
.amarte-header-duha .amarte-header-col--menu-bar::after {
	content: '';
	position: absolute;
	top: 0;
	left: 100%;
	width: max(0px, calc((100vw - 1420px) / 2));
	height: 100%;
	background: var(--amarte-cor-principal, #28326a);
	pointer-events: none;
}

.amarte-header-duha .amarte-header-col--nav {
	flex: 1 1 auto;
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
	align-self: stretch;
	min-width: 0;
}

.amarte-header-duha .amarte-desktop-nav {
	width: 100%;
	height: 100%;
}

.amarte-header-duha .amarte-desktop-nav .amarte-main-menu,
.amarte-header-duha .amarte-desktop-nav .amarte-main-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.amarte-header-duha .amarte-desktop-nav .amarte-main-menu {
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
	gap: 0;
	height: 100%;
}

.amarte-header-duha .amarte-desktop-nav .amarte-main-menu > li {
	position: relative;
	display: flex;
	align-items: stretch;
}

.amarte-header-duha .amarte-desktop-nav .amarte-main-menu > li > a {
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 0 22px;
	min-height: 63px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	white-space: nowrap;
	transition: background 0.2s ease, color 0.2s ease;
	position: relative;
}

.amarte-header-duha .amarte-desktop-nav .amarte-main-menu > li > a::after {
	display: none;
}

.amarte-header-duha .amarte-desktop-nav .amarte-main-menu > li > a:hover,
.amarte-header-duha .amarte-desktop-nav .amarte-main-menu > li.current-menu-item > a,
.amarte-header-duha .amarte-desktop-nav .amarte-main-menu > li.current_page_item > a {
	color: var(--amarte-cor-principal, #28326a);
	background: var(--amarte-cor-secundaria, #ff7900);
}

.amarte-header-duha .amarte-desktop-nav .menu-item-has-children > a > span,
.amarte-header-duha .amarte-desktop-nav .menu-item-has-children > a .nav-arrow {
	font-size: 10px;
	opacity: 0.85;
}

.amarte-header-duha .amarte-desktop-nav .menu-item-has-children > a:not(:has(.nav-arrow))::before {
	content: "+";
	order: 99;
	font-size: 12px;
	font-weight: 700;
	opacity: 0.9;
	margin-left: 4px;
}

.amarte-header-duha .amarte-desktop-nav .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 230px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	padding: 8px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
	z-index: 501;
}

.amarte-header-duha .amarte-desktop-nav .amarte-main-menu > li:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.amarte-header-duha .amarte-desktop-nav .sub-menu a {
	display: block;
	padding: 11px 22px;
	color: #333;
	text-decoration: none;
	font-size: 14px;
	text-transform: none;
	letter-spacing: 0;
	transition: background 0.15s ease, color 0.15s ease;
}

.amarte-header-duha .amarte-desktop-nav .sub-menu a:hover {
	background: #f5f6f8;
	color: var(--amarte-cor-principal, #28326a);
}

/* ── Ações no bloco laranja ── */
.amarte-header-duha .amarte-header-col--actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	padding: 0 20px 0 12px;
	flex-shrink: 0;
	align-self: stretch;
}

.amarte-header-duha .amarte-header-cta--duha {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--amarte-cor-secundaria, #ff7900);
	color: var(--amarte-cor-principal, #28326a);
	padding: 0 28px;
	align-self: center;
	height: 40px;
	border-radius: 0;
	text-decoration: none;
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	white-space: nowrap;
	transition: background 0.2s ease, filter 0.2s ease;
	line-height: 1;
}

.amarte-header-duha .amarte-header-cta--duha::before {
	content: '\260E';
	font-size: 16px;
	line-height: 1;
}

.amarte-header-duha .amarte-header-cta--duha:hover {
	background: var(--amarte-cor-secundaria, #ff7900);
	filter: brightness(1.12);
	color: var(--amarte-cor-principal, #28326a);
	transform: none;
}

.amarte-header-duha .amarte-side-panel-toggle--duha {
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: transparent;
	border-radius: 0;
	order: -1;
}

.amarte-header-duha .amarte-side-panel-toggle--duha:hover {
	border-color: var(--amarte-cor-secundaria, #ff7900);
	background: rgba(255, 255, 255, 0.08);
}

.amarte-header-duha .amarte-side-panel-toggle--duha .amarte-side-panel-toggle__icon span {
	background: #fff;
}

.amarte-header-duha .amarte-side-panel-toggle--duha:hover .amarte-side-panel-toggle__icon span {
	background: #fff;
}

@media (min-width: 1101px) {
	.amarte-header-duha .amarte-side-panel-toggle--duha {
		display: inline-flex;
	}
}

/* Legado — mantido para compatibilidade */
.amarte-header-col--brand {
	justify-self: start;
	align-self: center;
}

.amarte-header-col--nav {
	justify-self: center;
	align-self: stretch;
	display: flex;
	align-items: center;
}

.amarte-desktop-nav {
	width: 100%;
}

.amarte-desktop-nav .amarte-main-menu,
.amarte-desktop-nav .amarte-main-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.amarte-desktop-nav .amarte-main-menu {
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 0;
}

.amarte-desktop-nav .amarte-main-menu > li {
	position: relative;
	display: flex;
	align-items: center;
}

.amarte-desktop-nav .amarte-main-menu > li > a {
	color: #1f1f1f;
	text-decoration: none;
	font-weight: 500;
	font-size: 15px;
	padding: 0 18px;
	height: 88px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	white-space: nowrap;
	transition: color 0.2s ease;
	position: relative;
}

.amarte-desktop-nav .amarte-main-menu > li > a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 18px;
	right: 18px;
	height: 3px;
	background: var(--amarte-cor-principal, #28326a);
	transform: scaleX(0);
	transition: transform 0.2s ease;
}

.amarte-desktop-nav .amarte-main-menu > li > a:hover,
.amarte-desktop-nav .amarte-main-menu > li.current-menu-item > a {
	color: var(--amarte-cor-principal, #28326a);
}

.amarte-desktop-nav .amarte-main-menu > li > a:hover::after,
.amarte-desktop-nav .amarte-main-menu > li.current-menu-item > a::after {
	transform: scaleX(1);
}

.amarte-desktop-nav .menu-item-has-children > a > span,
.amarte-desktop-nav .menu-item-has-children > a .nav-arrow {
	font-size: 10px;
	opacity: 0.65;
}

.amarte-desktop-nav .menu-item-has-children > a:not(:has(.nav-arrow))::before {
	content: "▾";
	order: 99;
	font-size: 10px;
	opacity: 0.65;
	margin-left: 3px;
}

.amarte-desktop-nav .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 230px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.13);
	padding: 8px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
	z-index: 501;
}

.amarte-desktop-nav .amarte-main-menu > li:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.amarte-desktop-nav .sub-menu a {
	display: block;
	padding: 11px 22px;
	color: #333;
	text-decoration: none;
	font-size: 14px;
	transition: background 0.15s ease, color 0.15s ease;
}

.amarte-desktop-nav .sub-menu a:hover {
	background: #f5f6f8;
	color: var(--amarte-cor-principal, #28326a);
}

.amarte-header-col--actions {
	justify-self: end;
	align-self: center;
	display: flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
}

/* Telefone */
.amarte-header-phone {
	display: inline-flex;
	align-items: center;
	gap: 13px;
	text-decoration: none;
	color: #222;
	white-space: nowrap;
}

.amarte-header-phone__icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #2ecc71;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 4px 14px rgba(46, 204, 113, 0.38);
}

.amarte-header-phone__text {
	display: flex;
	flex-direction: column;
	line-height: 1.25;
	gap: 2px;
}

.amarte-header-phone__text small {
	font-size: 11px;
	color: #888;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.amarte-header-phone__text strong {
	font-size: 15px;
	font-weight: 700;
	color: #111;
}

/* Botão CTA */
.amarte-header-cta {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	background: var(--amarte-cor-secundaria, #ff7900);
	color: #fff;
	padding: 14px 26px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	white-space: nowrap;
	transition: background 0.2s ease, transform 0.15s ease;
	line-height: 1;
}

.amarte-header-cta:hover {
	background: var(--amarte-cor-principal, #28326a);
	color: #fff;
	transform: translateY(-1px);
}

.amarte-header-cta__arrow {
	font-size: 15px;
	line-height: 1;
}

/* Botão de grade (painel lateral) */
.amarte-side-panel-toggle {
	width: 44px;
	height: 44px;
	border: 1px solid #dde0e5;
	background: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	flex-shrink: 0;
	border-radius: 3px;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.amarte-side-panel-toggle:hover {
	border-color: var(--amarte-cor-principal, #28326a);
	background: #f7f8fa;
}

.amarte-side-panel-toggle__icon {
	display: grid;
	grid-template-columns: repeat(3, 5px);
	gap: 3.5px;
}

.amarte-side-panel-toggle__icon span {
	width: 5px;
	height: 5px;
	background: #444;
	display: block;
	border-radius: 1px;
	transition: background 0.2s ease;
}

.amarte-side-panel-toggle:hover .amarte-side-panel-toggle__icon span {
	background: var(--amarte-cor-principal, #28326a);
}

/* Toggle mobile (hamburger) — oculto no desktop */
.amarte-mobile-nav-toggle {
	display: none;
}

.amarte-mobile-nav-dropdown {
	display: none;
}

/* Painel lateral */
.amarte-side-panel__overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: 100000;
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.amarte-side-panel__overlay.is-visible {
	opacity: 1;
	pointer-events: auto;
}

.amarte-side-panel {
	position: fixed;
	top: 0;
	right: 0;
	width: min(420px, 92vw);
	height: 100vh;
	background: #fff;
	z-index: 100001;
	transform: translateX(100%);
	transition: transform 0.35s ease;
	box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
	overflow-y: auto;
}

.amarte-side-panel.is-open {
	transform: translateX(0);
}

.amarte-side-panel__header {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0;
	padding: 24px 24px 20px;
	border-bottom: 1px solid #eee;
	background: linear-gradient(180deg, #f8f9fc 0%, #fff 100%);
}

.amarte-side-panel__header-main {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
}

.amarte-side-panel__social {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid rgba(40, 50, 106, 0.1);
	width: 100%;
}

.amarte-side-panel__social .amarte-social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(40, 50, 106, 0.08);
	color: var(--amarte-cor-principal, #28326a);
	opacity: 1;
	transition: background 0.2s ease, color 0.2s ease;
}

.amarte-side-panel__social .amarte-social:hover {
	background: var(--amarte-cor-principal, #28326a);
	color: #fff;
	opacity: 1;
}

.amarte-side-panel__intro {
	flex: 1;
	min-width: 0;
}

.amarte-side-panel__logo {
	margin-bottom: 12px;
	line-height: 0;
}

.amarte-side-panel__logo .custom-logo-link {
	display: inline-block;
	line-height: 0;
}

.amarte-side-panel__logo .custom-logo-link img {
	max-width: 150px;
	width: auto;
	height: auto;
	display: block;
}

.amarte-side-panel__title {
	margin: 0 0 6px;
	font-size: 1.35rem;
	color: var(--amarte-cor-principal, #28326a);
	line-height: 1.25;
}

.amarte-side-panel__tagline {
	margin: 0;
	font-size: 0.9rem;
	color: #666;
	line-height: 1.5;
}

.amarte-side-panel__close {
	width: 40px;
	height: 40px;
	border: 0;
	background: #f3f4f6;
	border-radius: 50%;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	color: #333;
	flex-shrink: 0;
}

.amarte-side-panel__body {
	padding: 8px 24px 32px;
}

.amarte-side-panel__block {
	padding: 20px 0;
	border-bottom: 1px solid #f0f0f0;
}

.amarte-side-panel__block:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.amarte-side-panel__block-title {
	margin: 0 0 12px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--amarte-cor-secundaria, #ff7900);
}

.amarte-side-panel__text {
	margin: 0 0 12px;
	color: #555;
	line-height: 1.65;
	font-size: 0.95rem;
}

.amarte-side-panel__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--amarte-cor-principal, #28326a);
	font-weight: 600;
	font-size: 0.92rem;
	text-decoration: none;
	transition: color 0.2s ease;
}

.amarte-side-panel__link::after {
	content: '→';
	font-size: 1rem;
	line-height: 1;
}

.amarte-side-panel__link:hover {
	color: var(--amarte-cor-secundaria, #ff7900);
}

.amarte-side-panel__list {
	list-style: none;
	margin: 0 0 14px;
	padding: 0;
	display: grid;
	gap: 8px;
}

.amarte-side-panel__list li {
	position: relative;
	padding-left: 16px;
	color: #444;
	font-size: 0.93rem;
	line-height: 1.45;
}

.amarte-side-panel__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--amarte-cor-secundaria, #ff7900);
}

.amarte-side-panel__features {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 14px;
}

.amarte-side-panel__feature {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.amarte-side-panel__feature-icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(40, 50, 106, 0.08);
	color: var(--amarte-cor-principal, #28326a);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.amarte-side-panel__feature-body {
	display: flex;
	flex-direction: column;
	gap: 2px;
	color: #555;
	font-size: 0.9rem;
	line-height: 1.45;
}

.amarte-side-panel__feature-body strong {
	color: #222;
	font-size: 0.93rem;
}

.amarte-side-panel__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 2px;
}

.amarte-side-panel__menu a {
	display: block;
	padding: 10px 0;
	border-bottom: 1px solid #f5f5f5;
	color: #333;
	text-decoration: none;
	font-weight: 500;
	font-size: 0.95rem;
	transition: color 0.2s ease;
}

.amarte-side-panel__menu li:last-child a {
	border-bottom: 0;
}

.amarte-side-panel__menu a:hover {
	color: var(--amarte-cor-secundaria, #ff7900);
}

.amarte-side-panel__cta {
	padding: 20px 0 8px;
}

.amarte-side-panel__cta-btn {
	display: block;
	width: 100%;
	padding: 14px 18px;
	border-radius: 4px;
	background: var(--amarte-cor-secundaria, #ff7900);
	color: #fff;
	text-align: center;
	text-decoration: none;
	font-weight: 700;
	font-size: 0.92rem;
	line-height: 1.35;
	transition: background 0.2s ease, transform 0.2s ease;
}

.amarte-side-panel__cta-btn:hover {
	background: #e56d00;
	color: #fff;
}

.amarte-side-panel__block--contact {
	background: #f8f9fc;
	margin: 8px -24px 0;
	padding: 20px 24px 24px;
	border-bottom: 0;
}

.amarte-side-panel__info p {
	margin: 0 0 14px;
	color: #444;
	line-height: 1.5;
	font-size: 0.92rem;
}

.amarte-side-panel__info p:last-child {
	margin-bottom: 0;
}

.amarte-side-panel__info strong {
	display: block;
	margin-bottom: 2px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #888;
}

.amarte-side-panel__info a {
	color: var(--amarte-cor-principal, #28326a);
	text-decoration: none;
	font-weight: 600;
}

.amarte-side-panel__info a:hover {
	color: var(--amarte-cor-secundaria, #ff7900);
}

body.amarte-side-panel-open {
	overflow: hidden;
}

/* Slider Pro */
.amarte-slider-pro {
	position: relative;
	overflow: hidden;
	/* Puxa o slider para cima, atrás do wrapper sticky (z-index:500).
	   Os +4px extras garantem sobreposição da borda inferior do header,
	   eliminando qualquer gap de sub-pixel entre o header e o hero. */
	margin-top: calc(-1 * var(--amarte-sticky-h, 108px) - 4px);
	/* Borda inferior apontada para baixo */
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 50% 100%, 0 calc(100% - 60px));
}

/* Com admin bar visível — valor fixo ajustado manualmente. */
.admin-bar .amarte-slider-pro {
	margin-top: -170px;
}

@media screen and (max-width: 782px) {
	.admin-bar .amarte-slider-pro {
		margin-top: calc(-1 * var(--amarte-sticky-h, 90px) - 46px - 4px);
	}
}

.amarte-slider-pro__track {
	position: relative;
	height: 100svh;
	min-height: 480px;
}

.amarte-slider-pro__slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 1.1s ease;
	overflow: hidden;
	z-index: 0;
	display: flex;
	align-items: center;
	/* Empurra o conteúdo para baixo do header que flutua sobre o hero */
	padding-top: var(--amarte-sticky-h, 108px);
	box-sizing: border-box;
}

.amarte-slider-pro__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: var(--slide-bg-desktop);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	transform: scale(1);
	will-change: transform;
}

.amarte-slider-pro__slide:not(.is-active) .amarte-slider-pro__bg {
	animation: none;
	transform: scale(1);
}

.amarte-slider-pro__slide.is-active .amarte-slider-pro__bg {
	animation: amarte-slider-pro-zoom 22s ease-out forwards;
}

@keyframes amarte-slider-pro-zoom {
	from {
		transform: scale(1);
	}
	to {
		transform: scale(1.12);
	}
}

.amarte-slider-pro__slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 1;
}

.amarte-slider-pro__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		120deg,
		var(--amarte-cor-principal, #28326a) 0%,
		var(--amarte-cor-principal, #28326a) 35%,
		var(--amarte-cor-secundaria, #ff7900) 55%,
		var(--amarte-cor-principal, #28326a) 75%,
		var(--amarte-cor-principal, #28326a) 100%
	);
	background-size: 250% 250%;
	opacity: 0.5;
	animation: slider-overlay-shift 8s ease infinite;
}

@keyframes slider-overlay-shift {
	0%   { background-position: 0%   50%; }
	50%  { background-position: 100% 50%; }
	100% { background-position: 0%   50%; }
}

.amarte-slider-pro__content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1420px;
	margin: 0 auto;
	padding: 40px 20px;
	color: #fff;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.amarte-slider-pro__inner {
	position: relative;
	width: 100%;
}

.amarte-slider-pro__inner--split {
	display: grid;
	grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
	align-items: center;
	gap: 48px;
}

.amarte-slider-pro__text {
	position: relative;
	z-index: 2;
	grid-column: 1;
	grid-row: 1;
	align-self: center;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.amarte-slider-pro__slide:not(.is-active) .amarte-slider-pro__text > *,
.amarte-slider-pro__slide:not(.is-active) .amarte-slider-pro__img-right {
	opacity: 0;
}

.amarte-slider-pro__slide.is-active .amarte-slider-pro__text > * {
	animation: amarte-slider-pro-text-in 1.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.amarte-slider-pro__slide.is-active .amarte-slider-pro__text > *:nth-child(1) { animation-delay: 0.18s; }
.amarte-slider-pro__slide.is-active .amarte-slider-pro__text > *:nth-child(2) { animation-delay: 0.36s; }
.amarte-slider-pro__slide.is-active .amarte-slider-pro__text > *:nth-child(3) { animation-delay: 0.54s; }
.amarte-slider-pro__slide.is-active .amarte-slider-pro__text > *:nth-child(4) { animation-delay: 0.72s; }

.amarte-slider-pro__slide.is-active .amarte-slider-pro__img-right {
	animation: amarte-slider-pro-img-in 1.45s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

@keyframes amarte-slider-pro-text-in {
	from {
		opacity: 0;
		transform: translateX(-36px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes amarte-slider-pro-img-in {
	from {
		opacity: 0;
		transform: translateX(36px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.amarte-slider-pro__img-right {
	position: relative;
	z-index: 3;
	grid-column: 2;
	grid-row: 1;
	align-self: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.amarte-slider-pro__img-right img {
	width: 100%;
	height: auto;
	max-width: 100%;
	object-fit: contain;
	object-position: center;
	display: block;
	border-radius: 16px;
}

.amarte-slider-pro__slide--split .amarte-slider-pro__overlay {
	background: linear-gradient(
		120deg,
		var(--amarte-cor-principal, #28326a) 0%,
		var(--amarte-cor-principal, #28326a) 35%,
		var(--amarte-cor-secundaria, #ff7900) 55%,
		var(--amarte-cor-principal, #28326a) 75%,
		var(--amarte-cor-principal, #28326a) 100%
	);
	background-size: 250% 250%;
}

.amarte-slider-pro__badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 8px 14px;
	font-size: 13px;
	margin-bottom: 18px;
}

.amarte-slider-pro__title {
	font-size: clamp(2rem, 5vw, 3.5rem);
	line-height: 1.15;
	margin: 0 auto 16px;
	max-width: 700px;
	font-weight: 500;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.amarte-slider-pro__title b {
	font-weight: 800;
	color: var(--amarte-cor-secundaria, #ff7900);
}

.amarte-slider-pro__subtitle {
	font-size: 1.05rem;
	max-width: 560px;
	margin: 0 auto 28px;
	opacity: 0.92;
	font-weight: 500;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.40);
}

.amarte-slider-pro__subtitle b {
	font-weight: 800;
	color: var(--amarte-cor-secundaria, #ff7900);
	opacity: 1;
}

.amarte-slider-pro__button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--amarte-cor-secundaria, #ff7900);
	color: #fff;
	padding: 14px 24px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 600;
}

.amarte-slider-pro__button:hover {
	color: #fff;
	filter: brightness(1.05);
}

.amarte-slider-pro__link-cover {
	position: absolute;
	inset: 0;
	z-index: 3;
}

@media (prefers-reduced-motion: reduce) {
	.amarte-slider-pro__slide.is-active .amarte-slider-pro__bg {
		animation: none;
	}

	.amarte-slider-pro__slide.is-active .amarte-slider-pro__text > *,
	.amarte-slider-pro__slide.is-active .amarte-slider-pro__img-right {
		animation: none;
		opacity: 1;
		transform: none;
	}
}

.amarte-slider-pro__nav {
	position: absolute;
	/* Centraliza na área visível abaixo do header (que flutua sobre o hero) */
	top: calc(50% + var(--amarte-sticky-h, 108px) / 2);
	transform: translateY(-50%);
	background: transparent;
	border: 0;
	color: #fff;
	font-size: 14px;
	cursor: pointer;
	z-index: 3;
	padding: 10px;
	outline: none;
}

.amarte-slider-pro__nav:hover,
.amarte-slider-pro__nav:focus {
	background: transparent;
	color: #fff;
	outline: none;
}

.amarte-slider-pro__nav--prev {
	left: 20px;
}

.amarte-slider-pro__nav--next {
	right: 20px;
}

/* Dots — ocultos no desktop, visíveis no mobile */
.amarte-slider-pro__dots {
	display: none;
	position: absolute;
	bottom: 20px;
	left: 0;
	right: 0;
	justify-content: center;
	gap: 8px;
	z-index: 4;
}

.amarte-slider-pro__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.45);
	cursor: pointer;
	padding: 0;
	transition: background 0.25s, transform 0.25s, width 0.25s;
	flex-shrink: 0;
}

.amarte-slider-pro__dot.is-active {
	background: #fff;
	width: 22px;
	border-radius: 4px;
	transform: none;
}

@media (max-width: 1100px) {
	/* Topbar oculta e sticky rente ao topo no mobile */
	.amarte-topo-bar {
		display: none !important;
	}
	.amarte-sticky-wrap {
		margin-top: 0 !important;
	}

	.amarte-header-duha .amarte-header-col--nav {
		display: none;
	}

	.amarte-header-duha .amarte-header-cta--duha {
		display: none;
	}

	.amarte-header-duha .amarte-side-panel-toggle--duha {
		display: inline-flex;
	}

	.amarte-mobile-nav-toggle {
		display: block;
	}

	.amarte-mobile-nav-toggle .site-navigation-toggle,
	.amarte-header-duha .amarte-side-panel-toggle--duha {
		width: 40px !important;
		height: 40px !important;
		min-width: 40px !important;
		min-height: 40px !important;
		border-radius: 0 !important;
		border: 1px solid rgba(255, 255, 255, 0.4) !important;
		background: transparent !important;
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		padding: 0 !important;
	}

	/* Ícone hambúrguer tradicional — 3 barras */
	.amarte-mobile-nav-toggle .site-navigation-toggle-icon {
		display: block !important;
		position: relative !important;
		width: 22px !important;
		height: 2px !important;
		background: #fff !important;
		border-radius: 2px !important;
		transition: background 0.2s ease !important;
	}
	.amarte-mobile-nav-toggle .site-navigation-toggle-icon::before,
	.amarte-mobile-nav-toggle .site-navigation-toggle-icon::after {
		content: '' !important;
		position: absolute !important;
		left: 0 !important;
		width: 22px !important;
		height: 2px !important;
		background: #fff !important;
		border-radius: 2px !important;
		transition: transform 0.25s ease, top 0.25s ease, bottom 0.25s ease !important;
	}
	.amarte-mobile-nav-toggle .site-navigation-toggle-icon::before {
		top: -7px !important;
	}
	.amarte-mobile-nav-toggle .site-navigation-toggle-icon::after {
		bottom: -7px !important;
	}

	/* Legado */
	.amarte-header-col--nav {
		display: none;
	}

	.amarte-header-phone__text {
		display: none;
	}

	/* Botões panorama + menu ficam à direita no mobile */
	.amarte-header-duha .amarte-header-col--menu-bar {
		justify-content: flex-end;
	}
	.amarte-header-duha .amarte-header-col--actions {
		margin-left: auto;
		justify-content: flex-end;
	}

	/* Em mobile, páginas internas não usam margin-top negativo no sticky wrap */
	body:not(.home) .amarte-sticky-wrap {
		margin-top: 0 !important;
	}

	/* Header inner com margem negativa no mobile */
	#site-header.amarte-main-header .header-inner.amarte-header-split,
	#site-header.amarte-main-header .header-inner.amarte-header-grid {
		margin-top: -30px;
	}
}

/* ── Overlay do menu mobile ── */
.amarte-mobile-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(10, 14, 40, 0.55);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	z-index: 99998;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.amarte-mobile-overlay.is-open {
	display: block;
	opacity: 1;
}

/* ── Painel flutuante ── */
#site-header.amarte-main-header .site-navigation-dropdown.amarte-mobile-nav-dropdown {
	display: block !important;
	position: fixed;
	top: 16px;
	left: 16px;
	right: 16px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 24px 80px rgba(10, 14, 40, 0.22), 0 4px 16px rgba(10, 14, 40, 0.10);
	z-index: 99999;
	padding: 0;
	overflow: hidden;
	transform: translateY(-12px) scale(0.97);
	opacity: 0;
	pointer-events: none;
	transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
}

#site-header.amarte-main-header .site-navigation-dropdown.amarte-mobile-nav-dropdown.is-open {
	transform: translateY(0) scale(1);
	opacity: 1;
	pointer-events: auto;
}

#site-header.amarte-main-header .site-navigation-dropdown.amarte-mobile-nav-dropdown[aria-hidden="true"]:not(.is-open) {
	display: none !important;
}

/* Cabeçalho do painel */
.amarte-mobile-menu__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	border-bottom: 1px solid #f0f2f8;
}

.amarte-mobile-menu__logo img {
	width: 120px !important;
	height: auto !important;
}

.amarte-mobile-menu__site-name {
	font-weight: 700;
	font-size: 1.1rem;
	color: #28326a;
}

.amarte-mobile-menu__close {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: none;
	background: #f0f2f9;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #28326a;
	transition: background 0.2s, transform 0.2s;
	flex-shrink: 0;
}

.amarte-mobile-menu__close:hover {
	background: #28326a;
	color: #fff;
	transform: rotate(90deg);
}

.amarte-mobile-menu__close svg {
	width: 18px;
	height: 18px;
}

/* Links de navegação */
.amarte-mobile-menu__nav {
	padding: 12px 16px 20px;
}

.amarte-mobile-menu__nav .amarte-main-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.amarte-mobile-menu__nav .amarte-main-menu li a {
	display: block;
	padding: 13px 8px;
	font-size: 1.05rem;
	font-weight: 600;
	color: #1a1e3a;
	text-decoration: none;
	border-bottom: 1px solid #f0f2f8;
}

.amarte-mobile-menu__nav .amarte-main-menu li:last-child a {
	border-bottom: none;
}

.amarte-mobile-menu__nav .amarte-main-menu li.current-menu-item > a,
.amarte-mobile-menu__nav .amarte-main-menu li.current_page_item > a {
	color: #28326a;
	font-weight: 700;
}

/* Rodapé do painel */
.amarte-mobile-menu__foot {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 16px 24px 24px;
	border-top: 1px solid #f0f2f8;
}

.amarte-mobile-menu__contact {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.9rem;
	font-weight: 600;
	color: #28326a;
	text-decoration: none;
}

.amarte-mobile-menu__contact svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	fill: #28326a;
}

.amarte-mobile-menu__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 14px;
	background: #28326a;
	color: #fff;
	border-radius: 12px;
	font-size: 0.9rem;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.2s;
}

.amarte-mobile-menu__cta:hover {
	background: #1f274f;
}

@media (max-width: 767px) {
	.amarte-slider-pro__track {
		height: 100svh;
		min-height: 380px;
	}

	.amarte-slider-pro__slide {
		padding-top: var(--amarte-sticky-h, 90px);
	}

	.amarte-slider-pro__bg {
		background-image: var(--slide-bg-mobile, var(--slide-bg-desktop));
	}

	.amarte-slider-pro__overlay {
		opacity: 0.7;
	}

	.amarte-slider-pro__inner--split {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.amarte-slider-pro__text {
		grid-column: 1;
		grid-row: 2;
		align-self: auto;
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.amarte-slider-pro__title,
	.amarte-slider-pro__subtitle {
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
	}

	.amarte-slider-pro__img-right {
		grid-column: 1;
		grid-row: 1;
		max-width: 60%;
		width: 60%;
		margin-left: auto;
		margin-right: auto;
	}

	.amarte-slider-pro__img-right img {
		width: 100%;
		height: auto;
		max-width: 100%;
		object-fit: contain;
	}

	.amarte-slider-pro__slide.is-active .amarte-slider-pro__text > * {
		animation-name: amarte-slider-pro-text-in-mobile;
	}

	.amarte-slider-pro__slide.is-active .amarte-slider-pro__img-right {
		animation-name: amarte-slider-pro-img-in-mobile;
	}

	@keyframes amarte-slider-pro-text-in-mobile {
		from {
			opacity: 0;
			transform: translateY(28px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	@keyframes amarte-slider-pro-img-in-mobile {
		from {
			opacity: 0;
			transform: translateY(-28px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	.amarte-slider-pro__content {
		padding: 60px 16px;
	}

	/* Esconde prev/next no mobile */
	.amarte-slider-pro__nav--prev,
	.amarte-slider-pro__nav--next {
		display: none !important;
	}

	/* Mostra dots no mobile */
	.amarte-slider-pro__dots {
		display: flex;
		bottom: 14px;
	}

	/* Compacta slider ~30% no mobile */
	.amarte-slider-pro__content {
		padding: 40px 20px 56px;
	}

	.amarte-slider-pro__badge {
		font-size: 11px;
		padding: 5px 10px;
		margin-bottom: 12px;
	}

	.amarte-slider-pro__title {
		font-size: clamp(1.4rem, 6vw, 2rem);
		margin-bottom: 10px;
	}

	.amarte-slider-pro__subtitle {
		font-size: 0.88rem;
		margin-bottom: 18px;
	}

	.amarte-slider-pro__button {
		padding: 10px 18px;
		font-size: 0.85rem;
	}

	#site-header.amarte-main-header .header-inner.amarte-header-split,
	#site-header.amarte-main-header .header-inner.amarte-header-grid {
		min-height: 70px;
	}

	.amarte-header-duha .amarte-header-col--brand {
		flex: 0 0 auto;
		padding: 14px 18px;
	}

	.amarte-header-duha .amarte-header-col--menu-bar {
		flex: 1;
	}

	.amarte-header-duha .amarte-header-col--actions {
		padding: 0 14px;
	}

	.amarte-topo-bar__inner {
		padding: 3px 16px;
		justify-content: flex-end;
	}

	.amarte-topo-bar__right {
		gap: 14px;
	}

	.amarte-topo-bar__item--horario {
		display: none;
	}

	#site-header.amarte-main-header .custom-logo-link img {
		max-width: 160px;
		max-height: 56px;
	}

	.amarte-header-col--nav {
		display: none;
	}

	.amarte-header-cta {
		display: none;
	}

	.amarte-header-phone {
		display: none;
	}
}

/* ============================================================
   RODAPÉ
   ============================================================ */

.amarte-rodape {
	color: #fff;
	position: relative;
}

/* ============================================================
   RODAPÉ 2 — layout 4 colunas (estilo Porti)
   ============================================================ */

.amarte-rodape2 {
	color: #fff;
}

/* ── CTA ── */
.amarte-rodape2__cta-outer {
	position: relative;
	padding: 0 24px;
	margin-bottom: -32px;
	z-index: 2;
}

.amarte-rodape2__cta {
	max-width: 1420px;
	margin: 0 auto;
	padding: 56px 56px;
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	box-shadow: 0 12px 48px rgba(0, 0, 0, 0.30);

	/* Gradiente animado como base */
	background: linear-gradient(
		120deg,
		var(--amarte-cor-principal, #28326a) 0%,
		var(--amarte-cor-principal, #28326a) 35%,
		var(--amarte-cor-secundaria, #ff7900) 55%,
		var(--amarte-cor-principal, #28326a) 75%,
		var(--amarte-cor-principal, #28326a) 100%
	) !important;
	background-size: 250% 250% !important;
	animation: slider-overlay-shift 8s ease infinite;
}

/* Grade sutil de pontos por cima */
.amarte-rodape2__cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
	background-size: 28px 28px;
	pointer-events: none;
	z-index: 0;
}

/* Blob de glow no canto direito */
.amarte-rodape2__cta::after {
	content: '';
	position: absolute;
	top: -60px;
	right: -60px;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: radial-gradient(ellipse at center,
		rgba(255, 121, 0, 0.28) 0%,
		transparent 70%
	);
	pointer-events: none;
	z-index: 0;
}

.amarte-rodape2__cta-inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.amarte-rodape2__cta-text {
	flex: 1;
	min-width: 0;
}

.amarte-rodape2__cta-label {
	display: block;
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--amarte-cor-secundaria, #ff7900);
	margin-bottom: 4px;
}

.amarte-rodape2__cta-title {
	font-size: clamp(1rem, 2vw, 1.3rem);
	font-weight: 600;
	color: #fff;
	margin: 0;
	line-height: 1.3;
}

.amarte-rodape2__cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--amarte-cor-secundaria, #ff7900);
	color: var(--amarte-cor-principal, #28326a);
	padding: 10px 24px;
	font-weight: 700;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	text-decoration: none;
	white-space: nowrap;
	flex-shrink: 0;
	transition: filter 0.2s;
}

.amarte-rodape2__cta-btn:hover {
	filter: brightness(1.1);
	color: var(--amarte-cor-principal, #28326a);
}

/* ── Área escura principal ── */
.amarte-rodape2__dark {
	background-color: #0d0f14;
	background-size: cover;
	background-position: center;
	position: relative;
	padding-top: 64px;
}

.amarte-rodape2__border-top {
	height: 3px;
	background: var(--amarte-cor-secundaria, #ff7900);
	width: 100%;
}

.amarte-rodape2__wrap {
	max-width: 1420px;
	margin: 0 auto;
	padding: 60px 40px 0;
}

/* ── 4 colunas ── */
.amarte-rodape2__cols {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 48px;
	padding-bottom: 50px;
}

.amarte-rodape2__col-title {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #fff;
	margin: 0 0 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--amarte-cor-secundaria, #ff7900);
	display: inline-block;
}

/* Coluna CONTATOS */
.amarte-rodape2__contact-line {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.75);
	margin-bottom: 8px;
	text-decoration: none;
	line-height: 1.5;
}

.amarte-rodape2__contact-line:hover {
	color: #fff;
}

.amarte-rodape2__contact-line--address::before {
	content: '';
	flex-shrink: 0;
	width: 14px;
	height: 14px;
	margin-top: 2px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23ff7900'%3E%3Cpath fill-rule='evenodd' d='M5.05 4.05a7 7 0 1 1 9.9 9.9L10 18.9l-4.95-4.95a7 7 0 0 1 0-9.9zM10 11a2 2 0 1 0 0-4 2 2 0 0 0 0 4z' clip-rule='evenodd'/%3E%3C/svg%3E") center/contain no-repeat;
}

.amarte-rodape2__contact-line--phone::before {
	content: '';
	flex-shrink: 0;
	width: 14px;
	height: 14px;
	margin-top: 2px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23ff7900'%3E%3Cpath d='M2 3a1 1 0 0 1 1-1h2.153a1 1 0 0 1 .986.836l.74 4.435a1 1 0 0 1-.54 1.06l-1.548.773a11.037 11.037 0 0 0 6.105 6.105l.774-1.548a1 1 0 0 1 1.059-.54l4.435.74a1 1 0 0 1 .836.986V17a1 1 0 0 1-1 1h-2C7.82 18 2 12.18 2 5V3z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.amarte-rodape2__contact-line--email::before {
	content: '';
	flex-shrink: 0;
	width: 14px;
	height: 14px;
	margin-top: 2px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23ff7900'%3E%3Cpath d='M2.003 5.884L10 9.882l7.997-3.998A2 2 0 0 0 16 4H4a2 2 0 0 0-1.997 1.884z'/%3E%3Cpath d='M18 8.118l-8 4-8-4V14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8.118z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Coluna LINKS / SOLUÇÕES */
.amarte-rodape2__menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.amarte-rodape2__menu li {
	margin-bottom: 10px;
}

.amarte-rodape2__menu li a {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	transition: color 0.2s;
}

.amarte-rodape2__menu li a::before {
	content: '›';
	color: var(--amarte-cor-secundaria, #ff7900);
	font-size: 16px;
	line-height: 1;
	flex-shrink: 0;
}

.amarte-rodape2__menu li a:hover {
	color: #fff;
}

/* Coluna REDES SOCIAIS */
.amarte-rodape2__social-desc {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
	margin: 0 0 20px;
	line-height: 1.6;
}

.amarte-rodape2__social-icons {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.amarte-rodape2__social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	text-decoration: none;
	transition: background 0.2s, border-color 0.2s;
}

.amarte-rodape2__social-icon:hover {
	background: var(--amarte-cor-secundaria, #ff7900);
	border-color: var(--amarte-cor-secundaria, #ff7900);
	color: #fff;
}

.amarte-rodape2__social-icon svg {
	width: 14px;
	height: 14px;
	fill: currentColor;
}

/* ── Barra inferior ── */
.amarte-rodape2__bottom-bar {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 18px 0 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 10px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
}

.amarte-rodape2__bottom-dev:empty {
	display: none;
}

.amarte-rodape2__bottom-dev,
.amarte-rodape2__bottom-copy {
	color: rgba(255, 255, 255, 0.5);
}

.amarte-rodape2__back-top {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	transition: color 0.2s;
}

.amarte-rodape2__back-top:hover {
	color: var(--amarte-cor-secundaria, #ff7900);
}

.amarte-rodape2__back-top span {
	font-size: 18px;
	line-height: 1;
}

.amarte-rodape2__credits {
	border-top: none;
	padding: 0 0 22px;
	text-align: center;
	width: 100%;
}

.amarte-rodape2__credits a {
	display: inline-block;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: normal;
	text-transform: none;
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	transition: color 0.2s;
}

.amarte-rodape2__credits a:hover {
	color: var(--amarte-cor-secundaria, #ff7900);
}

/* ── Responsivo ── */
@media (max-width: 1024px) {
	.amarte-rodape2__cols {
		grid-template-columns: 1fr 1fr;
	}
}

@media (min-width: 350px) and (max-width: 600px) {
	.amarte-rodape2__cols {
		grid-template-columns: 1fr 1fr;
		gap: 24px;
	}

	.amarte-rodape2__col:first-child {
		grid-column: 1 / -1;
	}

	.amarte-rodape2__wrap {
		padding: 40px 20px 0;
	}

	.amarte-rodape2__bottom-bar {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 349px) {
	.amarte-rodape2__cols {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.amarte-rodape2__wrap {
		padding: 40px 20px 0;
	}

	.amarte-rodape2__bottom-bar {
		flex-direction: column;
		text-align: center;
	}
}

/* ── Banner CTA ── */
.amarte-rodape__cta-outer {
	position: relative;
	z-index: 2;
	max-width: 1420px;
	margin: 0 auto;
	padding: 0 0px;
	transform: translateY(50%);
}

.amarte-rodape__cta {
	background: var(--amarte-cor-principal, #28326a);
	border-radius: 8px;
	padding: 52px 48px;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: -100px;
	gap: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.amarte-rodape__cta--image {
	background-color: transparent;
}

/* Decoração triangular à esquerda */
.amarte-rodape__cta-deco {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 220px;
	pointer-events: none;
}

.amarte-rodape__cta-deco--left {
	left: 0;
	background:
		linear-gradient(135deg, rgba(255,255,255,0.12) 25%, transparent 25%) -20px 0,
		linear-gradient(225deg, rgba(255,255,255,0.12) 25%, transparent 25%) -20px 0,
		linear-gradient(315deg, rgba(255,255,255,0.12) 25%, transparent 25%),
		linear-gradient(45deg,  rgba(255,255,255,0.12) 25%, transparent 25%);
	background-size: 40px 40px;
	background-color: rgba(255,255,255,0.04);
}

.amarte-rodape__cta-deco--right {
	right: 0;
	background-image:
		radial-gradient(circle, rgba(255,255,255,0.15) 2px, transparent 2px);
	background-size: 18px 18px;
}

.amarte-rodape__cta-inner {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 700px;
}

.amarte-rodape__cta-label {
	display: inline-block;
	font-size: 12px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #fff;
	background: var(--amarte-cor-principal, #28326a);
	padding: 8px 18px;
	border-radius: 999px;
	margin-bottom: 14px;
}

.amarte-rodape__cta-title {
	margin: 0 0 28px;
	font-size: clamp(1.4rem, 2.8vw, 2rem);
	line-height: 1.35;
	color: #fff;
	font-weight: 500;
}

.amarte-rodape__cta-title b,
.amarte-rodape__cta-title strong {
	font-weight: 800;
}

.amarte-rodape__cta-button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--amarte-cor-principal, #28326a);
	color: #fff;
	padding: 14px 30px;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	transition: filter 0.2s ease;
}

.amarte-rodape__cta-button:hover {
	color: #fff;
	filter: brightness(1.08);
}

.amarte-rodape__cta-button-icon {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: rgba(255,255,255,0.18);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* ── Área escura ── */
.amarte-rodape__dark {
	background: #0d0f14;
	background-size: cover;
	background-position: center;
	position: relative;
	padding: 200px 0 60px;
	overflow: visible;
}

.amarte-rodape__wave {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	transform: translateY(calc(-100% + 1px));
	line-height: 0;
	pointer-events: none;
	z-index: 1;
}

.amarte-rodape__wave svg {
	display: block;
	width: 100%;
	height: clamp(36px, 5vw, 64px);
}

.amarte-rodape__dark-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10,12,18,0.94) 0%, rgba(10,12,18,0.97) 100%);
}

.amarte-rodape__wrap {
	position: relative;
	z-index: 1;
	max-width: 1420px;
	margin: 0 auto;
	padding: 0 24px;
}

/* Linha 1: Logo + Menu */
.amarte-rodape__top-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
	padding-bottom: 32px;
}

.amarte-rodape__logo-wrap a {
	display: inline-block;
	line-height: 0;
}

.amarte-rodape__logo-img {
	max-height: 38px;
	width: auto;
	display: block;
}

/* Logo via the_custom_logo no rodapé */
.amarte-rodape__logo-wrap .custom-logo-link img {
	max-height: 38px;
	width: auto;
	display: block;
}

.amarte-rodape__site-name {
	color: #fff;
	font-size: 1.6rem;
	font-weight: 700;
	text-decoration: none;
}

/* Menu rodapé em linha com bullets */
.amarte-rodape__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px 0;
}

.amarte-rodape__menu li {
	display: inline-flex;
	align-items: center;
}

.amarte-rodape__menu li + li::before {
	content: '';
	display: inline-block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--amarte-cor-secundaria, #ff7900);
	margin: 0 12px;
	flex-shrink: 0;
}

.amarte-rodape__menu a {
	color: rgba(255,255,255,0.85);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.amarte-rodape__menu a:hover {
	color: var(--amarte-cor-secundaria, #ff7900);
}

/* Divisória */
.amarte-rodape__divider {
	height: 1px;
	background: rgba(255,255,255,0.1);
	margin-bottom: 40px;
}

/* Linha inferior: 3 colunas no desktop */
.amarte-rodape__nav--mobile { display: none; }
.amarte-rodape__nav--desktop { display: block; }

.amarte-rodape__cols {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.amarte-rodape__col--endereco {
	text-align: left;
}

.amarte-rodape__col--contato {
	text-align: center;
}

.amarte-rodape__col--contato .amarte-rodape__social {
	justify-content: center;
}

.amarte-rodape__col--horario {
	text-align: right;
}

.amarte-rodape__col-title {
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 10px;
	line-height: 1.4;
}

.amarte-rodape__col-title--hours {
	font-size: 1.3rem;
}

.amarte-rodape__col-text {
	color: rgba(255,255,255,0.65);
	font-size: 14px;
	margin: 0 0 6px;
	line-height: 1.7;
}

.amarte-rodape__phone,
.amarte-rodape__email {
	display: block;
	text-decoration: none;
	margin-bottom: 8px;
}

.amarte-rodape__phone {
	color: #fff;
	font-size: 1.35rem;
	font-weight: 700;
}

.amarte-rodape__email {
	color: rgba(255,255,255,0.7);
	font-size: 14px;
}

.amarte-rodape__phone:hover,
.amarte-rodape__email:hover {
	color: var(--amarte-cor-secundaria, #ff7900);
}

.amarte-rodape__social {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 20px;
}

.amarte-rodape__social-link {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.2);
	color: rgba(255,255,255,0.8);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.amarte-rodape__social-link:hover {
	background: var(--amarte-cor-secundaria, #ff7900);
	border-color: var(--amarte-cor-secundaria, #ff7900);
	color: #fff;
}

/* Copyright */
.amarte-rodape__copyright {
	padding: 18px 24px 0;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	margin-top: 40px;
}

.amarte-rodape__copyright p {
	margin: 0;
	color: rgba(255,255,255,0.55);
	font-size: 13px;
}

/* ── Responsivo ── */
@media (max-width: 767px) {
	.amarte-rodape {
		margin-top: -60px;
	}

	/* CTA flutua levemente acima do rodapé no mobile */
	.amarte-rodape__cta-outer {
		padding: 0 16px;
		transform: translateY(40px);
	}

	.amarte-rodape__dark {
		padding: 72px 0 40px;
	}

	.amarte-rodape__cta {
		padding: 28px 20px;
		border-radius: 16px;
		margin-top: 0;
	}

	.amarte-rodape__cta-label {
		font-size: 10px;
		padding: 6px 14px;
		margin-bottom: 8px;
	}

	.amarte-rodape__cta-title {
		font-size: clamp(1.05rem, 5vw, 1.3rem);
		margin-bottom: 18px;
	}

	.amarte-rodape__cta-button {
		padding: 11px 22px;
		font-size: 12px;
	}

	.amarte-rodape__cta-button-icon {
		width: 22px;
		height: 22px;
	}

	.amarte-rodape__top-row {
		flex-direction: column;
		align-items: center;
		gap: 12px;
	}

	/* Desktop menu some, mobile menu aparece */
	.amarte-rodape__nav--desktop { display: none; }
	.amarte-rodape__nav--mobile  { display: block; }

	/* Mobile: menu + endereço lado a lado; contato e horário abaixo */
	.amarte-rodape__bottom {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 20px 24px;
	}

	.amarte-rodape__cols {
		display: contents;
	}

	.amarte-rodape__nav--mobile {
		grid-column: 1;
		grid-row: 1;
	}

	.amarte-rodape__col--endereco {
		grid-column: 2;
		grid-row: 1;
		text-align: left;
	}

	.amarte-rodape__col--contato {
		grid-column: 1 / -1;
		text-align: center;
	}

	.amarte-rodape__col--horario {
		grid-column: 1 / -1;
		text-align: center;
	}

	.amarte-rodape__menu {
		flex-direction: column;
		align-items: flex-start;
	}

	.amarte-rodape__menu li + li::before {
		display: none;
	}

	.amarte-rodape__wrap {
		padding: 0 16px;
	}
}

/* ============================================================
   BLOCO 3 — SERVIÇOS — SLIDER INFINITO (page-home.php)
   ============================================================ */
.amarte-servicos {
	padding: 80px 0 120px;
	overflow: hidden;
	background-color: #fff !important;
}

/* — Cabeçalho centralizado — */
.amarte-servicos__header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 64px;
	padding: 0 24px;
	position: relative;
}

/* Linha decorativa abaixo do cabeçalho */
.amarte-servicos__header::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background: var(--amarte-cor-secundaria, #ff7900);
	border-radius: 2px;
	margin: 28px auto 0;
}

.amarte-servicos__label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--amarte-cor-secundaria, #ff7900);
	margin-bottom: 18px;
	background: rgba(255, 121, 0, 0.08);
	padding: 6px 18px;
	border-radius: 100px;
	border: 1px solid rgba(255, 121, 0, 0.25);
}

.amarte-servicos__label-bar {
	display: none;
}

.amarte-servicos__title {
	font-size: clamp(22px, 2.8vw, 34px);
	font-weight: 800;
	color: var(--amarte-cor-principal, #28326a);
	margin: 0 0 20px;
	line-height: 1.15;
	letter-spacing: -0.5px;
}

/* Palavra de destaque no título */
.amarte-servicos__title em {
	font-style: normal;
	color: var(--amarte-cor-secundaria, #ff7900);
	position: relative;
}

.amarte-servicos__desc {
	font-size: 17px;
	color: #666;
	line-height: 1.75;
	margin: 0;
	max-width: 620px;
	margin-left: auto;
	margin-right: auto;
}

/* — Slider — */
.amarte-servicos__carousel {
	width: 100%;
}

.amarte-servicos__slider-viewport {
	position: relative;
	width: 100%;
}

/* Fade fixo nas laterais (wrapper não rola — pseudo no scroll não funciona) */
.amarte-servicos__slider-viewport::before,
.amarte-servicos__slider-viewport::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: clamp(72px, 14vw, 180px);
	z-index: 5;
	pointer-events: none;
}

.amarte-servicos__slider-viewport::before {
	left: 0;
	background: linear-gradient(
		to right,
		var(--serv-bg, #fff) 0%,
		var(--serv-bg, #fff) 20%,
		transparent 100%
	);
}

.amarte-servicos__slider-viewport::after {
	right: 0;
	background: linear-gradient(
		to left,
		var(--serv-bg, #fff) 0%,
		var(--serv-bg, #fff) 20%,
		transparent 100%
	);
}

.amarte-servicos__slider {
	position: relative;
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	-webkit-overflow-scrolling: touch;
}

.amarte-servicos__slider::-webkit-scrollbar {
	display: none;
}

.amarte-servicos__track {
	display: flex;
	gap: 10px;
	width: max-content;
}

/* — Setas abaixo do slider — */
.amarte-servicos__nav {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	margin-top: 32px;
	padding: 0 24px;
}

.amarte-servicos__nav-btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid #e0e4f0;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--amarte-cor-principal, #28326a);
	transition: background 0.2s, border-color 0.2s, color 0.2s;
	flex-shrink: 0;
}

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

.amarte-servicos__nav-btn:hover,
.amarte-servicos__nav-btn:focus-visible {
	background: var(--amarte-cor-principal, #28326a);
	border-color: var(--amarte-cor-principal, #28326a);
	color: #fff;
	outline: none;
}

/* — Botão Ver Todos Serviços — */
.amarte-servicos__cta {
	text-align: center;
	margin-top: 40px;
	padding: 0 24px;
}

.amarte-servicos__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--amarte-cor-principal, #28326a);
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	padding: 14px 32px;
	border-radius: 50px;
	text-decoration: none;
	transition: background 0.25s, gap 0.2s;
}

.amarte-servicos__btn:hover {
	background: var(--amarte-cor-secundaria, #ff7900);
	color: #fff;
	gap: 12px;
}

/* — Card — */
.amarte-servicos__card {
	position: relative;
	width: 380px;
	height: 420px;
	flex-shrink: 0;
	background-color: #1a1a2e;
	background-size: cover;
	background-position: center center;
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	cursor: default;
}

/* Overlay escuro gradiente */
.amarte-servicos__card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(10, 15, 40, 0.10) 0%,
		rgba(10, 15, 40, 0.55) 50%,
		rgba(10, 15, 40, 0.90) 100%
	);
	transition: background 0.35s ease;
	z-index: 1;
}

.amarte-servicos__card:hover .amarte-servicos__card-overlay {
	background: linear-gradient(
		to bottom,
		rgba(10, 15, 40, 0.20) 0%,
		rgba(10, 15, 40, 0.70) 40%,
		rgba(10, 15, 40, 0.95) 100%
	);
}

/* — Badge (ícone ou iniciais) — */
.amarte-servicos__card-badge {
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 2;
	background: var(--amarte-cor-secundaria, #ff7900);
	border-radius: 6px;
	padding: 6px 14px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.amarte-servicos__card-badge img {
	width: 28px;
	height: 28px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.amarte-servicos__card-badge--text {
	font-size: 13px;
	font-weight: 800;
	color: #fff;
	letter-spacing: 0.5px;
	min-width: 36px;
	text-align: center;
}

/* — Rodapé do card (título + desc) — */
.amarte-servicos__card-footer {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 24px 24px 28px;
}

.amarte-servicos__card-bar {
	display: block;
	width: 3px;
	min-height: 100%;
	background: var(--amarte-cor-secundaria, #ff7900);
	border-radius: 2px;
	flex-shrink: 0;
	align-self: stretch;
}

.amarte-servicos__card-title {
	font-size: 17px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 6px;
	line-height: 1.3;
}

.amarte-servicos__card-desc {
	font-size: 13px;
	color: rgba(255,255,255,0.75);
	line-height: 1.6;
	margin: 0 0 10px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.amarte-servicos__card:hover .amarte-servicos__card-desc {
	-webkit-line-clamp: 4;
}

/* — Botão — */
.amarte-servicos__card-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	color: var(--amarte-cor-secundaria, #ff7900);
	text-decoration: none;
	transition: gap 0.2s;
}

.amarte-servicos__card-btn:hover {
	gap: 10px;
	color: #fff;
}

/* — Mobile: 1 card centralizado por vez — */
@media (max-width: 767px) {
	.amarte-servicos {
		padding: 56px 0 48px;
	}

	.amarte-servicos__carousel {
		--serv-card-w: min(280px, calc(100vw - 48px));
	}

	.amarte-servicos__slider-viewport::before,
	.amarte-servicos__slider-viewport::after {
		display: none;
	}

	.amarte-servicos__slider {
		scroll-snap-type: x mandatory;
		scroll-padding-inline: calc((100% - var(--serv-card-w)) / 2);
		touch-action: pan-x;
		overscroll-behavior-x: contain;
	}

	.amarte-servicos__track {
		gap: 16px;
		padding-inline: calc((100% - var(--serv-card-w)) / 2);
	}

	.amarte-servicos__card {
		width: var(--serv-card-w);
		height: 340px;
		scroll-snap-align: center;
		scroll-snap-stop: always;
	}

	.amarte-servicos__card[aria-hidden="true"] {
		display: none;
	}

	.amarte-servicos__nav {
		margin-top: 24px;
	}

	.amarte-servicos__cta {
		margin-top: 32px;
	}
}


/* ============================================================
   BLOCO 2 — DIFERENCIAIS (page-home.php)
   ============================================================ */
.amarte-dif {
	position: relative;
	padding: 90px 0;
	color: #fff;
}

.amarte-dif.amarte-dif--light-bg {
	color: #1a1a1a;
}

.amarte-dif__inner {
	max-width: 1420px;
	margin: 0 auto;
	padding: 0 32px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 64px;
}

/* — Etiqueta — */
.amarte-dif__label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--amarte-cor-secundaria, #ff7900);
	margin-bottom: 18px;
}

.amarte-dif__label-bar {
	display: inline-block;
	width: 4px;
	height: 18px;
	background: var(--amarte-cor-secundaria, #ff7900);
	border-radius: 2px;
	flex-shrink: 0;
}

/* — Título — */
.amarte-dif__title {
	font-size: clamp(26px, 3.2vw, 20px);
	line-height: 1.2;
	margin: 0 0 24px;
	font-weight: 400;
}

.amarte-dif__title strong {
	font-weight: 800;
	display: block;
}

/* — Descrição com barra — */
.amarte-dif__desc {
	position: relative;
	padding-left: 20px;
	margin: 0;
	line-height: 1.7;
	opacity: 0.85;
}

.amarte-dif__desc::before {
	content: '';
	position: absolute;
	left: 0;
	top: 4px;
	bottom: 4px;
	width: 3px;
	background: var(--amarte-cor-secundaria, #ff7900);
	border-radius: 2px;
}

.amarte-dif__desc-block {
	margin: 0 0 36px;
}

.amarte-dif__desc-wrap {
	position: relative;
}

.amarte-dif__desc-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	min-width: 32px;
	min-height: 32px;
	border-radius: 50%;
	border: 1.5px solid rgba(255, 255, 255, 0.35);
	background: rgba(255, 255, 255, 0.08);
	cursor: pointer;
	margin: 10px auto 0;
	padding: 0;
	color: #fff;
	transition: background 0.2s, border-color 0.2s, color 0.2s;
	appearance: none;
	-webkit-appearance: none;
}

.amarte-dif__desc-toggle:hover {
	background: var(--amarte-cor-secundaria, #ff7900);
	border-color: var(--amarte-cor-secundaria, #ff7900);
	color: #fff;
}

.amarte-dif__desc-toggle-icon {
	width: 16px;
	height: 16px;
	display: block;
	flex-shrink: 0;
	transition: transform 0.35s ease;
}

.amarte-dif__desc-toggle-text {
	display: none;
}

.amarte-dif__desc-toggle[aria-expanded="true"] .amarte-dif__desc-toggle-icon {
	transform: rotate(180deg);
}

.amarte-dif--light-bg .amarte-dif__desc-toggle {
	border-color: #dde2f0;
	background: #fff;
	color: var(--amarte-cor-principal, #28326a);
}

.amarte-dif--light-bg .amarte-dif__desc-toggle:hover {
	background: var(--amarte-cor-principal, #28326a);
	border-color: var(--amarte-cor-principal, #28326a);
	color: #fff;
}

/* — Features — */
.amarte-dif__features {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.amarte-dif__feat {
	flex: 1 1 140px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 10px;
}

.amarte-dif__feat-icon {
	width: 60px;
	height: 60px;
	object-fit: contain;
}

.amarte-dif__feat-icon--empty {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: rgba(255,255,255,0.1);
	color: var(--amarte-cor-secundaria, #ff7900);
}

.amarte-dif--light-bg .amarte-dif__feat-icon--empty {
	background: rgba(0,0,0,0.06);
}

.amarte-dif__feat-title {
	font-size: 14px;
	font-weight: 700;
	margin: 0;
	line-height: 1.3;
}

.amarte-dif__feat-desc {
	font-size: 13px;
	margin: 0;
	opacity: 0.7;
}

/* Dots do slider de features (mobile) */
.amarte-dif__feat-dots {
	display: none;
	justify-content: center;
	gap: 6px;
	margin-top: 16px;
}

.amarte-dif__feat-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.35);
	border: none;
	padding: 0;
	cursor: pointer;
	transition: background 0.2s, width 0.25s;
}

.amarte-dif--light-bg .amarte-dif__feat-dot {
	background: #d0d5e8;
}

.amarte-dif__feat-dot.is-active {
	background: var(--amarte-cor-secundaria, #ff7900);
	width: 18px;
	border-radius: 4px;
}

.amarte-dif__feat-slide {
	display: flex;
}

/* — Coluna direita: imagem + badge — */
.amarte-dif__media {
	position: relative;
}

.amarte-dif__img-wrap {
	position: relative;
	display: inline-block;
	width: 100%;
}

.amarte-dif__img {
	width: 100%;
	max-height: 520px;
	object-fit: cover;
	border-radius: 4px;
	display: block;
}

.amarte-dif__img-placeholder {
	width: 100%;
	min-height: 400px;
	background: rgba(255,255,255,0.08);
	border-radius: 4px;
}

.amarte-dif__badge {
	position: absolute;
	bottom: 90px;
	left: 0;
	right: auto;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: var(--amarte-cor-secundaria, #ff7900);
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 20px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.amarte-dif__badge-num {
	margin: 0;
	font-size: 11px;
	line-height: 1.2;
}

.amarte-dif__badge-count {
	display: block;
	font-size: 4rem;
	font-weight: 800;
	margin: 0;
	line-height: 1.1;
}

.amarte-dif__badge-text {
	margin: 0;
	font-size: 15px;
	line-height: 1.35;
	font-weight: 600;
	letter-spacing: 0.3px;
	text-transform: uppercase;
	opacity: 0.95;
}

/* — Responsivo — */
@media (max-width: 767px) {
	.amarte-dif__inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.amarte-dif__media {
		order: -1;
	}

	.amarte-dif__badge {
		left: 10px;
		right: auto;
		bottom: 10px;
		width: 120px;
		height: 120px;
		padding: 12px;
	}

	.amarte-dif__badge-count {
		font-size: 2.4rem;
	}

	.amarte-dif__badge-text {
		font-size: 12px;
	}
}

@media (max-width: 767px) {
	.amarte-dif {
		padding: 64px 0 80px;
	}

	.amarte-dif__inner {
		padding: 0 16px;
	}

	.amarte-dif__features {
		display: block;
		position: relative;
	}

	.amarte-dif__feat-slide {
		display: none !important;
		width: 100%;
		box-sizing: border-box;
	}

	.amarte-dif__feat-slide.is-active {
		display: flex !important;
		flex-direction: column;
		text-align: center;
		align-items: center;
		gap: 12px;
	}

	.amarte-dif__feat-dots {
		display: flex;
	}

	.amarte-dif__feat-icon,
	.amarte-dif__feat-icon--empty {
		flex-shrink: 0;
	}

	.amarte-dif__desc-block {
		margin-bottom: 28px;
	}

	.amarte-dif__desc {
		margin-bottom: 0;
	}

	.amarte-dif__desc-wrap {
		overflow: hidden;
		max-height: calc(1.7em * 4);
		transition: max-height 0.4s ease;
	}

	.amarte-dif__desc-wrap::after {
		display: none;
	}

	.amarte-dif__desc-wrap.is-open {
		max-height: 1200px;
	}

	.amarte-dif__desc-toggle {
		display: flex;
	}

	.amarte-dif__desc-toggle.is-hidden {
		display: none !important;
	}
}

/* ============================================================
   BLOCO 5 — NOSSA EQUIPE — CARROSSEL (page-home.php)
   ============================================================ */
.amarte-equipe-section {
	padding: 90px 0 100px;
	background: #fff;
}

.amarte-equipe-section__header {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 52px;
	padding: 0 24px;
}

.amarte-equipe-section__label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--amarte-cor-secundaria, #ff7900);
	background: rgba(255,121,0,0.08);
	border: 1px solid rgba(255,121,0,0.2);
	padding: 5px 16px;
	border-radius: 100px;
	margin-bottom: 16px;
}

.amarte-equipe-section__title {
	font-size: clamp(22px, 2.6vw, 32px);
	font-weight: 400;
	color: var(--amarte-cor-principal, #28326a);
	margin: 0;
	line-height: 1.2;
}

.amarte-equipe-section__title strong {
	font-weight: 800;
}

.amarte-equipe-section__desc {
	font-size: 16px;
	color: #666;
	line-height: 1.7;
	margin: 14px 0 0;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

/* — Wrapper do carrossel — */
.amarte-equipe-carousel {
	position: relative;
	max-width: 1420px;
	margin: 0 auto;
	padding: 0 64px;
}

.amarte-equipe-carousel__track-wrap {
	overflow: hidden;
	border-radius: 4px;
}

.amarte-equipe-carousel__track {
	display: flex;
	transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
}

.amarte-equipe-carousel__slide {
	flex: 0 0 25%;
	padding: 0 12px;
	box-sizing: border-box;
}

/* — Card do carrossel — */
.amarte-equipe-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	text-align: center;
	box-shadow: 0 2px 16px rgba(40,50,106,0.07);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.amarte-equipe-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 36px rgba(40,50,106,0.13);
}

.amarte-equipe-card__photo {
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.amarte-equipe-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.amarte-equipe-card:hover .amarte-equipe-card__photo img {
	transform: scale(1.05);
}

.amarte-equipe-card__photo-placeholder {
	width: 100%;
	height: 100%;
	background: #e8ecf4;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #a0aac4;
}

.amarte-equipe-card__photo-placeholder svg {
	width: 48px;
	height: 48px;
}

.amarte-equipe-card__info {
	padding: 20px 16px 22px;
	border-top: 3px solid var(--amarte-cor-secundaria, #ff7900);
}

.amarte-equipe-card__name {
	font-size: 16px;
	font-weight: 700;
	color: var(--amarte-cor-principal, #28326a);
	margin: 0 0 4px;
}

.amarte-equipe-card__cargo {
	font-size: 13px;
	color: var(--amarte-cor-secundaria, #ff7900);
	font-weight: 600;
}

/* — Botões prev / next — */
.amarte-equipe-carousel__btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid #e0e4f0;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--amarte-cor-principal, #28326a);
	transition: background 0.2s, border-color 0.2s, color 0.2s;
	z-index: 2;
}

.amarte-equipe-carousel__btn svg {
	width: 18px;
	height: 18px;
}

.amarte-equipe-carousel__btn:hover {
	background: var(--amarte-cor-principal, #28326a);
	border-color: var(--amarte-cor-principal, #28326a);
	color: #fff;
}

.amarte-equipe-carousel__btn--prev { left: 8px; }
.amarte-equipe-carousel__btn--next { right: 8px; }

/* — Dots — */
.amarte-equipe-carousel__dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 32px;
}

.amarte-equipe-carousel__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #d0d5e8;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: background 0.2s, width 0.25s;
}

.amarte-equipe-carousel__dot.is-active {
	background: var(--amarte-cor-secundaria, #ff7900);
	width: 22px;
	border-radius: 4px;
}

/* — Botão Ver Todos — */
.amarte-equipe-section__cta {
	text-align: center;
	margin-top: 40px;
}

.amarte-equipe-section__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--amarte-cor-principal, #28326a);
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	padding: 14px 32px;
	border-radius: 50px;
	text-decoration: none;
	transition: background 0.25s, gap 0.2s;
}

.amarte-equipe-section__btn:hover {
	background: var(--amarte-cor-secundaria, #ff7900);
	color: #fff;
	gap: 12px;
}

/* — Responsivo carrossel — */
@media (max-width: 1024px) {
	.amarte-equipe-carousel__slide { flex: 0 0 33.333%; }
}

@media (max-width: 767px) {
	.amarte-equipe-section {
		padding: 30px 0 50px;
	}

	.amarte-equipe-carousel__slide { flex: 0 0 50%; }
	.amarte-equipe-carousel { padding: 0 44px; }
}

@media (max-width: 480px) {
	.amarte-equipe-carousel__slide { flex: 0 0 80%; }
}

/* ============================================================
   BLOCO 6 — ÚLTIMOS ARTIGOS (page-home.php)
   ============================================================ */
.amarte-home-blog {
	padding: 90px 0 100px;
	background: linear-gradient(180deg, #f5f6fb 0%, #ffffff 100%);
}

.amarte-home-blog__header {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 52px;
	padding: 0 24px;
}

.amarte-home-blog__label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--amarte-cor-secundaria, #ff7900);
	background: rgba(255, 121, 0, 0.08);
	border: 1px solid rgba(255, 121, 0, 0.2);
	padding: 5px 16px;
	border-radius: 100px;
	margin-bottom: 16px;
}

.amarte-home-blog__title {
	font-size: clamp(22px, 2.6vw, 32px);
	font-weight: 400;
	color: var(--amarte-cor-principal, #28326a);
	margin: 0;
	line-height: 1.2;
}

.amarte-home-blog__title strong {
	font-weight: 800;
}

.amarte-home-blog__desc {
	font-size: 16px;
	color: #666;
	line-height: 1.7;
	margin: 14px 0 0;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

.amarte-home-blog-carousel {
	position: relative;
	max-width: 1420px;
	margin: 0 auto;
	padding: 0 64px;
}

.amarte-home-blog-carousel__track-wrap {
	overflow: hidden;
}

.amarte-home-blog-carousel__track {
	display: flex;
	transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
}

.amarte-home-blog-carousel__slide {
	flex: 0 0 25%;
	padding: 0 12px;
	box-sizing: border-box;
}

.amarte-home-blog .amarte-blog__card {
	height: 100%;
	margin: 0;
}

.amarte-home-blog .amarte-blog__card-title {
	font-size: 0.88rem;
	line-height: 1.35;
	margin-bottom: 8px;
}

.amarte-home-blog .amarte-blog__card-excerpt {
	font-size: 0.78rem;
	line-height: 1.5;
	margin-bottom: 12px;
}

.amarte-home-blog .amarte-blog__card-meta time {
	display: none;
}

.amarte-home-blog .amarte-blog__card-meta {
	justify-content: flex-end;
	font-size: 0.78rem;
}

.amarte-home-blog-carousel__btn {
	position: absolute;
	top: 42%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid #e0e4f0;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--amarte-cor-principal, #28326a);
	transition: background 0.2s, border-color 0.2s, color 0.2s;
	z-index: 2;
}

.amarte-home-blog-carousel__btn svg {
	width: 18px;
	height: 18px;
}

.amarte-home-blog-carousel__btn:hover {
	background: var(--amarte-cor-principal, #28326a);
	border-color: var(--amarte-cor-principal, #28326a);
	color: #fff;
}

.amarte-home-blog-carousel__btn--prev { left: 8px; }
.amarte-home-blog-carousel__btn--next { right: 8px; }

.amarte-home-blog-carousel__dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 32px;
}

.amarte-home-blog-carousel__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #d0d5e8;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: background 0.2s, width 0.25s;
}

.amarte-home-blog-carousel__dot.is-active {
	background: var(--amarte-cor-secundaria, #ff7900);
	width: 22px;
	border-radius: 4px;
}

.amarte-home-blog__cta {
	text-align: center;
	margin-top: 40px;
}

.amarte-home-blog__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--amarte-cor-principal, #28326a);
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	padding: 14px 32px;
	border-radius: 50px;
	text-decoration: none;
	transition: background 0.25s, gap 0.2s;
}

.amarte-home-blog__btn:hover {
	background: var(--amarte-cor-secundaria, #ff7900);
	color: #fff;
	gap: 12px;
}

@media (max-width: 767px) {
	.amarte-home-blog {
		padding: 64px 0 72px;
	}

	.amarte-home-blog-carousel {
		padding: 0 16px;
	}

	.amarte-home-blog-carousel__slide {
		flex: 0 0 50%;
		padding: 0 8px;
	}

	.amarte-home-blog-carousel__btn {
		display: none;
	}

	.amarte-home-blog .amarte-blog__card-title {
		font-size: 0.82rem;
	}

	.amarte-home-blog .amarte-blog__card-excerpt {
		font-size: 0.74rem;
		margin-bottom: 10px;
	}

	.amarte-home-blog .amarte-blog__card-body {
		padding: 14px 12px 16px;
	}
}

/* ============================================================
   TEMPLATE NOSSA EQUIPE (page-equipe.php) — grid 3 colunas
   ============================================================ */
.amarte-page-equipe {
	max-width: 1420px;
	margin: 0 auto;
	padding: 60px 32px 100px;
}

.amarte-page-equipe__header {
	text-align: center;
	margin-bottom: 64px;
}

.amarte-page-equipe__label {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--amarte-cor-secundaria, #ff7900);
	background: rgba(255,121,0,0.08);
	border: 1px solid rgba(255,121,0,0.2);
	padding: 5px 16px;
	border-radius: 100px;
	margin-bottom: 16px;
}

.amarte-page-equipe__title {
	font-size: clamp(26px, 3vw, 40px);
	font-weight: 400;
	color: var(--amarte-cor-principal, #28326a);
	margin: 0 0 20px;
}

.amarte-page-equipe__subtitle {
	font-size: 16px;
	color: #777;
	line-height: 1.75;
	max-width: 640px;
	margin: 0 auto 12px;
}

.amarte-page-equipe__intro {
	font-size: 16px;
	color: #666;
	max-width: 680px;
	margin: 0 auto;
	line-height: 1.7;
}

.amarte-page-equipe__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}

/* — Card completo (com descrição) — */
.amarte-equipe-full-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 2px 20px rgba(40,50,106,0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.amarte-equipe-full-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 14px 40px rgba(40,50,106,0.14);
}

.amarte-equipe-full-card__photo {
	width: 100%;
	overflow: hidden;
}

.amarte-equipe-full-card__photo img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.4s ease;
}

.amarte-equipe-full-card:hover .amarte-equipe-full-card__photo img {
	transform: scale(1.03);
}

.amarte-equipe-full-card__photo-placeholder {
	width: 100%;
	height: 100%;
	background: #e8ecf4;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #b0bad4;
}

.amarte-equipe-full-card__photo-placeholder svg {
	width: 64px;
	height: 64px;
}

.amarte-equipe-full-card__body {
	padding: 24px 24px 28px;
	border-top: 3px solid var(--amarte-cor-secundaria, #ff7900);
}

.amarte-equipe-full-card__name {
	font-size: 19px;
	font-weight: 700;
	color: var(--amarte-cor-principal, #28326a);
	margin: 0 0 4px;
}

.amarte-equipe-full-card__cargo {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	color: var(--amarte-cor-secundaria, #ff7900);
	margin-bottom: 14px;
}

.amarte-equipe-full-card__desc-wrap {
	overflow: hidden;
	max-height: calc(1.75em * 4); /* 4 linhas */
	transition: max-height 0.4s ease;
	position: relative;
}

.amarte-equipe-full-card__desc-wrap::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 32px;
	background: linear-gradient(to bottom, transparent, #fff);
	transition: opacity 0.3s;
}

.amarte-equipe-full-card__desc-wrap.is-open {
	max-height: 600px;
}

.amarte-equipe-full-card__desc-wrap.is-open::after {
	opacity: 0;
	pointer-events: none;
}

.amarte-equipe-full-card__desc {
	font-size: 14px;
	color: #666;
	line-height: 1.75;
	margin: 0;
}

.amarte-equipe-full-card__toggle {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 32px !important;
	height: 32px !important;
	min-width: 32px !important;
	min-height: 32px !important;
	border-radius: 50% !important;
	border: 1.5px solid #dde2f0 !important;
	background: #fff !important;
	cursor: pointer !important;
	margin: 10px auto 0 !important;
	padding: 0 !important;
	color: var(--amarte-cor-principal, #28326a) !important;
	transition: background 0.2s, border-color 0.2s, color 0.2s;
	box-shadow: none !important;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
	line-height: 1 !important;
	font-size: 0 !important;
}

.amarte-equipe-full-card__toggle:hover {
	background: var(--amarte-cor-principal, #28326a) !important;
	border-color: var(--amarte-cor-principal, #28326a) !important;
	color: #fff !important;
}

.amarte-equipe-full-card__toggle-icon {
	width: 16px !important;
	height: 16px !important;
	display: block !important;
	flex-shrink: 0;
	transition: transform 0.35s ease;
}

.amarte-equipe-full-card__toggle-text {
	display: none;
}

.amarte-equipe-full-card__toggle[aria-expanded="true"] .amarte-equipe-full-card__toggle-icon {
	transform: rotate(180deg) !important;
}

/* — Modal mobile equipe — */
.amarte-equipe-modal {
	position: fixed;
	inset: 0;
	z-index: 100010;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.amarte-equipe-modal.is-open {
	pointer-events: auto;
	opacity: 1;
}

.amarte-equipe-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(10, 14, 40, 0.55);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

.amarte-equipe-modal__panel {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 480px;
	max-height: calc(100vh - 20px);
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	overflow-y: auto;
	transform: translateY(16px) scale(0.98);
	transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
	box-shadow: 0 16px 48px rgba(10, 14, 40, 0.22);
	scrollbar-width: thin;
	scrollbar-color: var(--amarte-cor-secundaria, #ff7900) transparent;
}

.amarte-equipe-modal__panel::-webkit-scrollbar {
	width: 4px;
}

.amarte-equipe-modal__panel::-webkit-scrollbar-track {
	background: transparent;
	margin: 8px 0;
}

.amarte-equipe-modal__panel::-webkit-scrollbar-thumb {
	background: var(--amarte-cor-secundaria, #ff7900);
	border-radius: 999px;
}

.amarte-equipe-modal.is-open .amarte-equipe-modal__panel {
	transform: translateY(0) scale(1);
}

.amarte-equipe-modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 2;
	width: 36px;
	height: 36px;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	color: #28326a;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.amarte-equipe-modal__close svg {
	width: 18px;
	height: 18px;
}

.amarte-equipe-modal__photo img {
	width: 100%;
	height: auto;
	display: block;
}

.amarte-equipe-modal__photo-placeholder {
	width: 100%;
	min-height: 220px;
	background: #e8ecf4;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #b0bad4;
}

.amarte-equipe-modal__photo-placeholder svg {
	width: 64px;
	height: 64px;
}

.amarte-equipe-modal__body {
	padding: 24px 24px 32px;
	border-top: 3px solid var(--amarte-cor-secundaria, #ff7900);
}

.amarte-equipe-modal__name {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--amarte-cor-principal, #28326a);
	margin: 0 0 6px;
}

.amarte-equipe-modal__cargo {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--amarte-cor-secundaria, #ff7900);
	margin: 0 0 16px;
}

.amarte-equipe-modal__desc {
	font-size: 0.95rem;
	color: #555;
	line-height: 1.65;
	margin: 0;
}

body.amarte-equipe-modal-open {
	overflow: hidden;
}

/* — Responsivo — */
@media (max-width: 1200px) {
	.amarte-page-equipe__grid { grid-template-columns: repeat(3, 1fr); }
}

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

@media (max-width: 600px) {
	.amarte-page-equipe { padding: 40px 16px 60px; }
	.amarte-page-equipe__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.amarte-equipe-full-card__body {
		padding: 14px 12px 16px;
	}

	.amarte-equipe-full-card__name {
		font-size: 0.95rem;
	}

	.amarte-equipe-full-card__cargo {
		font-size: 0.78rem;
	}

	.amarte-equipe-full-card__desc {
		font-size: 0.75rem;
		line-height: 1.45;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.amarte-equipe-full-card__desc-wrap {
		max-height: none;
		overflow: hidden;
	}

	.amarte-equipe-full-card__desc-wrap::after {
		display: none;
	}

	.amarte-equipe-full-card__toggle {
		width: auto !important;
		min-width: 0 !important;
		height: auto !important;
		min-height: 0 !important;
		border-radius: 999px !important;
		padding: 6px 14px !important;
		margin-top: 8px !important;
		font-size: 0.72rem !important;
		font-weight: 600 !important;
		gap: 0 !important;
	}

	.amarte-equipe-full-card__toggle-text {
		display: inline !important;
		line-height: 1.2 !important;
	}

	.amarte-equipe-full-card__toggle-icon {
		display: none !important;
	}
}

/* ============================================================
   TEMPLATE CONTATO (page-contato.php)
   ============================================================ */

/* — Hero — */
.amarte-contato__hero {
	position: relative;
	background-color: var(--amarte-cor-principal, #28326a);
	padding: 100px 32px 80px;
	text-align: center;
}

.amarte-contato__hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		120deg,
		var(--amarte-cor-principal, #28326a) 0%,
		var(--amarte-cor-principal, #28326a) 35%,
		var(--amarte-cor-secundaria, #ff7900) 55%,
		var(--amarte-cor-principal, #28326a) 75%,
		var(--amarte-cor-principal, #28326a) 100%
	) !important;
	background-size: 250% 250% !important;
	opacity: 0.5;
	animation: slider-overlay-shift 8s ease infinite;
}

.amarte-contato__hero-inner {
	position: relative;
	max-width: 760px;
	margin: 0 auto;
}

.amarte-contato__label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--amarte-cor-secundaria, #ff7900);
	background: rgba(255,121,0,0.15);
	border: 1px solid rgba(255,121,0,0.35);
	padding: 5px 16px;
	border-radius: 100px;
	margin-bottom: 20px;
}

.amarte-contato__hero-title {
	font-size: clamp(24px, 3vw, 36px);
	font-weight: 400;
	color: #fff;
	margin: 0 0 20px;
	line-height: 1.2;
}

.amarte-contato__hero-sub {
	font-size: 17px;
	color: rgba(255,255,255,0.78);
	line-height: 1.75;
	margin: 0;
}

/* — Body (canais + formulário) — */
.amarte-contato__body {
	padding: 80px 0 90px;
	background: linear-gradient(to bottom, #f5f6fb 0%, #ffffff 100%);
}

.amarte-contato__body-inner {
	max-width: 1260px;
	margin: 0 auto;
	padding: 0 32px;
	display: grid;
	grid-template-columns: 380px 1fr;
	gap: 64px;
	align-items: start;
}

/* — Canais — */
.amarte-contato__canais-title {
	font-size: 20px;
	font-weight: 500;
	color: var(--amarte-cor-principal, #28326a);
	margin: 0 0 10px;
}

.amarte-contato__canais-desc {
	font-size: 14px;
	color: #777;
	line-height: 1.65;
	margin: 0 0 28px;
}

.amarte-contato__canais-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.amarte-contato__canais-list li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.amarte-contato__canal-icon {
	width: 44px;
	height: 44px;
	flex-shrink: 0;
	background: rgba(40,50,106,0.07);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--amarte-cor-principal, #28326a);
}

.amarte-contato__canal-icon svg {
	width: 20px;
	height: 20px;
}

.amarte-contato__canais-list strong {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 2px;
}

.amarte-contato__canais-list a,
.amarte-contato__canais-list span {
	font-size: 14px;
	color: #555;
	text-decoration: none;
}

.amarte-contato__canais-list a:hover {
	color: var(--amarte-cor-secundaria, #ff7900);
}

.amarte-contato__map {
	margin-top: 28px;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #e0e4f0;
}

/* — Formulário — */
.amarte-contato__form-title {
	font-size: 22px;
	font-weight: 500;
	color: var(--amarte-cor-principal, #28326a);
	margin: 0 0 8px;
}

.amarte-contato__form-sub {
	font-size: 14px;
	color: #777;
	line-height: 1.65;
	margin: 0 0 28px;
}

.amarte-contato__form {
	display: flex;
	flex-direction: column;
	gap: 18px;
	background: #fff;
	border: 1px solid #e8eaf0;
	border-radius: 16px;
	padding: 32px;
	box-shadow: 0 8px 32px rgba(40, 50, 106, 0.08);
}

.amarte-contato__form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.amarte-contato__form-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.amarte-contato__form-field label {
	font-size: 13px;
	font-weight: 600;
	color: #333;
}

.amarte-contato__form-field label span {
	color: var(--amarte-cor-secundaria, #ff7900);
}

.amarte-contato__form-field input,
.amarte-contato__form-field select,
.amarte-contato__form-field textarea {
	width: 100%;
	padding: 12px 16px;
	font-size: 14px;
	border: 1.5px solid #dde2f0;
	border-radius: 8px;
	background: #fafbff;
	color: #1a1a2e;
	outline: none;
	transition: border-color 0.2s;
	font-family: inherit;
	box-sizing: border-box;
}

.amarte-contato__form-field input:focus,
.amarte-contato__form-field select:focus,
.amarte-contato__form-field textarea:focus {
	border-color: var(--amarte-cor-principal, #28326a);
	background: #fff;
}

.amarte-contato__form-field textarea {
	resize: vertical;
	min-height: 130px;
}

/* Botão enviar */
.amarte-contato__form-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: var(--amarte-cor-principal, #28326a);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	padding: 15px 36px;
	border-radius: 50px;
	border: none;
	cursor: pointer;
	align-self: flex-start;
	transition: background 0.25s, gap 0.2s;
	position: relative;
}

.amarte-contato__form-btn:hover:not(:disabled) {
	background: var(--amarte-cor-secundaria, #ff7900);
	gap: 14px;
}

.amarte-contato__form-btn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.amarte-contato__form-btn-loader {
	display: none;
	width: 16px;
	height: 16px;
	border: 2px solid rgba(255,255,255,0.4);
	border-top-color: #fff;
	border-radius: 50%;
	animation: amarte-spin 0.7s linear infinite;
}

.amarte-contato__form-btn.is-loading .amarte-contato__form-btn-loader {
	display: block;
}

.amarte-contato__form-btn.is-loading svg {
	display: none;
}

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

/* Feedback */
.amarte-contato__form-feedback {
	font-size: 14px;
	font-weight: 600;
	padding: 12px 16px;
	border-radius: 8px;
	display: none;
}

.amarte-contato__form-feedback:not(:empty) {
	display: block;
}

.amarte-contato__form-feedback.is-success {
	background: #e6f9ee;
	color: #1a7f3c;
	border: 1px solid #9de5b8;
}

.amarte-contato__form-feedback.is-error {
	background: #fff0f0;
	color: #c0392b;
	border: 1px solid #f5b5b5;
}

/* — CTA Final (posicionado via .amarte-rodape__cta-outer no rodapé) — */
.amarte-contato__cta {
	margin-top: -100px;
	position: relative;
	z-index: 2;
}

.amarte-contato__cta-inner {
	max-width: 1420px;
	margin: 0 auto;
	background: #ff7900;
	border-radius: 16px;
	padding: 48px 64px;
	display: flex;
	align-items: center;
	gap: 32px;
	position: relative;
	z-index: 2;
}

.amarte-contato__cta-text {
	flex: 1;
	min-width: 0;
}

.amarte-contato__cta-icon {
	flex-shrink: 0;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: rgba(255,255,255,0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.amarte-contato__cta-icon svg {
	width: 34px;
	height: 34px;
}

.amarte-contato__cta-text h2 {
	font-size: clamp(18px, 2vw, 24px);
	font-weight: 700;
	color: #fff;
	margin: 0 0 8px;
}

.amarte-contato__cta-text p {
	font-size: 14px;
	color: rgba(255,255,255,0.85);
	line-height: 1.7;
	margin: 0;
}

.amarte-contato__cta-btn {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #fff;
	color: var(--amarte-cor-principal, #28326a);
	font-size: 15px;
	font-weight: 700;
	padding: 14px 30px;
	border-radius: 50px;
	text-decoration: none;
	white-space: nowrap;
	position: relative;
	z-index: 2;
	cursor: pointer;
	pointer-events: auto;
	transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.amarte-contato__cta-inner .amarte-contato__cta-btn:hover,
.amarte-contato__cta-inner .amarte-contato__cta-btn:focus-visible {
	background-color: var(--amarte-cor-principal, #28326a);
	color: #fff;
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(40, 50, 106, 0.22);
}

#contato-form {
	scroll-margin-top: 100px;
}

.page-template-page-contato {
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	.page-template-page-contato {
		scroll-behavior: auto;
	}
}

/* CTA da página Contato substitui o conteúdo do banner do rodapé (mesma posição) */
.page-template-page-contato .amarte-rodape {
	position: relative;
	z-index: 1;
}

@media (max-width: 767px) {
	.page-template-page-contato .amarte-rodape,
	.page-template-page-contato .amarte-rodape2 {
		margin-top: 0;
	}
}

/* — Responsivo — */
@media (max-width: 1024px) {
	.amarte-contato__body-inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.amarte-contato__cta-inner {
		flex-direction: column;
		text-align: center;
		align-items: center;
	}

	.amarte-contato__cta-btn {
		white-space: normal;
		max-width: 100%;
		text-align: center;
	}
}

@media (max-width: 767px) {
	.amarte-contato__hero {
		padding: 72px 20px 56px;
	}

	.amarte-contato__hero-overlay {
		opacity: 0.9;
	}

	.amarte-contato__hero-sub {
		line-height: 1.4;
	}

	.amarte-contato__body {
		padding: 48px 0 80px;
	}

	.amarte-contato__body-inner {
		padding: 0 20px;
	}

	.amarte-contato__form-row {
		grid-template-columns: 1fr;
	}

	.amarte-contato__form {
		padding: 24px 20px;
		border-radius: 14px;
	}

	.amarte-contato__form-btn {
		align-self: stretch;
		justify-content: center;
	}

	.amarte-contato__cta {
		margin-top: 0;
	}

	.amarte-contato__cta-inner {
		padding: 28px 20px;
		border-radius: 16px;
		margin-top: 70px;
	}

	.amarte-contato__cta-btn {
		font-size: 12px;
		font-weight: 600;
		padding: 10px 16px;
		line-height: 1.45;
		width: 100%;
		max-width: 260px;
	}

	.amarte-contato__cta-inner .amarte-contato__cta-btn:hover,
	.amarte-contato__cta-inner .amarte-contato__cta-btn:focus-visible {
		transform: none;
		box-shadow: none;
	}
}

/* ============================================================
   TEMPLATE NOSSOS SERVIÇOS (page-servicos.php)
   ============================================================ */

/* — Hero — */
.amarte-sp__hero {
	position: relative;
	padding: 100px 0 90px;
	overflow: hidden;
}

/* Textura de pontos */
.amarte-sp__hero::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 2;
	background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
	background-size: 28px 28px;
	pointer-events: none;
}

.amarte-sp__hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	transform: scale(1);
	transform-origin: center center;
	will-change: transform;
	animation: amarte-sp-hero-zoom 20s ease-in-out infinite alternate;
}

@keyframes amarte-sp-hero-zoom {
	from { transform: scale(1); }
	to   { transform: scale(1.15); }
}

@media (prefers-reduced-motion: reduce) {
	.amarte-sp__hero-bg {
		animation: none;
	}
}

.amarte-sp__hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(
		120deg,
		var(--amarte-cor-principal, #28326a) 0%,
		var(--amarte-cor-principal, #28326a) 35%,
		var(--amarte-cor-secundaria, #ff7900) 55%,
		var(--amarte-cor-principal, #28326a) 75%,
		var(--amarte-cor-principal, #28326a) 100%
	);
	background-size: 250% 250%;
	opacity: 0.5;
	animation: slider-overlay-shift 8s ease infinite;
}

.amarte-sp__hero-inner {
	position: relative;
	z-index: 3;
	max-width: 1420px;
	margin: 0 auto;
	padding: 0 48px;
}

.amarte-sp__label {
	display: inline-flex;
	align-items: center;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--amarte-cor-secundaria, #ff7900);
	background: rgba(255,121,0,0.15);
	border: 1px solid rgba(255,121,0,0.35);
	padding: 5px 16px;
	border-radius: 100px;
	margin-bottom: 24px;
}

.amarte-sp__hero-title {
	font-size: clamp(28px, 3.8vw, 52px);
	font-weight: 400;
	color: #fff;
	margin: 0 0 28px;
	line-height: 1.1;
	letter-spacing: -0.5px;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.amarte-sp__hero-title strong {
	font-weight: 800;
	color: #fff;
}

/* Divisor de pontos */
.amarte-sp__hero-divider {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 24px;
}

.amarte-sp__hero-divider span {
	display: block;
	height: 3px;
	border-radius: 2px;
	background: var(--amarte-cor-secundaria, #ff7900);
}

.amarte-sp__hero-divider span:nth-child(1) { width: 40px; }
.amarte-sp__hero-divider span:nth-child(2) { width: 16px; opacity: 0.6; }
.amarte-sp__hero-divider span:nth-child(3) { width: 8px; opacity: 0.3; }

.amarte-sp__hero-sub {
	font-size: 18px;
	color: rgba(255,255,255,0.92);
	line-height: 1.75;
	margin: 0 0 18px;
	font-weight: 400;
	max-width: 680px;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.40);
}

.amarte-sp__hero-apoio {
	font-size: 14px;
	color: #fff;
	line-height: 1.85;
	margin: 0;
	max-width: 620px;
	padding-left: 16px;
	border-left: 2px solid rgba(255,121,0,0.5);
}

/* Hero com imagem lateral */
.amarte-sp__hero-inner--split {
	display: grid;
	grid-template-columns: 1fr 420px;
	align-items: center;
	gap: 64px;
}

.amarte-sp__hero-img-right {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}

.amarte-sp__hero-img-right img {
	width: 100%;
	height: 420px;
	object-fit: cover;
	display: block;
}

@media (max-width: 1024px) {
	.amarte-sp__hero-inner--split {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.amarte-sp__hero-img-right {
		display: block;
		order: -1;
		max-width: 100%;
	}

	.amarte-sp__hero-img-right img {
		height: 260px;
	}
}

@media (max-width: 767px) {
	.amarte-sp__hero {
		padding: 72px 0 60px;
	}

	.amarte-sp__hero-overlay {
		opacity: 0.9;
	}

	.amarte-sp__hero-inner {
		padding: 0 24px;
	}

	.amarte-sp__hero-title {
		font-size: clamp(24px, 7vw, 36px);
	}

	.amarte-sp__hero-sub {
		line-height: 1.4;
	}

	.amarte-sp__hero-apoio {
		line-height: 1.4;
	}

	.amarte-sp__hero-apoio-block {
		margin: 0;
	}

	.amarte-sp__hero-apoio-block .amarte-dif__desc-wrap {
		overflow: hidden;
		max-height: calc(14px * 1.4 * 4);
		transition: max-height 0.4s ease;
		position: relative;
	}

	.amarte-sp__hero-apoio-block .amarte-dif__desc-wrap.is-open {
		max-height: 1200px;
	}

	.amarte-sp__hero-apoio-block .amarte-dif__desc-wrap::after {
		display: none;
	}

	.amarte-sp__hero-apoio-block .amarte-sp__hero-apoio {
		margin-bottom: 0;
	}
}

/* — Cabeçalho de seção — */
.amarte-sp__section-header {
	text-align: center;
	margin-bottom: 52px;
}

.amarte-sp__section-title {
	font-size: clamp(22px, 2.6vw, 32px);
	font-weight: 400;
	color: var(--amarte-cor-principal, #28326a);
	margin: 0;
	line-height: 1.25;
}

.amarte-sp__section-header--light .amarte-sp__section-title {
	color: #fff;
}

/* — Áreas de atuação — */
.amarte-sp__areas {
	padding: 80px 0 90px;
	background: #f7f9fc;
}

.amarte-sp__areas-inner {
	max-width: 1420px;
	margin: 0 auto;
	padding: 0 32px;
}

/* Lista de áreas */
.amarte-sp__areas-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

/* Lista de áreas — stacking cards */
.amarte-sp__areas-list {
	display: flex !important;
	flex-direction: column;
	gap: 0;
	padding-bottom: 80px;
}

/* Card de cada serviço — stacking */
.amarte-sp__area-row {
	display: grid;
	grid-template-columns: 80px 1fr;
	align-items: start;
	gap: 0;
	padding: 32px;
	overflow: hidden;
	background: #fff;
	border-radius: 14px;
	box-shadow:
		0 -4px 0 0 rgba(40,50,106,0.04),
		0 8px 32px rgba(40,50,106,0.08);
	margin-bottom: 16px;
	transition: box-shadow 0.3s;
}

.amarte-sp__area-row:hover {
	box-shadow:
		0 -4px 0 0 rgba(40,50,106,0.04),
		0 16px 48px rgba(40,50,106,0.14);
}

/* Com imagem: ícone | conteúdo | imagem */
.amarte-sp__area-row--has-img {
	grid-template-columns: 80px 1fr 35%;
	padding: 0;
	align-items: stretch;
}

.amarte-sp__area-row--has-img .amarte-sp__area-icon-col {
	padding: 32px 0 32px 32px;
}

.amarte-sp__area-row--has-img .amarte-sp__area-content {
	padding: 32px 24px;
}

.amarte-sp__area-img-col {
	overflow: hidden;
	border-radius: 0 14px 14px 0;
}

.amarte-sp__area-img-col img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.amarte-sp__area-row--has-img:hover .amarte-sp__area-img-col img {
	transform: scale(1.04);
}

/* Coluna ícone */
.amarte-sp__area-icon-col {
	display: flex;
	justify-content: center;
	padding-top: 4px;
}

.amarte-sp__area-icon-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	text-align: center;
}

.amarte-sp__area-num {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	color: var(--amarte-cor-secundaria, #ff7900);
}

.amarte-sp__area-svg {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: #fff;
	border: 1.5px solid #dde2f0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--amarte-cor-principal, #28326a);
	transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.amarte-sp__area-row:hover .amarte-sp__area-svg {
	background: var(--amarte-cor-principal, #28326a);
	border-color: var(--amarte-cor-principal, #28326a);
	color: #fff;
}

.amarte-sp__area-svg svg {
	width: 26px;
	height: 26px;
}

/* Conteúdo */
.amarte-sp__area-content {
	padding-left: 20px;
}

.amarte-sp__area-titulo {
	font-size: 20px;
	font-weight: 700;
	color: var(--amarte-cor-principal, #28326a);
	margin: 0 0 10px;
	line-height: 1.25;
}

.amarte-sp__area-sub {
	font-size: 14px;
	color: #666;
	line-height: 1.7;
	margin: 0 0 24px;
	max-width: 680px;
}

/* Grid de itens */
.amarte-sp__area-itens-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 16px;
}

/* Dots dos itens (visíveis só no mobile) */
.amarte-sp__itens-dots {
	display: none;
	justify-content: center;
	gap: 6px;
	margin-top: 14px;
}

.amarte-sp__itens-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #d0d5e8;
	border: none;
	padding: 0;
	cursor: pointer;
	transition: background 0.2s, width 0.25s;
}

.amarte-sp__itens-dot.is-active {
	background: var(--amarte-cor-secundaria, #ff7900);
	width: 18px;
	border-radius: 4px;
}

/* Desktop: grid normal, ignora is-active */
.amarte-sp__itens-slide {
	display: flex; /* padrão desktop — sempre visível */
}

@media (max-width: 767px) {
	.amarte-sp__area-itens-grid {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		gap: 12px;
		width: 100%;
		max-width: 100%;
		min-width: 0;
		padding-inline: 0;
		-webkit-overflow-scrolling: touch;
		touch-action: pan-x;
		overscroll-behavior-x: contain;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}

	.amarte-sp__area-itens-grid::-webkit-scrollbar {
		display: none;
	}

	.amarte-sp__itens-slide {
		display: flex !important;
		flex: 0 0 100%;
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		scroll-snap-align: center;
		scroll-snap-stop: always;
	}

	.amarte-sp__itens-dots {
		display: flex;
	}
}

.amarte-sp__area-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	background: #fff;
	border: 1px solid #ebebf0;
	border-radius: 10px;
	padding: 14px 16px;
	box-shadow: 0 1px 6px rgba(40,50,106,0.05);
}

.amarte-sp__area-item-bar {
	display: block;
	width: 2px;
	border-radius: 2px;
	background: var(--amarte-cor-secundaria, #ff7900);
	flex-shrink: 0;
	align-self: stretch;
	min-height: 100%;
}

.amarte-sp__area-item strong {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 3px;
}

.amarte-sp__area-item p {
	font-size: 13px;
	color: #666;
	line-height: 1.6;
	margin: 0;
}

/* — Metodologia — */
.amarte-sp__metodo {
	padding: 80px 0 90px;
	margin-bottom: 50px;
	background: var(--amarte-cor-principal, #28326a);
	position: relative;
}

/* Setinha no centro da borda inferior */
.amarte-sp__metodo::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 28px solid transparent;
	border-right: 28px solid transparent;
	border-top: 20px solid var(--amarte-cor-principal, #28326a);
}

.amarte-sp__metodo-inner {
	max-width: 1420px;
	margin: 0 auto;
	padding: 0 32px;
}

.amarte-sp__metodo-steps {
	display: flex;
	align-items: flex-start;
	gap: 0;
}

.amarte-sp__step {
	flex: 1;
	text-align: center;
	padding: 0 20px;
}

.amarte-sp__step-num {
	position: relative;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--amarte-cor-secundaria, #ff7900);
	color: #fff;
	font-size: 22px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 18px;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.amarte-sp__step-num::before {
	content: '';
	position: absolute;
	inset: -5px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.18);
	border-top-color: #fff;
	border-right-color: rgba(255, 255, 255, 0.9);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.35s ease;
}

.amarte-sp__step.is-active .amarte-sp__step-num::before {
	opacity: 1;
	animation: amarte-sp-metodo-ring 1s linear infinite;
}

.amarte-sp__step.is-active .amarte-sp__step-num {
	transform: scale(1.08);
	box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12), 0 10px 28px rgba(0, 0, 0, 0.22);
}

.amarte-sp__step.is-active .amarte-sp__step-desc {
	color: rgba(255, 255, 255, 0.88);
}

@keyframes amarte-sp-metodo-ring {
	to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
	.amarte-sp__step.is-active .amarte-sp__step-num::before {
		animation: none;
	}

	.amarte-sp__step.is-active .amarte-sp__step-num {
		transform: none;
	}
}

.amarte-sp__step-titulo {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 8px;
}

.amarte-sp__step-desc {
	font-size: 13px;
	color: rgba(255,255,255,0.68);
	line-height: 1.65;
	margin: 0;
}

.amarte-sp__step-arrow {
	flex-shrink: 0;
	color: rgba(255,255,255,0.3);
	display: flex;
	align-items: center;
	padding-top: 20px;
}

.amarte-sp__step-arrow svg {
	width: 24px;
	height: 24px;
}

/* — CTA — */
.amarte-sp__cta {
	padding: 48px 32px 0;
	background: #fff;
}

.amarte-sp__cta-inner {
	max-width: 1420px;
	margin: 0 auto;
	background: var(--amarte-cor-principal, #28326a);
	border-radius: 16px;
	padding: 48px 64px;
	display: flex;
	align-items: center;
	gap: 32px;
	position: relative;
}

.amarte-sp__cta-icon {
	flex-shrink: 0;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: rgba(255,255,255,0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.amarte-sp__cta-icon svg { width: 34px; height: 34px; }

.amarte-sp__cta-text { flex: 1; min-width: 0; }

.amarte-sp__cta-text h2 {
	font-size: clamp(18px,2vw,24px);
	font-weight: 700;
	color: #fff;
	margin: 0 0 8px;
}

.amarte-sp__cta-text p {
	font-size: 14px;
	color: rgba(255,255,255,0.85);
	line-height: 1.7;
	margin: 0;
}

.amarte-sp__cta-btn {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #fff;
	color: var(--amarte-cor-principal, #28326a);
	font-size: 14px;
	font-weight: 700;
	padding: 14px 28px;
	border-radius: 50px;
	text-decoration: none;
	white-space: nowrap;
	position: relative;
	z-index: 1;
	cursor: pointer;
	transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.amarte-sp__cta-inner .amarte-sp__cta-btn:hover,
.amarte-sp__cta-inner .amarte-sp__cta-btn:focus-visible {
	background-color: var(--amarte-cor-secundaria, #ff7900);
	color: #fff;
	text-decoration: none;
	transform: translateY(-1px);
}

/* — Responsivo — */
@media (max-width: 1024px) {
	.amarte-sp__areas-list {
		padding-bottom: 40px;
	}

	.amarte-sp__area-row {
		grid-template-columns: 1fr;
		position: static !important;
	}

	.amarte-sp__area-icon-col {
		display: flex;
		justify-content: center;
	}

	.amarte-sp__area-icon-wrap {
		align-items: center;
	}

	.amarte-sp__area-content {
		text-align: center;
		padding-left: 0;
		min-width: 0;
		overflow: hidden;
	}

	.amarte-sp__area-titulo,
	.amarte-sp__area-sub {
		text-align: center;
	}

	.amarte-sp__area-itens-grid {
		text-align: left;
	}

	.amarte-sp__area-row--has-img {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
	}

	.amarte-sp__area-img-col {
		order: -1;
		border-radius: 14px 14px 0 0;
		max-height: 220px;
	}

	.amarte-sp__area-row--has-img .amarte-sp__area-icon-col {
		padding: 16px 16px 0;
		order: 0;
	}

	.amarte-sp__area-row--has-img .amarte-sp__area-content {
		padding: 12px 16px 24px;
		order: 1;
	}

	.amarte-sp__metodo-steps {
		flex-direction: column;
		gap: 28px;
		align-items: stretch;
	}

	.amarte-sp__step-arrow {
		display: none;
	}

	.amarte-sp__step { text-align: left; display: flex; align-items: flex-start; gap: 20px; padding: 0; }
	.amarte-sp__step-num { flex-shrink: 0; margin: 0; }

	.amarte-sp__cta-inner {
		flex-direction: column;
		text-align: center;
		align-items: center;
	}

	.amarte-sp__cta-btn {
		white-space: normal;
		max-width: 100%;
		text-align: center;
	}
}

@media (max-width: 767px) {
	.amarte-sp__hero { padding: 64px 20px 56px; }
	.amarte-sp__areas-inner,
	.amarte-sp__metodo-inner { padding: 0 20px; }
	.amarte-sp__metodo { margin-bottom: 100px; }

	.amarte-sp__cta { padding: 32px 16px 0; }
	.amarte-sp__cta-inner {
		padding: 28px 20px;
		margin-bottom: 60px;
	}

	.amarte-sp__cta-btn {
		font-size: 12px;
		font-weight: 600;
		padding: 10px 16px;
		line-height: 1.45;
		width: 100%;
		max-width: 260px;
		white-space: normal;
		transform: none;
	}

	.amarte-sp__cta-inner .amarte-sp__cta-btn:hover,
	.amarte-sp__cta-inner .amarte-sp__cta-btn:focus-visible {
		transform: none;
	}
}

/* ============================================================
   QUEM SOMOS — page-quemsomos.php
   ============================================================ */

/* ── Hero (reutiliza .amarte-sp__hero + override de label) ── */
/* Hero das páginas Quem Somos e Serviços — centralizado */
.amarte-qs__hero .amarte-sp__hero-inner,
.amarte-sp__hero-centered .amarte-sp__hero-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.amarte-qs__hero .amarte-sp__hero-divider,
.amarte-sp__hero-centered .amarte-sp__hero-divider {
	justify-content: center;
}

.amarte-qs__hero .amarte-sp__hero-title,
.amarte-sp__hero-centered .amarte-sp__hero-title {
	max-width: 800px;
}

.amarte-qs__hero .amarte-sp__hero-sub,
.amarte-sp__hero-centered .amarte-sp__hero-sub {
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}

.amarte-qs__hero .amarte-sp__hero-apoio,
.amarte-sp__hero-centered .amarte-sp__hero-apoio {
	max-width: 780px;
	margin: 0 auto;
	text-align: center;
	border-left: none;
	border-top: 2px solid rgba(255, 121, 0, 0.5);
	padding-left: 0;
	padding-top: 20px;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.85);
}

.amarte-qs__hero .amarte-dif__desc-block,
.amarte-sp__hero-centered .amarte-dif__desc-block {
	width: 100%;
	max-width: 780px;
}

/* ── Bloco 2: Ecossistema ── */
.amarte-qs__eco {
	background: #fff;
	padding: 100px 40px;
	position: relative;
	overflow: hidden;
}

.amarte-qs__eco-bg-deco {
	position: absolute;
	top: -200px;
	right: -200px;
	width: 600px;
	height: 600px;
	pointer-events: none;
}

.amarte-qs__eco-inner {
	max-width: 1100px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

/* Cabeçalho centralizado */
.amarte-qs__eco-head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 56px;
}

.amarte-qs__eco-titulo {
	font-size: clamp(1.8rem, 3.2vw, 2.8rem);
	color: #1a1e3a;
	margin: 14px 0 20px;
	line-height: 1.2;
}

.amarte-qs__eco-titulo span { font-weight: 400; }
.amarte-qs__eco-titulo strong { font-weight: 800; }

.amarte-qs__eco-intro {
	font-size: 1.05rem;
	color: #555;
	line-height: 1.75;
	margin: 0;
}

/* Cards em linha */
.amarte-qs__eco-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 40px;
}

.amarte-qs__eco-card {
	background: #fff;
	border-radius: 20px;
	padding: 32px 28px 36px;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid #e4e7f0;
	box-shadow: 0 2px 12px rgba(40,50,106,0.05);
}

.amarte-qs__eco-card::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: #28326a;
	opacity: 0;
	transition: opacity 0.3s;
}

.amarte-qs__eco-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 48px rgba(40,50,106,0.12);
}

.amarte-qs__eco-card:hover::before {
	opacity: 1;
}

.amarte-qs__eco-card-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 24px;
}

.amarte-qs__eco-card-num {
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	color: #28326a;
	opacity: 0.35;
	padding-top: 4px;
}

.amarte-qs__eco-card-bubble {
	width: 56px;
	height: 56px;
	background: #f0f2f9;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #28326a;
	transition: background 0.3s, transform 0.3s;
}

.amarte-qs__eco-card-bubble svg {
	width: 26px;
	height: 26px;
}

.amarte-qs__eco-card:hover .amarte-qs__eco-card-bubble {
	background: #28326a;
	color: #fff;
	transform: scale(1.06) rotate(-4deg);
}

.amarte-qs__eco-card-line {
	width: 36px;
	height: 3px;
	background: #28326a;
	border-radius: 2px;
	margin-bottom: 14px;
	opacity: 0.25;
	transition: opacity 0.3s, width 0.3s;
}

.amarte-qs__eco-card:hover .amarte-qs__eco-card-line {
	opacity: 1;
	width: 56px;
}

.amarte-qs__eco-card-texto {
	font-size: 1rem;
	color: #3a3d55;
	line-height: 1.7;
	margin: 0;
	font-weight: 500;
}

/* Insight final */
.amarte-qs__eco-insight {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	background: linear-gradient(135deg, #f0f2ff 0%, #e8eeff 100%);
	border: 1px solid rgba(40,50,106,0.12);
	border-radius: 16px;
	padding: 28px 32px;
}

.amarte-qs__eco-insight-icon {
	width: 44px;
	height: 44px;
	background: #28326a;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #fff;
}

.amarte-qs__eco-insight-icon svg {
	width: 22px;
	height: 22px;
}

.amarte-qs__eco-insight p {
	font-size: 0.97rem;
	color: #333;
	line-height: 1.75;
	margin: 0;
	padding-top: 10px;
}

/* ── Bloco 3: Propósito ── */
.amarte-qs__prop {
	background: #f5f6fb;
	padding: 100px 40px;
}

.amarte-qs__prop-inner {
	max-width: 1100px;
	margin: 0 auto;
}

/* Cabeçalho com decoração lateral */
.amarte-qs__prop-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 56px;
}

.amarte-qs__prop-titulo {
	font-size: clamp(1.8rem, 3.2vw, 2.8rem);
	color: #1a1e3a;
	margin: 14px 0 0;
	line-height: 1.15;
}

.amarte-qs__prop-titulo span { font-weight: 400; }
.amarte-qs__prop-titulo strong { font-weight: 800; }

.amarte-qs__prop-head-deco {
	display: flex;
	gap: 8px;
	align-items: flex-end;
	flex-shrink: 0;
	padding-bottom: 6px;
}

.amarte-qs__prop-head-deco span {
	display: block;
	width: 8px;
	border-radius: 4px;
	background: #28326a;
}

.amarte-qs__prop-head-deco span:nth-child(1) { height: 24px; opacity: 0.18; }
.amarte-qs__prop-head-deco span:nth-child(2) { height: 40px; opacity: 0.40; }
.amarte-qs__prop-head-deco span:nth-child(3) { height: 56px; opacity: 0.65; }
.amarte-qs__prop-head-deco span:nth-child(4) { height: 72px; opacity: 1; }

/* Grid */
.amarte-qs__prop-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

/* Card */
.amarte-qs__prop-card {
	background: #fff;
	border: 1px solid #e4e7f0;
	border-radius: 20px;
	padding: 32px 30px 28px;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
	box-shadow: 0 2px 12px rgba(40,50,106,0.05);
}

.amarte-qs__prop-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #28326a, #ff7900);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.35s ease;
}

.amarte-qs__prop-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 48px rgba(40,50,106,0.12);
	border-color: transparent;
}

.amarte-qs__prop-card:hover::after {
	transform: scaleX(1);
}

/* Header do card: ícone + número */
.amarte-qs__prop-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

.amarte-qs__prop-card-icon {
	width: 52px;
	height: 52px;
	background: #f0f2f9;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #28326a;
	transition: background 0.3s, color 0.3s, transform 0.3s;
}

.amarte-qs__prop-card-icon svg {
	width: 24px;
	height: 24px;
}

.amarte-qs__prop-card:hover .amarte-qs__prop-card-icon {
	background: #28326a;
	color: #fff;
	transform: rotate(-6deg) scale(1.05);
}

.amarte-qs__prop-card-num {
	font-size: 2.4rem;
	font-weight: 900;
	color: #28326a;
	opacity: 0.07;
	line-height: 1;
	letter-spacing: -0.03em;
	transition: opacity 0.3s;
}

.amarte-qs__prop-card:hover .amarte-qs__prop-card-num {
	opacity: 0.12;
}

/* Separador */
.amarte-qs__prop-card-sep {
	width: 100%;
	height: 1px;
	background: #eaecf5;
	margin-bottom: 20px;
}

/* Título e desc */
.amarte-qs__prop-card-titulo {
	font-size: 1.05rem;
	font-weight: 700;
	color: #1a1e3a;
	margin: 0 0 10px;
	line-height: 1.3;
}

.amarte-qs__prop-card-desc {
	font-size: 0.93rem;
	color: #636880;
	line-height: 1.7;
	margin: 0 0 20px;
}

/* Seta de detalhe */
.amarte-qs__prop-card-arrow {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #f0f2f9;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #28326a;
	opacity: 0;
	transform: translateX(-8px);
	transition: opacity 0.3s, transform 0.3s, background 0.3s;
}

.amarte-qs__prop-card-arrow svg {
	width: 14px;
	height: 14px;
}

.amarte-qs__prop-card:hover .amarte-qs__prop-card-arrow {
	opacity: 1;
	transform: translateX(0);
	background: #28326a;
	color: #fff;
}

/* ── Bloco 4: Estrutura ── */
.amarte-qs__est {
	padding: 100px 40px;
	position: relative;
	overflow: hidden;
}


.amarte-qs__est-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: start;
	position: relative;
	z-index: 1;
}

.amarte-qs__est-titulo {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	color: #fff;
	margin: 16px 0 24px;
	line-height: 1.15;
}

.amarte-qs__est-titulo span { font-weight: 400; }
.amarte-qs__est-titulo strong { font-weight: 800; }

/* Destaque BPO */
.amarte-qs__est-badge-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 28px;
	flex-wrap: wrap;
}

.amarte-qs__est-badge {
	display: inline-block;
	padding: 4px 14px;
	background: var(--amarte-cor-secundaria, #ff7900);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	border-radius: 6px;
}

.amarte-qs__est-badge-sep {
	font-size: 0.8rem;
	color: rgba(255,255,255,0.5);
	font-weight: 500;
}

.amarte-qs__est-p {
	color: rgba(255,255,255,0.78);
	font-size: 0.97rem;
	line-height: 1.8;
	margin-bottom: 20px;
}

/* Coluna direita */
.amarte-qs__est-right {
	padding-top: 8px;
}

.amarte-qs__est-right-head {
	display: flex;
	align-items: center;
	gap: 12px;
	color: rgba(255,255,255,0.55);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 24px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.amarte-qs__est-right-head svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	color: var(--amarte-cor-secundaria, #ff7900);
}

/* Chips de serviços */
.amarte-qs__est-chips {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.amarte-qs__est-chip {
	display: flex;
	align-items: center;
	gap: 14px;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.09);
	border-radius: 12px;
	padding: 13px 18px;
	transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.amarte-qs__est-chip:hover {
	background: rgba(255,255,255,0.11);
	border-color: rgba(255,255,255,0.18);
	transform: translateX(6px);
}

.amarte-qs__est-chip svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	color: var(--amarte-cor-secundaria, #ff7900);
}

.amarte-qs__est-chip span {
	font-size: 0.92rem;
	color: rgba(255,255,255,0.85);
	font-weight: 500;
}

.amarte-qs__est-img {
	border-radius: 16px;
	overflow: hidden;
	margin-top: 28px;
}

.amarte-qs__est-img img {
	width: 100%;
	height: auto;
	display: block;
}

/* ── Bloco 5: CTA ── */
.amarte-qs__cta {
	background: #fff;
	padding: 80px 40px;
}

.amarte-qs__cta-wrap {
	max-width: 1420px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid #e0e4f0;
	border-radius: 24px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 8px 48px rgba(40,50,106,0.08);
}

.amarte-qs__cta-deco {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.amarte-qs__cta-deco svg {
	width: 100%;
	height: 100%;
}

/* Recolore os círculos deco para o tema claro */
.amarte-qs__cta-deco circle {
	fill: rgba(40,50,106,0.04);
}

.amarte-qs__cta-inner {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 48px;
	align-items: center;
	padding: 64px 64px;
	position: relative;
	z-index: 1;
}

/* Lado esquerdo */
.amarte-qs__cta-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #28326a;
	background: rgba(40,50,106,0.07);
	border: 1px solid rgba(40,50,106,0.14);
	border-radius: 20px;
	padding: 5px 14px 5px 10px;
	margin-bottom: 16px;
}

.amarte-qs__cta-label svg {
	width: 15px;
	height: 15px;
	color: var(--amarte-cor-secundaria, #ff7900);
}

.amarte-qs__cta-titulo {
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	color: #1a1e3a;
	margin: 0 0 18px;
	line-height: 1.2;
}

.amarte-qs__cta-titulo span { font-weight: 400; }
.amarte-qs__cta-titulo strong { font-weight: 800; }

.amarte-qs__cta-desc {
	font-size: 0.97rem;
	color: #636880;
	line-height: 1.75;
	margin: 0;
	max-width: 520px;
}

/* Lado direito */
.amarte-qs__cta-right {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 14px;
	min-width: 280px;
}

.amarte-qs__cta-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px 22px;
	border-radius: 12px;
	font-weight: 600;
	font-size: 0.92rem;
	text-decoration: none;
	transition: all 0.25s;
	white-space: nowrap;
}

.amarte-qs__cta-btn svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	transition: transform 0.25s;
}

.amarte-qs__cta-btn:hover svg {
	transform: translateX(4px);
}

.amarte-qs__cta-btn--primary {
	background: var(--amarte-cor-secundaria, #ff7900);
	color: #fff;
	box-shadow: 0 4px 20px rgba(255,121,0,0.35);
}

.amarte-qs__cta-btn--primary:hover {
	background: #e86d00;
	box-shadow: 0 6px 28px rgba(255,121,0,0.5);
	transform: translateY(-2px);
}

.amarte-qs__cta-btn--secondary {
	background: #f0f2f9;
	color: #28326a;
	border: 1px solid #dde1f0;
}

.amarte-qs__cta-btn--secondary:hover {
	background: #28326a;
	color: #fff;
	border-color: #28326a;
	transform: translateY(-2px);
}

.amarte-qs__cta-note {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 0.78rem;
	color: #adb0c4;
	padding: 0 4px;
}

.amarte-qs__cta-note svg {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	color: #adb0c4;
}

/* ── Responsivo: Quem Somos ── */
@media (max-width: 1024px) {
	.amarte-qs__eco,
	.amarte-qs__prop,
	.amarte-qs__est,
	.amarte-qs__cta {
		padding: 72px 32px;
	}

	.amarte-qs__eco-cards {
		grid-template-columns: 1fr;
		max-width: 560px;
		margin-left: auto;
		margin-right: auto;
	}

	.amarte-qs__prop-head {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.amarte-qs__prop-head-deco {
		display: none;
	}

	.amarte-qs__prop-grid {
		grid-template-columns: 1fr;
	}

	.amarte-qs__est-inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}
}

@media (max-width: 767px) {
	.amarte-qs__eco,
	.amarte-qs__prop,
	.amarte-qs__est,
	.amarte-qs__cta {
		padding: 56px 20px;
	}

	.amarte-qs__eco-cards {
		max-width: 100%;
	}

	.amarte-qs__eco-insight {
		flex-direction: column;
		gap: 14px;
		padding: 22px 20px;
	}

	.amarte-qs__cta-inner {
		grid-template-columns: 1fr;
		padding: 40px 32px;
	}

	.amarte-qs__cta-right {
		min-width: 0;
	}
}

/* ============================================================
   PÁGINA — page-pagina.php (conteúdo texto)
   ============================================================ */

.amarte-pagina {
	background: linear-gradient(180deg, #f5f6fb 0%, #f8f9fc 35%, #fefefe 75%, #ffffff 100%);
}

.amarte-pagina__section {
	padding: 56px 20px 80px;
	background: transparent;
}

.amarte-pagina__wrap {
	max-width: 920px;
	margin: 0 auto;
}

.amarte-pagina__card {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 12px 40px rgba(40, 50, 106, 0.08);
	border: 1px solid rgba(40, 50, 106, 0.06);
	overflow: hidden;
}

.amarte-pagina__thumb img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 360px;
	object-fit: cover;
}

.amarte-pagina__header {
	padding: 40px 48px 0;
}

.amarte-pagina__title {
	margin: 0;
	font-size: clamp(1.75rem, 3.5vw, 2.35rem);
	line-height: 1.25;
	color: var(--amarte-cor-principal, #28326a);
	font-weight: 600;
}

.amarte-pagina__content {
	padding: 28px 48px 48px;
	color: #444;
	font-size: 1.02rem;
	line-height: 1.8;
}

.amarte-pagina__content > :first-child {
	margin-top: 0;
}

.amarte-pagina__content > :last-child {
	margin-bottom: 0;
}

.amarte-pagina__content h2,
.amarte-pagina__content h3,
.amarte-pagina__content h4 {
	color: var(--amarte-cor-principal, #28326a);
	margin: 1.6em 0 0.6em;
	line-height: 1.35;
	font-weight: 600;
}

.amarte-pagina__content h2 { font-size: 1.45rem; }
.amarte-pagina__content h3 { font-size: 1.2rem; }
.amarte-pagina__content h4 { font-size: 1.05rem; }

.amarte-pagina__content p {
	margin: 0 0 1.1em;
}

.amarte-pagina__content a {
	color: var(--amarte-cor-secundaria, #ff7900);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.amarte-pagina__content a:hover {
	color: var(--amarte-cor-principal, #28326a);
}

.amarte-pagina__content ul,
.amarte-pagina__content ol {
	margin: 0 0 1.2em;
	padding-left: 1.4em;
}

.amarte-pagina__content li {
	margin-bottom: 0.45em;
}

.amarte-pagina__content blockquote {
	margin: 1.5em 0;
	padding: 16px 20px;
	border-left: 4px solid var(--amarte-cor-secundaria, #ff7900);
	background: #f8f9fc;
	border-radius: 0 8px 8px 0;
	color: #555;
}

.amarte-pagina__content img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 1.2em 0;
}

.amarte-pagina__content table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.2em 0;
	font-size: 0.95rem;
}

.amarte-pagina__content th,
.amarte-pagina__content td {
	border: 1px solid #e8eaf2;
	padding: 10px 14px;
	text-align: left;
}

.amarte-pagina__content th {
	background: #f8f9fc;
	color: var(--amarte-cor-principal, #28326a);
	font-weight: 600;
}

@media (max-width: 767px) {
	.amarte-pagina__section {
		padding: 32px 16px 56px;
	}

	.amarte-pagina__header {
		padding: 28px 24px 0;
	}

	.amarte-pagina__content {
		padding: 20px 24px 32px;
		font-size: 0.98rem;
	}

	.amarte-pagina__thumb img {
		max-height: 220px;
	}
}

/* ============================================================
   BLOG — home.php / archive.php / search.php
   ============================================================ */

.amarte-blog {
	background: linear-gradient(180deg, #f5f6fb 0%, #f8f9fc 35%, #fefefe 75%, #ffffff 100%);
}

.amarte-blog__hero {
	padding: 40px 20px 20px;
}

.amarte-blog__hero-inner {
	max-width: 1420px;
	margin: 0 auto;
}

.amarte-blog__hero-row {
	display: grid;
	grid-template-columns: 1fr minmax(0, 640px) 1fr;
	align-items: center;
	gap: 24px;
}

.amarte-blog__intro {
	grid-column: 2;
	text-align: center;
}

.amarte-blog__title {
	margin: 0 0 6px;
	font-size: clamp(1.35rem, 2.2vw, 1.75rem);
	line-height: 1.25;
	color: var(--amarte-cor-principal, #28326a);
	font-weight: 600;
}

.amarte-blog__desc {
	margin: 0 auto;
	max-width: 560px;
	color: #777;
	font-size: 0.9rem;
	line-height: 1.55;
}

.amarte-blog__section {
	padding: 0 20px 72px;
}

.amarte-blog__wrap {
	max-width: 1420px;
	margin: 0 auto;
}

.amarte-blog__toolbar {
	position: relative;
	margin-bottom: 28px;
}

.amarte-blog__filter-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 14px;
	border: 1px solid #dde0ea;
	border-radius: 8px;
	background: #fff;
	color: var(--amarte-cor-principal, #28326a);
	font-size: 0.88rem;
	font-weight: 600;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease;
	white-space: nowrap;
}

.amarte-blog__filter-toggle:hover,
.amarte-blog__filter-toggle[aria-expanded="true"] {
	border-color: var(--amarte-cor-principal, #28326a);
	background: #f5f6fb;
}

.amarte-blog__actions {
	grid-column: 3;
	justify-self: end;
	align-self: center;
	display: flex;
	align-items: center;
	gap: 8px;
	width: min(100%, 300px);
}

.amarte-blog__search {
	flex: 1 1 auto;
	min-width: 0;
}

.amarte-blog__search-field {
	position: relative;
	display: flex;
	align-items: center;
}

.amarte-blog__search-input {
	width: 100%;
	padding: 10px 44px 10px 16px;
	border: 1px solid #e4e7ef;
	border-radius: 999px;
	background: #fff;
	font-size: 0.88rem;
	color: #333;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.amarte-blog__search-input::placeholder {
	color: #aaa;
}

.amarte-blog__search-input:focus {
	outline: none;
	border-color: var(--amarte-cor-principal, #28326a);
	box-shadow: 0 0 0 3px rgba(40, 50, 106, 0.1);
}

.amarte-blog__search-btn {
	position: absolute;
	right: 4px;
	top: 50%;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--amarte-cor-principal, #28326a);
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.amarte-blog__search-btn:hover {
	background: rgba(40, 50, 106, 0.08);
	color: var(--amarte-cor-secundaria, #ff7900);
}

.amarte-blog__search-btn-icon {
	display: block;
}

.amarte-blog__filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
}

.amarte-blog__filter {
	display: inline-flex;
	align-items: center;
	padding: 8px 14px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid #dde0ea;
	color: #444;
	text-decoration: none;
	font-size: 0.88rem;
	font-weight: 500;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.amarte-blog__filter:hover,
.amarte-blog__filter.is-active {
	background: var(--amarte-cor-principal, #28326a);
	border-color: var(--amarte-cor-principal, #28326a);
	color: #fff;
}

.amarte-blog__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.amarte-blog__card {
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid rgba(40, 50, 106, 0.06);
	box-shadow: 0 10px 30px rgba(40, 50, 106, 0.07);
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.amarte-blog__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(40, 50, 106, 0.11);
}

.amarte-blog__card-thumb {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #e8eaf2;
}

.amarte-blog__card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.amarte-blog__card:hover .amarte-blog__card-thumb img {
	transform: scale(1.04);
}

.amarte-blog__card-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #28326a 0%, #3d4d8a 100%);
}

.amarte-blog__card-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 18px 18px 20px;
}

.amarte-blog__card-title {
	margin: 0 0 10px;
	font-size: 1rem;
	line-height: 1.4;
	font-weight: 600;
}

.amarte-blog__card-title a {
	color: var(--amarte-cor-principal, #28326a);
	text-decoration: none;
}

.amarte-blog__card-title a:hover {
	color: var(--amarte-cor-secundaria, #ff7900);
}

.amarte-blog__card-excerpt {
	margin: 0 0 16px;
	color: #666;
	font-size: 0.88rem;
	line-height: 1.6;
	flex: 1;
}

.amarte-blog__card-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	font-size: 0.8rem;
	color: #888;
}

.amarte-blog__card-link {
	color: var(--amarte-cor-principal, #28326a);
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}

.amarte-blog__card-link:hover {
	color: var(--amarte-cor-secundaria, #ff7900);
}

.amarte-blog__pagination {
	margin-top: 40px;
}

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

.amarte-blog__pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border-radius: 8px;
	background: #fff;
	border: 1px solid #dde0ea;
	color: #444;
	text-decoration: none;
	font-weight: 500;
}

.amarte-blog__pagination .page-numbers.current,
.amarte-blog__pagination .page-numbers:hover {
	background: var(--amarte-cor-principal, #28326a);
	border-color: var(--amarte-cor-principal, #28326a);
	color: #fff;
}

.amarte-blog__empty {
	padding: 48px 24px;
	text-align: center;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 10px 30px rgba(40, 50, 106, 0.07);
}

.amarte-blog__empty p {
	margin: 0 0 16px;
	color: #666;
}

.amarte-blog__empty-link {
	color: var(--amarte-cor-secundaria, #ff7900);
	font-weight: 600;
	text-decoration: none;
}

/* Single post */
.amarte-blog-single {
	background: linear-gradient(180deg, #f5f6fb 0%, #ffffff 100%);
}

.amarte-blog-single__section {
	padding: 56px 20px 80px;
}

.amarte-blog-single__wrap {
	max-width: 920px;
	margin: 0 auto;
}

.amarte-blog-single__card {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 12px 40px rgba(40, 50, 106, 0.08);
	border: 1px solid rgba(40, 50, 106, 0.06);
	overflow: hidden;
}

.amarte-blog-single__header {
	padding: 40px 48px 0;
}

.amarte-blog-single__cat {
	display: inline-block;
	margin-bottom: 12px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--amarte-cor-secundaria, #ff7900);
	text-decoration: none;
}

.amarte-blog-single__title {
	margin: 0 0 10px;
	font-size: clamp(1.08rem, 2vw, 1.4rem);
	line-height: 1.3;
	color: var(--amarte-cor-principal, #28326a);
	font-weight: 600;
}

.amarte-blog-single__meta {
	margin: 0;
	color: #888;
	font-size: 0.9rem;
}

.amarte-blog-single__thumb img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 420px;
	object-fit: cover;
	margin-top: 28px;
}

.amarte-blog-single__content {
	padding: 28px 48px 40px;
	color: #444;
	font-size: 1.02rem;
	line-height: 1.8;
}

.amarte-blog-single__content > :first-child {
	margin-top: 0;
}

.amarte-blog-single__content h2,
.amarte-blog-single__content h3 {
	color: var(--amarte-cor-principal, #28326a);
	font-weight: 600;
}

.amarte-blog-single__content a {
	color: var(--amarte-cor-secundaria, #ff7900);
}

.amarte-blog-single__footer {
	padding: 0 48px 32px;
}

.amarte-blog-single__back {
	color: var(--amarte-cor-principal, #28326a);
	font-weight: 600;
	text-decoration: none;
}

.amarte-blog-single__back:hover {
	color: var(--amarte-cor-secundaria, #ff7900);
}

@media (max-width: 767px) {
	.amarte-blog__hero {
		padding: 28px 16px 12px;
	}

	.amarte-blog__hero-row {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.amarte-blog__intro {
		grid-column: 1;
	}

	.amarte-blog__title {
		font-size: 1.25rem;
		margin-bottom: 4px;
	}

	.amarte-blog__desc {
		font-size: 0.84rem;
		line-height: 1.5;
	}

	.amarte-blog__actions {
		grid-column: 1;
		justify-self: stretch;
		width: 100%;
	}

	.amarte-blog__filter-toggle {
		display: inline-flex;
		flex-shrink: 0;
		border-radius: 999px;
	}

	.amarte-blog__section {
		padding: 0 16px 56px;
	}

	.amarte-blog__toolbar {
		margin-bottom: 0;
	}

	.amarte-blog__filters {
		display: none;
		flex-direction: column;
		align-items: stretch;
		padding: 12px;
		border-radius: 12px;
		background: #fff;
		border: 1px solid #dde0ea;
		box-shadow: 0 12px 32px rgba(40, 50, 106, 0.1);
	}

	.amarte-blog__filters.is-open {
		display: flex;
		margin-bottom: 20px;
	}

	.amarte-blog__filter {
		justify-content: center;
	}

	.amarte-blog__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}

	.amarte-blog__card-body {
		padding: 14px 12px 16px;
	}

	.amarte-blog__card-title {
		font-size: 0.85rem;
	}

	.amarte-blog .amarte-blog__card-excerpt {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
		overflow: hidden;
		font-size: 0.82rem;
		margin-bottom: 12px;
	}

	.amarte-blog__card-meta {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}

	.amarte-blog-single__header,
	.amarte-blog-single__content,
	.amarte-blog-single__footer {
		padding-left: 24px;
		padding-right: 24px;
	}
}


/* ════════════════════════════════════════════════════
   PORTFÓLIO — page-portfolio.php
════════════════════════════════════════════════════ */

/* ── Variáveis e reset de página ── */
.vsr-portfolio-page {
	--vsr-pf-radius: 0px;
	--vsr-pf-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	--vsr-pf-card-bg: #fff;
	overflow-x: clip;
}

/* ── Container ── */
.vsr-pf__container {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
}

/* ── Hero ── */
.vsr-pf__hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 280px;
	padding: 80px 24px;
	text-align: center;
	overflow: hidden;
}

.vsr-pf__hero-overlay {
	position: absolute;
	inset: 0;
	opacity: 0.82;
}

.vsr-pf__hero-inner {
	position: relative;
	z-index: 1;
	max-width: 700px;
}

.vsr-pf__label {
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--amarte-cor-principal, #e8660a);
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 100px;
	padding: 4px 14px;
	margin-bottom: 16px;
}

.vsr-pf__hero-title {
	font-size: clamp(1.75rem, 4vw, 2.6rem);
	font-weight: 800;
	color: #fff;
	line-height: 1.18;
	margin: 0 0 16px;
}

.vsr-pf__hero-divider {
	width: 48px;
	height: 4px;
	border-radius: 2px;
	background: var(--amarte-cor-principal, #e8660a);
	margin: 0 auto 20px;
}

.vsr-pf__hero-sub {
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.65;
	margin: 0;
}

/* ── Grid Section ── */
.vsr-pf__grid-section {
	padding: 72px 0 60px;
	background: #f5f6fa;
}

.vsr-pf__count {
	font-size: 0.9rem;
	color: #666;
	margin-bottom: 32px;
}

/* ── Grid ── */
.vsr-pf__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

/* ── Card ── */
.vsr-pf__card {
	background: var(--vsr-pf-card-bg);
	border-radius: var(--vsr-pf-radius);
	box-shadow: var(--vsr-pf-shadow);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.vsr-pf__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.13);
}

.vsr-pf__card--hidden {
	display: none;
}

.vsr-pf__card--revealed {
	animation: vsr-card-fadein 0.35s ease both;
}

@keyframes vsr-card-fadein {
	from { opacity: 0; transform: translateY(16px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* ── Card image ── */
.vsr-pf__card-img {
	position: relative;
	overflow: hidden;
	background: #e8eaf0;
	aspect-ratio: 1 / 1;
}

.vsr-pf__card-img--zoomable {
	cursor: zoom-in;
}

.vsr-pf__card-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	transition: transform 0.4s ease;
}

.vsr-pf__card-img--zoomable:hover img {
	transform: scale(1.04);
}

.vsr-pf__card-zoom {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
	width: 36px;
	height: 36px;
	border: none;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: zoom-in;
	backdrop-filter: blur(4px);
	transition: background 0.2s, transform 0.2s;
	padding: 0;
	line-height: 0;
}

.vsr-pf__card-zoom:hover {
	background: rgba(0, 0, 0, 0.78);
	transform: scale(1.06);
}

.vsr-pf__card-zoom svg {
	width: 17px;
	height: 17px;
	display: block;
	flex-shrink: 0;
	fill: currentColor;
	pointer-events: none;
}

.vsr-pf__card-img-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	color: #b0b6c8;
}

.vsr-pf__card-img-placeholder svg {
	width: 56px;
	height: 56px;
}

.vsr-pf__card-gallery-count {
	position: absolute;
	bottom: 10px;
	right: 10px;
	background: rgba(0, 0, 0, 0.55);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 600;
	border-radius: 100px;
	padding: 3px 10px;
	display: flex;
	align-items: center;
	gap: 4px;
	backdrop-filter: blur(4px);
}

.vsr-pf__card-gallery-count svg {
	width: 12px;
	height: 12px;
}

/* ── Card body ── */
.vsr-pf__card-body {
	padding: 14px 16px 18px;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 8px;
}

.vsr-pf__card-title {
	font-size: 0.95rem;
	font-weight: 400;
	color: #1a2047;
	line-height: 1.4;
	margin: 0;
}

.vsr-pf__card-address {
	font-size: 0.78rem;
	color: #666;
	line-height: 1.5;
	margin: 0;
	display: flex;
	align-items: flex-start;
	gap: 5px;
}

.vsr-pf__card-address svg {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	margin-top: 2px;
	color: var(--amarte-cor-principal, #e8660a);
}

.vsr-pf__card-desc {
	font-size: 0.82rem;
	color: #555;
	line-height: 1.55;
	margin: 0;
}

.vsr-pf__card-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 0.72rem;
	font-weight: 600;
	color: var(--amarte-cor-principal, #e8660a);
	background: rgba(232, 102, 10, 0.1);
	border-radius: 100px;
	padding: 3px 10px;
	margin-top: auto;
	width: fit-content;
}

.vsr-pf__card-badge svg {
	width: 12px;
	height: 12px;
}

/* ── Load more ── */
/* ── Botão Ver Mais no card ── */
.vsr-pf__card-ver-mais {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin-top: 6px;
	padding: 4px 10px;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--amarte-cor-principal, #28326a);
	background: transparent;
	border: 1px solid currentColor;
	border-radius: 3px;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
	align-self: center;
}
.vsr-pf__card-ver-mais:hover {
	background: var(--amarte-cor-principal, #28326a);
	color: #fff;
}
.vsr-pf__card-ver-mais svg {
	width: 13px;
	height: 13px;
}

/* ── Modal ── */
.vsr-pf__modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
}
.vsr-pf__modal[hidden] {
	display: none;
}
.vsr-pf__modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.75);
	backdrop-filter: blur(4px);
}
.vsr-pf__modal-box {
	position: relative;
	z-index: 1;
	background: #fff;
	width: 100%;
	max-width: 860px;
	max-height: 90vh;
	overflow-y: auto;
	border-radius: 12px;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
	display: flex;
	flex-direction: column;
}
.vsr-pf__modal-close {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	border: none;
	background: rgba(0, 0, 0, 0.12);
	color: #1a1a1a;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s;
}
.vsr-pf__modal-close:hover { background: rgba(0, 0, 0, 0.22); }
.vsr-pf__modal-close svg {
	width: 30px;
	height: 30px;
	flex-shrink: 0;
}

/* Galeria principal */
.vsr-pf__modal-gallery-main {
	position: relative;
	background: #f0f0f0;
	aspect-ratio: 16/9;
	overflow: hidden;
}
.vsr-pf__modal-gallery-main img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}
.vsr-pf__modal-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0,0,0,0.45);
	color: #fff;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 1.1rem;
	line-height: 1;
	transition: background 0.2s;
}
.vsr-pf__modal-nav:hover { background: rgba(0,0,0,0.7); }
.vsr-pf__modal-nav--prev { left: 12px; }
.vsr-pf__modal-nav--next { right: 12px; }
.vsr-pf__modal-counter {
	position: absolute;
	bottom: 10px;
	right: 14px;
	font-size: 0.75rem;
	color: rgba(255,255,255,0.8);
	background: rgba(0,0,0,0.4);
	padding: 2px 8px;
	border-radius: 100px;
}

/* Miniaturas */
.vsr-pf__modal-thumbs {
	display: flex;
	gap: 6px;
	padding: 10px 12px;
	overflow-x: auto;
	background: #f4f4f4;
}
.vsr-pf__modal-thumb {
	width: 64px;
	height: 48px;
	object-fit: cover;
	flex-shrink: 0;
	border-radius: 4px;
	cursor: pointer;
	opacity: 0.6;
	border: 2px solid transparent;
	transition: opacity 0.2s, border-color 0.2s;
}
.vsr-pf__modal-thumb.is-active,
.vsr-pf__modal-thumb:hover {
	opacity: 1;
	border-color: var(--amarte-cor-principal, #28326a);
}

/* Informações */
.vsr-pf__modal-info {
	padding: 24px 28px 28px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.vsr-pf__modal-title {
	font-size: 1.2rem;
	font-weight: 700;
	color: #1a2047;
	margin: 0;
}
.vsr-pf__modal-address {
	font-size: 0.85rem;
	color: #666;
	margin: 0;
}
.vsr-pf__modal-desc {
	font-size: 0.92rem;
	color: #444;
	line-height: 1.7;
	margin: 0;
}

@media (max-width: 600px) {
	.vsr-pf__modal-box { border-radius: 8px; }
	.vsr-pf__modal-info { padding: 18px 16px 20px; }
	.vsr-pf__modal-thumb { width: 52px; height: 40px; }
	.vsr-pf__modal-close {
		top: 10px;
		right: 10px;
		width: 56px;
		height: 56px;
	}
	.vsr-pf__modal-close svg {
		width: 32px;
		height: 32px;
	}
}

/* ── Lightbox ── */
.vsr-pf__lightbox {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.vsr-pf__lightbox[hidden] {
	display: none;
}

.vsr-pf__lightbox-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.88);
	backdrop-filter: blur(6px);
}

.vsr-pf__lightbox-stage {
	position: relative;
	z-index: 1;
	max-width: min(1200px, 92vw);
	max-height: 88vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.vsr-pf__lightbox-stage img {
	max-width: 100%;
	max-height: 88vh;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
	border-radius: 6px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
	animation: vsrPfLightboxIn 0.25s ease;
}

@keyframes vsrPfLightboxIn {
	from { opacity: 0; transform: scale(0.96); }
	to   { opacity: 1; transform: scale(1); }
}

.vsr-pf__lightbox-close {
	position: absolute;
	top: 18px;
	right: 18px;
	z-index: 2;
	width: 42px;
	height: 42px;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s;
}

.vsr-pf__lightbox-close:hover {
	background: rgba(255, 255, 255, 0.22);
}

.vsr-pf__lightbox-close svg {
	width: 20px;
	height: 20px;
}

.vsr-pf__lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 46px;
	height: 46px;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	font-size: 1.2rem;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s;
}

.vsr-pf__lightbox-nav:hover {
	background: rgba(255, 255, 255, 0.28);
}

.vsr-pf__lightbox-nav--prev { left: 18px; }
.vsr-pf__lightbox-nav--next { right: 18px; }

.vsr-pf__lightbox-counter {
	position: absolute;
	bottom: -34px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.85);
	background: rgba(0, 0, 0, 0.45);
	padding: 4px 12px;
	border-radius: 100px;
	white-space: nowrap;
}

@media (max-width: 600px) {
	.vsr-pf__lightbox {
		padding: 12px;
	}

	.vsr-pf__lightbox-nav {
		width: 38px;
		height: 38px;
	}

	.vsr-pf__lightbox-nav--prev { left: 8px; }
	.vsr-pf__lightbox-nav--next { right: 8px; }

	.vsr-pf__lightbox-close {
		top: 10px;
		right: 10px;
	}

	.vsr-pf__card-zoom {
		width: 32px;
		height: 32px;
		top: 8px;
		right: 8px;
	}

	.vsr-pf__card-zoom svg {
		width: 15px;
		height: 15px;
	}
}

.vsr-pf__load-more-wrap {
	text-align: center;
	margin-top: 48px;
}

.vsr-pf__load-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	color: #1a2047;
	font-size: 0.95rem;
	font-weight: 700;
	border: 2px solid #d0d4e0;
	border-radius: 8px;
	padding: 14px 32px;
	cursor: pointer;
	transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.vsr-pf__load-more:hover {
	border-color: var(--amarte-cor-principal, #e8660a);
	color: var(--amarte-cor-principal, #e8660a);
	background: rgba(232, 102, 10, 0.04);
}

.vsr-pf__load-more svg {
	width: 18px;
	height: 18px;
}

/* ── Empty state ── */
.vsr-pf__empty {
	text-align: center;
	padding: 80px 24px;
	color: #999;
}

.vsr-pf__empty svg {
	width: 64px;
	height: 64px;
	margin-bottom: 16px;
	opacity: 0.4;
}

.vsr-pf__empty p {
	font-size: 1.05rem;
	margin-bottom: 24px;
}

/* ── Map section ── */
.vsr-pf__map-section {
	padding: 72px 24px 0;
	background: #fff;
}

.vsr-pf__section-head {
	text-align: center;
	margin-bottom: 40px;
}

.vsr-pf__section-title {
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	font-weight: 800;
	color: #1a2047;
	margin: 10px 0 12px;
}

.vsr-pf__section-sub {
	font-size: 1rem;
	color: #666;
	max-width: 560px;
	margin: 0 auto;
	line-height: 1.6;
}

/* ── Leaflet map ── */
.vsr-pf__map {
	width: 100%;
	max-width: 1420px;
	margin: 0 auto;
	height: 540px;
	display: block;
	border-radius: 12px;
	overflow: hidden;
}

.vsr-pf__map-note {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.82rem;
	color: #888;
	padding: 16px 0 40px;
}

/* Custom Leaflet pin */
.vsr-map-pin {
	background: transparent;
	border: none;
}

.vsr-map-pin svg {
	width: 28px;
	height: 36px;
	filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

/* ── CTA section ── */
.vsr-pf__cta-section {
	padding: 56px 0;
	background: #f5f6fa;
}

.vsr-pf__cta-inner {
	display: flex;
	align-items: center;
	gap: 32px;
	background: #fff;
	border-radius: 16px;
	padding: 36px 40px;
	box-shadow: var(--vsr-pf-shadow);
	border-left: 5px solid var(--amarte-cor-principal, #e8660a);
}

.vsr-pf__cta-icon {
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	background: rgba(232, 102, 10, 0.08);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--amarte-cor-principal, #e8660a);
}

.vsr-pf__cta-icon svg {
	width: 32px;
	height: 32px;
}

.vsr-pf__cta-text {
	flex: 1;
}

.vsr-pf__cta-text h2 {
	font-size: 1.25rem;
	font-weight: 800;
	color: #1a2047;
	margin: 0 0 8px;
}

.vsr-pf__cta-text p {
	font-size: 0.9rem;
	color: #555;
	line-height: 1.6;
	margin: 0;
}

.vsr-pf__btn-cta,
.vsr-pf__btn-primary {
	display: inline-flex;
	align-items: center;
	background: var(--amarte-cor-principal, #e8660a);
	color: #fff;
	font-size: 0.9rem;
	font-weight: 700;
	border-radius: 8px;
	padding: 14px 26px;
	text-decoration: none;
	white-space: nowrap;
	flex-shrink: 0;
	transition: opacity 0.18s;
}

.vsr-pf__btn-cta:hover,
.vsr-pf__btn-primary:hover {
	opacity: 0.88;
	color: #fff;
}

/* ── Responsivo ── */
@media (max-width: 900px) {
	.vsr-pf__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}

	.vsr-pf__map {
		height: 380px;
	}

	.vsr-pf__cta-inner {
		flex-direction: column;
		align-items: flex-start;
		padding: 28px 24px;
		gap: 20px;
	}
}

@media (max-width: 767px) {
	.vsr-pf__hero-sub {
		line-height: 1.4;
	}
}

@media (max-width: 600px) {
	.vsr-pf__hero {
		padding: 60px 20px;
		min-height: 220px;
	}

	.vsr-pf__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.vsr-pf__grid-section {
		padding: 48px 0 40px;
	}

	.vsr-pf__map {
		height: 300px;
	}

	.vsr-pf__map-section {
		padding-top: 48px;
	}

	.vsr-pf__cta-section {
		padding: 40px 0;
	}

	.vsr-pf__cta-inner {
		border-left-width: 4px;
	}
}


/* ════════════════════════════════════════════════
   MAPA DE OBRAS — page-mapa.php
════════════════════════════════════════════════ */

/* ── Stats no hero ── */
.vsr-map-stats {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	margin-top: 32px;
	flex-wrap: wrap;
}

.vsr-map-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

.vsr-map-stat strong {
	font-size: 2rem;
	font-weight: 800;
	color: #fff;
	line-height: 1;
}

.vsr-map-stat span {
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.7);
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.vsr-map-stat-divider {
	width: 1px;
	height: 40px;
	background: rgba(255, 255, 255, 0.2);
}

/* ── Mapa full-width ── */
.vsr-mapa__map-wrap {
	position: relative;
}

.vsr-mapa__map {
	width: 100%;
	height: 520px;
	display: block;
}

.vsr-mapa__notice {
	position: relative;
	z-index: 10;
}

/* ── Lista de locais ── */
.vsr-mapa__list-section {
	padding: 72px 0 60px;
	background: #f5f6fa;
}

.vsr-mapa__list-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 32px;
}

.vsr-mapa__list-item {
	display: flex;
	align-items: center;
	gap: 14px;
	background: #fff;
	border-radius: 10px;
	padding: 14px 16px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
	transition: box-shadow 0.2s, transform 0.2s;
}

.vsr-mapa__list-item.has-pin {
	cursor: default;
}

.vsr-mapa__list-item:hover {
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.vsr-mapa__list-num {
	font-size: 0.72rem;
	font-weight: 800;
	color: var(--amarte-cor-principal, #e8660a);
	background: rgba(232, 102, 10, 0.1);
	border-radius: 6px;
	padding: 4px 8px;
	flex-shrink: 0;
	letter-spacing: 0.04em;
}

.vsr-mapa__list-info {
	flex: 1;
	min-width: 0;
}

.vsr-mapa__list-info strong {
	display: block;
	font-size: 0.85rem;
	font-weight: 700;
	color: #1a2047;
	line-height: 1.35;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.vsr-mapa__list-info span {
	display: block;
	font-size: 0.75rem;
	color: #777;
	line-height: 1.4;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-top: 2px;
}

.vsr-mapa__list-pin-btn {
	flex-shrink: 0;
	width: 34px;
	height: 34px;
	border: none;
	border-radius: 8px;
	background: rgba(232, 102, 10, 0.1);
	color: var(--amarte-cor-principal, #e8660a);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.18s, transform 0.18s;
}

.vsr-mapa__list-pin-btn:hover {
	background: var(--amarte-cor-principal, #e8660a);
	color: #fff;
	transform: scale(1.08);
}

.vsr-mapa__list-pin-btn svg {
	width: 16px;
	height: 16px;
}

/* ── Responsivo ── */
@media (max-width: 900px) {
	.vsr-mapa__map {
		height: 400px;
	}

	.vsr-mapa__list-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {
	.vsr-map-stats {
		gap: 16px;
	}

	.vsr-map-stat strong {
		font-size: 1.6rem;
	}

	.vsr-mapa__map {
		height: 320px;
	}

	.vsr-mapa__list-section {
		padding: 48px 0 40px;
	}

	.vsr-mapa__list-item {
		padding: 12px 14px;
	}

	.vsr-mapa__list-info strong {
		white-space: normal;
	}

	.vsr-mapa__list-info span {
		white-space: normal;
	}
}


/* ── Mapa page: hero compacto fundo claro ── */
.vsr-mapa__hero-light {
	background: #f5f6fa;
	border-bottom: 1px solid #e4e6ed;
	padding: 32px 0 28px;
	text-align: center;
}

.vsr-mapa__hero-label {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--amarte-cor-principal, #e8660a);
	margin-bottom: 8px;
}

.vsr-mapa__hero-title {
	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 800;
	color: #1a2047;
	margin: 0 0 8px;
	line-height: 1.2;
}

.vsr-mapa__hero-sub {
	font-size: 0.95rem;
	color: #666;
	max-width: 560px;
	margin: 0 auto;
	line-height: 1.6;
}


@media (max-width: 700px) {
	.amarte-rodape2__cta-inner {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.amarte-rodape2__cta-text {
		text-align: center;
	}
}


@media (max-width: 768px) {
	.amarte-slider-pro__track {
		height: 70svh !important;
	}
}


@media (max-width: 768px) {
	.amarte-slider-pro {
		clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), 50% 100%, 0 calc(100% - 24px));
	}
}


@media (max-width: 600px) {
	.amarte-rodape2__cta-outer {
		padding: 0 16px;
		margin-top: 40px;
		margin-bottom: -24px;
	}

	.amarte-rodape2__cta {
		padding: 24px 20px 28px;
		border-radius: 12px;
	}

	.amarte-rodape2__dark {
		padding-top: 48px;
	}
}


/* ════════════════════════════════════════════════════
   CTA DA HOME
════════════════════════════════════════════════════ */

.amarte-home-cta {
	background: #fff;
	padding: 90px 48px;
	position: relative;
	overflow: hidden;
}

/* Linha decorativa à esquerda */
.amarte-home-cta::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 5px;
	background: linear-gradient(
		180deg,
		var(--amarte-cor-principal, #28326a) 0%,
		var(--amarte-cor-secundaria, #ff7900) 100%
	);
}

.amarte-home-cta__inner {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.amarte-home-cta__label {
	display: block;
	font-size: 0.70rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--amarte-cor-secundaria, #ff7900);
	margin-bottom: 14px;
	text-align: center;
}

.amarte-home-cta__title {
	font-size: clamp(1.6rem, 2.8vw, 2.4rem);
	font-weight: 300;
	color: #1a2047;
	line-height: 1.2;
	margin: 0 0 18px;
}

.amarte-home-cta__title strong {
	font-weight: 800;
	color: var(--amarte-cor-principal, #28326a);
}

.amarte-home-cta__desc {
	font-size: 1rem;
	color: #555;
	line-height: 1.75;
	margin: 0 auto;
	max-width: 640px;
}

.amarte-home-cta__actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex-shrink: 0;
}

.amarte-home-cta__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 6px;
	font-size: 0.9rem;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	transition: filter 0.2s, transform 0.2s;
}
.amarte-home-cta__btn:hover {
	filter: brightness(1.1);
	transform: translateY(-2px);
}
.amarte-home-cta__btn svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.amarte-home-cta__btn--primary {
	background: var(--amarte-cor-principal, #28326a);
	color: #fff;
}

.amarte-home-cta__btn--secondary {
	background: transparent;
	color: var(--amarte-cor-principal, #28326a);
	border: 1.5px solid var(--amarte-cor-principal, #28326a);
	justify-content: center;
}
.amarte-home-cta__btn--secondary:hover {
	background: var(--amarte-cor-principal, #28326a);
	color: #fff;
}

@media (max-width: 900px) {
	.amarte-home-cta__inner {
		grid-template-columns: 1fr;
		gap: 36px;
	}
	.amarte-home-cta__actions {
		flex-direction: row;
		flex-wrap: wrap;
	}
}

@media (max-width: 600px) {
	.amarte-home-cta {
		padding: 60px 24px;
	}
	.amarte-home-cta__actions {
		flex-direction: column;
	}
	.amarte-home-cta__btn {
		justify-content: center;
	}
}

/* ════════════════════════════════════════════════════
   BLOCO "POR QUE ESCOLHER" — VERSÃO 2 (moderno: logo + lista numerada)
════════════════════════════════════════════════════ */

.amarte-porque-v2 {
	position: relative;
	padding: 100px 0;
	overflow: hidden;
}

/* Fundo com grade sutil */
.amarte-porque-v2::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px),
		linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
	background-size: 28px 28px, 60px 60px, 60px 60px;
	pointer-events: none;
}

/* Blob de glow no canto superior esquerdo */
.amarte-porque-v2::after {
	content: '';
	position: absolute;
	top: -80px;
	left: -80px;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: radial-gradient(ellipse at center,
		rgba(255, 121, 0, 0.14) 0%,
		transparent 68%
	);
	pointer-events: none;
}

.amarte-porque-v2__inner {
	position: relative;
	max-width: 1420px;
	margin: 0 auto;
	padding: 0 48px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

/* ── ESQUERDA: Logo com aura ─────────────────────────── */
.amarte-porque-v2__logo-wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 460px;
}

/* Blob de glow central */
.amarte-porque-v2__glow {
	position: absolute;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background: radial-gradient(ellipse at center,
		rgba(255,121,0,0.55) 0%,
		rgba(255,121,0,0.18) 45%,
		transparent 70%);
	animation: apv2-pulse 3.4s ease-in-out infinite;
}

/* Anéis orbitais */
.amarte-porque-v2__ring {
	position: absolute;
	border-radius: 50%;
	border: 1px solid rgba(255,121,0,0.22);
}
.apv2-ring-1 {
	width: 300px;
	height: 300px;
	border-color: rgba(255,121,0,0.30);
	animation: apv2-spin 22s linear infinite;
}
.apv2-ring-1::after {
	content: '';
	position: absolute;
	top: -5px;
	left: 50%;
	width: 10px;
	height: 10px;
	margin-left: -5px;
	background: var(--amarte-cor-secundaria, #ff7900);
	border-radius: 50%;
	box-shadow: 0 0 12px 4px rgba(255,121,0,0.7);
}
.apv2-ring-2 {
	width: 380px;
	height: 380px;
	border-color: rgba(255,121,0,0.16);
	animation: apv2-spin 34s linear infinite reverse;
}
.apv2-ring-2::after {
	content: '';
	position: absolute;
	bottom: -5px;
	right: 18%;
	width: 8px;
	height: 8px;
	background: rgba(255,255,255,0.7);
	border-radius: 50%;
	box-shadow: 0 0 8px 3px rgba(255,255,255,0.4);
}
.apv2-ring-3 {
	width: 450px;
	height: 450px;
	border-color: rgba(255,121,0,0.08);
	animation: apv2-spin 50s linear infinite;
}

/* Card glassmorphism da logo */
.amarte-porque-v2__logo-card {
	position: relative;
	z-index: 2;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: linear-gradient(145deg, #e8e8e8 0%, #f8f8f8 50%, #d8d8d8 100%);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(255,255,255,0.60);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px;
	box-shadow:
		0 0 0 1px rgba(255,121,0,0.25),
		0 20px 60px rgba(0,0,0,0.35),
		inset 0 1px 0 rgba(255,255,255,0.15);
}

.amarte-porque-v2__logo-card img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 0 14px rgba(255,121,0,0.5));
}

/* Partículas flutuantes */
.apv2-particle {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}
.apv2-p1 { width:6px; height:6px; background:rgba(255,121,0,0.80); top:14%; left:22%; animation: apv2-float 5.0s ease-in-out infinite; }
.apv2-p2 { width:4px; height:4px; background:rgba(255,255,255,0.60); top:62%; left:12%; animation: apv2-float 6.5s ease-in-out infinite 1.2s; }
.apv2-p3 { width:8px; height:8px; background:rgba(255,121,0,0.45); top:75%; right:16%; animation: apv2-float 4.8s ease-in-out infinite 0.7s; }
.apv2-p4 { width:5px; height:5px; background:rgba(255,255,255,0.50); top:20%; right:20%; animation: apv2-float 7.0s ease-in-out infinite 2.0s; }
.apv2-p5 { width:3px; height:3px; background:rgba(255,121,0,0.70); top:45%; left:7%;  animation: apv2-float 5.6s ease-in-out infinite 0.4s; }

/* ── DIREITA: Cabeçalho + lista ─────────────────────── */
.amarte-porque-v2__content {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.amarte-porque-v2__head {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.amarte-porque-v2__label {
	display: inline-flex;
	align-self: flex-start;
	font-size: 0.70rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--amarte-cor-secundaria, #ff7900);
	background: rgba(255, 121, 0, 0.12);
	border: 1px solid rgba(255, 121, 0, 0.35);
	border-radius: 100px;
	padding: 5px 16px;
}

.amarte-porque-v2__title {
	font-size: clamp(1.9rem, 3.2vw, 2.8rem);
	font-weight: 300;
	color: #fff;
	line-height: 1.15;
	margin: 0;
}

.amarte-porque-v2__title strong {
	font-weight: 800;
	display: block;
}

.amarte-porque-v2__sub {
	font-size: 0.95rem;
	color: rgba(255,255,255,0.62);
	line-height: 1.7;
	margin: 0;
	max-width: 480px;
}

/* Lista numerada */
.amarte-porque-v2__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.amarte-porque-v2__item {
	position: relative;
	padding: 20px;
	cursor: default;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.10);
	border-radius: 10px;
	transition: background 0.3s, border-color 0.3s;
}
.amarte-porque-v2__item:hover {
	background: rgba(255,255,255,0.09);
	border-color: rgba(255,121,0,0.35);
}

/* Linha separadora — escondida no grid */
.amarte-porque-v2__item-line {
	display: none;
}

/* Número + ícone + texto lado a lado */
.amarte-porque-v2__item-num {
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: var(--amarte-cor-secundaria, #ff7900);
	margin-bottom: 10px;
	opacity: 0.75;
}

.amarte-porque-v2__item-body {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.amarte-porque-v2__item-icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: rgba(255,121,0,0.12);
	border: 1px solid rgba(255,121,0,0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--amarte-cor-secundaria, #ff7900);
	transition: background 0.3s, transform 0.3s;
}
.amarte-porque-v2__item:hover .amarte-porque-v2__item-icon {
	background: rgba(255,121,0,0.22);
	transform: scale(1.08);
}
.amarte-porque-v2__item-icon svg {
	width: 22px;
	height: 22px;
}

.amarte-porque-v2__item-title {
	display: block;
	font-size: 0.95rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 4px;
	transition: color 0.3s;
}
.amarte-porque-v2__item:hover .amarte-porque-v2__item-title {
	color: var(--amarte-cor-secundaria, #ff7900);
}

.amarte-porque-v2__item-desc {
	font-size: 0.82rem;
	color: rgba(255,255,255,0.60);
	line-height: 1.6;
	margin: 0;
}

/* ── Keyframes ───────────────────────────────────────── */
@keyframes apv2-pulse {
	0%, 100% { transform: scale(1);   opacity: 1; }
	50%       { transform: scale(1.18); opacity: 0.75; }
}

@keyframes apv2-spin {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}

@keyframes apv2-float {
	0%, 100% { transform: translateY(0) scale(1); }
	50%      { transform: translateY(-12px) scale(1.15); }
}

/* ── Responsivo ──────────────────────────────────────── */
@media (max-width: 1100px) {
	.amarte-porque-v2__inner {
		gap: 56px;
	}
	.amarte-porque-v2__ring.apv2-ring-3 {
		width: 380px;
		height: 380px;
	}
}

@media (max-width: 860px) {
	.amarte-porque-v2__inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	.amarte-porque-v2__logo-wrap {
		height: 320px;
	}
	.amarte-porque-v2__ring.apv2-ring-2 { width:300px; height:300px; }
	.amarte-porque-v2__ring.apv2-ring-3 { width:350px; height:350px; }
	.amarte-porque-v2__glow { width:220px; height:220px; }
	.amarte-porque-v2__logo-card { width:160px; height:160px; }
	.amarte-porque-v2__list {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 480px) {
	.amarte-porque-v2__list {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {
	.amarte-porque-v2 {
		padding: 70px 0;
	}
	.amarte-porque-v2__inner {
		padding: 0 20px;
		gap: 36px;
	}
	.amarte-porque-v2__logo-wrap { height: 260px; }
	.amarte-porque-v2__ring.apv2-ring-1 { width:220px; height:220px; }
	.amarte-porque-v2__ring.apv2-ring-2 { width:280px; height:280px; }
	.amarte-porque-v2__ring.apv2-ring-3 { display: none; }
	.amarte-porque-v2__glow { width:180px; height:180px; }
	.amarte-porque-v2__logo-card { width:130px; height:130px; padding:22px; }
}
