/* #####################################
########################################

	Theme name: Maieutics
	Theme URI: https://home.maieutics.ai
	Description: Este tema foi desenvolvido de forma exclusiva.

	Code: Gabriel Amarante | https://gabrielfreelancer.com.br
	Author: Visuality
	Author URI: https://visuality.com.br

	Version: MK.06.2025

########################################
##################################### */

@charset "UTF-8";

/* ######
   Básicos
############ */

* { outline: none; }

html { scroll-behavior: smooth; }

html , body {
	margin: 0;
	padding: 0;
}

body {
	color: var(--cinza);
	font-size: 16px;
	font-family: var(--space-grotesk);
	width: 100vw;
	overflow: hidden;
}
@media (max-width: 580px) {
	body {
		overflow: visible;
	}
}

a , a:hover , a:focus {
	color: var(--cinza);
	text-decoration: none;
	transition: .3s;
}
a:hover ,
a:focus {
	color: var(--cinza);
}

button , button:hover , button:focus {
	outline: none;
	cursor: pointer;
}

img {
	display: inline-block;
	max-width: 100%;
	height: auto;
	object-fit: contain;
}

select {
	appearance: none;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAANCAYAAAC+ct6XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RjBBRUQ1QTQ1QzkxMTFFMDlDNDdEQzgyNUE1RjI4MTEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RjBBRUQ1QTU1QzkxMTFFMDlDNDdEQzgyNUE1RjI4MTEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpGMEFFRDVBMjVDOTExMUUwOUM0N0RDODI1QTVGMjgxMSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGMEFFRDVBMzVDOTExMUUwOUM0N0RDODI1QTVGMjgxMSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pk5mU4QAAACUSURBVHjaYmRgYJD6////MwY6AyaGAQIspCieM2cOjKkIxCFA3A0TSElJoZ3FUCANxAeAWA6IOYG4iR5BjWwpCDQCcSnNgxoIVJCDFwnwA/FHWlp8EIpHSKoGgiggLkITewrEcbQO6mVAbAbE+VD+a3IsJTc7FQAxDxD7AbEzEF+jR1DDywtoCr9DbhwzDlRZDRBgACYqHJO9bkklAAAAAElFTkSuQmCC);
	background-repeat: no-repeat;
	background-position: center right;
}

/* ######
   Variáveis
############ */

:root {
	/* Fontes */
	--rubik: "Rubik", sans-serif;
	--space-grotesk: "Space Grotesk", sans-serif;
	/* Cores */
  --cinza: #676767;
	--cinza-fundo: #F9F8FC;
	--cinza-borda: #E2CFBA;
	--roxo: #7528AF;
	--roxo-claro: #F2E1FF;
	--roxo-escuro: #2C0F41;
	--laranja: #FD7126;
	--laranja-claro: #FFF5EF;
	--laranja-suave: #FFE3CE;
	--laranja-hover: #FD8326;
}

/* ######
   Classes gerais
############ */

.site { overflow: hidden; }
.home .site { overflow: visible; }

/* box-slide */

.box-slide {
	position: relative;
}
.box-slide .slide-item {
	cursor: initial;
}

/* d-table */

.d-table {
	list-style: none;
	display: table;
	margin: 0;
	padding: 0;
}
.d-table li {
	list-style: none;
	display: table-cell;
	vertical-align: middle;
	margin: 0;
	padding: 0;
}

/* d-center */

.d-center {
	align-items: center;
	display: flex;
	width: 100%;
	min-height: 100%;
}

/* pagination */

.pagination {
	text-align: center;
	display: block;
}
.pagination a ,
.pagination span {
	color: var(--cinza);
	font-size: 14px;
	line-height: 20px;
	display: inline-block;
	margin: 0 4px;
	padding: 6px 12px;
	transition: .3s;
	border-radius: 3px;
	border: none;
	box-shadow: 0 1px 2px rgba(0,0,0,.1);
	background: #FFF;
}
.pagination .current {
	color: #FFF;
	background: var(--roxo);
}

/* box-return */

.box-return {
	position: fixed;
	bottom: 90px;
	right: 20px;
	z-index: 5;
	transition: .3s;
}
@media (max-width:580px) {
	.box-return {
		bottom: 85px;
		right: 14px;
	}
}
.box-return button {
	font-size: 0;
	display: block;
	width: 60px;
	height: 60px;
	border: solid 1px var(--cinza-borda);
	border-radius: 50%;
	background: #fff url('assets/images/icons/seta-voltar.svg') no-repeat center 24px;
	background-size: 15px auto;
}

/* box-whatsapp */

.box-whatsapp {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 5;
}
.box-whatsapp a {
	display: block;
	width: 60px;
	height: 60px;
	border-radius: 50px;
	background: url('assets/images/icons/botao-whatsapp.svg') no-repeat center center;
	background-size: contain;
}

/* ######
   Textos
############ */

/* antetitulo */

.antetitulo {
	color: var(--laranja);
	font-size: 11px;
	font-family: var(--rubik);
	text-transform: uppercase;
	display: inline-block;
	margin: 0 0 15px;
	padding: 8px 20px;
	border-radius: 20px;
	background: #fff;
}

/* antetitulo laranja */

.antetitulo.laranja {
	background: var(--laranja-claro);
}

/* titulo */

.titulo {
	color: #000;
	font-size: 50px;
	font-weight: bold;
	font-family: var(--rubik);
	line-height: 60px;
	margin: 0;
}

@media (max-width: 1200px) {
	.titulo {
		font-size: 40px;
		line-height: 50px;
	}
}
@media (max-width: 850px) {
	.titulo {
		font-size: 30px;
		line-height: 40px;
	}
}

/* titulo.medio */

.titulo.medio {
	font-size: 45px;
	line-height: 55px;
}
@media (max-width: 850px) {
	.titulo.medio {
		font-size: 35px;
		line-height: 45px;
	}
}
@media (max-width: 580px) {
	.titulo.medio {
		font-size: 25px;
		line-height: 35px;
	}
}

/* titulo grande */

.titulo.grande {
	font-size: 55px;
	line-height: 65px;
}
@media (max-width: 1200px) {
	.titulo.grande {
		font-size: 45px;
		line-height: 55px;
	}
}
@media (max-width: 580px) {
	.titulo.grande {
		font-size: 35px;
		line-height: 45px;
	}
}

/* titulo.gigante */

.titulo.gigante {
	font-size: 80px;
	line-height: 90px;
}
@media (max-width: 1200px) {
	.titulo.gigante {
		font-size: 70px;
		line-height: 80px;
	}
}
@media (max-width: 850px) {
	.titulo.gigante {
		font-size: 60px;
		line-height: 70px;
	}
}
@media (max-width: 580px) {
	.titulo.gigante {
		font-size: 50px;
		line-height: 60px;
	}
}

/* titulo branco */

.titulo.branco {
	color: #fff;
}

/* ######
   Botões
############ */

/* link */

