/*
Theme Name: Henrique Ligeiro
Version: 2019
Author: Saulo Padilha
Author URI: http://www.spadilha.com
*/

/* ========================================================================================================
    RESET
======================================================================================================== */
/* apply a natural box layout model to all elements */
* {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
	background: transparent;
	outline: none;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* ========================================================================================================
    BODY
======================================================================================================== */
html,
body {
	height: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

html {
	font-size: 10px;
}

body {
	font-family: 'Roboto', sans-serif;
	color: #333333;
	line-height: 1;
	font-size: 1.4rem;
	background-color: #fff;

	/*    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing: grayscale;*/
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
	display: block;
}
audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

input,
select,
textarea {
	font-family: 'Roboto', sans-serif;
	font-size: 1.6rem;
	color: #000;
	padding: 0;
	border: 0;
}
textarea {
	overflow: auto;
	line-height: 17px;
}

::-webkit-input-placeholder {
	color: #999191;
	font-weight: 300;
	font-style: italic;
	opacity: 1;
}
:-moz-placeholder {
	color: #999191;
	font-weight: 300;
	font-style: italic;
	opacity: 1;
}
::-moz-placeholder {
	color: #999191;
	font-weight: 300;
	font-style: italic;
	opacity: 1;
}
:-ms-input-placeholder {
	color: #999191;
	font-weight: 300;
	font-style: italic;
	opacity: 1;
}

a {
	text-decoration: none;
	color: #000;
	font-weight: 400;
	-webkit-transition: color 0.2s ease, background-color 0.2s ease;
	-moz-transition: color 0.2s ease, background-color 0.2s ease;
	-o-transition: color 0.2s ease, background-color 0.2s ease;
	transition: color 0.2s ease, background-color 0.2s ease;
}
a:hover {
	color: #000;
}

h1,
h2,
h3,
h4 {
	font-family: 'Oswald', sans-serif;
	font-weight: 400;
	color: #333333;
}

p {
	line-height: 1.5;
	margin-bottom: 15px;
}

ol,
ul {
	list-style: none;
}

table {
	border-collapse: collapse;
	margin: 15px 0;
}
table th,
table td {
	padding: 5px;
	border: 1px solid #000;
}

.row {
	width: 100%;
	float: left;
	clear: left;
}

.col {
	width: calc(47%);
	float: left;
}
.col:last-child {
	float: right;
}

.flexbox {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;

	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;

	justify-content: space-between;
}

.fitvideo {
	width: 100%;
	float: left;
	clear: left;
}
.fitvideo iframe {
	width: 100%;
}

.wrapper {
	max-width: 1560px;
	width: 100%;
	margin: 0 auto;
	padding: 0 4vw;
	position: relative;
}

.sectionTitle {
	font-size: 1.4rem;
	color: #2e303b;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.menu.opened {
	left: 0;
}

/* ========================================================================================================
    HEADER
======================================================================================================== */
#header {
	padding: 80px 0px 170px;
	padding: 5.5vw 0px 8.3vw;
}

/* LOGO */
#header .logo {
	font-family: 'Oswald', sans-serif;
	font-size: 2vw;
	text-transform: uppercase;
	float: left;
}

/* MENU */
.menuIcon {
	display: none;
}
.menu {
	float: right;
	margin-top: 16px;
}
.menu ul {
	list-style: none;
	text-align: center;
}
.menu ul li {
	display: inline-block;
	position: relative;
	margin-left: 1.4vw;
}
.menu ul li a {
	font-family: 'Oswald', sans-serif;
	font-size: 1.15vw;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.3);
	text-transform: uppercase;
	display: block;
}

.menu a:hover,
.menu ul li.current-menu-item a {
	color: rgba(0, 0, 0, 0.7);
	font-weight: 400;
}

/* ========================================================================================================
    HOME
======================================================================================================== */

.sectionTitle {
	width: 100%;
	position: relative;
	text-align: center;
	margin: 60px 0 60px;
	float: left;
	clear: left;
}
.sectionTitle:before {
	content: '';
	width: 100%;
	height: 1px;
	background-color: #d8d5d5;
	position: absolute;
	left: 0;
	top: 50%;
}
.sectionTitle h2 {
	font-family: 'Roboto', sans-serif;
	font-size: 3rem;
	font-weight: 600;
	color: #a1a1a1;
	text-transform: uppercase;
	padding: 0 40px;
	background-color: #fff;
	display: inline-block;
	position: relative;
}

/* ==========================
    GRID
============================*/
.grid {
	width: 100%;
	padding-bottom: 30px;
}

.grid .item {
	width: 32.9%;
	float: left;
	position: relative;
	margin-bottom: 6px;
}
.grid .item.invisible {
	height: 0;
	margin: 0;
}

.grid .item-image {
	width: 100%;
	float: left;
	clear: left;
	position: relative;
	overflow: hidden;
	z-index: 5;
}
.grid .item-image img {
	width: 100%;
	height: auto;
	float: left;
	clear: left;
	position: relative;
	z-index: 1;

	-webkit-backface-visibility: hidden;
}

.grid .item-info {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	text-align: center;
	align-items: center;
	justify-content: center;
	opacity: 0;
}

