
@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&display=swap');

/*
// <weight>: Use a value from 100 to 900

.alexandria-<uniquifier> {
  font-family: "Alexandria", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
*/

:root {
    --body-background: #32497c;
    --body-font-size: 16px;
    --dark-blue: #32497c;
    --primary: #007bff;
    --success: #28a745;
    --success-hover: #218b3a;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
}


/* --- general --- */

html {
    height: 100%
}

body,
td,
th {
    font-family: "Alexandria", sans-serif;
    color: var(--dark-blue);
}

body {
    font-family: "Alexandria", sans-serif;
    width: 100%;
    height: 100%;
    min-width: 380px;
    padding: 0px;
    margin: 0px;
    font-weight: normal;
    font-size: var(--body-font-size);
    color: #FFF;
    overflow: auto;
    background-color: var(--body-background);
}

button,
input,
optgroup,
select,
textarea {
    font-family: "Alexandria", sans-serif;
}

a {
    text-decoration: none;
    outline: none;
    color: #FFF;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

a i {
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

a:hover,
a:hover i {
    text-decoration: none;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

a img {
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    opacity: 1;
    height: auto;
    margin: 0;
    float: left;
}

a:hover img {
    opacity: 0.8;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

p {
    font-size: 1.25rem;
    font-weight: 300;
    color: #FFF;
    line-height: 1.35;
    padding: .5rem 0;
}

p#main {
    font-size: 0;
    line-height: 0;
    padding: 0;
    margin: 0
}

noscript {
    font-size: 1.125rem;
    color: red;
    text-align: center;
    padding: 20px;
    background-color: yellow;
    display: block;
}

b, strong, .b, .strong {
    font-weight: 500
}

.underline {
    text-decoration: underline !important;
}

.clearfix:after {
    font-size: 0px;
    content: ".";
    display: block;
    height: 0px;
    visibility: hidden;
    clear: both;
}

.clear {
    float: none;
    clear: both
}

.relative {
    position: relative
}

.responsive {
    max-width: 100%;
    height: auto;
}

.w100 {
    width: 100%;
}

figure {
    padding: 0;
    margin: 0
}

.valign {
    display: flex;
    align-items: center;
}

.vhalign {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vhlalign {
    display: flex;
    align-items: center;
    justify-content: left;
}

.vhralign {
    display: flex;
    align-items: center;
    justify-content: right;
}

.no-gutter [class*='col-'],
.no-gutter [class*='col-'] {
    padding-right: 0;
    padding-left: 0;
    /*margin-right: 0 !important;
    margin-left: 0 !important;*/
}

.no-break {
    white-space: nowrap;
}

.inline {
    display: inline-block;
}



/* --- table --- */

table.table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #CCC;
}


/* Zebra striping */

table.table tr:nth-of-type(odd) {
    background: #EEE;
}

table.table td,
table.table th {
    padding: 10px 6px;
    font-family: "Alexandria", sans-serif;
    font-size: 1rem;
    line-height: 1.4;
    vertical-align: middle;
}

table.table.c td,
table.table.c th {
    text-align: center;
}

table.table th {
    background-color: #267b86;
    border-right: 1px solid rgba(0, 0, 0, .25);
    border-bottom: 1px solid rgba(0, 0, 0, .25);
    color: #FFF;
    font-weight: bold;
    text-align: left;
}

table.table tfoot td {
    border-top: 1px solid #CCC;
    background-color: #267b86;
    color: #FFF;
    font-weight: bold;
    border-right: 1px solid rgba(0, 0, 0, .25);
    border-bottom: 1px solid rgba(0, 0, 0, .25);
}


/* --- headers --- */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #FFF;
    font-weight: 700;
    margin: 0;
    padding: 0;
}


/* --- header --- */

.container-xxl {
    width:1200px;
    max-width: 100%;
    position:relative;
    margin-left:auto;
    margin-right:auto;
    padding-right:15px;
    padding-left:15px;
}

header {
    width: 100%;
    position: fixed;
    z-index: 20;
}

header #header {
    height: 170px;
}

header #header.sticky {
    height: 113px !important;
}

