/*
Theme Name: Mac Vip
Theme URI: https://www.macvip.com.br/
Author: Bruno Santos
Author URI: https://brunosantos.net.br/
Description: Tema desenvolvido para a MACVIP consultoria em informática. O tema foi feito com base no tema original do Wordpress, e o layout e código CSS foi inteiramente desenvolvido por mim.
Version: 1.0
*/

/* import de font */
@import url(https://fonts.googleapis.com/css?family=Josefin+Sans:400,600);

/**
 * 1.0 - Normalize
 *fo
 * Normalizing styles have been helped along thanks to the fine work of
 * Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
 */

html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: 700;
	color: inherit;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 0;
}

hr {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

code,
kbd,
pre,
samp {
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

select {
	text-transform: none;
}

button {
	overflow: visible;
}

button,
input,
select,
textarea {
	max-width: 100%;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
	opacity: .5;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input[type="checkbox"],
input[type="radio"] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin-right: 0.4375em;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"] {
	-webkit-appearance: textfield;
	width: 180px;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #d1d1d1;
	margin: 0 0 1.75em;
	padding: 0.875em;
}

fieldset > :last-child {
	margin-bottom: 0;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
	vertical-align: top;
}

optgroup {
	font-weight: bold;
}


/* grids e posicionamento */

.content {
	max-width:1000px;
	margin: 0 auto;
}

.full {
	width: 100%;
	padding: 0;
	margin: 0;
}

.col-md-3 {
	width: 25%;
	padding: 10px;
	float: left;
}

.col-md-4 {
	width: 33.33%;
	padding: 10px;
	float: left;
}

.col-md-6 {
	width: 50%;
	padding: 10px;
	float: left;
}

.col-md-8 {
	width: 66.66%;
	padding: 10px;
	float: left;
}

.col-md-9 {
	width: 75%;
	padding:10px;
	float: left;
}

.col-md-12 {
	width: 100%;
	padding:10px;
	float: left;
}

.left {
	float: left;
}

.right {
	float: right;
}

.center {
	margin: 0 auto;
}

.row {
	width: 100%;
	margin: 15px 0;
	overflow: hidden;
}

.hidden {
	overflow: hidden;
}

/* textos */

* {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 1rem;
	color: #58595B;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
	color: #73A7D9;
	margin: 10px 0;
}

h1, h2 {
	font-size: 2rem;
	text-align: center;
}

h3 {
	font-size: 1.25rem;
	font-weight: 300;
	margin: 15px 0;
}

p {
	margin: 10px 0;
	line-height:1.2;
}

a, a:visited, a:hover {
	color: inherit;
	text-decoration: none;
	-webkit-transition: all 500ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
   	-moz-transition: all 500ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
     -o-transition: all 500ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition: all 500ms cubic-bezier(0.215, 0.610, 0.355, 1.000); /* easeOutCubic */

	-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	   -moz-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
     -o-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); /* easeOutCubic */
}

a:hover {
	color: #567DA3;
	-webkit-transition: all 500ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
   	-moz-transition: all 500ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
     -o-transition: all 500ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition: all 500ms cubic-bezier(0.215, 0.610, 0.355, 1.000); /* easeOutCubic */

	-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	   -moz-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
     -o-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); /* easeOutCubic */
}

ul {
	margin: 15px 0;
	padding-left: 5px;
}

ul li:before {
    content: "";
    width: 7px;
    height: 7px;
    background-color: #73A7D9;
    display: inline-block;
    border-radius: 50%;
    margin: 0 10px 3px 0;
}

ul li {
	list-style: none;
	font-weight: 700;
}

/* forms */

input, select, textarea {
	width: 100%;
	padding: 5px;
	border: 1px solid #BBBDBF;
	border-radius: 5px;
	height: 32px;
}

textarea {
	height: auto;
}

button, input[type="submit"] {
	background: #F16522;
	color: #fff;
	text-align: center;
	padding: 10px 15px;
	border: none;
	border-radius: 5px;

	-webkit-transition: all 500ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
   	-moz-transition: all 500ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
     -o-transition: all 500ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition: all 500ms cubic-bezier(0.215, 0.610, 0.355, 1.000); /* easeOutCubic */

	-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	   -moz-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
     -o-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); /* easeOutCubic */
}

button *, input[type="submit"] * {
	color: inherit;
}

