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

	Theme name: Solar Fusion
	Theme URI: 
	Description: Este tema foi desenvolvido exclusivamente para a Solar Fusion.

	Code: Gabriel Amarante | https://gabrielfreelancer.com.br
	Author: Marcelo Tomita
	Author URI: 

	Version: MK.03.2023

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

@charset "UTF-8";

/* ######
   Inclusões
############ */

@import "assets/css/_bootstrap.css";
@import "assets/css/_flickity.css";
/* @import "assets/css/_fancybox.css"; */
@import "assets/css/_default.css";

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

* { outline: none; }

html { scroll-behavior: smooth; }

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

body {
	color: var(--cinza-medio);
	font-size: 16px;
	font-family: var(--open-sans);
}

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

p {
	font-size: 16px;
	line-height: 26px;
	margin: 0 0 15px;
}

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

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

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

/* box-slide */

.box-slide {
	position: relative;
}

/* 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%;
	height: 100%;
}

/* wp-pagenavi */

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

/* box-return */

.box-return {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: -1;
	opacity: 0;
	transition: .4s;
}
.box-return.active {
	z-index: 5;
	opacity: 1;
}
.box-return a {
	font-size: 0;
	display: block;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--verde) url(assets/images/icons/arrow-return.svg) no-repeat center 14px;
	background-size: 20px auto;
}

/* recorte-branco */

.recorte-branco {
	position: relative;
}
.recorte-branco::after {
	content: '';
	display: block;
	width: 100%;
	height: 275px;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 2;
	background: url('assets/images/bg/recorte-branco.png') no-repeat bottom center;
}
@media (min-width: 2000px) {
	.recorte-branco::after {
		height: 400px;
		background: url('assets/images/bg/recorte-branco.png') no-repeat bottom center;
		background-size: 100% auto;
	}
}
@media (max-width: 600px) {
	.recorte-branco::after {
		height: 50px;
	}
}

.lista.recorte {
	padding: 0 0 150px;
	position: relative;
}
@media (max-width: 600px) {
	.lista.recorte {
		padding: 0 0 100px;
	}
}
.lista.recorte::after {
	content: '';
	display: block;
	width: 100%;
	height: 275px;
	position: absolute;
	bottom: -270px;
	left: 0;
	z-index: 2;
	transform: rotate(180deg);
	background: url('assets/images/bg/recorte-branco.png') no-repeat top center;
}
@media (min-width: 2000px) {
	.lista.recorte::after {
		height: 400px;
		bottom: -397px;
		background-size: 100% auto;
		background-position: bottom center;
	}
}

/* ######
   Pré-carregamento
############ */

#preloader {
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	transition: .5s;
	background: #FFF;
}
#preloader.disabled {
	z-index: -9;
	opacity: 0;
}
#preloader img {
	width: 80px;
	max-width: 95vw;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

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

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

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

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

/* box-contain */

#mobile .box-contain {
	width: calc(100% - 40px);
	padding: 40px 20px;
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 10px;
	background: #FFF;
}
#mobile .box-contain button {
	font-size: 0;
	display: inline-block;
	width: 20px;
	height: 20px;
	margin: 0 0 40px;
	border: none;
	background: url('../images/icons/close.svg') no-repeat center center;
	background-size: contain;
}
#mobile .box-contain span {
	color: var(--verde);
	font-size: 25px;
}

/* navbar */

#mobile .navbar {
	display: block;
	width: 100%;
	margin: 0 0 30px;
	padding: 0;
}
#mobile .navbar ul {
	list-style: none;
	display: block;
	margin: 0;
	padding: 0;
}
#mobile .navbar li {
	display: block;
	margin: 0 0 15px;
}
#mobile .navbar li:last-child {
	margin: 0;
}
#mobile .navbar a {
	color: var(--cinza-medio);
	font-size: 16px;
	line-height: 20px;
	display: inline-block;
}

/* ######
   Cabeçalho (Home)
############ */

#header-front {
	width: 100%;
	padding: 15px 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

/* box-logo */

#header-front .box-logo {
	margin: 0;
}

/* box-contain */

#header-front .box-contain {
	width: 100%;
}

