/* =========================================================
   GONÃ‡ALVES & CARICATTI
   CSS PRINCIPAL
========================================================= */

:root {
    --gc-black: #070707;
    --gc-black-2: #0d0d0d;
    --gc-black-3: #141414;
    --gc-gold: #b78a38;
    --gc-gold-light: #d0a653;
    --gc-white: #ffffff;
    --gc-off-white: #f6f4ef;
    --gc-gray-100: #f5f5f5;
    --gc-gray-300: #d8d8d8;
    --gc-gray-500: #8a8a8a;
    --gc-text: #191919;
    --gc-border: rgba(183, 138, 56, 0.34);
    --gc-container: 1280px;
    --gc-header-height: 92px;
    --gc-radius: 4px;
    --gc-transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--gc-white);
    color: var(--gc-text);
    font-family: "Urbanist", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.gc-menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.screen-reader-text:focus {
    position: fixed !important;
    top: 12px;
    left: 12px;
    z-index: 999999;
    width: auto;
    height: auto;
    padding: 12px 16px;
    background: white;
    color: black;
    clip: auto;
}

.gc-container {
    width: min(calc(100% - 48px), var(--gc-container));
    margin-inline: auto;
}

.gc-site-main {
    min-height: 55vh;
}

.gc-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--gc-gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.gc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 22px;
    border: 1px solid var(--gc-gold);
    border-radius: var(--gc-radius);
    background: var(--gc-gold);
    color: var(--gc-white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition:
        background var(--gc-transition),
        border-color var(--gc-transition),
        color var(--gc-transition),
        transform var(--gc-transition);
}

.gc-btn:hover {
    background: var(--gc-gold-light);
    border-color: var(--gc-gold-light);
    color: var(--gc-black);
    transform: translateY(-1px);
}

.gc-btn-outline {
    background: transparent;
    color: var(--gc-gold-light);
}

.gc-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gc-gold);
    font-weight: 700;
}

.gc-text-link i {
    transition: transform var(--gc-transition);
}

.gc-text-link:hover i {
    transform: translateX(4px);
}

