article.w-servicos {
    padding: var(--padding-widgets);
    width: 100%;
    max-width: 1920px;
    background-color: #52017c;
    position: relative;
	gap: 88px
}
article.w-servicos::after {
    content: "";
    width: 30%;
    height: 58%;
    position: absolute;
    bottom: 0px;
    background-image: url(../../images/arabia-servicos.jpg);
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
}
.w-servicos-coluna1 {width: 40%;}
.w-servicos-coluna2 {width: 60%}

.page.servicos h2 {
    color: #9dfe01 !important;
    font-family: 'DM Serif Display' !important;
    font-weight: 400;
    font-style: italic;
    font-size: 66px;
    text-transform: capitalize !important;
}

.single article.w-servicos .w-servicos-coluna1 {display: none;}
.single article.w-servicos .w-servicos-coluna2 {width: 100%}
.single article.w-servicos::after {display: none;}

.page.servicos article.w-servicos,
.single article.w-servicos{

}
article.w-servicos h2.widget-title {
    color: #fff !important;
    text-align: left;
}
article.w-servicos .widget-descricao {
	color: #fff !important;
    text-align: left;
}









/* DEFAULT (1 coluna) */
.servicos-lista {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
    padding: 0;
}

/* OVERRIDE NO SINGLE (3 colunas) */
.single article.w-servicos .servicos-lista {
    grid-template-columns: repeat(3, 1fr);
}

/**/

.servico-item {
    perspective: 800px;
    overflow: hidden;
}

/* LINK = CARTÃO */
.servico-item a {
    position: relative;
    display: block;
    height: 60px;

    transform-style: preserve-3d;
    transition: transform 0.6s ease;

    text-decoration: none;
}

/* FACES */
.servico-item a .front,
.servico-item a .back {
    position: absolute;
    inset: 0;

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

    padding: 11px 33px;
    font-size: 16px;

    border-radius: 6px;
    backface-visibility: hidden;
}

/* FRENTE */
.servico-item a .front {
    background-color: #9dfe01;
    color: #000;
}

/* VERSO */
.servico-item a .back {
    background-color: #a800ff;
    color: #fff;

    transform: rotateX(90deg);
    transform-origin: bottom;
}

/* ANIMAÇÃO */
.servico-item:hover a {
    transform: rotateX(-90deg);
    transform-origin: bottom;
}









.servico-item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0%;
	display: block;
	width: 100%;
	height: 100%;
	background-image: url(../../images/simbolo.png);
	background-repeat: no-repeat;
	background-position: center;	
	background-size: 100%;
	opacity: 0.5;
	transform: unset;
	filter: brightness (3);
	z-index: 0;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}
.servico-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--cor-primaria);
    z-index: -1;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.servico-item:hover {
    transform: translateY(-4px);
}

.servico-item:hover::after {
    transform: translateX(0);
}

.servico-item:hover::before {
	opacity: 0.5;
	filter: brightness(3);
	z-index: 0;
    transform: translateX(-70%);
    transition: transform 0.4s ease;
}

.servico-thumb {
	margin-bottom: 1rem;
	text-align: center;
}

.servico-thumb img {
	max-width: 100%;
	height: auto;
	border-radius: 4px;
	width: 55px;
}

.servico-thumb i {font-size:33px}
.servico-item:hover img {filter: invert(1);}
.servico-item:hover i {font-size:44px; color: #fff}

.servico-excerpt {
	margin-top: auto;
	text-align: center;
	display: none;
}

.servico-excerpt p {
	margin-top: 0.1rem;
	text-align: center;
}

.servico-excerpt a {
	display: inline-block;
	margin-top: 0.5rem;
	text-decoration: none;
	font-weight: 500;
	background-color: var(--cor-secundaria) !important;
}

.servico-excerpt a:hover {
	text-decoration: underline;
}

/*MOBILE*/
@media screen and (max-width: 700px) {
.servicos-lista {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(322px, 1fr));
	gap: 44px;
	padding: 0px;
}
}