/* navbar */

#header-front .navbar {
	width: 100%;
	padding: 0;
}
#header-front .navbar ul {
	list-style: none;
	text-align: right;
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
}
#header-front .navbar li {
	display: inline-block;
	margin: 0 0 0 30px;
}
#header-front .navbar li:first-child {
	margin: 0;
}
#header-front .navbar a {
	font-size: 17px;
	font-weight: bold;
	letter-spacing: .03em;
	display: inline-block;
}

/* box-button */

#header-front .box-button {
	text-align: right;
	width: 100%;
}

/* box-mobile */

#header-front .box-mobile {
	text-align: right;
	width: 100%;
}
#header-front .box-mobile button {
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	background: transparent;
}
#header-front .box-mobile span {
	color: var(--verde);
	font-size: 32px;
}

/* ######
   Cabeçalho (Geral)
############ */

#header {
	padding: 15px 0;
	position: relative;
	z-index: 3;
	border-radius: 0 0 30px 30px;
	background: #FFF;
}
@media (max-width: 600px) {
	#header {
		border-radius: 0 0 20px 20px;
	}
}

/* navbar */

#header .navbar {
	width: 100%;
	padding: 0;
}
#header .navbar ul {
	list-style: none;
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
}
#header .navbar li {
	display: inline-block;
	margin: 0 0 0 40px;
}
#header .navbar li:first-child {
	margin: 0;
}
#header .navbar a {
	font-size: 17px;
	font-weight: bold;
	letter-spacing: .03em;
	display: inline-block;
}

/* box-button */

#header .box-button {
	text-align: right;
}
@media (max-width: 600px) {
	#header .box-button a {
		padding: 10px 25px;
	}
}

/* box-mobile */

#header .box-mobile {
	text-align: right;
	width: 100%;
}
#header .box-mobile button {
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	background: transparent;
}
#header .box-mobile span {
	color: var(--verde);
	font-size: 32px;
}

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

#footer {
	padding: 120px 0 80px;
	margin: -75px 0 0;
	position: relative;
	z-index: 3;
	border-radius: 75px 75px 0 0;
	background: url('assets/images/bg/rodape.jpg') no-repeat center center;
	background-size: cover;
}
@media (max-width: 600px) {
	#footer {
		padding: 80px 0 0;
		border-radius: 20px 20px 0 0;
	}
}
#footer hr {
	margin: 80px 0;
	opacity: 1;
	border: none;
	border-bottom: solid 1px var(--cinza-medio);
}

/* box-newsletter */

#footer .box-newsletter {
	text-align: center;
	margin: 0 0 80px;
}
#footer .box-newsletter h4 {
	color: #FFF;
	font-size: 30px;
	font-weight: 700;
	line-height: 40px;
	margin: 0 0 35px;
}
#footer .box-newsletter form {
	max-width: 680px;
	margin: 0 auto;
	position: relative;
}
#footer .box-newsletter input[type='email'] {
	font-size: 14px;
	width: 100%;
	height: 50px;
	padding: 0 150px 0 20px;
	border: none;
	border-radius: 10px;
}
#footer .box-newsletter input[type='email']::placeholder {
	color: #999;
}
#footer .box-newsletter input[type='submit'] {
	color: #FFF;
	font-size: 15px;
	width: 130px;
	height: 54px;
	position: absolute;
	top: 0;
	right: 0;
	transform: translateY(-2px);
	border: none;
	border-radius: 10px;
	background: var(--laranja);
}

/* messagens */

#footer .wpcf7-spinner ,
#footer .wpcf7-not-valid-tip {
	display: none !important;
}
#footer .wpcf7-response-output {
	color: #FFF;
	font-size: 14px;
	text-align: center;
	margin: 15px 0 0;
	border: none;
}

/* box-social */

#footer .box-social {
	text-align: center;
}
#footer .box-social a {
	display: inline-block;
	margin: 0 15px;
}

/* box-logo */

#footer .box-logo {
	margin: 0;
}
@media (max-width: 600px) {
	#footer .box-logo {
		text-align: center;
	}
}

/* box-subtitle */

