@charset "utf-8";


@font-face {
  font-family: "Lato";
  src: url("/site/midia/arquivos/Lato-Regular.ttf");
}

@font-face {
  font-family: "Lato Light";
  src: url("/site/midia/arquivos/Lato-Light.ttf");
}
@font-face {
  font-family: "Lato Bold";
  src: url("/site/midia/arquivos/Lato-Bold.ttf");
}

html {
  height:100%;
}

body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  font-size: 110%;
  clear: both;
  box-sizing: border-box;
}

a.box-conheca{
 background-color: #44749d;
 padding: 10px;
 color: #fff;
}

a:hover.box-conheca{
 color: #fff;
}

.text-depoiments{
 font-size: 14px;
 padding: 10px;
 
}

.box-depoiments {
 padding: 40px 10px;
 backgound-color: #efefef;
 border: 1px solid #efefef;
 border-radius: 10px;
}

.box-amarelo{
 background-color: #fccb7c;
 padding: 20px;
 margin: 0 0 30px 0;
}

.box-infos{
 border: 2px solid #447499;
 padding: 8px;
 margin-top: 20px;
 /*width: 422px;*/
}

.btn-primary {
 background-color: #4183c4;
 border: none;
 padding: 20px;
}

.btn-primary:hover {
 background-color: #34699e;
}

.ui.primary.button{
   background-color: #44749d;
   color: #fff;
}

.ui.primary.button a{
   color: #fff;
   font-size: 19px;
   font-weight: bold;
   border-radius: unset;
}

.chevron::before {
    border-style: solid;
    border-width: 0.25em 0.25em 0 0;
    content: '';
    display: inline-block;
    height: 1.45em;
    left: 2em;
    position: relative;
    transform: rotate(-45deg);
    width: 1.45em;
    color: #ccc;
}
/*
.ui.grid{
  margin-left: 17rem;
  margin-right: -10rem;
}
*/
.ui.segment {
  border: 0;
  border-radius:0;
  padding: 3em 3em;
  background: #e39e22;
}

.ui.segment img {
  height:65px;
}

.ui.segment.btn {
  background-color:#e39e22;
  transition:0.5s;
  -webkit-transition: 0.5s;
  -moz-transition:0.5s;
  height:200px;
  margin-top: 40px;
  width: 60%;
}

.ui.segment:hover {
  opacity:.8;
  cursor: pointer;
}

.ui.segment.lista,
.ui.segment.footer{
  border:0;
  box-shadow:none;
  background:inherit;
  cursor:initial;
  opacity:1;
}

.ui.segment.footer p {
  font-size:17px;
}

.ui.segment.footer img {
  height:100%;
}

ul.itens-capa {
  column-count: 3;
  column-gap: 154px;
  display: inline-block;
  margin-left: 15%;
}

.extra{
    margin-bottom: 80px;
}

ul li {
  font-size:19px;
  line-height: 1.5em;
}

ul li a {
  color:#44749d;
}

ul li a:hover {
  text-decoration:underline;
  color:#44749d;
}

table {
    border-collapse: separate;
    border-spacing: 4px;
    width: 100%;
    margin-bottom: 18px;
    box-sizing:border-box;
    font-size:14px;
}
table tr:first-child {
    background-color:#F39C12;
}
table tr:first-child td{
    text-align:center;
}
table tr:nth-child(odd) {
    background-color:#F39C12;
}
table tr:nth-child(even) {
    background-color:#EEF1F3;
}
table td {
    padding:8px;
}

.pagina {
  padding-top:0px;
}

p {
  color:#333;
  font-size: 19px;
  margin-top:0;
}

a {
  text-decoration:none;
}

p a {
  color:#44749d;
  text-decoration:none;  
}

p a:hover {
    text-decoration:underline;
  color:#44749d;
}

.ui.segment.box {
  padding:10px;
  background-color:#F5F5F5;
  min-height:500px;
}

.ui.segment.box:hover {
  cursor:initial;
  opacity:inherit;
}

ul.calendario li {
  margin-bottom:10px;
}

#nav {
/*
  position: fixed!important;
  top: 0!important;
*/
  bottom: auto!important;
  background-color:#2980B9;
  padding: 0 50px;
  height:70px;
  width:100%;
  z-index:1;
  -webkit-box-shadow: 0 1px 6px 0 rgba(50,50,50,.4);
  -moz-box-shadow: 0 1px 6px 0 rgba(50,50,50,.4);
  box-shadow: 0 1px 6px 0 rgba(50,50,50,.4);
}