.link ,
.link:hover ,
.link:focus {
	color: var(--laranja);
	font-size: 16px;
	font-family: var(--rubik);
	display: inline-block;
	position: relative;
	border: none;
	background: transparent;
}
.link::before ,
.link::after {
	content: '';
	display: block;
}
.link::before {
	width: 23px;
	height: 23px;
	position: absolute;
	right: -33px;
	top: 50%;
	transform: translateY(-50%);
	transition: .3s;
	border: solid 1px var(--laranja);
	border-radius: 50%;
}
.link:hover::before {
	background: var(--laranja);
}
.link::after {
	width: 10px;
	height: 10px;
	position: absolute;
	top: 50%;
	right: -27px;
	transform: translateY(-50%) rotate(-45deg);
	transition: .3s;
	background: url('assets/images/icons/seta-laranja.svg') no-repeat center center;
	background-size: contain;
}
.link:hover::after {
	filter: brightness(0) invert(1);
	transform: translateY(-50%);
}

/* botao */

.botao {
	color: #fff;
	font-family: var(--rubik);
	text-align: center;
	display: inline-block;
	padding: 14px 50px;
	position: relative;
	border: none;
	border-radius: 30px;
	transition: .3s;
	background: var(--laranja);

	
}
@media (max-width: 1200px) {
	.botao {
		padding: 14px 24px;
	}
}
@media (max-width: 580px) {
	.botao {
		text-align: center;
		width: 100%;
		padding: 14px 12px;
	}
}
.botao:hover ,
.botao:focus {
	color: #fff;
	background: var(--laranja-hover);
}

/* botao claro */

.botao.claro {
	color: var(--laranja);
	background: var(--laranja-claro);
}
.botao.claro:hover ,
.botao.claro:focus {
	color: #fff;
	background: var(--laranja);
}

/* botao.seta */

.botao.seta {
	margin: 0 52px 0 0;
}
@media (max-width: 580px) {
	.botao.seta {
		text-align: center;
		width: calc(100% - 52px);
	}
}
.botao.seta::before {
	content: '';
	display: block;
	width: 52px;
	height: 52px;
	position: absolute;
	top: 0;
	right: -52px;
	transition: .3s;
	border-radius: 50%;
	background: var(--laranja);
}
.botao.seta:hover::before ,
.botao.seta:focus::before {
	background: var(--laranja-hover);
}
.botao.seta::after {
	content: '';
	display: block;
	width: 18px;
	height: 18px;
	position: absolute;
	top: 50%;
	right: -35px;
	transition: .3s;
	transform: translateY(-50%) rotate(-45deg);
	filter: brightness(0) invert(1);
	background: url('assets/images/icons/seta-laranja.svg') no-repeat center center;
}
.botao.seta:hover::after ,
.botao.seta:focus::after {
	transform: translateY(-50%);
}

/* botao suave */

.botao.suave {
	color: #000;
	background: var(--laranja-suave);
}
.botao.suave:hover ,
.botao.suave:focus {
	color: #fff;
	background: var(--laranja);
}
.botao.suave::before {
	background: var(--laranja-suave);
}
.botao.suave:hover::before ,
.botao.suave:focus::before {
	background: var(--laranja);
}
.botao.suave::after {
	filter: brightness(0);
}
.botao.suave:hover::after ,
.botao.suave:focus::after {
	filter: brightness(0) invert(1);
}

/* box-card-default */

.box-card-default {
	height: calc(100% - 10px);
	margin: 0 0 10px;
	padding: 35px 30px;
	border-radius: 30px;
	background: #fff;
}
.box-card-default img {
	height: 47px;
}
.box-card-default h3 {
	color: #000;
	font-size: 18px;
	font-weight: bold;
	font-family: var(--rubik);
	margin: 30px 0 15px;
}
.box-card-default p {
	margin: 0;
}

/* ######
   Padrão (Conteúdo)
############ */

.page-template-default #conteudo {
	padding: 60px 0;
	background: #EEE;
}

.page-template-default #conteudo .box-header {
	margin: 0 0 50px;
}

/* ######
   Mobile
############ */

#mobile {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 0;
	transition: .3s;
	background: rgba(0,0,0,.9);
}
#mobile.ativo {
	z-index: 9;
	opacity: 1;
}

#mobile .box-contain {
	text-align: right;
	width: calc(100% - 40px);
	max-width: 360px;
	padding: 15px 15px 30px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	border-radius: 10px;
	background: #FFF;
}
#mobile .box-contain button {
	font-size: 0;
	display: inline-block;
	width: 20px;
	height: 20px;
	margin: 0 0 30px;
	border: none;
	background: url('assets/images/icons/close.svg') no-repeat center center;
	background-size: contain;
}

#mobile .navbar {
	display: block;
	width: 100%;
	padding: 0;
}
#mobile .navbar ul {
	list-style: none;
	text-align: center;
	display: block;
	margin: 0;
	padding: 0;
}
#mobile .navbar li {
	display: block;
	margin: 0 0 20px;
}
#mobile .navbar li:last-child {
	margin: 0;
}
#mobile .navbar a {
	color: #000;
	font-size: 24px;
	line-height: 1.3;
	display: inline-block;
}

#mobile .grid-header-botao {
	display: grid;
	gap: 10px;
	margin: 40px 0 0;
}

/* ######
   Cabeçalho
############ */

#header {
	width: 100%;
	padding: 20px 0 0;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 5;
}

#header .box-contain {
	padding: 15px 15px 15px 40px;
	position: relative;
	z-index: 2;
	border-radius: 60px;
	backdrop-filter: blur(30px);
	background: rgba(255,255,255,.4);
}
@media (max-width: 1200px) {
	#header .box-contain {
		padding: 15px 20px 15px 30px;
	}
}

#header .box-logo {
	width: 100%;
	transform: translateY(-3px);
}
#header .box-logo a {
	display: inline-block;
}

#header .navbar {
	width: 100%;
	padding: 0;
}
#header .navbar ul {
	list-style: none;
	text-align: center;
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
}
#header .navbar li {
	display: inline-block;
	margin: 0 0 0 30px;
}
@media (max-width: 1400px) {
	#header .navbar li {
		margin: 0 0 0 20px;
	}
}
#header .navbar li:first-child {
	margin: 0;
}
#header .navbar a {
	color: #000;
	font-size: 16px;
	font-family: var(--rubik);
	transition: .3s;
	cursor: pointer;
}
@media (max-width: 1400px) {
	#header .navbar a {
		font-size: 15px;
	}
}
#header .navbar .submenu a::after {
	content: '';
	display: inline-block;
	width: 10px;
	height: 6px;
	margin: 0 0 0 6px;
	transition: .3s;
	filter: brightness(0);
	transform: translateY(-2px) rotate(180deg);
	background: url('assets/images/icons/seta-menu.svg') no-repeat center center;
	background-size: contain;
}
#header .navbar .submenu a:hover::after ,
#header .navbar .submenu a.ativo::after {
	filter: initial;
	transform: translateY(-2px);
}
#header .navbar a:hover {
	color: var(--laranja);
}

#header .grid-header-botao {
	display: grid;
	gap: 20px;
	grid-template-columns: 130px 1fr;
}
@media (max-width: 1400px) {
	#header .grid-header-botao {
		gap: 15px;
		grid-template-columns: 90px 1fr;
	}
}
#header .grid-header-botao a {
	padding: 12px 20px;
}
@media (max-width: 1400px) {
	#header .grid-header-botao a {
		font-size: 15px;
		padding: 10px;
	}
}

