/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

# Accessibility
# Alignments
# Clearings
# Typography
# Forms
# Buttons
# Formatting
# Lists
# Tables
# Links
# Navigation
# Layout Structure
    ## Header
    ## Sidebar
    ## Footer
    ## Single Column / No Active Sidebar
    ## Posts
    ## Pages
# Comments
# Widgets
# Infinite scroll
# Media
    ## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# CSS Variables
--------------------------------------------------------------*/
/* Variables */
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

#root, #__next {
  isolation: isolate;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  background: #fff;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  text-rendering: optimizelegibility;
}

a,
a:visited {
  text-decoration: none;
}

a:hover,
a:active {
  outline: 0;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:focus {
  clip: auto !important;
  display: block;
  height: auto;
  left: 5px;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

blockquote,
q {
  quotes: "" "";
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
.widget-area {
  width: 100%;
  font-size: 16px;
  line-height: 1.6;
}

.widget_search input[type=search] {
  border: 1px solid #e2e2e2;
  outline: none;
}

.widget_search .search-submit {
  background-color: #1c93c5;
  color: #ffffff;
  border: 0;
}

/*
.search-form input {
	outline: none;
}
.widget_search input[type="search"] {
	border: 1px solid #eeeeee;
	padding: 8px 8px;
}

.widget_search input:focus {
	border: 1px solid #242b31;
}

.widget_search input[type="search"],
.widget_search input[type="search"]:active {
	color: #000000;
}


*/
/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Formattings
--------------------------------------------------------------*/
hr {
  background-color: #cccccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

/*--------------------------------------------------------------
# Lists
--------------------------------------------------------------*/
ul,
ol {
  margin: 0 0 1.75em 1.25em;
  padding: 0;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
  margin-left: 1.5em;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0 1.5em 1.5em;
}

/*--------------------------------------------------------------
# Tables
--------------------------------------------------------------*/
table {
  margin: 0 0 1.5em;
  width: 100%;
}

/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
.site-header-menu {
  background-color: #f5f5f5;
}

.main-navigation {
  display: block;
  width: 100%;
}

.main-navigation ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.main-navigation .primary-menu {
  position: relative;
}

.main-navigation li {
  display: inline;
  position: relative;
}

.main-navigation a,
.menu-toggle {
  display: inline-block;
  display: inline-block;
  text-decoration: none;
  padding: 0.65625em 0.875em;
  font-size: 16px;
  color: #56646F;
}

.main-navigation li:hover > a,
.main-navigation li.focus > a {
  color: #1c93c5;
}

.main-navigation ul ul {
  display: none;
  float: left;
  position: absolute;
  cursor: pointer;
}

.main-navigation ul ul ul {
  left: 100%;
  top: 0;
  margin-left: 0;
}

.main-navigation .sub-menu a {
  padding: 8px 12px;
  width: 180px;
}

.main-navigation ul li:hover > ul {
  display: block;
  background: #f5f5f5;
}

.main-navigation > div > .primary-menu > li:hover > ul {
  display: block;
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

@media all and (max-width: 960px) {
  .menu-toggle {
    display: inline-block;
  }
  .main-navigation.toggled .primary-menu {
    display: block;
    text-align: left;
    padding: 0;
    border: none;
  }
  .menu-toggle + div[class*=menu-] {
    background: #f5f5f5;
  }
  .main-navigation ul {
    display: none;
  }
  .main-navigation .primary-menu {
    padding-top: 0;
  }
  .main-navigation li {
    float: none;
  }
  .main-navigation a,
.main-navigation .sub-menu a {
    font-size: 15px;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  }
  .main-navigation .primary-menu > li > a {
    display: block;
    background: none;
  }
  .main-navigation .primary-menu .menu-item-has-children a:after {
    content: none;
  }
  .main-navigation .sub-menu a:hover {
    background: none;
  }
  .main-navigation ul ul {
    position: static;
    display: block;
    float: none;
  }
  .main-navigation ul li:hover > ul {
    background: #f5f5f5;
  }
  .main-navigation > div > .primary-menu > li:hover > ul {
    display: block;
  }
  .main-navigation .sub-menu a {
    width: 100%;
  }
}
/* Page navigation */
.pagination {
  text-align: center;
  margin-bottom: 40px;
}

.pagination .prev,
.pagination .next {
  width: auto;
  padding: 11px 20px;
  margin-left: 0;
  margin-right: 0;
}

.pagination .page-numbers {
  background-color: #1c93c5;
  color: #ffffff;
  border-radius: 2px;
  width: 45px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 14px;
  padding-right: 14px;
  margin-left: 3px;
  margin-right: 3px;
  font-size: 14px;
}

.pagination a:hover {
  background-color: #242b31;
}

.pagination .current {
  background-color: #56646F;
  box-shadow: none;
}

/*--------------------------------------------------------------
# Layout Structure
--------------------------------------------------------------*/
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* ******************************* header ********************************** */
/* cor de fundo do topbar: #3a3346 */
/* cor de fundo do logo/banner: #1c93c5 */
/* cor de fundo do nav: #f5f5f5 */
.site-header {
  padding: 15px;
  background-color: #1c93c5;
}

.inside-header {
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-widget {
  display: none;
  width: 728px;
  height: 90px;
}

.custom-logo {
  max-width: 250px;
}

.site-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.7;
}

.site-title a, .site-title a:visited {
  color: #ffffff;
}

.site-title a:hover {
  color: #35495c;
}

@media screen and (min-width: 1050px) {
  .header-widget {
    display: block;
  }
}
/* ******************************* nav ********************************** */
/* ******************************* main / sidebar ********************************** */
.site-content {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}

.site-main {
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

#sidebar-right {
  display: none;
}

@media screen and (min-width: 1000px) {
  .site-main {
    max-width: 870px;
    padding-left: 20px;
    padding-right: 40px;
  }
  #sidebar-right {
    display: block;
    width: 330px;
    padding: 0 15px;
  }
}
/* ************* Article list *********************** */
.sticky {
  display: block;
}

.post-grid {
  margin-bottom: 90px;
}

.post-grid a, .post-grid a:visited,
.inside-article a, .inside-article a:visited {
  color: #1c93c5;
}

.post-grid a:hover,
.inside-article a:hover {
  color: #3a3346;
}

.post-grid .entry-featured {
  margin-bottom: 20px;
}

.post-grid .entry-meta {
  color: #35495c;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.post-grid .entry-content {
  color: #35495c;
  font-size: 17px;
  line-height: 1.7;
}

.post-grid .entry-content p {
  margin-bottom: 30px;
}

@media screen and (min-width: 800px) {
  .post-grid .entry-featured {
    float: left;
    max-width: 360px;
    margin-right: 30px;
  }
}
/* ************* Single article *********************** */
.inside-article {
  width: 100%;
}

.inside-article h1, h2, h3 {
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}

.inside-article h1 {
  font-size: 36px;
}

.entry-header h2, .inside-article h2 {
  font-size: 28px;
}

.inside-article h3 {
  font-size: 24px;
}

.inside-article ul {
  margin-bottom: 24px;
}

.inside-article li {
  margin-bottom: 8px;
}

.inside-article .entry-meta {
  color: #35495c;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.inside-article .entry-content {
  color: #35495c;
  font-size: 17px;
  line-height: 1.7;
}

.inside-article .entry-content p {
  margin-bottom: 30px;
}

.inside-article .entry-media {
  margin-bottom: 30px;
}

.inside-article .tags ul {
  margin-left: 0;
}

.inside-article .tags li {
  display: inline;
}

/****** Post navigation **********/
.post-navigation {
  border-top: 1px dotted #e2e2e2;
  padding-top: 12px;
  padding-bottom: 25px;
}

.post-navigation .nav-links {
  margin-bottom: 15px;
}

@media only screen and (min-width: 750px) {
  .post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
  }
}
.post-navigation .meta-navigation {
  color: #333333;
}

.post-navigation .title-navigation {
  line-height: 1.4em;
}

.nav-previous a,
.nav-previous a:visited,
.nav-next a,
.nav-next a:visited {
  color: #1c93c5;
}

.nav-previous a:hover,
.nav-previous a:focus,
.nav-next a:hover,
.nav-next a:focus {
  color: #56646F;
}

/* ************* sidebar *********************** */
/* ******************************* footer ********************************** */
.site-footer {
  background-color: #f5f5f5;
  padding: 20px 0;
  color: #56646F;
  font-size: 15px;
  letter-spacing: 0.3px;
  text-rendering: optimizeLegibility;
}

.site-footer h4 {
  color: #3a3346;
  font-size: 18px;
  margin-bottom: 10px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
}

.site-footer li {
  margin: 10px 0;
}

.site-footer a {
  color: #1c93c5;
}

.site-footer a:hover {
  color: #56646f;
}

/* ************* footer-widgets *********************** */
.inside-footer-widgets {
  margin-bottom: 30px;
}

.footer-widget-column {
  padding-left: 20px;
  padding-right: 20px;
}

@media only screen and (min-width: 750px) {
  .inside-footer-widgets {
    display: flex;
    flex-wrap: wrap;
  }
  .footer-widget-column {
    width: 50%;
  }
}
@media only screen and (min-width: 1050px) {
  .footer-widget-column {
    width: 25%;
  }
}
/* ************* footer-copyright *********************** */
.inside-footer-copyright {
  padding-left: 20px;
  padding-right: 20px;
}

@media only screen and (min-width: 750px) {
  .inside-footer-copyright {
    display: flex;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
  }
}
/*--------------------------------------------------------------
## Header
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Sidebar
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Pages
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

.no-comments {
  display: none;
}

#comments {
  color: #444444;
  margin-top: 30px;
}

.comments-title {
  margin-bottom: 25px;
  padding-top: 21px;
  border-top: 1px dotted #e2e2e2;
  font-weight: normal;
  font-size: 22px;
}

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

#comments .children li {
  list-style: none;
}

/* comment body */
.comment-body {
  position: relative;
  margin-bottom: 40px;
}

.comment-meta {
  width: 100%;
}

/* avatar styles */
.comment-author .avatar {
  margin-right: 10px;
  margin-bottom: 15px;
  float: left;
}

/* author link */
.comment-author .fn a {
  color: #0582d2;
}

.comment-author .fn a:hover {
  color: #242b31;
}

/* hides author text *says* */
.comment-author .says {
  display: none;
}

/* comment date / time */
.comment-metadata {
  font-size: 14px;
  margin-top: 1px;
  margin-bottom: 5px;
}

.comment-metadata a {
  color: #999999;
}

.comment-metadata .comment-edit-link {
  color: #0582d2;
}

/* comment box */
.comment-content {
  padding: 25px 20px;
}

.comment-content a {
  color: #0582d2;
}

.comment-content a:hover {
  color: #242b31;
}

.comment-content p {
  margin: 0px;
}

.comment-content > p:last-of-type {
  margin-bottom: 0;
}

/* reply text */
.comment .reply a {
  font-size: 16px;
  color: #0582d2;
}

.comment .reply a:hover {
  color: #242b31;
}

/* reply form */
.comment .comment-respond {
  margin-bottom: 60px;
}

.comment .comment-respond .form-submit {
  margin-bottom: 0;
}

.comment-respond .comment-reply-title {
  margin-bottom: 25px;
  font-weight: normal;
  font-size: 22px;
}

/* hides logged in info */
.comment-respond .comment-notes,
.comment-respond .logged-in-as {
  display: none;
}

.comment-respond label {
  display: block;
  font-size: 16px;
}

.comment-respond textarea {
  width: 100%;
}

.comment-respond input {
  width: 100%;
}

.comment-respond textarea,
.comment-respond input {
  border: 1px solid #eeeeee;
  border-radius: 2px;
  outline: none;
  padding: 10px 18px;
}

.comment-respond textarea:focus,
.comment-respond input:focus {
  border: 1px solid #ef403d;
  color: #444444;
}

.comment-respond .submit {
  width: auto;
  background-color: #0582d2;
  color: #ffffff;
  border-radius: 2px;
  border-color: #0582d2;
}

.comment-respond .submit:focus,
.comment-respond .submit:hover {
  color: #ffffff;
  border-color: #242b31;
  background-color: #242b31;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
}

.widget select {
  max-width: 100%;
}

.widget ul,
.widget li {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  margin-bottom: 10px;
}

#sidebar-right .widget {
  padding-left: 15px;
  color: #56646F;
  font-size: 17px;
  line-height: 1.7;
  width: 100%;
}

#sidebar-right .widget p,
#sidebar-right .widget li {
  padding-left: 0;
}

#sidebar-right .widget h4 {
  margin-bottom: 10px;
  padding-left: 0;
  white-space: nowrap;
  text-transform: uppercase;
  color: #333333;
}

#sidebar-right .widget li {
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: dotted 1px #c7d6e4;
}

#sidebar-right .widget a,
.widget a:visited {
  color: #0582d2;
}

#sidebar-right .widget a:hover,
.widget a:focus,
.widget a:active {
  color: #242b31;
}

.widget-recent-posts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.widget-recent-posts .wrapper {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: dotted 1px #c7d6e4;
}

.widget-recent-posts .size-thumb {
  float: left;
  margin-right: 0.6em;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
img {
  width: auto;
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}

.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

.wp-caption {
  margin: 1em 0 1.5em;
  max-width: 100%;
}

.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

/* Ensure center-aligned captions center-align properly. */
.wp-caption.aligncenter {
  margin-left: auto;
  margin-right: auto;
}

/* Give some padding to floated elements, to prevent them butting up against text. */
.wp-caption.alignleft {
  margin-right: 20px;
}

.wp-caption.alignright {
  margin-left: 20px;
}

.wp-caption-text {
  text-align: center;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}/*# sourceMappingURL=style.css.map */