/* =========================================================================
   Peres Engenharia — Folha de estilos principal
   ========================================================================= */

:root {
	--bg: #0d1218;
	--bg-alt: #141b23;
	--bg-card: #141b23;
	--bg-soft: #212a33;
	--ink: #eff2f5;
	--muted: #9ea6ae;
	--muted-2: #7d8794;
	--line: #2b343d;
	--brand: #ea6f2f;
	--brand-dark: #d8611f;
	--accent: #1a89c5;
	--radius: 6px;
	--maxw: 1200px;
	--font: 'Inter', system-ui, -apple-system, sans-serif;
	--font-head: 'Oswald', var(--font);
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 90px;
}

body {
	margin: 0;
	font-family: var(--font);
	color: var(--ink);
	background: var(--bg);
	line-height: 1.6;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: var(--accent);
	text-decoration: none;
}

a:hover {
	color: var(--brand);
}

h1, h2, h3, h4 {
	font-family: var(--font-head);
	line-height: 1.2;
	margin: 0 0 0.6em;
	font-weight: 700;
}

.container {
	width: 100%;
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 20px;
}

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

.skip-link {
	position: absolute;
	left: -999px;
	top: 0;
	background: var(--brand);
	color: #fff;
	padding: 10px 16px;
	z-index: 1000;
}

.skip-link:focus {
	left: 10px;
	top: 10px;
}

/* ---------- Botões ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	padding: 0.85em 1.6em;
	border-radius: 10px;
	font-weight: 600;
	font-family: var(--font);
	font-size: 0.95rem;
	line-height: 1;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
	text-align: center;
	justify-content: center;
}

.btn svg {
	flex: none;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn-primary {
	background: var(--brand);
	color: #fff;
}

.btn-primary:hover {
	background: var(--brand-dark);
	color: #fff;
}

.btn-dark {
	background: rgba(255, 255, 255, 0.08);
	color: var(--ink);
	border-color: rgba(255, 255, 255, 0.25);
}

.btn-dark:hover {
	background: rgba(255, 255, 255, 0.16);
	color: var(--ink);
}

.btn-outline {
	background: transparent;
	color: var(--ink);
	border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
	border-color: var(--brand);
	color: var(--brand);
}

.btn-lg {
	padding: 1em 1.9em;
	font-size: 1rem;
}

.btn-sm {
	padding: 0.6em 1.1em;
	font-size: 0.85rem;
}

.link-more {
	display: inline-flex;
	align-items: center;
	gap: 0.4em;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--accent);
}

.link-more:hover {
	color: var(--brand);
}

/* ---------- Cabeçalho ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(10, 13, 18, 0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--line);
}

.header-inner {
	display: flex;
	align-items: center;
	gap: 24px;
	height: 74px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--ink);
	font-family: var(--font-head);
	font-weight: 800;
	font-size: 1.15rem;
	letter-spacing: -0.02em;
}

.site-brand:hover {
	color: var(--ink);
}

.site-brand-text .brand-accent {
	color: var(--accent);
}

.site-brand-mark {
	width: 38px;
	height: 38px;
	border-radius: 9px;
	background: var(--accent);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
}

.site-nav {
	margin-left: auto;
}

.primary-menu {
	display: flex;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-menu a {
	display: block;
	padding: 0.5em 0.85em;
	color: var(--ink);
	font-weight: 500;
	font-size: 0.95rem;
	border-radius: 8px;
}

.primary-menu a:hover {
	color: var(--brand);
	background: rgba(234, 111, 47, 0.08);
}

.primary-menu .menu-item-has-children > a::after {
	content: '▾';
	margin-left: 6px;
	font-size: 0.7em;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

.header-phone {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--ink);
	font-weight: 600;
	font-size: 0.92rem;
	white-space: nowrap;
}

.header-phone .icon {
	color: var(--brand);
	display: inline-flex;
}

.header-phone:hover {
	color: var(--brand);
}

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: 0;
	padding: 10px;
	cursor: pointer;
}

.nav-toggle .bar {
	width: 24px;
	height: 2px;
	background: var(--ink);
	border-radius: 2px;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ---------- Hero ---------- */
.hero {
	position: relative;
	min-height: 82vh;
	display: flex;
	align-items: center;
	background-color: var(--bg-alt);
	background-image: var(--hero-bg);
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(8, 11, 16, 0.94) 20%, rgba(8, 11, 16, 0.72) 60%, rgba(8, 11, 16, 0.45));
}