#header .box-submenu {
	max-width: calc(100% - 50px);
	margin: 10px auto 0;
	position: relative;
	z-index: 1;
	transform: translateY(-70px);
	transition: .5s;
}
#header .box-submenu.ativo {
	transform: initial;
}

#header .box-submenu-link a {
	color: #000;
	font-size: 16px;
	font-family: var(--rubik);
	text-align: center;
	display: block;
	width: 100%;
	padding: 12px;
	transition: .3s;
	border-radius: 40px;
	backdrop-filter: blur(30px);
	background: rgba(255,255,255,.4);
}
#header .box-submenu-link a:hover {
	color: #fff;
}
#header .box-submenu-link a.instituicoes:hover {
	background: var(--roxo);
}
#header .box-submenu-link a.professores:hover {
	background: var(--laranja);
}

#header .box-mobile {
	text-align: right;
	width: 100%;
}
#header .box-mobile button {
	display: inline-block;
	width: 40px;
	height: 40px;
	transform: translateY(3px);
	border: none;
	border-radius: 50%;
	background: var(--laranja);
}
#header .box-mobile svg {
	width: 20px;
	height: 22px;
	transform: translateY(-1px);
}

/* ######
   CTA
############ */

#cta {
	padding: 140px 0;
	position: relative;
	z-index: 2;
	overflow: hidden;
	border-radius: 60px;
	background: var(--roxo) url('assets/images/bg/cta.svg') no-repeat center right 40vw;
}
@media (max-width: 850px) {
	#cta {
		padding: 90px 0;
	}
}
@media (max-width: 580px) {
	#cta {
		border-radius: 40px;
	}
}

#cta .box-info {
	position: relative;
}
#cta .box-info > img {
	position: absolute;
	bottom: 30px;
	right: 45px;
}
@media (max-width: 1400px) {
	#cta .box-info > img {
		bottom: -40px;
		right: 0;
	}
}
@media (max-width: 580px) {
	#cta .box-info > img {
		bottom: -100px;
	}
}
#cta .box-info p {
	color: rgba(255,255,255,.8);
	font-size: 20px;
	margin: 20px 0 0;
}
#cta .box-info p img {
	display: inline-block;
	height: 16px;
	margin: 0 5px;
	filter: brightness(0) invert(1);
	opacity: .8;
	transform: translateY(-2px);
}

#cta .box-link {
	text-align: right;
}
@media (max-width: 850px) {
	#cta .box-link {
		margin: 80px 0 0;
	}
}
@media (max-width: 580px) {
	#cta .box-link {
		margin: 150px 0 0;
	}
}
#cta .box-link a {
	display: inline-block;
	max-width: 395px;
	padding: 30px 110px 30px 30px;
	position: relative;
	border: solid 1px rgba(255,255,255,.4);
	border-radius: 30px;
}
@media (max-width: 850px) {
	#cta .box-link a {
		background: var(--roxo);
	}
}
#cta .box-link a:hover {
	border-color: var(--laranja);
	background: var(--laranja);
}
#cta .box-link a::before {
	content: '';
	display: block;
	width: 60px;
	height: 60px;
	position: absolute;
	bottom: 30px;
	right: 30px;
	border-radius: 50%;
	background: var(--laranja);
}
#cta .box-link a:hover::before {
	background: rgba(255,255,255,.8);
}
#cta .box-link a::after {
	content: '';
	display: block;
	width: 18px;
	height: 18px;
	position: absolute;
	bottom: 51px;
	right: 51px;
	transition: .3s;
	transform: rotate(-45deg);
	filter: brightness(0) invert(1);
	background: url('assets/images/icons/seta-laranja.svg') no-repeat center center;
}
#cta .box-link a:hover::after {
	transform: initial;
	filter: initial;
}
#cta .box-link .titulo-link {
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	font-family: var(--rubik);
	text-align: left;
	display: block;
	margin: 0 0 10px;
}
#cta .box-link .texto-link {
	color: rgba(255,255,255,.8);
	font-size: 16px;
	font-weight: 600;
	line-height: 26px;
	text-align: left;
	display: block;
}

/* ######
   Rodapé
############ */

#footer {
	padding: 55px 0;
	border-radius: 50px;
	background: var(--laranja-claro);
}
#footer hr {
	margin: 50px 0;
	opacity: 1;
	border: none;
	border-bottom: solid 1px #D1D2D8;
}

#footer .box-titulo {
	text-align: center;
	margin: 0 0 55px;
}
#footer .box-titulo h2 {
	color: var(--roxo);
	font-size: 70px;
	font-weight: 600;
	font-family: var(--rubik);
	line-height: 80px;
	margin: 0;
}
@media (max-width: 1400px) {
	#footer .box-titulo h2 {
		font-size: 50px;
		line-height: 60px;
	}
}
@media (max-width: 580px) {
	#footer .box-titulo h2 {
		font-size: 32px;
		line-height: 42px;
	}
}

@media (max-width: 1200px) {
	#footer .box-logo {
		margin: 0 0 40px;
	}
}
@media (max-width: 580px) {
	#footer .box-logo {
		text-align: center;
		width: 100%;
	}
}

@media (max-width: 850px) {
	#footer .box-contato {
		margin: 40px 0 0;
	}
}
@media (max-width: 580px) {
	#footer .box-contato {
		text-align: center;
	}
}
#footer .box-contato p {
	margin: 0 0 10px;
}
#footer .box-contato p:last-child {
	margin: 0;
}
#footer .box-contato a {
	color: #000;
	font-size: 16px;
	font-weight: bold;
	font-family: var(--rubik);
	display: inline-block;
	transition: .3s;
}
#footer .box-contato a:hover {
	color: var(--laranja);
}

#footer .navbar {
	display: block;
	width: 100%;
	padding: 0;
}
#footer .navbar ul {
	list-style: none;
	display: grid;
	gap: 10px 40px;
	grid-template-columns: 70px 130px 190px 45px 100px;
	margin: 0;
	padding: 0;
}
@media (max-width: 1400px) {
	#footer .navbar ul {
		gap: 10px 22px;
	}
}
@media (max-width: 580px) {
	#footer .navbar ul {
		text-align: center;
		gap: 15px;
		grid-template-columns: repeat(2,1fr);
	}
}
#footer .navbar li {
	display: block;
	margin: 0;
}
#footer .navbar li:last-child {
	margin: 0;
}
#footer .navbar a {
	font-size: 15px;
	font-weight: normal;
	font-family: var(--rubik);
	display: inline-block;
	transition: .3s;
}
#footer .navbar a:hover {
	color: var(--laranja);
}

#footer .box-botao {
	width: 100%;
}

#footer .box-social {
	text-align: right;
	width: 100%;
}
@media (max-width: 580px) {
	#footer .box-social {
		text-align: center;
		margin: 40px 0 0;
	}
}
#footer .box-social a {
	margin: 0 0 0 10px;
	transition: .3s;
}
#footer .box-social a:hover {
	opacity: .7;
}

/* ######
   Copyright
############ */

#copyright {
	padding: 15px 0;
}