#footer .box-subtitle {
	margin: 0 0 20px;
}
@media (max-width: 600px) {
	#footer .box-subtitle {
		text-align: center;
		margin: 50px 0 20px;
	}
}
#footer .box-subtitle h5 {
	color: #FFF;
	margin: 0;
}

/* navbar */

#footer .navbar {
	width: 100%;
	padding: 0;
}
#footer .navbar ul {
	list-style: none;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px 20px;
	width: 100%;
	margin: 0;
	padding: 0;
}
#footer .navbar li {
	display: block;
}
@media (max-width: 600px) {
	#footer .navbar li {
		text-align: center;
	}
}
#footer .navbar li:first-child {
	margin: 0;
}
#footer .navbar a {
	color: var(--cinza-claro);
	font-size: 15px;
	display: inline-block;
	opacity: .7;
}

/* box-text */

@media (max-width: 600px) {
	#footer .box-text {
		text-align: center;
	}
}
#footer .box-text p {
	color: var(--cinza-claro);
	font-size: 14px;
	line-height: 24px;
	margin: 0 0 5px;
	opacity: .7;
}
#footer .box-text a ,
#footer .box-text a:hover ,
#footer .box-text a:focus {
	color: var(--cinza-claro);
}

/* box-contain */

#footer .box-contain {
	margin: 50px 0 0;
	padding: 0 0 15px;
	border-bottom: solid 1px var(--cinza-medio);
}

/* box-info */

@media (max-width: 600px) {
	#footer .box-info {
		text-align: center;
	}
}
#footer .box-info p {
	color: var(--cinza-claro);
	font-size: 14px;
	margin: 0;
	opacity: .7;
}

/* box-developer */

#footer .box-developer {
	text-align: right;
}
@media (max-width: 600px) {
	#footer .box-developer {
		text-align: center;
		padding: 0 0 30px;
	}
}
#footer .box-developer p {
	color: var(--cinza-claro);
	font-size: 14px;
	margin: 0;
	opacity: .7;
}

/* ######
   Capa
############ */

#capa {
	margin: -30px 0 0;
	position: relative;
}

/* box-contain */

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

/* box-content */

#capa .box-content {
	text-align: center;
	max-width: 860px;
	margin: 0 auto;
}
#capa .box-content h1 {
	margin: 0 0 20px;
}
#capa .box-content p {
	color: #FFF;
	font-size: 15px;
	line-height: 25px;
	margin: 0;
}

/* box-image */

#capa .box-image {
	margin: 0;
	background: #000;
}
#capa .box-image img {
	width: 100%;
	height: calc(100vh - 100px);
	object-fit: cover;
}
.single-produto #capa .box-image img {
	opacity: .6;
}
@media (max-width: 600px) {
	#capa .box-image img {
		height: 550px;
	}
}

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

#cta {
	padding: 300px 0 200px;
	position: relative;
	background: #CCC;
}
@media (max-width: 600px) {
	#cta {
		padding: 150px 0 200px;
	}
}
.home #cta {
	padding: 300px 0 600px;
}
@media (max-width: 600px) {
	.home #cta {
		padding: 100px 0 600px;
	}
}

/* box-content */

#cta .box-content {
	text-align: center;
	max-width: 830px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}
#cta .box-content h3 {
	color: #FFF;
	font-size: 60px;
	font-weight: 700;
	line-height: 70px;
	margin: 0 0 35px;
}
@media (max-width: 600px) {
	#cta .box-content h3 {
		font-size: 25px;
		line-height: 35px;
	}
}

/* box-image */

#cta .box-image {
	width: 100%;
	height: 100%;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
#cta .box-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ######
   Produtos
############ */

#produtos {
	padding: 180px 0;
	position: relative;
	border-radius: 75px 75px 0 0;
	background: var(--cinza-claro);
}
@media (max-width: 600px) {
	#produtos {
		padding: 80px 0 180px;
		border-radius: 30px 30px 0 0;
	}
}
#produtos::after {
	content: '';
	display: block;
	width: 100%;
	height: 275px;
	position: absolute;
	bottom: -270px;
	left: 0;
	z-index: 2;
	background: url('assets/images/bg/recorte-cinza.png') no-repeat top center;
}
@media (min-width: 200px) {
	#produtos::after {
		height: 400px;
		bottom: -397px;
		background-size: 100% auto;
	}
}