.hero-content {
	position: relative;
	z-index: 2;
	width: 1200px;
	max-width: none;
	margin: 0;
	padding-top: 60px;
	padding-bottom: 60px;
}

.hero-location {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--muted);
	background: rgba(20, 27, 35, 0.7);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid var(--line);
	padding: 0.45em 0.95em;
	border-radius: 999px;
	font-weight: 500;
	font-size: 0.88rem;
	margin: 0 0 22px;
}

.hero-location svg {
	color: var(--brand);
}

.hero-title {
	font-size: clamp(2.25rem, 5vw, 3.75rem);
	color: var(--ink);
	line-height: 1.05;
	margin-bottom: 0.6em;
	letter-spacing: -0.02em;
	text-transform: uppercase;
}

.hero-title .line-1,
.hero-title .line-2 {
	display: block;
}

.hero-title .line-3 {
	display: block;
	color: var(--accent);
}

.hero-sub {
	color: var(--muted);
	font-size: 1.08rem;
	max-width: 640px;
	margin-bottom: 30px;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 26px;
}

.hero-note {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--muted);
	font-size: 0.9rem;
	margin: 0;
}

.hero-note svg {
	color: var(--brand);
}

/* ---------- Estatísticas ---------- */
.stats {
	background: var(--bg-card);
	border-block: 1px solid var(--line);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	padding: 40px 20px;
}

.stat {
	text-align: center;
}

.stat-num {
	display: block;
	font-family: var(--font-head);
	font-weight: 800;
	font-size: 2.4rem;
	color: var(--accent);
	line-height: 1.1;
	margin-bottom: 6px;
}

.stat-label {
	color: var(--ink);
	font-weight: 500;
	font-size: 0.95rem;
}

/* ---------- Seções ---------- */
.section {
	padding: 80px 0;
}

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

.section-head {
	max-width: 760px;
	margin-bottom: 48px;
}

.section-head.section-head-mt {
	margin-top: 70px;
}

.section-head.text-center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.section-label {
	display: inline-block;
	color: var(--brand);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-weight: 700;
	font-size: 0.8rem;
	margin: 0 0 10px;
}

.section-title {
	font-size: clamp(1.7rem, 3.5vw, 2.5rem);
	margin-bottom: 14px;
	letter-spacing: -0.02em;
	text-transform: uppercase;
}

.section-sub {
	color: var(--muted);
	font-size: 1.02rem;
	margin: 0;
}

/* ---------- Cards de serviço ---------- */
.cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

.service-card {
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
	transform: translateY(-5px);
	border-color: rgba(234, 111, 47, 0.4);
}

.service-card-media {
	position: relative;
	height: 210px;
	overflow: hidden;
}

.service-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-card-media::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 30%, rgba(10, 13, 18, 0.9));
}

.service-icon {
	position: absolute;
	z-index: 2;
	bottom: 14px;
	left: 18px;
	width: 46px;
	height: 46px;
	border-radius: 10px;
	background: var(--accent);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
}

.service-card-body {
	padding: 22px 20px 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}

.service-card-title {
	font-size: 1.3rem;
	margin: 0;
}

.service-card-text {
	color: var(--muted);
	margin: 0;
}

.service-list {
	list-style: none;
	margin: 0 0 8px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.service-list li {
	display: flex;
	gap: 9px;
	align-items: flex-start;
	color: var(--muted);
	font-size: 0.93rem;
}

.service-list svg {
	color: var(--brand);
	flex: none;
	margin-top: 4px;
}

.service-card .link-more {
	margin-top: auto;
}

/* ---------- Projetos ---------- */
.projects-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 26px;
}

.project-card {
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform 0.25s ease;
}

.project-card:hover {
	transform: translateY(-4px);
}

.project-card-media {
	position: relative;
	height: 230px;
	overflow: hidden;
}

.project-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.project-tag {
	position: absolute;
	top: 14px;
	left: 14px;
	background: rgba(234, 111, 47, 0.9);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 0.4em 0.8em;
	border-radius: 6px;
}

.project-card-body {
	padding: 20px;
}

.project-card-title {
	font-size: 1.15rem;
	margin-bottom: 8px;
}

.project-card-text {
	color: var(--muted);
	font-size: 0.94rem;
	margin: 0;
}

/* ---------- Sobre ---------- */
.about-wrap {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 48px;
	align-items: start;
}