@media (max-width: 580px) {
	#copyright .box-dev {
		text-align: center;
		margin: 0 0 5px;
	}
}
#copyright .box-dev p {
	font-size: 14px;
	font-family: var(--rubik);
	margin: 0;
}
#copyright .box-dev a {
	color: var(--roxo);
}

#copyright .box-direitos {
	text-align: right;
}
@media (max-width: 580px) {
	#copyright .box-direitos {
		text-align: center;
	}
}
#copyright .box-direitos p {
	font-size: 14px;
	font-family: var(--rubik);
	margin: 0;
}

/* ######
   Vídeo
############ */

#video {
	padding: 120px 0 0;
	overflow: hidden;
}
.single-solucao #video {
	padding: 120px 0 200px;
}

#video .box-content {
	text-align: center;
}
#video .box-content a {
	margin: 20px 0 0;
}
#video .box-content video {
	width: 100%;
	height: 540px;
	object-fit: cover;
	border-radius: 60px;
}
@media (max-width: 1200px) {
	#video .box-content video {
		height: 420px;
		border-radius: 40px;
	}
}
@media (max-width: 850px) {
	#video .box-content video {
		height: 320px;
	}
}

/* ######
   Informação
############ */

#informacao {
	padding: 120px 0 0;
	overflow: hidden;
}

#informacao .box-image {
	text-align: center;
	margin: 0;
}

#informacao .box-content {
	width: 100%;
	max-width: 490px;
	margin: 0 auto;
}
@media (max-width: 850px) {
	#informacao .box-content {
		max-width: 100%;
		margin: 0 0 40px;
	}
}
#informacao .box-content h2 {
	margin: 0 0 20px;
}
#informacao .box-content p {
	margin: 0;
}
#informacao .box-content p b ,
#informacao .box-content p strong {
	color: #000;
}
#informacao .box-content a {
	margin: 30px 0 0;
}
#informacao .box-content ul {
	list-style: none;
	max-width: 415px;
	margin: 40px 0;
	padding: 0 0 0 58px;
}
#informacao .box-content ul:last-child {
	margin: 40px 0 0;
}
#informacao .box-content li {
	margin: 0 0 20px;
	position: relative;
}
#informacao .box-content li:last-child {
	margin: 0;
}
#informacao .box-content li::before {
	content: '';
	display: block;
	width: 38px;
	height: 27px;
	position: absolute;
	top: 0;
	left: -58px;
	background: url('assets/images/icons/check.svg') no-repeat center center;
}

#informacao .box-card-icone {
	display: grid;
	gap: 20px;
	grid-template-columns: 45px 1fr;
	margin: 40px 0 0;
}

#informacao .box-card-icone-info h3 {
	color: #000;
	font-size: 16px;
	font-weight: bold;
	margin: 0 0 12px;
}
#informacao .box-card-icone-info p {
	margin: 0;
}

/* ######
   Funcionalidades
############ */

#funcionalidades {
	padding: 100px 0;
	overflow: hidden;
	border-radius: 65px 65px 0 0;
	background: var(--roxo-escuro);
}
.home #funcionalidades {
	padding: 100px 0 180px;
}
.single-solucao #funcionalidades {
	margin: -80px 0 0;
}

#funcionalidades .box-content {
	width: 100%;
	margin: 50px 0 0;
}
#funcionalidades .box-content p {
	color: rgba(255,255,255,.8);
	margin: 0;
}

#funcionalidades .box-slide {
	margin: 90px 0 0;
}

#funcionalidades .slide-item {
	width: 670px;
	max-width: 90vw;
	height: 590px;
	padding: 0 10px;
	opacity: .6;
}
@media (max-width: 580px) {
	#funcionalidades .slide-item {
		height: 470px;
	}
}
#funcionalidades .slide-item.is-selected {
	opacity: 1;
}
#funcionalidades .box-card img {
	width: 100%;
	border-radius: 20px;
}
#funcionalidades .box-card h3 {
	color: #fff;
	font-size: 18px;
	font-family: var(--rubik);
	margin: 30px 0 20px;
}
#funcionalidades .box-card p {
	color: rgba(255,255,255,.8);
	font-size: 18px;
	line-height: 28px;
	margin: 0;
}

#funcionalidades .box-link {
	text-align: center;
	margin: 40px 0 0;
}

/* ######
   Resultados
############ */

#resultados {
	padding: 120px 0;
	overflow: hidden;
	border-radius: 80px 80px 0 0;
	background: var(--laranja-claro) url('assets/images/bg/fundo-3.svg') no-repeat center bottom 60px;
}
@media (max-width: 580px) {
	#resultados {
		border-radius: 40px 40px 0 0;
	}
}
.page-template-studio #resultados ,
.page-template-recursos #resultados {
	padding: 120px 0 200px;
}
.page-template-studio #resultados {
	margin: 120px 0 0;
}
.single-solucao #resultados {
	padding: 120px 0 180px;
	border-radius: 0 0 80px 80px;
}

#resultados .box-header {
	text-align: center;
	margin: 0 0 60px;
}

#resultados .slide-item {
	width: 455px;
	max-width: 90vw;
	padding: 10px 10px 0;
	transition: .3s;
}
#resultados .slide-item:hover {
	padding: 0 10px 10px;
}

#resultados .card-video a {
	display: block;
	position: relative;
}
#resultados .card-video a::before {
	content: '';
	display: block;
	width: 87px;
	height: 58px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	border-radius: 20px;
	background: #fff url('assets/images/icons/play-youtube.svg') no-repeat center center;
}
#resultados .card-video img {
	width: 100%;
	height: 255px;
	object-fit: cover;
	border-radius: 30px;
}
@media (max-width: 580px) {
	#resultados .card-video img {
		height: 190px;
	}
}

/* ######
   Faq
############ */

#faq {
	padding: 120px 0;
}

#faq .box-content {
	max-width: 435px;
}
@media (max-width: 850px) {
	#faq .box-content {
		max-width: 100%;
		margin: 0 0 60px;
	}
}
#faq .box-content p {
	margin: 20px 0 0;
}
#faq .box-content a {
	margin: 50px 0 0;
}

#faq .box-questoes details {
	margin: 0 0 20px;
	overflow: hidden;
	border-radius: 20px;
	background: var(--cinza-fundo);
}
#faq .box-questoes summary {
	color: #000;
	font-size: 18px;
	font-weight: bold;
	font-family: var(--rubik);
	display: block;
	padding: 30px 90px 30px 40px;
	position: relative;
}
#faq .box-questoes details[open] summary {
	padding: 30px 90px 15px 40px;
}
#faq .box-questoes summary::before {
	content: '';
	display: block;
	width: 45px;
	height: 45px;
	position: absolute;
	top: 50%;
	right: 25px;
	transform: translateY(-50%);
	background: url('assets/images/icons/seta-faq.svg') no-repeat center center;
}
#faq .box-questoes details[open] summary::before {
	transform: translateY(-50%) rotate(180deg);
}
#faq .box-questoes details p {
	color: #000;
	margin: 0;
	padding: 0 90px 30px 40px;
}

/* ######
   Destaque
############ */

#destaque {
	padding: 180px 0 60px;
	overflow: hidden;
}

#destaque .box-image {
	text-align: center;
	position: relative;
	z-index: 2;
}