/* slide-item */

#produtos .slide-item {
	width: 100%;
	min-height: 490px;
}

/* slide-item-info */

#produtos .slide-item-info {
	width: 100%;
}
#produtos .slide-item-info h2 {
	margin: 0 0 15px;
}
#produtos .slide-item-info p {
	font-size: 15px;
}
#produtos .slide-item-info a {
	margin: 20px 0 0;
}

/* slide-item-image */

#produtos .slide-item-image {
	margin: 0;
}
@media (max-width: 600px) {
	#produtos .slide-item-image {
		margin: 40px 0 0;
	}
}

/* flickity-button */

#produtos .flickity-button {
	width: 69px;
	height: 69px;
	top: initial;
	bottom: -100px;
	left: initial;
	right: 80px;
	transform: initial;
	background: url('assets/images/icons/seta-slide.png') no-repeat center center;
}
#produtos .flickity-button.next {
	right: 0;
	transform: rotate(180deg);
}
#produtos .flickity-button svg {
	display: none;
}

/* ######
   Informações
############ */

#info {
	padding: 150px 0;
}
@media (max-width: 600px) {
	#info {
		padding: 80px 0;
	}
}
.single-produto #info ,
.post-type-archive-produto #info {
	padding: 150px 0 0;
}
@media (max-width: 600px) {
	.single-produto #info ,
	.post-type-archive-produto #info {
		padding: 100px 0 0;
	}
}

/* box-image */

#info .box-image {
	margin: 0;
}
@media (max-width: 600px) {
	#info .box-image {
		margin: 0 0 50px;
	}
}

/* box-content */

#info .box-content {
	width: 100%;
}
#info .box-content h2 {
	margin: 0 0 30px;
}
#info .box-content a {
	margin: 30px 0 0;
}

/* ######
   Home (Vídeo)
############ */

.home #video {
	padding: 100px 0 0;
}
@media (max-width: 580px) {
	.home #video {
		padding: 60px 0 0;
	}
}

/* box-video */

.home #video .box-video iframe {
	display: block;
	width: 800px;
	max-width: 100%;
	height: 450px;
	margin: 0 auto;
}
@media (max-width: 580px) {
	.home #video .box-video iframe {
		height: 200px;
	}
}

/* ######
   Home (Banner)
############ */

/* slide-item */

.home #banner .slide-item {
	width: 100%;
	height: 100vh;
	position: relative;
}
@media (max-width: 600px) {
	.home #banner .slide-item {
		height: 500px;
	}
}

/* box-image */

.home #banner .box-image {
	margin: 0;
}
.home #banner .box-image img {
	width: 100%;
	height: 100vh;
	object-fit: cover;
	object-position: center top;
}
@media (max-width: 600px) {
	.home #banner .box-image {
		position: relative;
	}
	.home #banner .box-image::after {
		content: '';
		display: block;
		width: 100%;
		height: 85%;
		position: absolute;
		bottom: 0;
		left: 0;
		background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
	}
	.home #banner .box-image img {
		height: 500px;
	}
}

/* box-contain */

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

/* box-info */

.home #banner .box-info {
	width: 45%;
	max-width: 450px;
}
@media (max-width: 600px) {
	.home #banner .box-info {
		width: 100%;
	}
}
.home #banner .box-info h2 {
	color: #FFF;
	font-size: 60px;
	font-weight: 700;
	line-height: 70px;
	margin: 0 0 20px;
}
@media (max-width: 600px) {
	.home #banner .box-info h2 {
		font-size: 35px;
		line-height: 45px;
	}
}
.home #banner .box-info p {
	color: #FFF;
	font-size: 16px;
	line-height: 24px;
	margin: 0;
}

/* ######
   Home (Escolha certa)
############ */

.home #escolha-certa {
	padding: 150px 0;
	background: url('assets/images/bg/linhas-laranja.png') no-repeat top center;
}
@media (max-width: 600px) {
	.home #escolha-certa {
		padding: 100px 0 40px;
	}
}

