.gsv-wrap,
.gsv-wrap *,
.gsv-wrap *::before,
.gsv-wrap *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.gsv-wrap {
	--gsv-accent: #5D0200;
	--gsv-radius: 16px;
	--gsv-text-fs: 16px;
	--gsv-features-cols: 2;
	--gsv-gallery-cols: 2;
	--gsv-font: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
	--gsv-ink: #17171a;
	--gsv-muted: #6f6f76;
	--gsv-border: #ececef;
	--gsv-panel: #f5f4f3;
	--gsv-dark: #17171a;

	width: 100%;
	font-family: var(--gsv-font);
	color: var(--gsv-ink);
}

.gsv-wrap svg { display: inline-block; overflow: visible; width: 100%; height: 100%; }
.gsv-wrap img { max-width: 100%; display: block; }
.gsv-wrap a { text-decoration: none; color: inherit; }
.gsv-wrap ul { list-style: none; }

/* ---------- Layout de 2 colunas ---------- */
.gsv-layout {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 46px;
	align-items: start;
}

.gsv-layout-no-sidebar { grid-template-columns: 1fr; }

.gsv-main { min-width: 0; display: flex; flex-direction: column; gap: 2.4em; }

/* ---------- Capa (imagem à esquerda, no topo) ---------- */
.gsv-cover {
	width: 100%;
	aspect-ratio: 16 / 11;
	border-radius: var(--gsv-radius);
	overflow: hidden;
}

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

/* ---------- Título ---------- */
.gsv-title {
	font-size: clamp(24px, 3.6vw, var(--gsv-title-fs, 32px));
	font-weight: 700;
	letter-spacing: -0.015em;
}

.gsv-highlight {
	color: var(--gsv-accent);
}

/* ---------- "Sobre o serviço" ---------- */
.gsv-about { display: flex; flex-direction: column; gap: 14px; }

.gsv-about-heading {
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.gsv-subtitle {
	font-size: var(--gsv-text-fs);
	line-height: 1.85;
	color: var(--gsv-muted);
	font-weight: 400;
}

.gsv-subtitle p { margin: 0 0 1.2em; }
.gsv-subtitle p:last-child { margin-bottom: 0; }

/* ---------- Blocos de conteúdo ---------- */
.gsv-block {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity .6s ease, transform .6s ease;
}

.gsv-block.gsv-in-view {
	opacity: 1;
	transform: translateY(0);
}

.gsv-block-texto {
	font-size: var(--gsv-text-fs);
	line-height: 1.85;
	color: #2c2c2e;
}

.gsv-block-texto p { margin: 0 0 1.2em; }
.gsv-block-texto p:last-child { margin-bottom: 0; }

.gsv-block-imagem img {
	width: 100%;
	border-radius: var(--gsv-radius);
	box-shadow: 0 14px 34px rgba(20,20,25,0.1);
}

.gsv-block-imagem figcaption {
	margin-top: 10px;
	font-size: 13px;
	color: var(--gsv-muted);
	text-align: center;
	font-style: italic;
}

/* ---------- Destaques (cartões com ícone + título + texto) ---------- */
.gsv-features-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

.gsv-feature-card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	background: #fff;
	border: 1px solid var(--gsv-border);
	border-radius: var(--gsv-radius);
	padding: 22px 20px;
	transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
	flex: 1 1 calc((100% / var(--gsv-features-cols)) - 18px);
	max-width: calc((100% / var(--gsv-features-cols)) - 18px);
	min-width: 220px;
}

.gsv-feature-card:hover {
	border-color: var(--gsv-accent);
	box-shadow: 0 14px 28px rgba(20,20,25,0.08);
	transform: translateY(-3px);
}

.gsv-feature-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--gsv-accent);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 4px;
}

.gsv-feature-icon .dashicons { font-size: 21px; width: 21px; height: 21px; }

.gsv-feature-title { font-size: 15.5px; font-weight: 700; line-height: 1.35; }

.gsv-feature-text { font-size: 13.5px; line-height: 1.6; color: var(--gsv-muted); }

/* ---------- Galeria (2 ou 3 imagens por linha) ---------- */
.gsv-gallery-grid {
	display: grid;
	grid-template-columns: repeat(var(--gsv-gallery-cols), 1fr);
	gap: 14px;
}

.gsv-gallery-thumb {
	display: block;
	aspect-ratio: 4 / 3;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--gsv-border);
	cursor: zoom-in;
}

.gsv-gallery-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s cubic-bezier(.22,1,.36,1);
}

