article.w-areas {
    padding: var(--padding-widgets);
    width: 100%;
    max-width: 1920px;
    background-color: #ffffff;
    position: relative;
}
.page.areas article.w-areas,
.single article.w-areas{
    padding: 0 10%;
    margin-top: -55px;
    margin-bottom: 88px;
}
article.w-areas h2.widget-title {
    /* color: #fff !important; */
    /* text-align: center; */
}

.areas-lista {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(322px, 1fr));
	gap: 44px;
	padding: 22px;
}

.area-item {
    border: 1px solid #ddd;
    padding: 3rem 2rem 3.5rem 2rem;
    border-radius: 8px;
    background-color: #f1f1f1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.4s ease;
    position: relative;
    overflow: hidden;
}
.area-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;
}
.area-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--cor-primaria);
    z-index: -1;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

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

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

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

.area-item:hover a,
.area-item:hover p{
	color: #fff;
}

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

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

.area-thumb i {font-size:33px}
.area-item:hover img {filter: invert(1);}
.area-item:hover i {font-size:44px; color: #fff}
.area-title,.area-title a {
	font-size: 1.1rem;
	margin: 0 0 0.5rem;
	text-decoration: none;
	color: #333;
	letter-spacing: 0;
	text-align: center;
}

.area-title a:hover {
	/* color: #0073aa; */
}

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

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

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

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

/*MOBILE*/
@media screen and (max-width: 700px) {
.areas-lista {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(322px, 1fr));
	gap: 44px;
	padding: 0px;
}
.page.areas article.w-areas,
.single article.w-areas{
    padding: 0 22px;
    margin-top: 0px;
    margin-bottom: 44px;
}
}