.about-text {
	color: var(--muted);
	margin: 0 0 16px;
}

.value-card {
	display: flex;
	gap: 16px;
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 20px;
	margin-bottom: 16px;
}

.value-icon {
	width: 48px;
	height: 48px;
	flex: none;
	border-radius: 10px;
	background: var(--accent);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
}

.value-title {
	font-size: 1.1rem;
	margin: 0 0 6px;
}

.value-text {
	color: var(--muted);
	font-size: 0.93rem;
	margin: 0;
}

/* ---------- Diferenciais ---------- */
.diff-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.diff-card {
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 26px 22px;
	transition: transform 0.25s ease, border-color 0.25s ease;
}

.diff-card:hover {
	transform: translateY(-4px);
	border-color: rgba(234, 111, 47, 0.4);
}

.diff-icon {
	width: 48px;
	height: 48px;
	border-radius: 10px;
	background: rgba(234, 111, 47, 0.16);
	color: var(--brand);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	margin-bottom: 16px;
}

.diff-title {
	font-size: 1.15rem;
	margin-bottom: 8px;
}

.diff-text {
	color: var(--muted);
	font-size: 0.93rem;
	margin: 0;
}

/* ---------- Setores ---------- */
.trust-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 18px;
	margin-bottom: 40px;
}

.trust-card {
	background: var(--bg-soft);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 26px 16px;
	text-align: center;
	min-height: 148px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.trust-card:hover {
	transform: translateY(-4px);
	border-color: rgba(26, 137, 197, 0.5);
}

.trust-icon {
	color: var(--accent);
	font-size: 30px;
	display: inline-flex;
	margin-bottom: 14px;
}

.trust-label {
	display: block;
	color: var(--ink);
	font-weight: 600;
	font-size: 0.92rem;
}

.sector-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.sector-tag {
	background: var(--bg-card);
	border: 1px solid var(--line);
	color: var(--muted);
	padding: 0.65em 1.2em;
	border-radius: 999px;
	font-weight: 500;
	font-size: 0.92rem;
	transition: background 0.2s ease, color 0.2s ease;
}

.sector-tag:hover {
	background: rgba(234, 111, 47, 0.12);
	color: var(--ink);
	border-color: rgba(234, 111, 47, 0.4);
}

/* ---------- Contato ---------- */
.contact-box {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 48px;
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: 18px;
	padding: 48px;
}

.contact-left,
.contact-right {
	min-width: 0;
}

.contact-text {
	color: var(--muted);
	margin-bottom: 26px;
}

.contact-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 22px;
}

.social-links {
	display: flex;
	gap: 12px;
}

.social-links a {
	width: 42px;
	height: 42px;
	border-radius: 9px;
	background: var(--bg-soft);
	border: 1px solid var(--line);
	color: var(--muted);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}

.social-links a:hover {
	color: var(--brand);
	border-color: rgba(234, 111, 47, 0.4);
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 20px;
	border-left: 1px solid var(--line);
	padding-left: 40px;
	min-width: 0;
}

.contact-row {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	min-width: 0;
}

.contact-row > div {
	min-width: 0;
}

.contact-icon {
	width: 20px;
	height: 20px;
	flex: none;
	margin-top: 4px;
	color: var(--accent);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.contact-row strong {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--muted);
	margin-bottom: 4px;
}

.contact-row a,
.contact-row span {
	display: block;
	color: var(--ink);
	font-weight: 600;
	overflow-wrap: anywhere;
	word-break: break-word;
}

/* ---------- Rodapé ---------- */
.site-footer {
	background: #07090d;
	border-top: 1px solid var(--line);
}

.footer-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 32px 20px;
	flex-wrap: wrap;
}

.footer-tagline {
	color: var(--muted);
	margin: 0;
	max-width: 460px;
	font-size: 0.92rem;
}

.footer-bar {
	border-top: 1px solid var(--line);
}

.footer-bar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px;
	flex-wrap: wrap;
}

.footer-copy {
	color: var(--muted-2);
	font-size: 0.85rem;
	margin: 0;
}

.footer-menu {
	display: flex;
	gap: 16px;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
}

.footer-menu a {
	color: var(--muted-2);
	font-size: 0.85rem;
}

.footer-menu a:hover {
	color: var(--brand);
}

/* ---------- Páginas internas ---------- */
.page-hero {
	padding: 70px 0;
	background: linear-gradient(180deg, var(--bg-alt), var(--bg));
	border-bottom: 1px solid var(--line);
}