header .header {
    width: 840px;
    float: right;
}

header .logoContainer {
    width: 350px;
    padding: 40px 0 0;
    float: left;
}

header .sticky .logoContainer {
    padding: 20px 0 0;
}

header .logo {
    width: 350px;
    float: left;
    text-align: left;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

header .logo .logo-sincovat-header {
    width: calc(50% - 8px);
    max-width: 150px;
    margin-right: 16px;
}

header .logo .logo-sescon-header {
    width: calc(50% - 8px);
    max-width: 150px;
}

header .logo a {
    display: inline-block;
}

.sticky {
    /*position: fixed;*/
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.headerBg {
    height: 113px;
    background-color: rgba(0,0,0,.7);
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -ms-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
}


/* footer */
footer {
    padding: 20px 0;
    background-color: #858474;
}

footer p {
    font-size: 1rem;
}


/* --- mobile menu --- */

.mobile-menu-container {
    display: none;
}

.header .mobile-menu-switch,
.mobile-menu,
.mobile-menu-divider {
    display: none;
    margin-left: auto;
    margin-right: auto;
    float: right;
}

.mobile-menu {
    width: 100%;
    background-color: #FFF;
    box-shadow: 0px -1px 5px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px -1px 5px 0px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px -1px 5px 0px rgba(0, 0, 0, 0.2);
}

.mobile-menu-divider {
    margin-top: 15px;
}

.mobile-menu li a {
    /*width: 320px;*/
    display: block;
    color: #2e2e2e;
    /*background: #F0F0F0;*/
    font-size: 1.25rem;
    font-family: "Alexandria", sans-serif;
    padding: 15px 20px;
    margin-bottom: 1px;
}

.mobile-menu li.selected a,
.mobile-menu li.selected ul li.selected a,
.mobile-menu li.selected ul li.selected ul li.selected a {
    background: #dddddd;
    color: #686868;
}

.mobile-menu li ul {
    background-color: #f5f5f5;
}

.mobile-menu li ul a {
    font-size: .875rem;
}

.mobile-menu li ul ul a {
    font-size: .875rem;
}

.mobile-menu li.selected ul a,
.mobile-menu li.selected ul li.selected ul a {
    color: #25282A;
    background: #F0F0F0;
}

.mobile-menu-switch .line {
    display: block;
    width: 35px;
    height: 4px;
    background: #FFF;
    margin-top: 6px;
}

.mobile-menu-switch:hover .line {
    background: #FFF;
}


/* --- vertical menu --- */

.vertical-menu li a {
    display: block;
    background: transparent;
    border-bottom: 1px solid #E2E6E7;
    padding: 17px 18px 18px 19px;
    line-height: 24px;
    color: #777;
}

.vertical-menu li.selected a {
    background: #00b9f2;
    border-color: #00b9f2;
}

.vertical-menu li:hover a,
.vertical-menu li:hover a span {
    color: #00b9f2;
}

.vertical-menu li.selected a,
.vertical-menu li.selected a span {
    color: #FFF;
}

.vertical-menu li a span {
    float: right;
    color: #A4AAB3;
    font-size: .6875rem;
}

header .menu-container {
    margin-top: 50px;
    float: right;
}

header .sticky .menu-container {
    margin-top: 34px;
}


/* --- vertical align --- */


/*
.vertical-align-table {
    display: table;
}

.vertical-align {
    display: table-row;
}
*/

header .vertical-align-cell {
    /*display: table-cell;*/
    vertical-align: middle;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

header .vertical-align-cell nav {
    display: inline-block;
}

a.skip-main {
    left: -999px;
    position: absolute;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: -999;
}

a.skip-main:focus,
a.skip-main:active {
    color: #fff;
    background-color: #009544;
    left: auto;
    top: auto;
    width: 30%;
    height: auto;
    overflow: auto;
    margin: 10px 35%;
    padding: 5px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    border-radius: 15px;
    border: 2px solid yellow;
    text-align: center;
    font-size: 1.2em;
    z-index: 999;
}


/* --- misc --- */

.scroll-top {
    font-size: 2rem;
    color: #FFF;
    position: fixed;
    display: block;
    width: 50px;
    display: none;
    padding: 10px;
    background: rgba(13, 118, 199, 0.6);
    right: 20px;
    bottom: 20px;
    text-align: center;
    z-index: 100;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.scroll-top:before {
    font-size: 1.5rem;
    color: #FFF;
}

.scroll-top:hover {
    background: rgba(13, 118, 199, 0.9);
}

#top {
    display: none
}

.header h1 a,
.sf-menu a:hover,
.social-icons a:hover,
.header-top-bar .template-search:hover,
.header-top-bar-container .header-toggle:hover,
.slider-control:hover,
.vertical-menu li a:hover,
.buttons li a:hover,
.tabs-navigation li a:hover,
.tabs-navigation li a:focus,
.tabs-navigation li a:active,
.scroll-top:hover {
    text-decoration: none;
}

input,
textarea {
    -webkit-appearance: none;
}

input[type='checkbox'] {
    -webkit-appearance: checkbox;
}

input[type='radio'] {
    -webkit-appearance: radio;
}

:focus {
    outline: none;
}

::-moz-focus-inner {
    border: 0;
}

.mt5 {
    margin-top: 5px
}

.mt10 {
    margin-top: 10px
}

.mt20 {
    margin-top: 20px
}

.mt30 {
    margin-top: 30px
}

.mt35 {
    margin-top: 35px
}

.mt40 {
    margin-top: 40px
}

.mt50 {
    margin-top: 50px
}

.mt60 {
    margin-top: 60px
}

.mt80 {
    margin-top: 80px
}

.mt100 {
    margin-top: 100px
}

.mb10 {
    margin-bottom: 10px
}

.mb20 {
    margin-bottom: 20px
}

.mb30 {
    margin-bottom: 30px
}

.mb40 {
    margin-bottom: 40px
}

.mb50 {
    margin-bottom: 50px
}

.mb80 {
    margin-bottom: 80px
}

.mb90 {
    margin-bottom: 90px
}

.mb100 {
    margin-bottom: 100px
}

.ml10 {
    margin-left: 10px
}

.ml15 {
    margin-left: 15px
}

.ml20 {
    margin-left: 20px
}

.ml80 {
    margin-left: 80px;
}

.ml100 {
    margin-left: 100px;
}

.mr10 {
    margin-right: 10px;
}

.mr20 {
    margin-right: 20px;
}

.pt10 {
    padding-top: 10px
}

.pt20 {
    padding-top: 20px
}

.pt30 {
    padding-top: 30px
}

.pt40 {
    padding-top: 40px
}

.pt50 {
    padding-top: 50px
}

.pt150 {
    padding-top: 150px
}

.pt200 {
    padding-top: 200px
}

.pb10 {
    padding-bottom: 10px
}

.pb20 {
    padding-bottom: 20px
}

.pb30 {
    padding-bottom: 30px
}

.pb40 {
    padding-bottom: 40px
}

.pb50 {
    padding-bottom: 50px
}

.pl40 {
    padding-left: 40px;
}

.pl50 {
    padding-left: 50px;
}

.pl60 {
    padding-left: 60px;
}

.pl80 {
    padding-left: 80px;
}

.pl100 {
    padding-left: 100px;
}

.p10 {
    padding: 10px;
}

.mtb5 {
    margin: 5px 0
}

.mtb10 {
    margin: 10px 0
}

.mtb40 {
    margin: 40px 0
}

.text-center {
    text-align: center
}

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

.text-justify {
    text-align: justify
}

.fleft {
    float: left
}

.fright {
    float: right
}

.nopadding {
    padding: 0 !important
}

.imgRight {
    float: right;
    margin-left: 30px;
    margin-bottom: 20px
}

.flat-row {
    clear: both;
    display: block;
    position: relative
}

.hide {
    display: none;
}

.titleBox {
    width: 100%;
    position: relative;
}

.titleBox .cont {
    display: inline-block;
    padding: 38px 100px;
    -webkit-border-radius: 60px;
	-moz-border-radius: 60px;
	border-radius: 60px;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
}

.titleBox .cont.bg-azul {
    background-color: #32497c;
}

.titleBox .cont.bg-bege {
    background-color: #858474;
}

.titleBox .cont h2 {
    font-size: 2.75rem;
    color: #FFF;
    font-weight: 500;
    text-align: center;
}

p.txt-destaque-m {
    font-size: 1.5rem;
    font-weight: 400;
}

p.txt-destaque-g {
    font-size: 1.75rem;
    font-weight: 400;
}

/* alert */
.alert {
    line-height: 1.5;
    padding: .75rem 1.25rem;
    margin: 2px 0;
    border: 1px solid transparent;
    -webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.alert-heading {
    color: inherit
}

.alert-link {
    font-weight: 700
}

.alert-dismissible .close {
    position: relative;
    top: -.75rem;
    right: -1.25rem;
    padding: .75rem 1.25rem;
    color: inherit
}

.alert-success {
    background-color: #dff0d8;
    border-color: #d0e9c6;
    color: #3c763d
}

.alert-info {
    background-color: #d9edf7;
    border-color: #bcdff1;
    color: #31708f
}

.alert-warning {
    background-color: #fcf8e3;
    border-color: #faf2cc;
    color: #8a6d3b
}

.alert-danger {
    background-color: #f2dede;
    border-color: #ebcccc;
    color: #a94442
}


/* --- buttons --- */

.btn {
    width: auto;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    font-weight: normal;
    line-height: 1;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    padding: 12px 30px;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    box-shadow: none;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.btn:hover {
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.btn-shadow {
    box-shadow: 0 0 6px 2px rgba(0, 0, 0, .35);
}

.btn-g {
    padding: 12px 20px;
    font-size: 1.25rem;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.btn-p {
    padding: 8px 14px;
    font-size: 1rem;
}


/* whatsapp */

.whatsbut {
    display: none;
}

@media screen and (min-width:640px) {
    .whatsbut {
        position: fixed;
        display: block;
        width: 60px;
        height: 60px;
        bottom: 25px;
        right: 25px;
        background-color: #25d366;
        color: #FFF;
        -moz-border-radius: 50px;
        -webkit-border-radius: 50px;
        border-radius: 50px;
        text-align: center;
        font-size: 1.875rem;
        box-shadow: 2px 2px 3px #999;
        z-index: 100;
    }
    .whatsbutfloat {
        margin-top: 16px
    }
}


/* inicial */
#agradecimento {
    padding: 240px 20px 100px;
    background-position: center -920px;
    background-repeat: repeat-x;
}

#agradecimento h2.title {
	font-size: 1.5rem;
    color: #FF5;
    font-weight: 500;
    line-height: 2;
}

#agradecimento .wrap {
    overflow-wrap: anywhere;
}

.boxed {
	background-color: rgba(0, 0, 0, 0.1);
	padding: 20px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
}

.boxed p {
	margin-bottom: 0;
}

/* homeBanner */
.homeBanner {
    height: 900px;
    background: linear-gradient(to top, rgba(50,50,50,1) 0%, rgba(50,50,50,0.2) 25%, rgba(50,50,50,0.2) 85%, rgba(50,50,50,1) 97%), url(../images/bg-banner-1.jpg);
    background-position: center, center;
    background-repeat: no-repeat, repeat;
    background-size: 100% 100%, cover;
    position: relative;
}

.homeBanner .banner-1-txt-1 {
    width: 450px;
    position: absolute;
    top: 380px;
    left: calc(50% - 690px);
}

.homeBanner .banner-1-txt-2 {
    width: 444px;
    position: absolute;
    top: 630px;
    left: calc(50% - 650px);
}

.homeBanner .banner-1-txt-3 {
    width: 576px;
    position: absolute;
    top: 465px;
    left: calc(50% - 210px);
}

.homeBanner .banner-1-txt-4 {
    width: 526px;
    position: absolute;
    top: 641px;
    left: calc(50% + 19px);
}



/* seminario */
#seminario {
    padding: 0 0 200px;
}


/* palestrantes */
#palestrantes {
    padding: 0 0 200px;
    background-color: #858474;
}

#palestrantes h3 {
    font-size: 2.5rem;
    font-weight: 500;
    color: #fefefe;
}

#palestrantes h4 {
    font-size: 1.75rem;
    font-weight: 500;
    color: #fffbd6;
}