.inicial {
  background-color: rgba(200, 200, 200, 0.8);
}

#nav ul {
  float:right;
  padding:0;
  margin: 0;
}

#nav ul li {
  display:inline-block;
  margin-left: 30px;
  list-style: none;
  /*height: 66px;*/
}

/*#nav ul li.active {
  border-bottom: 4px #474577 solid;
}*/

#nav ul li > a,
#nav ul li > a:visited {
  display: block;
  text-decoration: none;
  color: #FFF; 
  line-height: 70px;
  transition:0.5s;
  -webkit-transition: 0.5s;
  -moz-transition:0.5s;
  position: relative;
  text-transform:uppercase;
  font-size:18px;
}

#nav ul li > a:hover,
#nav ul li > a:focus {

}

#nav ul li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  bottom: 0;
  left: 0;
  background-color:#474577;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

#nav ul li > a:hover:before {
visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

#nav ul li.active > a:before {
visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

#nav h1 {
  float: left;
  background-image: url('/site/midia/arquivos/Escola-de-Liderancas_lettering.png');
  height: 51px;
  width: 537px;
  text-indent: -2000px;
  background-repeat: no-repeat;
  margin-top:10px;
  margin-bottom:0;
}

h1 {
  font-family: 'Lato Bold';
  font-size:2.5em;
  color: #474577;
  text-align:center;
  margin-bottom:1em;
}

h2 {
  font-family: 'Lato' !important;
  font-size:30px !important;
  color: #055591 !important;
  font-weight: normal;
}

h3 {
  font-weight:bold;
  font-size:1.3em;
  color:#44749d;
  //text-align:center;
  margin-bottom:0.5em;
}

h4 {
  font-family: 'Lato Bold' !important;
  font-size:25px !important;
  color: #1b3851 !important;
  text-align: center;
}

h5 {
  font-family: 'Lato Bold' !important;
  text-transform: uppercase !important;
  font-size:1em !important;
  color: #e19a22 !important;
  font-weight: bold !important;
}

h6 {
  font-family: 'Lato Bold';
  font-size: 19px;
  color: #1b3851;
  text-transform: uppercase;
  margin: 20px;
}

.mobile-logo {
  float:left;
  height:23px;
}

.content {
  width: 100%;
}

.apresentacao {
  position: absolute;
  margin:2.5em;
  left:0;
  bottom:2em;
  text-align:left;
}

.image-cover {
  width: 100%;
  overflow:hidden;
  position:relative;
}


.apresentacao p {
 font-size:4em;
 color:white;
  font-family: 'Lato Light';
 margin-top:1em;
 line-height:0.9em;
 margin-bottom:0.5em;
}

p b {
  font-family: 'Lato Bold';
}

.image-cover div p small {
 font-size: 70%;
}

.image-cover div a,
.image-cover div a:visited {
    text-decoration:none;
    border: 3px solid #FFF;
    color: #FFF;
    padding: 10px 40px;
    font-size: 2em;
    transition: 0.3s;
    display:inline-block;
}

.image-cover div a:hover,
.image-cover div a:focus {
    text-decoration:none;
  background-color:#FFF;
  color:#333;
}

.cover {
  z-index:0;
}

section {
  width:100%;
  overflow:auto;
  overflow-x:hidden;
  overflow-y:hidden;
}

section.icones {
  background-color:#F8F8F8;  
  margin-bottom: 0!important;
  padding-top:20px;
padding-bottom: 30px;
}

section article {
  width:80%;
  margin: 60px auto;
  overflow:auto;
  overflow-x:hidden;
  overflow-y:hidden;
}

.frag {
  display: inline-table;
  width:100%;
  text-align:center;
}

.frag:nth-child(2) {
  margin:0 30px;
}

.frag p {
  text-align:left!important;
}

.frag a,
.frag a:visited {
  display:inline-block;
  padding: 4px 8px;
  border: 2px solid #002d52;
  border-radius: 8px;
  background-color: #FFF;
  color:#002d52;
  text-decoration: none;
  transition: .5s;
}

.frag a:hover,
.frag a:focus {
  background-color: #002d52;
  color:#FFF;
}

.cronograma {
margin-top:4em;
}


footer {
  width:100%;
  background-color: #F5F5F5;
  border-top: 2px #CCC solid;
  overflow:auto;
  overflow-x:hidden;
  overflow-y:hidden;
}