/* box-header */

.home #escolha-certa .box-header {
	text-align: center;
	max-width: 550px;
	margin: 0 auto 55px;
}

/* box-item */

.home #escolha-certa .box-item {
	text-align: center;
	height: 100%;
	padding: 0 40px 40px;
	position: relative;
}
@media (max-width: 600px) {
	.home #escolha-certa .box-item {
		height: initial;
		margin: 0 0 60px;
	}
}
.home #escolha-certa .box-item::after {
	content: '';
	display: block;
	width: 100%;
	height: calc(100% - 120px);
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
	border-radius: 20px;
	background: var(--cinza-claro);
}
.home #escolha-certa .box-item img {
	width: 240px;
	height: 240px;
	margin: 0 0 30px;
	padding: 6px;
	position: relative;
	z-index: 2;
	object-fit: cover;
	border: solid 3px var(--verde);
	border-radius: 50%;
}
.home #escolha-certa .box-item h3 {
	color: var(--cinza-escuro);
	font-size: 20px;
	font-weight: bold;
	line-height: 28px;
	margin: 0 0 15px;
	position: relative;
	z-index: 2;
}
.home #escolha-certa .box-item p {
	margin: 0;
	position: relative;
	z-index: 2;
}

/* ######
   Home (Sobre)
############ */

.home #sobre {
	margin: -440px 0 0;
	padding: 300px 0;
	position: relative;
	z-index: 2;
	background: url('assets/images/bg/circulo-verde.png') no-repeat top center;
}
@media (max-width: 600px)  {
	.home #sobre {
		padding: 300px 0 150px;
	}
}
@media (min-width: 2000px) {
	.home #sobre {
		background-size: 100% auto;
	}
}

/* box-content */

.home #sobre .box-content p {
	color: #FFF;
	font-size: 18px;
	line-height: 28px;
	margin: 0 0 50px;
}

/* box-image */

.home #sobre .box-image {
	width: 900px;
	max-width: 100%;
	margin: 0;
	position: absolute;
	top: -100px;
	left: -50px;
}
.home #sobre .box-image img {
	width: 100%;
}

/* ######
   Produto interna (Detalhes)
############ */

.single-produto #detalhes {
	height: 1279px;
	padding: 350px 0 0;
	position: relative;
	z-index: 3;
	background-repeat: no-repeat;
	background-position: bottom center;
}
@media (max-width: 600px) {
	.single-produto #detalhes {
		height: initial;
		padding: 150px 0 80px;
		background: #FFF !important;
	}
}
@media (min-width: 2000px) {
	.single-produto #detalhes {
		background-size: 100% auto;
	}
}

/* box-item */

.single-produto #detalhes .box-item {
	margin: 0 0 30px;
}
.single-produto #detalhes .box-item ul {
	width: 100%;
}
@media (max-width: 600px) {
	.single-produto #detalhes .box-item li {
		vertical-align: top;
	}
}
.single-produto #detalhes .box-item li:first-child {
	width: 120px;
}
@media (max-width: 600px) {
	.single-produto #detalhes .box-item li:first-child {
		width: 100px;
	}
}
.single-produto #detalhes .box-item img {
	width: 90px;
}
@media (max-width: 600px) {
	.single-produto #detalhes .box-item img {
		width: 80px;
	}
}
.single-produto #detalhes .box-item h3 {
	color: var(--cinza-escuro);
	font-size: 25px;
	font-weight: normal;
	margin: 0 0 10px;
}
@media (max-width: 600px) {
	.single-produto #detalhes .box-item h3 {
		font-size: 20px;
	}
}
.single-produto #detalhes .box-item p {
	margin: 0;
}
@media (max-width: 600px) {
	.single-produto #detalhes .box-item p {
		font-size: 14px;
		line-height: 24px;
	}
}

/* ######
   Produto interna (Sustentabilidade)
############ */