/* programacao */
#programacao {
    padding: 0 0 200px;
}

#programacao .logo-evento-programacao {
    width: 450px;
}

#programacao table.programacao {
    width: 100%;
    border-collapse: collapse;
    border: none;
}

#programacao table.programacao th,
#programacao table.programacao td {
    font-family: "Alexandria", sans-serif;
    font-size: 2rem;
    color: #FFF;
    font-weight: 200;
    line-height: 1;
    vertical-align: middle;
    padding: 7px 6px;
}

#programacao table.programacao tr td:first-child {
    padding-right: 30px;
    border-right: 1px solid #FFF;
}

#programacao table.programacao tr td:nth-child(2) {
    padding-left: 30px;
}

#programacao table.programacao strong {
    font-weight: 300;
}


/* inscricao */
#inscricao {
    padding: 0 0 200px;
    background-color: #858474;
}

#inscricao .instru-1 {
    font-size: 1.5rem;
}

#inscricao .tableInscricoes {
    width: 100%;
    background-color: transparent;
    border: none;
}

#inscricao .tableInscricoes th {
    font-size: 1.25rem;
    font-weight: 400;
    color: #FFF;
    background-color: var(--dark-blue);
    border: none;
}

#inscricao .tableInscricoes td {
    font-size: 1.25rem;
    color: var(--dark-blue);
    background-color: #FFF;
    border: none;
}