#destaque .box-content {
	position: relative;
}
@media (max-width: 850px) {
	#destaque .box-content {
		padding: 40px;
	}
}
#destaque .box-content::before {
	content: '';
	display: block;
	width: 900px;
	height: calc(100% + 120px);
	min-height: 580px;
	position: absolute;
	top: 50%;
	left: -60px;
	z-index: 1;
	transform: translateY(-50%);
	border-radius: 85px;
	background: var(--laranja);
}
@media (max-width: 850px) {
	#destaque .box-content::before {
		width: calc(100% + 20px);
		min-height: initial;
		height: calc(100% + 200px);
		top: -20px;
		left: 50%;
		transform: translateX(-50%);
		border-radius: 40px;
	}
}
#destaque .box-content span {
	position: relative;
	z-index: 2;
}
#destaque .box-content h2 {
	margin: 0 0 20px;
	position: relative;
	z-index: 2;
}
#destaque .box-content p {
	color: #fff;
	position: relative;
	z-index: 2;
}
#destaque .box-content ul {
	list-style: none;
	max-width: 415px;
	margin: 40px 0 0;
	padding: 0 0 0 58px;
	position: relative;
	z-index: 2;
}
#destaque .box-content li {
	color: #fff;
	margin: 0 0 20px;
	position: relative;
}
#destaque .box-content li:last-child {
	margin: 0;
}
#destaque .box-content li::before {
	content: '';
	display: block;
	width: 38px;
	height: 27px;
	position: absolute;
	top: 0;
	left: -58px;
	background: url('assets/images/icons/check.svg') no-repeat center center;
}

#destaque .box-card-icone {
	display: grid;
	gap: 20px;
	grid-template-columns: 45px 1fr;
	margin: 40px 0 0;
	padding: 40px 0 0;
	position: relative;
	z-index: 2;
	border-top: solid 1px rgba(255,255,255,.4);
}

#destaque .box-card-icone-info h3 {
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	margin: 0 0 12px;
}
#destaque .box-card-icone-info p {
	color: #fff;
	margin: 0;
}

/* ######
   Diferencial
############ */

#diferencial {
	margin: 0 0 -80px;
	padding: 120px 0 180px;
	border-radius: 80px 80px 0 0;
	background: var(--roxo-escuro);
}
.page-template-studio #diferencial ,
.page-template-recursos #diferencial {
	margin: -80px 0;
}

#diferencial .box-header {
	text-align: center;
	max-width: 880px;
	margin: 0 auto 80px;
}
#diferencial .box-header p {
	color: #fff;
	font-size: 18px;
	line-height: 28px;
	margin: 20px 0 0;
}

/* ######
   [ Home ] Banner
############ */

.home #banner {
	overflow: hidden;
	border-radius: 0 0 60px 60px;
}

.home #banner .slide-item {
	width: 100%;
	position: relative;
}

.home #banner .box-image {
	height: calc(100vh - 220px);
}
@media (max-width: 1200px) {
	.home #banner .box-image {
		height: 98vh;
	}
}
@media (max-width: 850px) {
	.home #banner .box-image {
		height: 700px;
	}
}
.home #banner .box-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home #banner .box-contain {
	width: 100%;
	position: absolute;
	top: calc(50% + 50px);
	left: 0;
	z-index: 2;
	transform: translateY(-50%);
}

.home #banner .box-content {
	max-width: 530px;
}
@media (max-width: 850px) {
	.home #banner .box-content {
		max-width: 450px;
	}
}
.home #banner .box-content p {
	color: #fff;
	font-size: 18px;
	font-weight: 300;
	margin: 20px 0 50px;
}

/* ######
   [ Home ] Aprendizado
############ */

.home #aprendizado {
	padding: 100px 0 30px;
	overflow: hidden;
	background: url('assets/images/bg/fundo-1.svg') no-repeat bottom center;
}

.home #aprendizado .box-content {
	text-align: center;
	max-width: 1000px;
	margin: 0 auto;
}
.home #aprendizado .box-content h2 img {
	display: inline-block;
}
.home #aprendizado .box-content p {
	font-size: 18px;
	line-height: 28px;
	margin: 20px 0 60px;
}
@media (max-width: 850px) {
	.home #aprendizado .box-content p {
		max-width: 600px;
		margin: 20px auto 60px;
	}
}

/* ######
   [ Home ] Contato
############ */

.home #contato {
	padding: 280px 0;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: center center;
}
@media (max-width: 850px) {
	.home #contato {
		padding: 200px 0 260px;
	}
}

.home #contato .box-content {
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
}
.home #contato .box-content p {
	font-size: 18px;
	margin: 20px 0 60px;
}
@media (max-width: 850px) {
	.home #contato .box-content p {
		max-width: 500px;
		margin: 20px auto 60px;
	}
}

/* ######
   [ Home ] Plataforma
############ */

.home #plataforma {
	margin: -80px 0 0;
	padding: 120px 0;
	position: relative;
	z-index: 2;
	border-radius: 80px 80px 0 0;
	background: #fff;
}
@media (max-width: 580px) {
	.home #plataforma {
		overflow: hidden;
		border-radius: 40px 40px 0 0;
	}
}

.home #plataforma .box-content {
	max-width: 400px;
	position: sticky;
	top: 120px;
}
@media (max-width: 850px) {
	.home #plataforma .box-content {
		max-width: initial;
		margin: 0 0 80px;
	}
}
.home #plataforma .box-content p {
	margin: 20px 0 40px;
}

.home #plataforma .box-card {
	width: 100%;
	max-width: 535px;
	margin: 0 auto 30px;
}
@media (max-width: 850px) {
	.home #plataforma .box-card {
		max-width: initial;
	}
}
.home #plataforma .box-card:last-child {
	margin: 0 auto;
}

.home #plataforma .box-card-image img {
	width: 100%;
	height: 430px;
	object-fit: cover;
	border-radius: 35px;
}

.home #plataforma .box-card-info {
	padding: 35px;
	border-radius: 35px;
	background: var(--laranja-claro);
}
.home #plataforma .box-card-info h3 {
	color: #000;
	font-size: 18px;
	font-weight: bold;
	font-family: var(--rubik);
	margin: 0;
}
.home #plataforma .box-card-info p {
	margin: 15px 0 20px;
}

/* ######
   [ Home ] Blog
############ */

.home #blog {
	margin: 0 0 -80px;
	padding: 80px 0 200px;
	overflow: hidden;
	background: var(--laranja-claro);
}
@media (max-width: 580px) {
	.home #blog {
		padding: 80px 0 100px;
	}
}

.home #blog .box-header {
	margin: 0 0 60px;
}

.home #blog .box-card {
	transition: .3s;
}
@media (max-width: 580px) {
	.home #blog .box-card {
		margin: 0 0 60px;
	}
}
.home #blog .box-card:hover {
	transform: translateY(-10px);
}

.home #blog .box-card-image {
	margin: 0 0 14px;
}
.home #blog .box-card-image a {
	display: block;
}
.home #blog .box-card-image img {
	width: 100%;
	height: 318px;
	border-radius: 30px;
	object-fit: cover;
}
@media (max-width: 850px) {
	.home #blog .box-card-image img {
		height: 200px;
	}
}