footer .info {
  width:80%;
  margin:0 auto;
}

.credito {
position:absolute;
right:0;
font-size:11px;
display:block;
cursor:pointer;
padding:2px;
color:#333;
}

aside {
  width: 100%;
  text-align: center;
}

aside p {
  margin: 5px 0;
}

h4.duas-linhas {
  line-height:inherit;
}

h4 a {
  color:#FFF!important;  
}

ul.links-interessantes {
  margin:0;
  padding:0;
  float:left;
  text-align:center;
  width:100%;
}

ul.links-interessantes li {
  list-style:none;
  margin-bottom:10px;
}

ul.links-interessantes li a {
  display:inline-block;
  padding: 5px 8px;
  background-color: #3498DB;
  color: #FFF;
  transition:0.5s;
  -moz-transition:0.5s;
}

ul.links-interessantes li a:hover {
  background-color:#474577;
  text-decoration:none;
}

/* MENU RESPONSIVO */

/*!
 * SlickNav Responsive Mobile Menu v1.0.3
 * (c) 2015 Josh Cope
 * licensed under MIT
 */
.slicknav_btn {
  position: relative;
  display: block;
  vertical-align: middle;
  float: right;
  padding: 0.438em 0.625em 0.438em 0.625em;
  line-height: 1.125em;
  cursor: pointer; }
  .slicknav_btn .slicknav_icon-bar + .slicknav_icon-bar {
    margin-top: 0.188em; }

.slicknav_menu {
  *zoom: 1;
  -webkit-box-shadow: 0 1px 6px 0 rgba(50,50,50,.4);
  -moz-box-shadow: 0 1px 6px 0 rgba(50,50,50,.4);
  box-shadow: 0 1px 6px 0 rgba(50,50,50,.4); }
  .slicknav_menu .slicknav_menutxt {
    display: block;
    line-height: 1.188em;
    float: left; }
  .slicknav_menu .slicknav_icon {
    float: left;
    margin: 0.188em 0 0 0.438em; }
  .slicknav_menu .slicknav_no-text {
    margin: 0; }
  .slicknav_menu .slicknav_icon-bar {
    display: block;
    width: 1.125em;
    height: 0.125em;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); }
  .slicknav_menu:before {
    content: '';
    display: table; }
  .slicknav_menu:after {
    content: '';
    display: table;
    clear: both; }

.slicknav_nav {
  clear: both; }
  .slicknav_nav ul {
    display: block; }
  .slicknav_nav li {
    display: block; }
  .slicknav_nav .slicknav_arrow {
    font-size: 0.8em;
    margin: 0 0 0 0.4em; }
  .slicknav_nav .slicknav_item {
    cursor: pointer; }
    .slicknav_nav .slicknav_item a {
      display: inline; }
  .slicknav_nav .slicknav_row {
    display: block; }
  .slicknav_nav a {
    display: block; }
  .slicknav_nav .slicknav_parent-link a {
    display: inline; }

.slicknav_brand {
  float: left; }