button:hover, input[type="submit"]:hover {
	background: -moz-linear-gradient(top, #f16522 0%, #ef6b2d 50%, #ef5c17 51%, #ed895e 100%);
	background: -webkit-linear-gradient(top, #f16522 0%,#ef6b2d 50%,#ef5c17 51%,#ed895e 100%);
	background: linear-gradient(to bottom, #f16522 0%,#ef6b2d 50%,#ef5c17 51%,#ed895e 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f16522', endColorstr='#ed895e',GradientType=0 );

	-webkit-transition: all 500ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
   	-moz-transition: all 500ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
     -o-transition: all 500ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition: all 500ms cubic-bezier(0.215, 0.610, 0.355, 1.000); /* easeOutCubic */

	-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	   -moz-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
     -o-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); /* easeOutCubic */
}


/* header home */

#header-home {
	background: url('./images/bg_header_home.jpg') no-repeat center center;
	background-size: cover;
	overflow: hidden;
	height: 300px;
}

.logo-home {
    background: url("./images/bg_logo.png") no-repeat scroll center center transparent;
    display: block;
    width: 408px;
    /*margin: 0px auto;*/
    padding-top: 50px;
    height: 227px;
}

.logo-home img {
    width: 322px;
    margin: 0 auto;
    display: block;
}

.menu-topo-home {
	background-color: #414042;
	width: 100%;
	overflow: hidden;
}

.main-navigation {
	max-width: 1000px;
	margin: 0 auto;
}

ul.primary-menu {
    max-width: 452px;
    margin: 0 auto;
}

.primary-menu li {
	float: left;
	padding: 10px 15px;
	color: #fff;
	text-transform: uppercase;
	font-weight: normal;
}

.primary-menu li:before {
	display: none;
}

.primary-menu li.current_page_item {
	color: #567DA3;
}

#menu-responsivo {
	display: none;
	text-align: center;
	width: 100%;
	padding: 10px 15px;
	color: #fff;
}

#logo-barra-fixa {
	display: none;
	float: left;
	height: 40px;
	padding: 5px;
	width: 165px;
}

.fixar { /* fixa o menu no topo */
	position: fixed;
	top: 0;
	z-index: 110;
	-webkit-transition: all 500ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
   	-moz-transition: all 500ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
     -o-transition: all 500ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
      transition: all 500ms cubic-bezier(0.215, 0.610, 0.355, 1.000); /* easeOutCubic */

	-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	 -moz-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
     -o-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); /* easeOutCubic */
}

.fixar #logo-barra-fixa {
	display: block;
}

.fixar #logo-barra-fixa img {
	width: 100%;
}

.fixar .main-navigation .main-navigation {
	float: right;
}

/* home */

.main {
    margin: 30px 0;
}

.bloco-imagem img {
	border-radius: 5px;
	width: 100%;
}

#introducao div.col-md-9:nth-child(2) > h3:nth-child(1) {
	margin-top: 0;
}

.chamada-para-acao {
	margin: 50px auto;
}

.chamada-para-acao:before {
    content: "";
    width: 100%;
    border-bottom: 1px solid #BBBDBF;
    position: relative;
    top: 20px;
    display: block;
}

.chamada-para-acao a {
	width: 220px;
	display: block;
	margin: 0 auto;	
	position: relative;
	z-index: 100;
}

.chamada-para-acao button {
	background-color: #F16522;
	color: #fff;
	font-size: 1.25rem;
	padding: 10px 14px;
	border: none;
	border-radius: 5px;
}

.box-informativo-home {
	border: 1px solid #BBBDBF;
	border-radius: 5px;
	width: 100%;
	position: relative;
	/*overflow: hidden;*/
	padding: 10px 20px;
	height: 210px;
	margin-bottom: 40px;
}

.box-informativo-home h3, .box-informativo-home p {
	text-align: center;
}

.texto-box-informativo {
	height: 108px;
}

.icone-box-home {
	background: #73A7D9;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	position: absolute;
	bottom: -40;
	left: 50%;
	margin-left: -40px;
}

.icone-box-home img {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -19px;
    margin-left: -16px;
}

#assistencia-icon {
	margin-left: -22px;
}

.bg {
	background: url('./images/bg.png');
	padding: 30px 0;
	margin: 50px 0;
}

.indicacoes * {
	text-align: center;
}

.avatar-indicacoes {
	width: 105px;
	height: 105px;
	border-radius: 50%;
	overflow: hidden;
	margin: 30px auto;
}