.home #blog .box-card-categoria {
	margin: 0 0 8px;
}
.home #blog .box-card-categoria a {
	color: var(--roxo);
	font-size: 14px;
	font-family: var(--rubik);
	display: inline-block;
	margin: 0 10px 0 0;
}
.home #blog .box-card-info h3 {
	color: #000;
	font-size: 18px;
	font-weight: bold;
	font-family: var(--rubik);
	margin: 0 0 12px;
}
.home #blog .box-card-info p {
	margin: 0 0 28px;
}

/* ######
   [ Sobre ] Introdução
############ */

.page-template-sobre #introducao {
	padding: 160px 0 0;
	background: var(--laranja-claro);
}

.page-template-sobre #introducao .box-header {
	max-width: 700px;
}

.page-template-sobre #introducao .box-info {
	max-width: 270px;
}
@media (max-width: 850px) {
	.page-template-sobre #introducao .box-info {
		margin: 30px 0 0;
	}
}
.page-template-sobre #introducao .box-info p {
	font-size: 18px;
	line-height: 28px;
	margin: 0;
}

.page-template-sobre #introducao .box-image {
	margin: 50px 0 0;
}
.page-template-sobre #introducao .box-image img {
	width: 100%;
	border-radius: 60px;
}
@media (max-width: 850px) {
	.page-template-sobre #introducao .box-image img {
		border-radius: 40px;
	}
}

/* ######
   [ Sobre ] História
############ */

.page-template-sobre #historia {
	padding: 180px 0;
	background: var(--laranja-claro) url('assets/images/bg/fundo-1.svg') no-repeat center center;
}

.page-template-sobre #historia .box-content {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}
.page-template-sobre #historia .box-content p {
	font-size: 18px;
	line-height: 28px;
	max-width: 690px;
	margin: 20px auto 0;
}

/* ######
   [ Sobre ] Paixão
############ */

.page-template-sobre #paixao {
	margin: -80px 0 0;
	padding: 120px 0 0;
	border-radius: 80px 80px 0 0;
	background: #fff;
}

.page-template-sobre #paixao .box-content p {
	color: #000;
	font-size: 50px;
	font-family: var(--rubik);
	line-height: 60px;
	margin: 0;
}
@media (max-width: 850px) {
	.page-template-sobre #paixao .box-content p {
		font-size: 35px;
		line-height: 45px;
	}
}
@media (max-width: 580px) {
	.page-template-sobre #paixao .box-content p {
		font-size: 26px;
		line-height: 36px;
	}
}

/* ######
   [ Sobre ] Sócios
############ */

.page-template-sobre #socios {
	margin: 120px 0 0;
	padding: 120px 0;
	position: relative;
	z-index: 2;
	border-radius: 80px;
	background: var(--laranja-claro) url('assets/images/bg/fundo-1.svg') no-repeat center center;
}

.page-template-sobre #socios .box-header {
	max-width: 630px;
	margin: 0 0 70px;
}
.page-template-sobre #socios .box-header p {
	margin: 20px 0 0;
}

.page-template-sobre #socios .box-card {
	text-align: center;
	padding: 0 20px;
}
@media (max-width: 580px) {
	.page-template-sobre #socios .box-card {
		margin: 0 0 40px !important;
	}
}
.page-template-sobre #socios .box-card-2 {
	margin: 50px 0 0;
}
.page-template-sobre #socios .box-card-3 {
	margin: -80px 0 0;
}
.page-template-sobre #socios .box-card img {
	width: 100%;
	transition: .3s;
	border-radius: 30px;
}
.page-template-sobre #socios .box-card-1 img {
	transform: rotate(-3deg);
}
.page-template-sobre #socios .box-card-2 img {
	transform: rotate(2deg);
}
.page-template-sobre #socios .box-card-3 img {
	transform: rotate(-3deg);
}
.page-template-sobre #socios .box-card:hover img {
	transform: initial;
}
.page-template-sobre #socios .box-card p {
	color: #000;
	font-size: 20px;
	font-weight: bold;
	font-family: var(--rubik);
	line-height: 25px;
	margin: 20px 0 5px;
}
.page-template-sobre #socios .box-card span {
	color: var(--laranja);
	font-size: 11px;
	font-family: var(--rubik);
	text-transform: uppercase;
	display: inline-block;
}

/* ######
   [ Sobre ] Equipe
############ */

.page-template-sobre #equipe {
	margin: -90px 0;
	padding: 470px 0 250px;
	position: relative;
	z-index: 1;
}
@media (max-width: 850px) {
	.page-template-sobre #equipe {
		padding: 300px 0 200px;
	}
}
.page-template-sobre #equipe::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background: linear-gradient(90deg, rgba(117,40,175,.5) 0%,rgba(253,113,38,.5) 100%);
}

.page-template-sobre #equipe .box-image {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.page-template-sobre #equipe .box-image img {
	width: 100%;
	height: 100%;
	opacity: .7;
	object-fit: cover;
}

.page-template-sobre #equipe .box-contain {
	position: relative;
	z-index: 3;
}

.page-template-sobre #equipe .box-content {
	text-align: center;
}
.page-template-sobre #equipe .box-content p {
	color: #fff;
	font-size: 70px;
	font-family: var(--rubik);
	margin: 0;
}
@media (max-width: 850px) {
	.page-template-sobre #equipe .box-content p {
		font-size: 60px;
	}
}
@media (max-width: 850px) {
	.page-template-sobre #equipe .box-content p {
		font-size: 36px;
	}
}

/* ######
   [ Solução ] Introdução
############ */

.single-solucao #introducao {
	padding: 100px 0 1px;
	position: relative;
	z-index: 1;
}
@media (max-width: 850px) {
	.single-solucao #introducao {
		padding: 140px 0 50px;
	}
}

.single-solucao #introducao .box-content {
	max-width: 448px;
}
@media (max-width: 580px) {
	.single-solucao #introducao .box-content {
		margin: 0 0 40px;
	}
}
.single-solucao #introducao .box-content p {
	color: #fff;
	max-width: 360px;
	margin: 20px 0 40px;
}
.single-solucao #introducao .box-image {
	margin: 0 0 -120px;
	transition: .3s;
}
@media (max-width: 1200px) {
	.single-solucao #introducao .box-image {
		margin: 0 0 -60px;
	}
}
.single-solucao #introducao .box-image:hover {
	transform: rotate(5deg);
}
/* ######
   [ Home ] Benefícios
############ */

.single-solucao #beneficios {
	padding: 150px 0 10px;
	position: relative;
	border-radius: 80px 80px 0 0;
	background-image: url('assets/images/bg/fundo-3.svg');
	background-repeat: no-repeat;
	background-position: bottom center;
}
.single-solucao #beneficios span {
	content: '';
	display: block;
	width: 100%;
	height: 100px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.single-solucao #beneficios .box-header {
	text-align: center;
	max-width: 1000px;
	margin: 0 auto 90px;
}
.single-solucao #beneficios .box-header img {
	display: inline-block;
	margin: 0 10px 10px 0;
}

/* ######
   [ Recursos ] Introdução
############ */