#inscricao .tableInscricoes th, #inscricao .tableInscricoes td {
    padding: 12px;
}

#inscricao .tableBorder {
    -webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
    overflow: hidden;
    border: 2px solid var(--dark-blue);
}

#inscricao .trBorder {
    background-color: #CCC !important;
}

#inscricao .bgBorder {
    padding: 6px 15px;
    background-color: var(--dark-blue);
    -webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

#inscricao .bgBorder2 {
    color: var(--dark-blue);
    border: 2px solid var(--dark-blue);
    padding: 6px 15px;
    background-color: #FFF;
    -webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

#inscricao .bgBorder2 p {
    color: var(--dark-blue);
}

#inscricao label {
    font-size: 1.25rem;
}

#inscricao label.error {
    color: var(--dark-blue);
    padding: 6px 0 6px 15px;
    margin: -4px 0 20px;
    display: block;
    background-color: #FF5;
    -webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

#inscricao label label.error {
    float: right;
}

#inscricao div.error {
    color: var(--dark-blue);
    margin: 0;
    background-color: #FF5;
    -webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

#inscricao .avisaNome {
    color: var(--dark-blue);
    padding: 6px 0 6px 15px;
    margin: -4px 0 20px;
    display: none;
    background-color: #FF5;
    -webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

#inscricao .avisaInscrito {
    color: var(--dark-blue);
    margin: -4px 0 20px;
    display: none;
    background-color: #FF5;
    -webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