.grid .item-info a {
	display: block;
}
.grid .item-info h2 {
	font-size: 3rem;
	font-weight: 600;
	line-height: 1.5;
	margin-bottom: 10px;
}
.grid .item-info p {
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.3;
}
.grid .item-info p.hdr_subtitulo {
	font-weight: bold;
	font-style: italic;
}
.grid .item-info p.hdr_cliente {
	font-style: italic;
}

.grid-link {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 50;
	display: block;
	opacity: 0;
}

.grid .item a {
	color: inherit;
}
.grid a:hover {
	color: #000;
}

/* HOVER */
.opacity-layer:hover .item-image img {
	opacity: 0.3;
}
.opacity-layer:hover .item-info {
	opacity: 1;
}

.opacity-layer .item-image img,
.item-info {
	-webkit-transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
}

/* ========================================================================================================
    INTERNAS
======================================================================================================== */
.posts-nav {
}
.single-nav {
	position: absolute;
	right: -80px;
	top: -8px;
}
.single-nav a {
	font-size: 25px;
	font-weight: bold;
	color: rgba(0, 0, 0, 0.2);
	margin-left: 10px;
}
.single-nav a:hover {
	color: rgba(0, 0, 0, 0.7);
}

#conteudo .wrapper {
	max-width: 1260px;
}
#conteudo h1 {
	font-size: 3.5rem;
	line-height: 1.5;
	margin-bottom: 2rem;
}
#conteudo p {
	font-size: 2rem;
	margin-bottom: 1vw;
}

#conteudo .fitvidz {
	margin: 35px 0;
}

/* ============================================
    BUSCA
============================================ */
.busca {
	padding-bottom: 50px;
}

#default-page {
	width: 100%;
	max-width: 880px;
	padding-bottom: 40px;
}
#default-page h1 {
	display: none;
}
#default-page p {
	font-size: 2.2rem;
	line-height: 1.6;
}

/* ========================================================================================================
    FOOTER
======================================================================================================== */
#footer {
	height: 30px;
}

/* ========================================================================================================
    RESPONSIVE
======================================================================================================== */

@media only screen and (max-width: 1250px) {
	#header .logo {
		font-size: 33px;
	}
	.menu ul li {
		margin-left: 30px;
	}
	.menu ul li a {
		font-size: 1.8rem;
	}
}

@media only screen and (max-width: 1150px) {
	.single-nav {
		right: 0;
		top: -31px;
	}
}

@media only screen and (max-width: 960px) {
	.wrapper {
		padding: 0 2.5%;
	}

	.single-nav {
		right: 2.5%;
	}
}

@media only screen and (max-width: 640px) {
	.single-header,
	.single-info {
		width: 100%;
	}
}

@media only screen and (max-width: 560px) {
	#header {
		text-align: center;
		padding: 20px 0 50px 0;
	}
	#header .logo {
		float: none;
	}
	.menu {
		width: 100%;
		float: none;
		clear: left;
		margin-top: 30px;
	}
	.menu ul li {
		margin: 0 20px;
	}

	.grid .item {
		width: 48.7%;
		margin-bottom: 2.5vw;
	}
	.slide {
		margin-bottom: 10px;
	}
}

@media only screen and (max-width: 360px) {
	.wrapper {
		padding: 0 10px;
	}

	#header .logo {
		font-size: 26px;
	}

	.grid .item {
		width: 100%;
		margin-bottom: 10px;
	}
}

/* ========================================================================================================
    PRE DEFINED CLASSES
======================================================================================================== */
.hidden {
	display: none;
}
.bold {
	font-weight: bold;
}
.italic {
	font-style: italic;
}
.underline {
	text-decoration: underline;
}
.asLink {
	cursor: pointer;
}

.fLeft {
	float: left;
}
.fRight {
	float: right;
}

.cLeft {
	clear: left;
}
.cRight {
	clear: right;
}

.aCenter {
	text-align: center;
}

.alignnone,
.aligncenter,
.alignright,
.alignleft {
	width: 100%;
	display: block;
	text-align: center;
	margin: 10px 0;
}

.invisible {
	visibility: hidden;
}

.relative {
	position: relative;
}

@media (min-width: 640px) {
	.alignnone {
		width: 100%;
		height: auto;
		margin: 10px 0 20px;
	}
	.aligncenter {
		width: auto;
		max-width: 100%;
		height: auto;
		display: block;
		margin: 50px auto;
	}
	.alignright {
		width: auto;
		float: right;
		margin: 5px 0 15px 25px;
		clear: right;
	}
	.alignleft {
		width: auto;
		float: left;
		margin: 5px 25px 15px 0;
		clear: left;
	}
}

.wp-block-details summary {
    font-size: 20px;
	display: inline-block;
	cursor: pointer;
	list-style: none;
	position: relative;
	padding-right: 30px;
    margin-bottom: 20px;
}

.wp-block-details summary::after {
    content: '';
    display: block;
    width: 10px;
    height: 16px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    mask: url('images/chevron-right.svg') center no-repeat;
    mask-size: contain;
    background-color: currentcolor;
    transition: all 0.15s ease-in-out;
}

.wp-block-details[open] > summary::after {
  transform: translateY(-50%) rotate(-90deg);
}