.page-template-recursos #introducao {
	padding: 240px 0;
	position: relative;
	border-radius: 0 0 80px 80px;
	background: var(--laranja-claro) url('assets/images/bg/fundo-3.svg') no-repeat center center;
}
.page-template-recursos #introducao::after {
	content: '';
	display: block;
	width: 100%;
	height: 90px;
	position: absolute;
	bottom: -5px;
	left: 0;
	z-index: -1;
	background: var(--roxo);
}

.page-template-recursos #introducao .box-content {
	text-align: center;
	max-width: 1000px;
	margin: 0 auto;
}
.page-template-recursos #introducao .box-content p {
	max-width: 600px;
	margin: 20px auto 50px;
}

/* ######
   [ Recursos ] Fotos
############ */

.page-template-recursos #fotos {
	margin: -80px 0 0;
	padding: 1px 0 80px;
	border-radius: 0 0 80px 80px;
	background: var(--roxo) url('assets/images/bg/fundo-3.svg') no-repeat bottom 20px center;
}

.page-template-recursos #fotos .box-grid {
	display: grid;
	gap: 5px;
	grid-template-columns: repeat(3,1fr);
}

.page-template-recursos #fotos .box-card {
	position: relative;
	transition: .3s;
}
.page-template-recursos #fotos .box-card:hover {
	transform: initial;
}
.page-template-recursos #fotos .box-card-1 {
	z-index: 1;
	transform: rotate(-5deg);
}
.page-template-recursos #fotos .box-card-2 {
	z-index: 2;
	transform: rotate(8deg);
}
.page-template-recursos #fotos .box-card-3 {
	z-index: 3;
	transform: rotate(-6deg);
}

/* ######
   [ Recursos ] Ferramentas
############ */

.page-template-recursos #ferramentas {
	padding: 120px 0;
}

.page-template-recursos #ferramentas .carousel-linear-esquerda {
	margin: 0 0 35px;
}

.page-template-recursos #ferramentas .slide-item {
	padding: 0 10px;
}
.page-template-recursos #ferramentas .slide-item span {
	color: #000;
	font-size: 16px;
	font-weight: bold;
	font-family: var(--rubik);
	text-align: center;
	display: block;
	width: 100%;
	padding: 12px;
	border: solid 1px #DCD7E3;
	border-radius: 30px;
}

/* ######
   [ Studio ] Introdução
############ */

.page-template-studio #introducao {
	padding: 270px 0;
	position: relative;
}
@media (max-width: 580px) {
	.page-template-studio #introducao {
		padding: 120px 0;
	}
}

.page-template-studio #introducao video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	object-fit: cover;
	filter: brightness(.6);
}

.page-template-studio #introducao .box-contain {
	position: relative;
	z-index: 2;
}

@media (max-width: 850px) {
	.page-template-studio #introducao .box-header {
		text-align: center;
	}
}

.page-template-studio #introducao .box-link {
	text-align: center;
	width: 100%;
}
@media (max-width: 850px) {
	.page-template-studio #introducao .box-link {
		margin: 60px 0 0;
	}
}
.page-template-studio #introducao .box-link a {
	line-height: 158px;
	text-align: center;
	display: inline-block;
	width: 158px;
	height: 158px;
	border-radius: 50%;
	backdrop-filter: blur(10px);
	background: rgba(255,255,255,.4);
}
.page-template-studio #introducao .box-link img {
	margin: 0 0 0 10px;
}

/* ######
   [ Studio ] Sobre
############ */

.page-template-studio #sobre {
	margin: -80px 0 0;
	padding: 60px 0;
	position: relative;
	z-index: 2;
	border-radius: 80px;
	background: var(--roxo) url('assets/images/bg/fundo-3.svg') no-repeat center center;
}
@media (max-width: 580px) {
	.page-template-studio #sobre {
		padding: 80px 0;
		border-radius: 40px;
	}
}

.page-template-studio #sobre .box-image {
	text-align: center;
}

.page-template-studio #sobre .box-content {
	width: 100%;
}
@media (max-width: 850px) {
	.page-template-studio #sobre .box-content {
		margin: 0 0 60px;
	}
}
.page-template-studio #sobre .box-content p {
	color: #fff;
	font-size: 40px;
	font-family: var(--rubik);
	line-height: 50px;
	margin: 0 0 50px;
}
@media (max-width: 1200px) {
	.page-template-studio #sobre .box-content p {
		font-size: 30px;
		line-height: 40px;
	}
}
@media (max-width: 580px) {
	.page-template-studio #sobre .box-content p {
		font-size: 20px;
		line-height: 30px;
	}
}

/* ######
   [ Blog ] Post
############ */

.blog #post {
	padding: 190px 0 170px;
	position: relative;
}

.blog #post .box-contain {
	position: relative;
	z-index: 2;
}

.blog #post .box-content {
	text-align: center;
	max-width: 690px;
	margin: 0 auto;
}
.blog #post .box-content a[rel="tag"] {
	color: var(--laranja);
	font-size: 11px;
	font-family: var(--rubik);
	text-transform: uppercase;
	display: inline-block;
	margin: 0 6px 15px;
	padding: 8px 20px;
	border-radius: 20px;
	background: #fff;
}
.blog #post .box-content h1 {
	margin: 15px 0 0;
}
.blog #post .box-content p {
	color: #fff;
	max-width: 570px;
	margin: 15px auto 45px;
}

.blog #post .box-image {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.blog #post .box-image img {
	width: 100%;
	height: 100%;
	filter: brightness(.4);
	object-fit: cover;
}

/* ######
   [ Blog ] Filtro
############ */

.blog #filtro {
	margin: -80px 0 0;
	padding: 75px 0 0;
	position: relative;
	z-index: 2;
	border-radius: 80px 80px 0 0;
	background: #fff;
}

.blog #filtro .wpc-edit-filter-set {
	display: none;
}

.blog #filtro .wpc-filters-widget-wrapper {
	display: grid;
	gap: 60px;
	grid-template-columns: repeat(2,1fr);
	max-width: 860px;
	margin: 0 auto;
}
@media (max-width: 580px) {
	.blog #filtro .wpc-filters-widget-wrapper {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}

.blog #filtro .wpc-filters-section {
	margin: 0;
}
.blog #filtro .wpc-instead-of-posts-found ,
.blog #filtro .wpc-filter-header ,
.blog #filtro .wpc-search-icon {
	display: none;
}

.blog #filtro .box-busca {
	padding: 0 0 45px;
	border-bottom: solid 1px #F3D3A9;
}
.blog #filtro .box-busca input ,
.blog #filtro .box-busca select {
	color: #000;
	font-size: 15px;
	width: 100%;
	height: 50px;
	padding: 0 30px;
	border: none;
	border-radius: 30px;
	background: #EFEFEF;
}

/* ######
   [ Blog ] Conteúdo
############ */

.blog #conteudo {
	padding: 80px 0 40px;
}

.blog #conteudo .box-card {
	align-items: center;
	display: grid;
	gap: 120px;
	grid-template-columns: 660px 1fr;
	margin: 0 0 80px;
	padding: 0 0 80px;
	border-bottom: solid 1px #F3D3A9;
}
@media (max-width: 1400px) {
	.blog #conteudo .box-card {
		gap: 60px;
		grid-template-columns: 500px 1fr;
	}
}
@media (max-width: 850px) {
	.blog #conteudo .box-card {
		gap: 40px;
		grid-template-columns: 250px 1fr;
	}
}
@media (max-width: 580px) {
	.blog #conteudo .box-card {
		gap: 20px;
		grid-template-columns: 1fr;
	}
}