.page-title {
	font-size: clamp(1.8rem, 4vw, 2.6rem);
	margin: 0;
}

.page-kicker {
	color: var(--brand);
	font-weight: 700;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.page-meta {
	color: var(--muted-2);
	margin: 10px 0 0;
}

.page-wrap {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 48px;
	padding-top: 50px;
	padding-bottom: 70px;
	align-items: start;
}

.single-content {
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 32px;
}

.single-content p {
	color: var(--muted);
}

.single-content img {
	border-radius: 10px;
}

.single-thumb {
	margin-bottom: 24px;
}

.single-thumb img {
	width: 100%;
	border-radius: 10px;
}

.post-navigation {
	margin-top: 30px;
}

.post-navigation a {
	color: var(--brand);
}

.widget-area {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.widget {
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 24px;
}

.widget-title {
	font-size: 1.1rem;
	margin-bottom: 14px;
}

.widget ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.widget ul li {
	margin-bottom: 10px;
}

/* ---------- Post grid ---------- */
.post-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 26px;
}

.post-card {
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
}

.post-card-thumb {
	display: block;
	height: 200px;
	overflow: hidden;
}

.post-card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-card-body {
	padding: 20px;
}

.post-card-meta {
	color: var(--brand);
	font-size: 0.8rem;
	font-weight: 600;
}

.post-card-title {
	font-size: 1.15rem;
}

.post-card-excerpt {
	color: var(--muted);
	font-size: 0.93rem;
	margin-bottom: 14px;
}

.pagination {
	margin: 40px 0;
}

.nav-links {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border-radius: 9px;
	background: var(--bg-card);
	border: 1px solid var(--line);
	color: var(--ink);
}

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

/* ---------- 404 ---------- */
.error-404 {
	text-align: center;
	padding: 100px 20px;
}

.error-code {
	font-family: var(--font-head);
	font-weight: 800;
	font-size: clamp(4rem, 12vw, 7rem);
	color: var(--brand);
	line-height: 1;
	margin: 0;
}

.error-text {
	color: var(--muted);
	max-width: 480px;
	margin: 0 auto 30px;
}

.error-actions {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ---------- Comentários ---------- */
.comments-area {
	margin-top: 40px;
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 28px;
}

.comment-list {
	list-style: none;
	margin: 0 0 20px;
	padding: 0;
}

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

.comment-author img {
	border-radius: 50%;
}

.comment-form label {
	display: block;
	color: var(--muted);
	margin-bottom: 6px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: 12px;
	border-radius: 9px;
	border: 1px solid var(--line);
	background: var(--bg-soft);
	color: var(--ink);
	font-family: var(--font);
	margin-bottom: 16px;
}

/* ---------- Responsivo ---------- */
@media (max-width: 1024px) {
	.trust-grid {
		grid-template-columns: repeat(3, 1fr);
	}

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

	.header-phone {
		display: none;
	}
}

@media (max-width: 860px) {
	.site-nav {
		position: fixed;
		top: 74px;
		right: 0;
		left: 0;
		background: var(--bg-alt);
		border-bottom: 1px solid var(--line);
		padding: 16px 20px;
		display: none;
		box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
	}

	.site-nav.open {
		display: block;
	}

	.primary-menu {
		flex-direction: column;
	}

	.nav-toggle {
		display: inline-flex;
	}

	.header-actions {
		margin-left: auto;
	}

	.about-wrap,
	.contact-box {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.contact-info {
		border-left: 0;
		border-top: 1px solid var(--line);
		padding-left: 0;
		padding-top: 30px;
	}

	.page-wrap {
		grid-template-columns: 1fr;
	}

	.projects-grid,
	.post-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 680px) {
	.section {
		padding: 60px 0;
	}

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

	.cards-grid,
	.diff-grid {
		grid-template-columns: 1fr;
	}

	.trust-grid {
		grid-template-columns: repeat(1, 1fr);
	}

	.contact-box {
		padding: 26px;
	}

	.contact-actions {
		display: flex;
		flex-direction: column;
		align-items: stretch;
	}

	.contact-actions .btn {
		width: 100%;
	}

	.header-cta {
		display: none;
	}

	.hero-actions .btn {
		width: 100%;
	}
}

@media (max-width: 420px) {
	.contact-box {
		padding: 20px;
	}
}