#inscricao .avisaInscrito p {
    color: var(--dark-blue);
    padding: 6px 0 6px 15px;
}

#inscricao .termo-uso {
    height: 300px;
    font-size: 0.9375rem;
    font-weight: 200;
    line-height: 1.3;
    padding: 0 15px;
    background-color: rgba(0, 0, 0, .3);
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    overflow-x: auto;
    white-space: pre-line;
    /*overflow-wrap: break-word;*/
}

#inscricao .termo-uso p {
    font-size: .875rem;
    font-weight: 200;
}


/* inscricao form */
input[type="text"], input[type="email"], input[type="search"], input[type="password"] {
	-webkit-appearance: none;
	-moz-appearance: none;
}

input::placeholder {
    color: var(--dark-blue);
}

.form-control, .wpcf7-form-control {
	display: block;
	width: 100%;
	padding: 1.125rem 1rem;
	font-size: 1.25rem;
	color: var(--dark-blue);
	background: #FFF;
    margin-bottom: .5rem;
    -webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
    border: none;
}

.form-control, .wpcf7-form-control_0marg {
	display: block;
	width: 100%;
	padding: 1.25rem 1rem;
	font-size: 1.25rem;
	color: var(--dark-blue);
	background: #FFF;
    -webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
    border: none;
}