.blog #conteudo .box-card-image a {
	display: block;
}
.blog #conteudo .box-card-image img {
	width: 100%;
	height: 370px;
	border-radius: 25px;
	object-fit: cover;
}
@media (max-width: 580px) {
	.blog #conteudo .box-card-image img {
		height: 240px;
	}
}

.blog #conteudo .box-card-categoria {
	margin: 0 0 20px;
}
.blog #conteudo .box-card-categoria a {
	color: var(--laranja);
	font-size: 11px;
	line-height: 1.3;
	text-transform: uppercase;
	display: inline-block;
	margin: 0 10px 0 0;
	padding: 7px 18px;
	transition: .3s;
	border: solid 1px var(--cinza-borda);
	border-radius: 30px;
}
@media (max-width: 850px) {
	.blog #conteudo .box-card-categoria a {
		font-size: 10px;
	}
}
.blog #conteudo .box-card-categoria a:hover {
	color: #fff;
	border-color: var(--laranja);
	background: var(--laranja);
}

.blog #conteudo .box-card-content h2 {
	color: #000;
	font-size: 36px;
	font-weight: bold;
	font-family: var(--rubik);
	line-height: 44px;
	margin: 0 0 20px;
}
@media (max-width: 850px) {
	.blog #conteudo .box-card-content h2 {
		font-size: 26px;
		line-height: 36px;
	}
}
.blog #conteudo .box-card-content p {
	margin: 0 0 30px;
}

/* ######
   [ Post ] Introdução
############ */

.single-post #introducao {
	padding: 150px 0 45px;
}

.single-post #introducao .box-categoria {
	width: 100%;
}
.single-post #introducao .box-categoria a {
	color: var(--laranja);
	font-size: 11px;
	line-height: 1.3;
	text-transform: uppercase;
	display: inline-block;
	margin: 0 10px 0 0;
	padding: 7px 18px;
	transition: .3s;
	border: solid 1px var(--cinza-borda);
	border-radius: 30px;
}
@media (max-width: 1200px) {
	.single-post #introducao .box-categoria a {
		margin: 0 10px 10px 0;
	}
}

/* ######
   [ Post ] Conteúdo
############ */

.single-post #conteudo .box-image {
	margin: 0 0 70px;
}
.single-post #conteudo .box-image img {
	width: 100%;
	height: 580px;
	border-radius: 30px;
	object-fit: cover;
}
@media (max-width: 1200px) {
	.single-post #conteudo .box-image img {
		height: 420px;
	}
}
@media (max-width: 580px) {
	.single-post #conteudo .box-image img {
		height: initial;
	}
}

.single-post #conteudo .box-content :is(h1, h2, h3, h4, h5, h6) {
	color: #000;
	font-weight: bold;
	font-family: var(--rubik);
	max-width: 870px;
	margin: 0 auto 30px;
}
@media (max-width: 850px) {
	.single-post #conteudo .box-content :is(h1, h2, h3, h4, h5, h6) {
		max-width: 600px;
	}
}
.single-post #conteudo .box-content p {
	max-width: 870px;
	margin: 0 auto 20px;
}
@media (max-width: 850px) {
	.single-post #conteudo .box-content p {
		max-width: 600px;
	}
}

.single-post #conteudo .box-content img {
	margin: 100px 0;
	border-radius: 25px;
}
@media (max-width: 580px) {
	.single-post #conteudo .box-content img {
		margin: 40px 0;
		border-radius: 10px;
	}
}

.single-post #conteudo .box-compartilhe {
	text-align: center;
	margin: 100px 0 0;
}
.single-post #conteudo .box-compartilhe h3 {
	color: #000;
	font-size: 30px;
	font-weight: bold;
	font-family: var(--rubik);
	margin: 0 0 30px;
}
@media (max-width: 580px) {
	.single-post #conteudo .box-compartilhe h3 {
		max-width: 260px;
		margin: 0 auto 30px;
	}
}

/* ######
   [ Post ] Outros
############ */

.single-post #outros {
	padding: 100px 0;
}

.single-post #outros .box-header {
	margin: 0 0 50px;
}

.single-post #outros .box-card {
	align-items: end;
	display: grid;
	gap: 100px;
	grid-template-columns: 330px 390px 1fr;
	margin: 0 0 40px;
	padding: 40px 0 0;
	border-top: solid 1px var(--laranja-suave);
}
@media (max-width: 1400px) {
	.single-post #outros .box-card {
		gap: 60px;
	}
}
@media (max-width: 1200px) {
	.single-post #outros .box-card {
		gap: 40px;
		grid-template-columns: 330px 330px 1fr;
	}
}
@media (max-width: 850px) {
	.single-post #outros .box-card {
		gap: 30px;
		grid-template-columns: 1fr;
	}
}

.single-post #outros .box-card-image a {
	display: block;
}
.single-post #outros .box-card-image img {
	width: 100%;
	height: 190px;
	object-fit: cover;
	border-radius: 25px;
}
@media (max-width: 850px) {
	.single-post #outros .box-card-image img {
		height: 350px;
	}
}
@media (max-width: 580px) {
	.single-post #outros .box-card-image img {
		height: 230px;
	}
}

.single-post #outros .box-card-categoria {
	margin: 0 0 20px;
}
.single-post #outros .box-card-categoria a {
	color: var(--laranja);
	font-size: 11px;
	line-height: 1.3;
	text-transform: uppercase;
	display: inline-block;
	margin: 0 10px 0 0;
	padding: 7px 18px;
	transition: .3s;
	border: solid 1px var(--cinza-borda);
	border-radius: 30px;
}
.single-post #outros .box-card-info h3 {
	color: #000;
	font-size: 26px;
	font-family: var(--rubik);
	line-height: 36px;
	margin: 0;
}

/* ######
   [ Contato ] Conteúdo
############ */

.page-template-contato #conteudo {
	padding: 160px 0 100px;
	border-radius: 0 0 80px 80px;
	background: var(--roxo-claro) url('assets/images/bg/fundo-3.svg') no-repeat center center;
}

.page-template-contato #conteudo .box-header {
	text-align: center;
	margin: 0 0 35px;
}

.page-template-contato #conteudo .box-form {
	max-width: 760px;
	margin: 0 auto;
}
.page-template-contato #conteudo .box-form input ,
.page-template-contato #conteudo .box-form select ,
.page-template-contato #conteudo .box-form textarea {
	font-family: inherit;
	width: 100%;
	height: 60px;
	margin: 0 0 10px;
	padding: 0 40px;
	border: none;
	border-radius: 30px;
	background-color: #fff;
}
.page-template-contato #conteudo .box-form textarea {
	height: 128px;
	padding: 20px 40px;
}

.page-template-contato #conteudo .wpcf7-not-valid-tip {
	font-size: 14px;
	margin: -8px 0 10px 40px;
}
.page-template-contato #conteudo .wpcf7-response-output {
	color: #000;
	font-size: 16px;
	margin: 20px 0 0;
	padding: 0;
	border: none;
}