/*
*Theme Name: SINTECTCE
*Theme URI: https://www.webgt.com.br/
*Description: SINTECTCE - Tema exclusivo WebGT
*Author: Giordano Magalhães
*Author URI: https://www.webgt.com.br/
*/
/*
font-family: "Open Sans", sans-serif;
font-family: "Barlow", sans-serif;
*/
/* -> GERAL */
html,
body {
    margin: 0;
    height: 100%;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    color: #000000;
}

body {
    background-color: #f5f5f5;
}

.body-modal {
    overflow: hidden;
}

img,
video {
    max-width: 100%;
}

a,
a:visited,
a:active {
    color: #2600ff;
    text-decoration: none;
    transition: all 200ms linear;
}

a:hover {
    color: #00a6ff;
    text-decoration: none;
}

.wrap {
    position: relative;
    max-width: 1220px;
    width: 100%;
    margin: auto;
}

.wrapShort {
    max-width: 800px;
}

#wpadminbar {
    display: none;
}

/** SECTION */
.section {
    padding: 50px 0;
}

.section-title {
    position: relative;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-bottom-color: #000;
}

.section-title span {
    display: block;
    width: fit-content;
    background-color: #000;
    padding: 6px 14px 4px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}

.section-title .triangulo {
    position: absolute;
    bottom: -10px;
    left: 10px;
    border-top: 10px solid #000;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 0;
    width: 10px;
}

.section-content {
    margin-top: 20px;
    line-height: 22px;
    color: #4d4d4d;
}

a.section-btn {
    display: block;
    width: fit-content;
    padding: 4px 20px;
    border: #ff0c29 solid 1px;
    border-radius: 7px;
    font-family: "Barlow", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ff0c29;
    text-transform: uppercase;
}

a.section-btn:hover {
    background-color: #ff0c29;
    color: #fff;
}

/* section-title-blue */
.section-title-blue {
    border-bottom-color: #2c69cd;
}

.section-title.section-title-blue span {
    background-color: #2c69cd;
    color: #fff;
}

.section-title.section-title-blue .triangulo {
    border-top: 10px solid #2c69cd;
}

/* section-title-red */
.section-title-red {
    border-bottom-color: #b70000;
}

.section-title.section-title-red span {
    background-color: #b70000;
    color: #fff;
}

.section-title.section-title-red .triangulo {
    border-top: 10px solid #b70000;
}

/* section-title-white */
.section-title-white {
    border-bottom-color: #fff;
}

.section-title.section-title-white span {
    background-color: #fff;
    color: #1c1c1c;
}

.section-title.section-title-white .triangulo {
    border-top: 10px solid #fff;
}

/** LINKS */
a.section-buttonseemore {
    margin: 50px auto 0;
    display: block;
    width: fit-content;
    padding: 4px 20px;
    background-color: #ff0c29;
    border-radius: 4px;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    transition: all 200ms linear;
}

a.section-buttonseemore:hover {
    background-color: #2f56b3;
}

.transition200 a {
    transition: all 200ms linear !important;
}

/** BANNER */
#ini-banner {
    margin: 40px 0;
}

/** BLOGS DESTAQUES */
#ini-blog-destaques {
    padding: 50px 0 0;
    background-color: #fff;
}

.blog-destaques-lst {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

a.blog-destaques-item {
    grid-column: span 5;
    grid-row: span 1;
    position: relative;
    display: flex;
    gap: 7px;
    align-items: flex-start;
    color: #333;
}

a.blog-destaques-item:hover .blog-destaques-item-img {
    box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.2);
}

a.blog-destaques-item:hover {
    color: #2600ff;
}

.blog-destaques-item-img {
    width: 170px;
    height: auto;
    transition: all 200ms linear;
}

.blog-destaques-item-txt {
    padding: 0 5px;
}

.blog-destaques-item-title {
    font-size: 16px;
    font-weight: 700;
}

.blog-destaques-item-description {
    /*display: none;*/
    margin-top: 5px;
    font-size: 14px;
}

a.blog-destaques-item:first-child {
    grid-column: span 7;
    grid-row: span 5;
    display: block;
}

a.blog-destaques-item:first-child .blog-destaques-item-description {
    display: block;
}

a.blog-destaques-item:first-child .blog-destaques-item-img {
    width: 100%;
}

a.blog-destaques-item:first-child:hover .blog-destaques-item-img {
    box-shadow: 2px 2px 1px 0 rgba(0, 0, 0, 0.1);
}

a.blog-destaques-item:first-child .blog-destaques-item-title {
    padding: 7px 0;
    font-size: 18px;
}

/** BLOGS */
#ini-blog {
    padding: 30px 0 50px;
    background-color: #fff;
}

.blog-lst {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    justify-content: center;
}

a.blog-item {
    grid-column: span 3;
    position: relative;
    color: #333;
    transition: all 200ms linear;
}

a.blog-item:hover {
    color: #2600ff;
}

.blog-item-img {
    width: 100%;
    max-height: 205px;
    object-fit: cover;
    object-position: center;
}

.blog-item-title {
    margin: 10px 0 14px;
    font-size: 16px;
    font-weight: 600;
}

/** FASTLINKS */
#ini-fastlinks {
    padding: 70px 0;
    background-color: #f9f9f9;
}