.single-produto #sustentabilidade {
	margin: -500px 0 0;
	padding: 600px 0 100px;
	position: relative;
	z-index: 2;
	background: var(--verde);
}
.single-produto #sustentabilidade::after {
	content: '';
	display: block;
	width: 100%;
	height: 275px;
	position: absolute;
	bottom: -270px;
	left: 0;
	z-index: 2;
	background: url('assets/images/bg/recorte-verde.png') no-repeat bottom center;
}
@media (min-width: 2000px) {
	.single-produto #sustentabilidade::after {
		height: 400px;
		bottom: -397px;
		background-size: 100% auto;
		background-position: top center;
	}
}

/* box-image */

.single-produto #sustentabilidade .box-image {
	margin: 0;
}
@media (max-width: 600px) {
	.single-produto #sustentabilidade .box-image {
		margin: 0 0 50px;
	}
}

/* box-content */

.single-produto #sustentabilidade .box-content h2 {
	margin: 0 0 30px;
}
.single-produto #sustentabilidade .box-content p {
	color: #FFF;
}

/* ######
   Contato (Conteúdo)
############ */

.page-template-contato #conteudo {
	padding: 150px 0;
}
@media (max-width: 600px) {
	.page-template-contato #conteudo {
		padding: 80px 0 20px;
	}
}

/* box-header */

.page-template-contato #conteudo .box-header {
	text-align: center;
	max-width: 500px;
	margin: 0 auto 60px;
}
@media (max-width: 600px) {
	.page-template-contato #conteudo .box-header {
		margin: 0 0 100px;
	}
}

/* box-item */

.page-template-contato #conteudo .box-item {
	text-align: center;
	height: calc(100% - 50px);
	margin: 50px 0 0;
	padding: 80px 20px;
	position: relative;
	border-radius: 15px;
	background: var(--cinza-claro);
}
@media (max-width: 600px) {
	.page-template-contato #conteudo .box-item {
		height: auto;
		margin: 0 0 100px;
	}
}
.page-template-contato #conteudo .box-item img {
	position: absolute;
	top: -50px;
	left: 50%;
	transform: translateX(-50%);
}
.page-template-contato #conteudo .box-item span {
	color: var(--cinza-escuro);
	font-size: 20px;
	display: block;
	margin: 0 0 10px;
}
@media (max-width: 600px) {
	.page-template-contato #conteudo .box-item span {
		font-size: 16px;
	}
}
.page-template-contato #conteudo .box-item p {
	color: var(--laranja);
	font-size: 25px;
	font-weight: 700;
	line-height: 35px;
	margin: 0;
}
@media (max-width: 600px) {
	.page-template-contato #conteudo .box-item p {
		font-size: 20px;
		line-height: 28px;
	}
}

/* ######
   Contato (Formulário)
############ */

.page-template-contato #form {
	padding: 250px 0 200px;
	background: url('assets/images/bg/circulo-verde.png') no-repeat top center;
}
@media (max-width: 600px) {
	.page-template-contato #form {
		padding: 100px 0 150px;
	}
}
@media (min-width: 2000px) {
	.page-template-contato #form {
		background-size: 100% auto;
	}
}

/* box-form */

.page-template-contato #form .box-form {
	max-width: 760px;
	margin: 0 auto;
}
.page-template-contato #form .box-form input ,
.page-template-contato #form .box-form select ,
.page-template-contato #form .box-form textarea {
	width: 100%;
	height: 80px;
	margin: 0 0 20px;
	padding: 0 25px;
	border: none;
	border-radius: 10px;
}
@media (max-width: 600px) {
	.page-template-contato #form .box-form input ,
	.page-template-contato #form .box-form select ,
	.page-template-contato #form .box-form textarea {
		height: 55px;
		padding: 0 20px;
	}
}
.page-template-contato #form .box-form textarea {
	height: 150px;
	padding: 25px 25px;
}
.page-template-contato #form .box-form button {
	font-size: 16px;
	letter-spacing: .03em;
	display: block;
	margin: 0 auto;
	padding: 18px 50px;
}

/* mensagens */

.page-template-contato .wpcf7-not-valid-tip {
	color: #FFF;
	font-size: 14px;
	margin: -18px 0 20px 25px;
}
.page-template-contato .wpcf7 form .wpcf7-response-output {
	color: #FFF;
	text-align: center;
	margin: 20px 0 0;
	border: none;
}