/* HEADER */
.gc-header {
    position: relative;
    z-index: 1000;
    background: var(--gc-black);
    color: var(--gc-white);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.gc-header-inner {
    min-height: var(--gc-header-height);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 36px;
}

.gc-brand-link,
.gc-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

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

.gc-brand-link .custom-logo {
    width: auto;
    max-height: 58px;
}

.gc-brand-monogram {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border: 1px solid var(--gc-gold);
    color: var(--gc-gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    line-height: 1;
}

.gc-brand-text {
    display: flex;
    flex-direction: column;
}

.gc-brand-text strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.gc-brand-text small {
    margin-top: 3px;
    font-size: 8px;
    letter-spacing: 0.32em;
}

.gc-desktop-nav {
    display: flex;
    justify-content: center;
}

.gc-menu,
.gc-desktop-nav ul {
    display: flex;
    align-items: center;
    gap: 34px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.gc-desktop-nav li {
    position: relative;
}

.gc-desktop-nav a {
    display: block;
    padding: 33px 0 30px;
    color: var(--gc-white);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    transition: color var(--gc-transition);
}

.gc-desktop-nav a:hover,
.gc-desktop-nav .current-menu-item > a {
    color: var(--gc-gold-light);
}

.gc-desktop-nav .sub-menu {
    position: absolute;
    top: calc(100% - 10px);
    left: 0;
    min-width: 260px;
    display: block;
    padding: 10px 0;
    background: var(--gc-black-2);
    border: 1px solid rgba(183,138,56,.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .2s ease;
}

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

.gc-desktop-nav .sub-menu a {
    padding: 10px 18px;
    text-transform: none;
}

.gc-mobile-toggle {
    width: 46px;
    height: 46px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    border: 1px solid var(--gc-border);
    background: transparent;
}

.gc-mobile-toggle span {
    width: 21px;
    height: 1px;
    background: var(--gc-gold-light);
    transition: .25s ease;
}

.gc-mobile-toggle.is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.gc-mobile-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.gc-mobile-toggle.is-active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.gc-mobile-menu {
    background: var(--gc-black-2);
    border-top: 1px solid rgba(255,255,255,.08);
}

.gc-mobile-menu-inner {
    width: min(calc(100% - 32px), var(--gc-container));
    margin-inline: auto;
    padding: 18px 0 26px;
}

.gc-mobile-menu-list,
.gc-mobile-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.gc-mobile-menu a {
    display: block;
    padding: 13px 0;
    color: white;
}

.gc-mobile-menu .sub-menu {
    padding-left: 18px;
}

.gc-mobile-menu .sub-menu a {
    color: var(--gc-gray-300);
}

.gc-mobile-whatsapp {
    width: 100%;
    margin-top: 18px;
}

/* FOOTER */
.gc-footer {
    padding: 70px 0 24px;
    background: var(--gc-black);
    color: var(--gc-gray-300);
}

.gc-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.3fr .8fr 1.1fr;
    gap: 54px;
}

.gc-footer-brand p {
    max-width: 360px;
    margin: 22px 0 0;
    color: var(--gc-gray-500);
}

.gc-footer-column h2 {
    margin: 0 0 20px;
    color: var(--gc-gold-light);
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.gc-footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.gc-footer-column li + li {
    margin-top: 9px;
}

.gc-footer-column a {
    transition: color var(--gc-transition);
}

.gc-footer-column a:hover {
    color: var(--gc-gold-light);
}

.gc-footer-contact p {
    display: flex;
    gap: 10px;
    margin: 0 0 12px;
}

.gc-footer-contact i {
    color: var(--gc-gold);
}

.gc-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 55px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.09);
}

.gc-footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: var(--gc-gray-500);
}

.gc-footer-social {
    display: flex;
    gap: 16px;
}

.gc-footer-social a {
    color: var(--gc-gold-light);
    font-size: 18px;
}

/* INTERNAS */
.gc-page-header,
.gc-listing-hero,
.gc-single-header {
    padding: 78px 0;
    background: var(--gc-black);
    color: var(--gc-white);
}

.gc-page-header h1,
.gc-listing-hero h1,
.gc-single-header h1 {
    max-width: 900px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.08;
}

.gc-page-content,
.gc-simple-content,
.gc-content-area,
.gc-single-content,
.gc-posts-section,
.gc-search-results {
    padding-top: 70px;
    padding-bottom: 70px;
}

.gc-simple-content,
.gc-single-content {
    max-width: 900px;
}

.gc-post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.gc-post-card {
    background: var(--gc-white);
    border: 1px solid #e7e4dd;
}

.gc-post-card-image {
    display: block;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: #ece9e2;
}

.gc-post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.gc-post-card:hover .gc-post-card-image img {
    transform: scale(1.025);
}

.gc-post-card-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #171717, #292929);
}

.gc-post-card-body {
    padding: 26px;
}