.fastlinks-lst {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

a.fastlinks-item {
    background-color: #fff;
    padding: 20px;
    display: flex;
    align-items: start;
    gap: 10px;
    color: #000;
}

a.fastlinks-item:hover {
    color: #0035ff;
    box-shadow: 4px 4px 20px 0 #00000010;
}

.fastlinks-item-icon {
    flex-shrink: 0;
    padding: 10px;
    background-color: #729ee5;
    font-size: 20px;
    color: #fff;
    transition: all 200ms linear;
}

a.fastlinks-item:hover .fastlinks-item-icon {
    background-color: #0035ff;
}

.fastlinks-item-title {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
}

.fastlinks-item-excerpt {
    font-weight: 300;
}

.fastlinks-item-subitens {
    margin-top: 20px;
}

.fastlinks-item-subitem {
    font-size: 14px;
    font-weight: 300;
}

.fastlinks-item-subitem .fa-check {
    color: #88df9f;
}

a.fastlinks-item:hover .fastlinks-item-subitem .fa-check {
    color: #0035ff;
}

/** QUEM SOMOS */
#ini-quemsomos {
    background-image: url(/wp-content/themes/sintectce/assets/imgs/quem-somos-bg-yellow.jpg);
    background-position: center center;
    padding: 70px 0;
}

/* section-title-qs */
.section-title-qs {
    border-bottom-color: #fff000;
}

.section-title.section-title-qs span {
    background-color: #fff000;
    color: #002c41;
}

.section-title.section-title-qs .triangulo {
    border-top: 10px solid #fff000;
}

#ini-quemsomos .section-content {
    line-height: 1.8em;
    font-weight: 300;
    color: #e4e8f1;
}

.ini-quemsomos-l1 {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 50px;
}

.ini-quemsomos-lst {
    font-size: 15px;
}

.ini-quemsomos-img {
    height: 100%;
    object-fit: cover;
}

.ini-quemsomos-l2 {
    margin-top: 50px;
    font-size: 70px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 0 80px #1a3042;
}

/* -> AGENDA */
#ini-agenda {
    padding: 70px 0;
    background-color: #f9f9f9;
}

#ini-agenda .section-title {
    margin: auto;
    text-align: center;
}

#ini-agenda .section-title-sup {
    display: block;
}

.agenda-lst {
    margin-top: 50px;
}

.agenda-item {
    display: flex;
    gap: 14px;
    border-radius: 7px;
}

.agenda-item:nth-child(even) {
    background-color: #f5f5f5;
    margin: 20px 0;
}

.agenda-item-lb {
    padding: 14px 30px 14px 0;
}

.agenda-item-data {
    background-color: #d60b23;
    padding: 14px 20px;
    border-radius: 7px;
    text-align: center;
    font-weight: 700;
    color: #fff;
}

.agenda-item-data-dia {
    font-size: 36px;
    line-height: 38px;
}

.agenda-item-data-mes {
    font-size: 18px;
    text-transform: uppercase;
}

.agenda-item-data-ano {
    font-size: 16px;
}

.agenda-item-titulo {
    margin-bottom: 14px;
    font-size: 24px;
    font-weight: 700;
}

a.agenda-item {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 3px;
    border: #d60b23 solid 1px;
    font-size: 14px;
    font-weight: 600;
    color: #d60b23;
    text-transform: uppercase;
    transition: all 200ms linear;
}

a.agenda-item:hover {
    background-color: #d60b23;
    color: #fff;
}

/** GALERIA DE FOTOS */
#ini-galeria {
    padding: 70px 0;
    background-color: #f9f9f9;
}

.galerias-lst {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

a.galerias-item {
    position: relative;
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}

.galerias-item-foto {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center;
}

.galerias-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: #ff260000;
    transition: all 200ms linear;
}

a.galerias-item:hover .galerias-item-overlay {
    background-color: #ff27008f;
}

.galerias-item-title {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    padding: 30px 14px 10px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.65+100 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

#ini-galeria .section-btn {
    display: inline-block;
}

/** CONTATO */
#ini-contato {
    padding: 70px 0;
    background-color: #fff;
}

.ini-contato-l1 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 50px;
}

.ini-contato-la {
    grid-column: span 5;
}

.ini-contato-lb {
    grid-column: span 7;
}

.ini-contato-lst {
    display: grid;
    gap: 20px;
}

.ini-contato-item {
    display: flex;
    align-items: start;
    gap: 7px;
}

.ini-contato-icon {
    position: relative;
    width: 54px;
    height: 54px;
    border-radius: 10px;
    background-color: #ad0518;
    flex-shrink: 0;
}

.ini-contato-icon [class*="fa-"] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 26px;
    color: #fff;
}

.ini-contato-big {
    font-size: 26px;
    line-height: 26px;
}

/* PAGES */
.page__header {
    padding: 50px 0
}

.page__header .wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
}

.page__header-title .section-title .section-title-big {
    font-size: 30px;
    line-height: 30px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
}

.page__header .section-title.section-title-centered .section-title-sep {
    margin: 5px auto 0 0;
}

.page__header-crumbs {
    font-size: 14px;
    color: #a0a0a0;
}

.page__content {
    margin: 20px 0 50px;
    min-height: 250px;
}

.page__content a.noticias-item {
    background-color: #f5f5f5;
}

a.acaoparlamentar-categories-current {
    background-color: #2a6b92;
    border-color: #2a6b92;
    color: #fff;
}

.page__single-capa {
    margin-bottom: 20px;
}

@media screen and (max-width: 1240px) {
    .wrap {
        padding: 0 20px;
    }
}