.wpcf7-submit {
	width: auto;
	cursor: pointer;
	font-size: 1.25rem;
    padding: 1.25rem 1rem;
	text-transform: uppercase;
	text-decoration: none;
	color: #FFF;
	font-weight: 600;
	margin: 1.25em 0;
	cursor: pointer;
	background: rgb(8, 156, 8);
    -webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
    border: none;
}

.wpcf7-submit:disabled,
.disabled {
    background-color: #777;
    opacity: .5;
    cursor:not-allowed;
}

.wpcf7-submit_0marg {
	width: auto;
	cursor: pointer;
	font-size: 1.25rem;
    padding: 1.25rem 1rem;
	text-transform: uppercase;
	text-decoration: none;
	color: #FFF;
	font-weight: 600;
	cursor: pointer;
	background: rgb(8, 156, 8);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
    border: none;
}

.btn {
	width: auto;
	font-size: 1em;
	padding: 4px;
	border: none;
	text-decoration: none;
	font-weight: 400;
	cursor: pointer;
	-webkit-transition: all 400ms ease-in-out 0s;
	transition: all 400ms ease-in-out 0s;
}

.btn-p {
	font-size: .75em;
	padding: 2px 6px;
}

.btn-vermelho {
	color: #FFF;
	background-color: #F00;
}

.btn-verde {
	color: #FFF;
	background-color: rgb(34, 184, 34);
}

.btn-cinza {
	color: #333;
	background-color: #CCC;
}

.cursor {
	cursor: pointer;
}


/* local */
#local {
    padding: 0 0 200px;
    background-image: url(../images/bg-teatro-univates.jpg);
    background-position: center;
    background-size: cover;
}

#local .local-txt {
    /*margin: 260px 0 200px;*/
}

#local h3 {
    font-size: 2.75rem;
    font-weight: 400;
}

#local p {
    font-size: 2.5rem;
    font-weight: 200;
}


/* patrocinadores */
#patrocinadores {
    padding: 0 0 200px;
    background-color: #858474;
}

#patrocinadores .secao {
    text-align: center;
    margin: 25px 0;
}

#patrocinadores .secao h3 {
    font-size: 1.5rem;
    font-weight: 300;
    text-align: center;
}

#patrocinadores .secao .logos {
    text-align: center;
    background-color: #FFF;
    display: inline-block;
    padding: 20px 50px;
    margin-top: 12px;
    -webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

#patrocinadores .secao .logos img {
    margin: 15px;
}


/* contato */
#contato {
    padding: 0 0 140px;
}

#contato strong {
    font-weight: 400;
}

#contato h3 {
    font-size: 2rem;
}

#contato p {
    line-height: 1.5;
}