.gc-post-card-meta,
.gc-post-meta {
    color: var(--gc-gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.gc-post-card h2 {
    margin: 10px 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    line-height: 1.2;
}

.gc-post-card p {
    color: #606060;
}

.gc-single-header-inner {
    max-width: 980px;
}

.gc-post-meta {
    display: flex;
    gap: 18px;
    margin-bottom: 16px;
}

.gc-single-excerpt {
    max-width: 800px;
    margin: 22px 0 0;
    color: var(--gc-gray-300);
    font-size: 20px;
}

.gc-single-image {
    margin-top: 50px;
}

.gc-single-image img {
    width: 100%;
    max-height: 650px;
    object-fit: cover;
}

.gc-single-content {
    font-size: 18px;
}

.gc-single-content h2,
.gc-single-content h3 {
    margin-top: 42px;
}

.gc-search-item {
    max-width: 900px;
    padding: 28px 0;
    border-bottom: 1px solid #e1ddd5;
}

.gc-search-type {
    color: var(--gc-gold);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.gc-empty-state {
    padding: 60px 0;
}

.search-form {
    display: flex;
    width: min(100%, 620px);
    margin-top: 24px;
}

.search-form label {
    flex: 1;
}

.search-field {
    width: 100%;
    min-height: 50px;
    padding: 0 16px;
    border: 1px solid #d6d2ca;
}

.search-submit {
    min-height: 50px;
    padding: 0 20px;
    border: 0;
    background: var(--gc-gold);
    color: white;
}

/* 404 */
.gc-404-section {
    min-height: 68vh;
    display: grid;
    place-items: center;
    padding: 80px 0;
    background: var(--gc-black);
    color: white;
}

.gc-404-inner {
    max-width: 800px;
    text-align: center;
}

.gc-404-number {
    display: block;
    margin-bottom: -8px;
    color: rgba(183,138,56,.28);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(110px, 20vw, 220px);
    line-height: .8;
}

.gc-404-inner h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 400;
}

.gc-404-inner p {
    color: var(--gc-gray-300);
}

.gc-404-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

/* RESPONSIVO */
@media (max-width: 1100px) {
    .gc-desktop-nav,
    .gc-header-cta {
        display: none;
    }

    .gc-header-inner {
        grid-template-columns: 1fr auto;
    }

    .gc-mobile-toggle {
        display: flex;
    }

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

    .gc-post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    :root {
        --gc-header-height: 74px;
    }

    .gc-container {
        width: min(calc(100% - 30px), var(--gc-container));
    }

    .gc-brand-monogram {
        width: 43px;
        height: 43px;
        font-size: 16px;
    }

    .gc-brand-text strong {
        font-size: 13px;
    }

    .gc-brand-text small {
        font-size: 6px;
        letter-spacing: .22em;
    }

    .gc-page-header,
    .gc-listing-hero,
    .gc-single-header {
        padding: 54px 0;
    }

    .gc-page-content,
    .gc-simple-content,
    .gc-content-area,
    .gc-single-content,
    .gc-posts-section,
    .gc-search-results {
        padding-top: 45px;
        padding-bottom: 45px;
    }

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

    .gc-footer {
        padding-top: 48px;
    }

    .gc-footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .gc-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 38px;
    }

    .gc-single-content {
        font-size: 17px;
    }

    .search-form {
        flex-direction: column;
        gap: 10px;
    }

    .search-submit {
        width: 100%;
    }
}

/* =========================================================
   HOME
   HERO PRINCIPAL
========================================================= */

.gc-home-hero {
	position: relative;
	width: 100%;

	background:
		radial-gradient(
			circle at 76% 40%,
			rgba(180, 134, 49, 0.10),
			transparent 27%
		),
		#050505;

	color: #ffffff;

	overflow: hidden;
}


/* =========================================================
   CONTAINER PRINCIPAL
========================================================= */

.gc-home-hero-container {
	position: relative;

	min-height: 555px;

	display: grid;

	grid-template-columns:
		minmax(0, 1.12fr)
		minmax(390px, 0.88fr);

	align-items: center;

	gap: 30px;
}


/* =========================================================
   CONTEÚDO ESQUERDO
========================================================= */

.gc-home-hero-content {
	position: relative;
	z-index: 5;

	width: 100%;
	max-width: 690px;

	padding:
		52px
		0
		48px;
}


/* =========================================================
   LINHA SUPERIOR
========================================================= */

.gc-home-hero-eyebrow {
	display: inline-block;

	margin-bottom: 15px;

	color: #c69743;

	font-size: 12px;

	font-weight: 700;

	line-height: 1.2;

	letter-spacing: 0.15em;

	text-transform: uppercase;
}


/* =========================================================
   TÍTULO PRINCIPAL
========================================================= */

.gc-home-hero-title {
	margin: 0;

	font-family:
		Georgia,
		"Times New Roman",
		serif;

	font-size: clamp(
		44px,
		4vw,
		63px
	);

	font-weight: 400;

	line-height: 1.04;

	letter-spacing: -0.025em;

	text-transform: uppercase;
}


/* LINHAS CONTROLADAS */

.gc-home-hero-line {
	display: block;
	white-space: nowrap;
}


.gc-home-hero-line-white {
	color: #ffffff;
}


.gc-home-hero-line-gold {
	color: #c69743;
}


/* =========================================================
   COPY
========================================================= */

.gc-home-hero-copy {
	width: 100%;
	max-width: 620px;

	margin-top: 25px;
}


.gc-home-hero-copy p {
	margin:
		0
		0
		9px;

	color: #c9c9c9;

	font-size: 14px;

	font-weight: 400;

	line-height: 1.55;
}


.gc-home-hero-copy p:last-child {
	margin-bottom: 0;
}


/* =========================================================
   BOTÕES
========================================================= */

.gc-home-hero-buttons {
	display: flex;

	align-items: center;

	flex-wrap: nowrap;

	gap: 16px;

	margin-top: 28px;
}


.gc-home-hero-btn {
	min-height: 48px;

	display: inline-flex;

	align-items: center;
	justify-content: center;

	gap: 10px;

	padding:
		0
		20px;

	border-radius: 2px;

	font-size: 11px;

	font-weight: 700;

	letter-spacing: 0.025em;

	text-transform: uppercase;

	white-space: nowrap;

	transition:
		background-color 0.25s ease,
		border-color 0.25s ease,
		color 0.25s ease,
		transform 0.25s ease;
}


/* BOTÃO PRINCIPAL */

.gc-home-hero-btn-primary {
	border:
		1px solid
		#b88735;

	background:
		linear-gradient(
			135deg,
			#a77527,
			#c69743
		);

	color: #ffffff;
}


.gc-home-hero-btn-primary:hover {
	background:
		linear-gradient(
			135deg,
			#bd8c38,
			#d0a85a
		);

	color: #ffffff;

	transform: translateY(-2px);
}


/* BOTÃO SECUNDÁRIO */

.gc-home-hero-btn-secondary {
	border:
		1px solid
		rgba(
			198,
			151,
			67,
			0.55
		);

	background:
		transparent;

	color: #ffffff;
}


.gc-home-hero-btn-secondary:hover {
	border-color: #c69743;

	background:
		rgba(
			198,
			151,
			67,
			0.08
		);

	color: #c69743;

	transform: translateY(-2px);
}


.gc-home-hero-btn i {
	font-size: 15px;
}


/* =========================================================
   ESTÁTUA
========================================================= */

.gc-home-hero-image {
	position: relative;

	align-self: stretch;

	display: flex;

	align-items: flex-end;
	justify-content: center;

	min-height: 555px;
}


/* LUZ DOURADA */

.gc-home-hero-image::before {
	content: "";

	position: absolute;

	width: 430px;
	height: 430px;

	left: 52%;
	top: 46%;

	transform:
		translate(
			-50%,
			-50%
		);

	border-radius: 50%;

	background:
		radial-gradient(
			circle,
			rgba(
				190,
				144,
				63,
				0.16
			)
			0%,
			rgba(
				190,
				144,
				63,
				0.05
			)
			43%,
			transparent
			70%
		);

	filter: blur(12px);
}


/* TRANSIÇÃO ENTRE TEXTO E IMAGEM */

.gc-home-hero-image::after {
	content: "";

	position: absolute;

	inset: 0;

	z-index: 2;

	pointer-events: none;

	background:
		linear-gradient(
			90deg,
			#050505
			0%,
			rgba(
				5,
				5,
				5,
				0.65
			)
			10%,
			rgba(
				5,
				5,
				5,
				0.15
			)
			26%,
			transparent
			42%
		);
}


/* IMAGEM */

.gc-home-hero-image img {
	position: relative;
	z-index: 1;

	width: auto;

	height: 525px;

	max-width: 100%;

	object-fit: contain;

	object-position:
		center
		bottom;

	filter:
		contrast(1.05)
		saturate(0.94)
		brightness(0.94);
}


/* =========================================================
   FAIXA INFERIOR
========================================================= */

.gc-home-hero-benefits {
	position: relative;
	z-index: 10;

	min-height: 82px;

	display: flex;

	align-items: center;

	background:
		linear-gradient(
			90deg,
			#080808,
			#0d0d0d,
			#080808
		);

	border-top:
		1px solid
		rgba(
			198,
			151,
			67,
			0.18
		);

	border-bottom:
		1px solid
		rgba(
			198,
			151,
			67,
			0.16
		);
}


.gc-home-hero-benefits-grid {
	display: grid;

	grid-template-columns:
		repeat(
			4,
			minmax(
				0,
				1fr
			)
		);

	align-items: stretch;
}


/* ITEM */

.gc-home-hero-benefit {
	position: relative;

	min-height: 82px;

	display: flex;

	align-items: center;

	justify-content: center;

	gap: 13px;

	padding:
		0
		20px;
}


/* DIVISORES */

.gc-home-hero-benefit:not(:last-child)::after {
	content: "";

	position: absolute;

	top: 20px;
	right: 0;

	width: 1px;
	height: 42px;

	background:
		rgba(
			198,
			151,
			67,
			0.20
		);
}


/* ÍCONES */

.gc-home-hero-benefit-icon {
	width: 38px;
	height: 38px;

	display: grid;

	place-items: center;

	flex-shrink: 0;

	color: #c69743;

	font-size: 25px;
}


/* TEXTO */

.gc-home-hero-benefit span {
	color: #eeeeee;

	font-size: 10px;

	font-weight: 600;

	line-height: 1.35;

	letter-spacing: 0.035em;
}


/* =========================================================
   DESKTOP MENOR
========================================================= */

@media (
	max-width: 1250px
) {

	.gc-home-hero-container {
		grid-template-columns:
			minmax(0, 1fr)
			390px;

		gap: 20px;
	}


	.gc-home-hero-title {
		font-size: 50px;
	}


	.gc-home-hero-image img {
		height: 490px;
	}

}


/* =========================================================
   TABLET
========================================================= */

@media (
	max-width: 1100px
) {

	.gc-home-hero-container {
		grid-template-columns:
			minmax(0, 1fr)
			340px;
	}


	.gc-home-hero-title {
		font-size: 45px;
	}


	.gc-home-hero-image img {
		height: 450px;
	}


	.gc-home-hero-btn {
		font-size: 10px;

		padding:
			0
			15px;
	}

}


/* =========================================================
   MOBILE
========================================================= */

@media (
	max-width: 767px
) {

	.gc-home-hero-container {
		min-height: auto;

		display: flex;

		flex-direction: column;

		gap: 0;
	}


	/* CONTEÚDO */

	.gc-home-hero-content {
		width: 100%;
		max-width: none;

		padding:
			42px
			0
			26px;
	}


	/* EYEBROW */

	.gc-home-hero-eyebrow {
		margin-bottom: 12px;

		font-size: 10px;

		letter-spacing: 0.12em;
	}


	/* TÍTULO */

	.gc-home-hero-title {
		font-size:
			clamp(
				35px,
				10.5vw,
				48px
			);

		line-height: 1.03;
	}


	.gc-home-hero-line {
		white-space: normal;
	}


	/* COPY */

	.gc-home-hero-copy {
		max-width: none;

		margin-top: 20px;
	}


	.gc-home-hero-copy p {
		font-size: 14px;

		line-height: 1.55;
	}


	/* BOTÕES */

	.gc-home-hero-buttons {
		display: grid;

		grid-template-columns: 1fr;

		gap: 11px;

		width: 100%;

		margin-top: 25px;
	}


	.gc-home-hero-btn {
		width: 100%;

		min-height: 50px;

		font-size: 10px;
	}


	/* ESTÁTUA */

	.gc-home-hero-image {
		width: 100%;

		min-height: 330px;
	}


	.gc-home-hero-image img {
		height: 330px;
	}


	.gc-home-hero-image::after {
		background:
			linear-gradient(
				180deg,
				#050505
				0%,
				rgba(
					5,
					5,
					5,
					0
				)
				24%
			);
	}


	/* FAIXA */

	.gc-home-hero-benefits {
		padding:
			7px
			0;
	}


	.gc-home-hero-benefits-grid {
		grid-template-columns:
			repeat(
				2,
				1fr
			);
	}


	.gc-home-hero-benefit {
		min-height: 73px;

		justify-content: flex-start;

		padding:
			9px
			10px;
	}


	.gc-home-hero-benefit:nth-child(odd)::after {
		content: "";

		position: absolute;

		right: 0;

		top: 14px;

		width: 1px;
		height: 44px;

		background:
			rgba(
				198,
				151,
				67,
				0.20
			);
	}


	.gc-home-hero-benefit:nth-child(even)::after {
		display: none;
	}


	.gc-home-hero-benefit:nth-child(-n + 2) {
		border-bottom:
			1px solid
			rgba(
				198,
				151,
				67,
				0.16
			);
	}


	.gc-home-hero-benefit-icon {
		width: 32px;

		font-size: 22px;
	}


	.gc-home-hero-benefit span {
		font-size: 9px;
	}

}

/* =========================================================
   TRABALHISTA EMPRESARIAL
========================================================= */

.gc-service-page {
	background: #f6f5f2;
	color: #181818;
}


/* =========================================================
   VOLTAR
========================================================= */

.gc-service-back {
	padding:
		28px
		0
		0;

	background: #f6f5f2;
}


.gc-service-back-link {
	display: inline-flex;

	align-items: center;

	gap: 9px;

	color: #77716a;

	font-size: 13px;

	font-weight: 500;
}


.gc-service-back-link:hover {
	color: #b48230;
}


/* =========================================================
   HERO
========================================================= */

.gc-service-hero {
	padding:
		48px
		0
		75px;

	background: #f6f5f2;
}


.gc-service-hero-inner {
	display: grid;

	grid-template-columns:
		minmax(0, 1.25fr)
		minmax(330px, 0.75fr);

	align-items: center;

	gap: 90px;
}


.gc-service-hero-content {
	max-width: 760px;
}


.gc-service-kicker {
	display: inline-block;

	margin-bottom: 15px;

	color: #ae7c2c;

	font-size: 11px;

	font-weight: 700;

	letter-spacing: 0.14em;

	text-transform: uppercase;
}


.gc-service-hero h1 {
	margin:
		0
		0
		27px;

	font-family:
		Georgia,
		"Times New Roman",
		serif;

	font-size:
		clamp(
			45px,
			4.5vw,
			68px
		);

	font-weight: 400;

	line-height: 1.02;

	letter-spacing: -0.025em;
}


.gc-service-hero h1 span {
	display: block;

	color: #b48230;
}


.gc-service-hero h2 {
	max-width: 650px;

	margin:
		0
		0
		20px;

	font-size: 21px;

	font-weight: 700;

	line-height: 1.4;
}


.gc-service-hero p {
	max-width: 680px;

	margin:
		0
		0
		12px;

	color: #69645e;

	font-size: 15px;

	line-height: 1.7;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.gc-service-hero-visual {
	min-height: 380px;

	display: flex;

	flex-direction: column;

	align-items: center;
	justify-content: center;

	gap: 13px;

	border:
		1px solid
		#ddd7cc;

	background: #ffffff;
}


.gc-service-hero-symbol {
	width: 110px;
	height: 110px;

	display: grid;

	place-items: center;

	margin-bottom: 20px;

	border:
		1px solid
		rgba(
			180,
			130,
			48,
			0.30
		);

	color: #b48230;

	font-size: 48px;
}


.gc-service-hero-visual > span {
	color: #767069;

	font-size: 10px;

	font-weight: 700;

	letter-spacing: 0.16em;
}


/* =========================================================
   BOTÃO
========================================================= */

.gc-service-button {
	min-height: 50px;

	display: inline-flex;

	align-items: center;
	justify-content: center;

	gap: 11px;

	margin-top: 20px;

	padding:
		0
		23px;

	border:
		1px solid
		#b48230;

	background:
		linear-gradient(
			135deg,
			#a77527,
			#c69743
		);

	color: #ffffff;

	font-size: 11px;

	font-weight: 700;

	letter-spacing: 0.025em;

	text-transform: uppercase;
}


.gc-service-button:hover {
	color: #ffffff;

	transform: translateY(-2px);
}


/* =========================================================
   SEÇÕES
========================================================= */

.gc-service-section {
	padding:
		85px
		0;
}


.gc-service-section-light {
	background: #ffffff;
}


.gc-service-two-columns {
	display: grid;

	grid-template-columns:
		minmax(280px, 0.7fr)
		minmax(0, 1.3fr);

	gap: 100px;
}


.gc-service-heading h2,
.gc-service-section-intro h2,
.gc-service-volume h2 {
	margin: 0;

	font-family:
		Georgia,
		"Times New Roman",
		serif;

	font-size:
		clamp(
			34px,
			3.4vw,
			48px
		);

	font-weight: 400;

	line-height: 1.08;
}


.gc-service-content {
	max-width: 700px;
}


.gc-service-content h3 {
	margin:
		0
		0
		17px;

	font-size: 19px;

	font-weight: 700;
}


.gc-service-content p {
	margin:
		0
		0
		15px;

	color: #6d6861;

	font-size: 15px;

	line-height: 1.7;
}


.gc-service-list-title {
	margin:
		28px
		0
		13px;

	font-weight: 700;
}


/* =========================================================
   LISTA
========================================================= */

.gc-service-check-list {
	display: grid;

	grid-template-columns:
		repeat(
			2,
			minmax(
				0,
				1fr
			)
		);

	gap:
		11px
		30px;

	margin:
		0
		0
		30px;

	padding: 0;

	list-style: none;
}


.gc-service-check-list li {
	position: relative;

	padding-left: 22px;

	color: #57534e;

	font-size: 14px;

	line-height: 1.5;
}


.gc-service-check-list li::before {
	content: "✓";

	position: absolute;

	left: 0;

	color: #b48230;

	font-weight: 700;
}


.gc-service-text-link {
	display: inline-flex;

	align-items: center;

	gap: 10px;

	color: #a77628;

	font-size: 11px;

	font-weight: 800;

	letter-spacing: 0.03em;
}


/* =========================================================
   PREVENTIVO
========================================================= */

.gc-service-preventivo {
	background: #f6f5f2;
}


.gc-service-section-intro {
	max-width: 760px;

	margin-bottom: 45px;
}


.gc-service-section-intro p {
	max-width: 680px;

	margin:
		20px
		0
		0;

	color: #6d6861;

	font-size: 15px;

	line-height: 1.7;
}


/* =========================================================
   CARDS
========================================================= */

.gc-service-cards-grid {
	display: grid;

	grid-template-columns:
		repeat(
			3,
			minmax(
				0,
				1fr
			)
		);

	border-top:
		1px solid
		#ded9d0;

	border-left:
		1px solid
		#ded9d0;
}


.gc-service-card {
	min-height: 205px;

	padding:
		28px;

	border-right:
		1px solid
		#ded9d0;

	border-bottom:
		1px solid
		#ded9d0;

	background: #ffffff;
}


.gc-service-card-icon {
	margin-bottom: 24px;

	color: #b48230;

	font-size: 26px;
}


.gc-service-card h3 {
	margin:
		0
		0
		11px;

	font-size: 15px;

	font-weight: 800;

	text-transform: uppercase;
}


.gc-service-card p {
	margin: 0;

	color: #706b65;

	font-size: 14px;

	line-height: 1.6;
}


/* =========================================================
   PERGUNTAS
========================================================= */

.gc-service-questions {
	background: #ffffff;
}


.gc-service-question-list {
	border-top:
		1px solid
		#e2ded7;
}


.gc-service-question-list div {
	padding:
		18px
		0;

	border-bottom:
		1px solid
		#e2ded7;

	color: #33312e;

	font-size: 16px;

	font-weight: 600;
}


.gc-service-question-highlight {
	margin-top: 55px;

	padding:
		30px
		35px;

	border-left:
		3px solid
		#b48230;

	background: #f6f5f2;
}


.gc-service-question-highlight p {
	margin: 0;

	font-family:
		Georgia,
		"Times New Roman",
		serif;

	font-size: 24px;

	line-height: 1.4;
}


/* =========================================================
   VOLUME
========================================================= */

.gc-service-volume {
	background: #090909;

	color: #ffffff;
}


.gc-service-volume-inner {
	display: grid;

	grid-template-columns:
		1fr
		1fr;

	gap: 100px;

	align-items: center;
}


.gc-service-volume p {
	margin: 0;

	color: #c7c7c7;

	font-size: 15px;

	line-height: 1.75;
}


.gc-service-button-outline {
	background: transparent;
}


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

.gc-service-final-cta {
	padding:
		55px
		0;

	background:
		linear-gradient(
			135deg,
			#a57327,
			#c79845
		);

	color: #ffffff;
}


.gc-service-final-cta-inner {
	display: flex;

	align-items: center;
	justify-content: space-between;

	gap: 50px;
}


.gc-service-final-cta span {
	display: block;

	margin-bottom: 8px;

	font-size: 10px;

	font-weight: 700;

	letter-spacing: 0.13em;
}


.gc-service-final-cta h2 {
	max-width: 650px;

	margin: 0;

	font-family:
		Georgia,
		"Times New Roman",
		serif;

	font-size: 32px;

	font-weight: 400;
}


.gc-service-final-cta .gc-service-button {
	margin: 0;

	border-color: #ffffff;

	background: #ffffff;

	color: #8f651f;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

	.gc-service-back {
		padding-top: 20px;
	}


	.gc-service-hero {
		padding:
			35px
			0
			50px;
	}


	.gc-service-hero-inner {
		grid-template-columns: 1fr;

		gap: 40px;
	}


	.gc-service-hero h1 {
		font-size: 43px;
	}


	.gc-service-hero h2 {
		font-size: 19px;
	}


	.gc-service-hero-visual {
		min-height: 270px;
	}


	.gc-service-section {
		padding:
			55px
			0;
	}


	.gc-service-two-columns,
	.gc-service-volume-inner {
		grid-template-columns: 1fr;

		gap: 35px;
	}


	.gc-service-check-list {
		grid-template-columns: 1fr;
	}


	.gc-service-cards-grid {
		grid-template-columns: 1fr;
	}


	.gc-service-card {
		min-height: auto;
	}


	.gc-service-final-cta-inner {
		flex-direction: column;

		align-items: flex-start;
	}


	.gc-service-final-cta .gc-service-button {
		width: 100%;
	}


	.gc-service-question-highlight p {
		font-size: 21px;
	}

}