.avatar-indicacoes img {
	width: 100%;
}

.texto-indicacao {
	padding: 0 50px;
}

.texto-indicacao * {
	color: #fff;
}

.texto-indicacao strong {
    display: inline-block;
    margin-top: 20px;
}

.titulo-blog {
	min-height: 55px;
}

.titulo-single {
	height: auto;
	margin-bottom: 15px;
	overflow: hidden;
}

.chamada-noticias div header h3 {
	margin-top: 0;
}

.img-chamada-noticias img {
	width: 100%;
	height: auto;
}

.meta {
	float: left;
}

.meta p {
	font-size: .81rem;
	font-weight: 700;
}

.leia-mais {
    padding: 3px 10px;
    float: right;
    border-radius: 3px;
    margin-top: 5px;
}

.chamada-noticias {
	border-bottom: 1px solid #BBBDBF;
}

.chamada-noticias:last-child {
	border-bottom: none;
}

.chamada-noticias footer {
    margin-top: 20px;
    overflow: hidden;
}

/* footer */

#footer-geral {
	background: #414042;
	margin-bottom: 0;
	padding: 20px 0;
}

#footer-geral .row {
	margin: 5px 0;
}

#footer-geral h3 {
	margin: 0;
	padding-left: 10px;
}

#footer-geral p {
	color: #fff;
}

#logo-footer {
	width: 200px;
	float: right;
}

#voltar-topo {
	display: none;
    background: none repeat scroll 0% 0% #73A7D9;
    position: fixed;
    bottom: 20px;
    right: 20px;
    color: #fff;
    padding: 10px;
}

.slick-prev, .slick-next {
	z-index: 100;
	width: 30px!important;
	height: 30px!important;
}

.navigation {
    display: block;
    text-align: center;
    margin: 35px 0;
}

.nav-links {
	color: #fff;
}

.nav-links * {
    display: inline-block;
    padding: 4px 10px;
    color: #FFF;
    background: none repeat scroll 0% 0% #BBBDBF;
    margin: 0;
}

.page-numbers.current {
	background: #203569;
}

.sidebar aside {
	border: 1px solid #BBBDBF;
	border-radius: 5px;
	padding: 20px;
}

.sidebar img {
	width: 100%;
	height: auto;
}

.sidebar section {
	margin-bottom: 20px;
}

.sidebar h2:first-child {
	margin-top: 0;
}

.sidebar h2 {
	border-bottom: 1px solid #BBBDBF;
	color: #7D7D7D;
	font-size: 1.8rem;
	font-weight: 400;
	margin: 30px 0;
	text-align: left;
}

.sidebar ul li {
	margin-bottom: 7px;
	font-weight: 400;
	color: #000;
}

.genericon {
	color: #fff;
}

.single-title {
	text-align: left;
	margin-top: 0;
	margin-left: 0;
	font-size: 1.25rem;
}

.texto-single {
	margin: 0 0 20px;
}

.texto-single a, .texto-single strong {
	color: #73A7D9;
}

footer.comentarios {
    margin: 30px 0px;
    padding-top: 20px;
    border-top: 1px solid #BBBDBF;
}

.comments-title, .comment-reply-title {
    margin: 0 0 20px;
    text-align: left;
    font-size: 1.2rem;
}

.comment-list {
    list-style: none;
    padding-left: 0;
}

.comment-meta {
	margin: 15px 0;
}

.comment-author > img {
	float: left;
	margin-right: 15px;
}

b.fn, .says {
	color: #73A7D9;
}

.comment-metadata time {
	color: #F16522;
}

.reply {
    text-align: right;
    font-weight: 700;
}

#commentform label {
	display: block;
}

ol.children {
	list-style: none;
	padding-left: 45px;
}

#comment, #commentform input {
	width: 100%;
	border: 1px solid #BBBDBF;
	border-radius: 5px;
	padding: 5px;
}

#commentform #submit {
    float: right;
    margin: 15px 0px;
    border-radius: 5px;
    color: #FFF;
    background: none repeat scroll 0% 0% #F16522;
    padding: 5px 10px;
    width: 148px;
    border: none;
}

.texto-page h2:first-child {
	margin-top: 0;
}

.texto-page h2 {
    text-align: left;
    font-size: 1.2rem;
    margin: 20px 0;
}

#form-404 .search-form {
	width: 275px;
	margin: 25px auto;
}

.wpcf7-response-output {
	float: right;
}