.gsv-gallery-thumb:hover img { transform: scale(1.06); }

/* ---------- Vídeos ---------- */
.gsv-video-frame {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: var(--gsv-radius);
	overflow: hidden;
	background: #000;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gsv-video-frame iframe,
.gsv-video-frame video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.gsv-block-video figcaption {
	margin-top: 10px;
	font-size: 13px;
	color: var(--gsv-muted);
	text-align: center;
	font-style: italic;
}

/* ---------- Barra lateral ---------- */
.gsv-sidebar {
	display: flex;
	flex-direction: column;
	gap: 18px;
	position: -webkit-sticky;
	position: sticky;
	top: 24px;
	align-self: start;
	max-height: calc(100vh - 48px);
	overflow-y: auto;
	scrollbar-width: thin;
}

.gsv-widget {
	background: var(--gsv-panel);
	border-radius: 20px;
	padding: 20px;
}

.gsv-widget-title {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 14px;
}

/* Pesquisa */
.gsv-search-form {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #fff;
	border-radius: 999px;
	padding: 6px 6px 6px 18px;
}

.gsv-search-form input {
	flex: 1;
	min-width: 0;
	border: 0;
	background: transparent;
	font-size: 14px;
	font-family: var(--gsv-font);
	color: var(--gsv-ink);
	outline: none;
}

.gsv-search-form input::placeholder { color: #a7a7ad; }

.gsv-search-form button {
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 0;
	background: var(--gsv-accent);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: filter .2s ease;
}

.gsv-search-form button:hover { filter: brightness(1.12); }
.gsv-search-form button svg { width: 16px; height: 16px; }

/* Categorias / Outros Serviços */
.gsv-widget-links + .gsv-widget-links { margin-top: -4px; }

.gsv-link-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.gsv-link-pill {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	background: #fff;
	border-radius: 999px;
	padding: 13px 16px 13px 20px;
	font-size: 14px;
	font-weight: 500;
	color: var(--gsv-ink);
	transition: background .2s ease, color .2s ease;
}

.gsv-link-pill:hover {
	background: var(--gsv-accent);
	color: #fff;
}

.gsv-link-arrow {
	flex-shrink: 0;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--gsv-panel);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .2s ease, color .2s ease;
}

.gsv-link-arrow svg { width: 13px; height: 13px; }

.gsv-link-pill:hover .gsv-link-arrow { background: rgba(255,255,255,0.18); color: #fff; }

/* Caixa "Precisa de ajuda?" */
.gsv-widget-help {
	background: var(--gsv-dark);
	color: #fff;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.gsv-help-heading { font-size: 18px; font-weight: 700; }

.gsv-help-subheading {
	font-size: 13px;
	line-height: 1.5;
	color: rgba(255,255,255,0.6);
	margin-top: -8px;
}

.gsv-help-row {
	display: flex;
	align-items: center;
	gap: 12px;
}

.gsv-help-icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--gsv-accent);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gsv-help-icon svg { width: 18px; height: 18px; }

.gsv-help-text {
	display: flex;
	flex-direction: column;
	font-size: 14.5px;
	line-height: 1.4;
	word-break: break-word;
}

.gsv-help-label {
	font-size: 12px;
	color: rgba(255,255,255,0.55);
}

.gsv-help-text a { font-weight: 600; }

/* ---------- Lightbox ---------- */
.gsv-lightbox-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.92);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 99999;
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s ease;
}

.gsv-lightbox-overlay.is-open { opacity: 1; visibility: visible; }

.gsv-lightbox-overlay img {
	max-width: 92vw;
	max-height: 86vh;
	border-radius: 8px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.gsv-lightbox-close,
.gsv-lightbox-prev,
.gsv-lightbox-next {
	position: absolute;
	background: rgba(255,255,255,0.1);
	border: 1px solid rgba(255,255,255,0.25);
	color: #fff;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 20px;
}

.gsv-lightbox-close { top: 24px; right: 24px; }
.gsv-lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.gsv-lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ---------- Responsivo ---------- */
@media (max-width: 980px) {
	.gsv-layout { grid-template-columns: 1fr; }
	.gsv-sidebar { position: static; }
}

@media (max-width: 640px) {
	.gsv-feature-card { flex-basis: 100%; max-width: 100%; }
	.gsv-gallery-grid { grid-template-columns: 1fr; }
	.gsv-subtitle { font-size: 15px; }
	.gsv-cover { aspect-ratio: 4 / 3; }
}