.slicknav_menu {
  font-size: 16px;
  box-sizing: border-box;
  background: #2980B9;
  padding: 5px;
  position: fixed;
  width: 100%;
  z-index: 9999;
  display:none; }
  .slicknav_menu * {
    box-sizing: border-box; }
  .slicknav_menu .slicknav_menutxt {
    color: #fff;
    font-weight: bold;
    text-shadow: 0 1px 3px #000; }
  .slicknav_menu .slicknav_icon-bar {
    background-color: #fff; }

.slicknav_btn {
  margin: 5px 5px 6px;
  text-decoration: none;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-color: #3498DB; }

.slicknav_nav {
  color: #fff;
  margin: 0;
  padding: 0;
  font-size: 0.875em;
  list-style: none;
  overflow: hidden; }
  .slicknav_nav ul {
    list-style: none;
    overflow: hidden;
    padding: 0;
    margin: 0 0 0 20px; }
  .slicknav_nav .slicknav_row {
    padding: 5px 10px;
    margin: 2px 5px; }
    .slicknav_nav .slicknav_row:hover {
      -webkit-border-radius: 6px;
      -moz-border-radius: 6px;
      border-radius: 6px;
      background: #ccc;
      color: #fff; }
  .slicknav_nav a {
    padding: 5px 10px;
    margin: 2px 5px;
    text-decoration: none;
    color: #fff;
    text-align: center;
    line-height: 1.5em; }
    .slicknav_nav a:hover {
      background: #ccc;
      color: #222; }
  .slicknav_nav .slicknav_txtnode {
    margin-left: 15px; }
  .slicknav_nav .slicknav_item a {
    padding: 0;
    margin: 0; }
  .slicknav_nav .slicknav_parent-link a {
    padding: 0;
    margin: 0; }

.slicknav_brand {
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  padding: 7px 12px;
  height: 44px; }

/* FIM MENU RESPONSIVO */

@media screen and (max-width: 50em) {

.pagina {
  padding-top:50px;
}

#nav {
  display:none;
}
	
.slicknav_menu {
  display:block;
  margin-top: 41px;
}

.slicknav_nav a h1 {
  display:none;
}

.ui.segment img.logo {
  height:35px;
}

}

/***** ACCORDION ******/

.accordion {
    background-color: #fff;
    color: #000;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    //border: none;
    text-align: left;
    outline: none;
    font-size: 18px;
    transition: 0.4s;
    border: 3px solid #cecece;
    border-bottom-width: 1px;
    //font-weight: bold;
}

/*
.active, .accordion:hover {
    background-color: #ccc;
}
*/

.accordion:after {
    font-family: 'Glyphicons Halflings';
    content: "\e080";
    //content: '\002B';
    color: #df9a22;
    font-weight: bold;
    float: left;
    margin-right: 17px;
}

.activeX:after {
    font-family: 'Glyphicons Halflings';
    content: "\e114";
    //content: "\2212";
}

.panelx {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    border: 2px solid #c8c8c8;
    margin-bottom: 12px;
    border-top: 0;
}

.panelx p{
/* margin-top: 20px;
 margin-bottom: 20px;*/
 margin: 25px;
 font-size: 19px !important;
}

.panelx a{
 font-size: 19px !important;
}

.panelx a:hover{
 font-size: 19px !important;
}

@font-face {
  font-family: 'Glyphicons Halflings';
  src: url('//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/fonts/glyphicons-halflings-regular.eot');
  src: url('//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),
       url('//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/fonts/glyphicons-halflings-regular.woff2') format('woff2'),
       url('//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/fonts/glyphicons-halflings-regular.woff') format('woff'),
       url('//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/fonts/glyphicons-halflings-regular.ttf') format('truetype'),
       url('//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}

.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font: normal normal 16px/1 'Glyphicons Halflings';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  margin-right: 4px;
}

.btn:focus {outline:0 !important;}

button:focus {outline:0 !important;}

#wrapper-form {
    width: 300px;
    height: 323px;
    background-color: #ffffff;
    position: fixed;
    right: 15px;
    bottom: 107px;
}

#wrapper-form .form-header {
  background-color: #44749d;
  color: #fff;
  padding: 8px;
  font-weight: bold;
  font-size:14px;
}

#wrapper-form #fecha-form {
  display:block;
  float:right;
  cursor: pointer;
  margin-left: 20px;
}

#wrapper-form #form-duvidas .frow, 
#wrapper-form #form-duvidas .ffield,
#wrapper-form #form-duvidas input,
#wrapper-form #form-duvidas textarea,
#wrapper-form #form-duvidas select {
  display: block;  
  width: 100%;
  font-size:14px;
}

#wrapper-form #form-duvidas .alert {
  padding:0;
  margin-bottom:5px;
}

#wrapper-form #form-duvidas .alert ul {
  padding-left:0;
}

#mybutton {
  position: fixed;
  bottom: 15px;
  right: 15px;
  cursor: pointer;
  z-index: 1111111111;
}

.fab-ucstec {
  position: fixed;
  bottom: 75px;
  right: 15px;
  cursor: pointer;
  z-index: 1111111111;
}

.fab-ucstec a {
    background-color: #fff;
    padding: 16px;
    border-radius: 40px;
    border: 2px solid #44749d;
    cursor: pointer;
    font-size: 18px;
    vertical-align: top;
}

textarea {
 height: 130px;
}

.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

#form_contato .botao {
    background: #e39e22 !important;
    color: #ffffff !important;
    border: 0 !important;
    padding: 8px 10px !important;
    box-shadow: 2px 2px 2px rgba(0,0,0,0.2) !important;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.5) !important;
}

#form_contato .botao:hover {
    background: #e39e22;
    box-shadow: inset 2px 2px 2px rgba(0,0,0,0.2);
    text-shadow: none;
}

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
}