/**********************/
/***** Main stuff *****/
/**********************/

body {
  font-family: 'Lora', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  position: relative;
  width: 100%;
  height: 100%;
  color: white;
  background-color: black;
}

html {
  width: 100%;
  height: 100%;
}

* {
  padding: 0;
  margin: 0;
}

/*************************/
/***** Titles styles *****/
/*************************/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  margin: 0 0 35px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/*******************************/
/***** Main paragrah style *****/
/*******************************/

p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 25px;
}

.nopadding {
  padding: 0 !important;
  margin: 0 !important;
}

.content-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.recuo {
  text-indent: 2em;
}

/***************************/
/******* Link styles *******/
/***************************/

a {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  color: #42DCA3;
}

a:focus,
a:hover {
  text-decoration: none;
  color: #1d9b6c;
}

/************************/
/***** Navbar stuff *****/
/************************/

#mainNav {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin-bottom: 0;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background-color: black;
  font-weight: bold;
}

#mainNav .navbar-toggler {
  font-size: 14px;
  padding: 11px;
  color: white;
  border: 1px solid white;
}

#mainNav .navbar-brand {
  font-weight: 400;
  font-size: 15px;
  display: flex;
  align-items: center;
  height: auto;
}

#mainNav a {
  color: white;
}

#mainNav .navbar-nav .nav-item {
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}

#mainNav .navbar-nav .nav-item:hover {
  color: rgba(255, 255, 255, 0.8);
  outline: none;
  background-color: transparent;
}

#mainNav .navbar-nav .nav-item:active,
#mainNav .navbar-nav .nav-item:focus {
  outline: none;
  background-color: transparent;
}

@media (min-width: 992px) {
  #mainNav {
    padding-top: 20px;
    padding-bottom: 20px;
    -webkit-transition: background 0.3s ease-in-out, padding-top 0.3s ease-in-out, padding-bottom 0.3s;
    -moz-transition: background 0.3s ease-in-out, padding-top 0.3s ease-in-out, padding-bottom 0.3s;
    transition: background 0.3s ease-in-out, padding-top 0.3s ease-in-out, padding-bottom 0.3s;
    letter-spacing: 1px;
    border-bottom: none;
    background: transparent;
  }

  #mainNav.navbar-shrink {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    background: black;
  }

  #mainNav .nav-link.active {
    outline: none;
    background-color: rgba(255, 255, 255, 0.3);
  }

  #mainNav .nav-link.active:hover {
    color: white;
  }
}

/***********************/
/***** Intro style *****/
/***********************/

.site-header-brand-img {
  height: 50px;
  width: auto;
}

.masthead {
  display: table;
  width: 100%;
  height: auto;
  padding: 200px 0;
  text-align: center;
  color: white;
  background: url("../img/geo.jpg") no-repeat bottom center scroll;
  background-color: black;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.masthead .intro-body {
  display: table-cell;
  vertical-align: middle;
}

.masthead .intro-body .brand-heading {
  font-size: 50px;
}

.masthead .intro-body .intro-text {
  font-size: 18px;
  width: 70%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .masthead {
    height: 100%;
    padding: 0;
  }

  .masthead .intro-body .brand-heading {
    font-size: 100px;
  }

  .masthead .intro-body .intro-text {
    font-size: 35px;
  }
}

/*************************/
/***** Button styles *****/
/*************************/

.btn-circle {
  font-size: 26px;
  width: 70px;
  height: 70px;
  line-height: 45px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 50% !important;
  background: transparent;
  color: inherit;
  opacity: 1;
  transition: border-color 0.2s ease-in-out;
}

.btn-circle i {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s ease-in-out;
}

.btn-circle:hover {
  background: transparent;
  border-color: #fff;
}

.btn-circle:hover i {
  color: #fff;
}

.btn-circle:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-circle:focus i {
  color: rgba(255, 255, 255, 0.55);
}

.btn {
  font-family: 'Cabin', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 400;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  border-radius: 0;
}

.btn-default {
  background-color: transparent;
}

.btn-default:focus,
.btn-default:hover {
  color: black;
  outline: none;
}

.masthead .intro-body .btn-circle {
  margin-top: 100px;
}

@media (min-width: 768px) {
  .masthead .intro-body .btn-circle {
    margin-top: 120px;
  }
}

/****************************************/
/***** Selection style for buttons ******/
/****************************************/

::-moz-selection {
  background: #fcfcfc;
  background: rgba(255, 255, 255, 0.2);
  text-shadow: none;
}

::selection {
  background: #fcfcfc;
  background: rgba(255, 255, 255, 0.2);
  text-shadow: none;
}

/*************************/
/***** Footer style ******/
/*************************/

footer {
  padding: 20px 0 0 0;
}

footer p {
  font-size: 15px;
  margin: 0;
}

.contact-item {
  padding-right: 67px;
  position: relative;
  color: rgba(255, 255, 255, 0.3);
  text-align: right;
  overflow: hidden;
  -webkit-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
  -moz-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
  -o-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
  -ms-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
  transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

.mb-40 {
  margin-bottom: 40px;
}

.ci-icon {
  width: 45px;
  height: 40px;
  position: absolute;
  top: 4px;
  right: 7px;
  font-size: 20px;
  text-align: center;
  line-height: 40px;
  border-left: 1px solid rgba(255, 255, 255, 1);
  color: #fff;
}

.ci-title {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}

.ci-text {
  color: rgba(255, 255, 255, 1);
}

@media (max-width: 992px) {
  .ci-icon {
    margin: 0 auto 7px !important;
    position: relative !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-left: none !important;
  }

  .ci-icon {
    width: 45px;
    height: 40px;
    position: relative !important;
    top: 0;
    right: 7px;
    font-size: 14px;
    text-align: center;
    line-height: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 1);
  }

  .contact-item {
    text-align: center !important;
    padding-right: 0 !important;
    position: relative !important;
    color: rgba(255, 255, 255, 1);
  }
}

/************************/
/***** Image style ******/
/************************/

.img-circle {
  border-radius: 50%;
}

.img-responsive {
  display: block;
  max-width: 50%;
  height: auto;
  margin: 0 auto;
}

.img-responsive-team,
.img-responsive-results,
.img-responsive-event,
.img-responsive-sponsor {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
/**********************************/
/***** Image selection style ******/
/**********************************/

img::selection {
  background: transparent;
}

img::-moz-selection {
  background: transparent;
}

/***********************************************/
/****  SPECIAL STYLE FOR THE ABOUT SECTION  ****/
/***********************************************/

.top-about {
  background: url(../img/4.jpg) center center no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  max-height: none;
  height: 350px;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
}

#about {
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  color: black;
  background-color: white;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

#about p {
  text-align: justify;
  margin: 0 0 20px;
}

#about li {
  text-align: justify;
  font-size: 18px;
  line-height: 1.6;
  padding-top: 20px;
  margin-left: 20px;
}

.readmore,
.readmore:focus {
  background-color: transparent;
  border: 2px solid #000;
  color: #000;
  margin-top: 75px;
}

.readmore:hover {
  background-color: #000;
  color: #fff;
}

#top {
  background-position: center center;
  background-size: cover;
  width: 100%;
  max-height: none;
  height: 250px;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
}

#top h1 {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 2em;
  margin-top: 4em;
  font-weight: 700;
  letter-spacing: 1px;
}

#top span {
  font-size: 2em;
  opacity: 0.5;
  filter: alpha(opacity=50);
  /* For IE8 and earlier */
  padding-bottom: 15px;
}

/***********************************************/
/***** SPECIAL STYLE FOR THE TEAM SECTION *****/
/***********************************************/

.top-team {
  background: url(../img/5.jpg) center center no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  max-height: none;
  height: 350px;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
}

#team {
  background-color: #f8f8f8;
}

#team h2 {
  text-align: center;
  width: 100%;
  margin-bottom: 40px;
  color: #000000;
}

#team h3 {
  color: #000000;
  font-size: 16px;
  padding-top: 15px;
}

#team a {
  color: #000;
  font-size: 13px;
  font-weight: lighter;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#team a img.flag {
  padding-bottom: 30px;
  width: 100px;
}

.allteam,
.allteam:focus {
  background-color: transparent;
  border: 2px solid #000;
  color: #000;
}

.allteam:hover {
  background-color: #000;
  color: #fff;
}

.transition {
  transition: 0.3s cubic-bezier(0.3, 0, 0, 1.3);
}

.three .transition {
  transition: 0.7s cubic-bezier(0.3, 0, 0, 1.3);
}

.five .transition {
  transition: 0.5s cubic-bezier(0.3, 0, 0, 1.3);
}

.five {
  list-style: none;
  padding: 0;
  margin: 0 0 35px;
}

.five > li {
  background: #FFFFFF;
  border: 1px solid rgba(150, 150, 150, 0.29);
  -moz-box-shadow: 0 0 18px 0 rgba(103, 85, 85, 0.39);
  box-shadow: 0 0 18px 0 rgba(103, 85, 85, 0.39);
  height: 350px;
  width: 300px !important;
  min-width: 300px !important;
  display: block;
  text-align: center;
}

.five > li img {
  margin-top: 5px;
}

.five > li:hover img {
  margin-top: 30px;
  margin-left: 10px;
  margin-right: 10px;
}

.five > li img.more-about {
  left: 107px;
  padding: 1px;
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  bottom: 50px;
}

.five > li:hover {
  -moz-box-shadow: 0 0 5px 0 rgba(103, 85, 85, 0.25);
  box-shadow: 0 0 5px 0 rgba(103, 85, 85, 0.25);
}

.five > li:hover span {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  top: -300px;
  background: #000;
}

.five > li:hover span p {
  color: white;
  font-size: 14px;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.five > li span .text-wrapper {
  opacity: 0;
}

.five > li:hover span .text-wrapper {
  bottom: 20px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 220px;
  opacity: 1;
}

.five > li:hover .social {
  margin-top: 250px;
}

.five > li:hover .wrapper > img {
  display: none;
}

.five > li:hover h3 {
  color: #2F7ABE;
  margin-top: -105px;
}

.five > li .wrapper {
  overflow: hidden;
  position: relative;
  height: 350px;
}

.five > li span {
  display: block;
  height: 500px;
  position: absolute;
  top: -490px;
  width: 100%;
  background: #000;
}

.five .mamber-img {
  width: 100px;
}

.five > li h3 em {
  display: block;
  font-style: normal;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 13px;
  margin-top: 5px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.five > li h3 ex {
  display: inline-block;
  font-style: normal;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 13px;
  margin-top: 0 auto !important;
}

.five .social {
  list-style: none;
  text-align: center;
  margin: 10px 0 0 0;
  padding-top: 10px;
}

.five .social li {
  opacity: 0;
  display: inline-block;
  padding: 0;
}

.five > li:hover .social li {
  opacity: 0.5;
}

.five .social li a {
  cursor: pointer;
  display: block;
}

.five .social li a:hover {
  opacity: 0.5;
}

.five .social li img {
  width: 24px;
}

.five > li:hover .social li a {
  -webkit-animation: social-show 0.5s 1;
  -moz-animation: social-show 0.5s 1;
  -o-animation: social-show 0.5s 1;
  animation: social-show 0.5s 1;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
}

.five .social li img {
  width: 20px;
}

.img-circle {
  width: 200px !important;
  height: 200px !important;
  min-width: 200px !important;
  min-height: 200px !important;
  max-width: 200px !important;
  max-height: 200px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  object-position: center !important;
  border: 3px solid #fff !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1) !important;
}

#team .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#team .row {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

#team .col-md-12.mx-auto {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

#team .col-md-12.mx-auto > .col-sm-4 {
  flex: 0 0 auto;
  margin: 0;
  min-width: 300px;
}

#team .col-md-12.text-center {
  display: flex;
  justify-content: center;
  gap: 140px;
  margin-top: 50px;
}

#team .col-md-12.text-center .col-md-4 {
  flex: 0 0 300px;
  text-align: center;
}

@media (max-width: 768px) {
  #team .col-md-12.mx-auto {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  #team .col-md-12.mx-auto > .col-sm-4 {
    min-width: 300px;
  }

  .five > li {
    width: 300px !important;
    min-width: 300px !important;
  }

  #team .col-md-12.text-center {
    flex-direction: column;
    gap: 30px;
  }

  #team .col-md-12.text-center .col-md-4 {
    flex: 0 0 auto;
  }
}

.participants-page .container,
.brazil-team .container,
.french-team .container {
  max-width: 1200px;
  margin: 0 auto;
}

.participants-page .row,
.brazil-team .row,
.french-team .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px;
}

.participants-page .col-sm-4,
.brazil-team .col-sm-4,
.french-team .col-sm-4 {
  flex: 0 0 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  margin-bottom: 30px;
}

.participants-page .five > li,
.brazil-team .five > li,
.french-team .five > li {
  width: 100% !important;
  min-width: 280px !important;
  max-width: 350px !important;
}

@media (max-width: 992px) {
  .participants-page .col-sm-4,
  .brazil-team .col-sm-4,
  .french-team .col-sm-4 {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .participants-page .col-sm-4,
  .brazil-team .col-sm-4,
  .french-team .col-sm-4 {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0 auto 20px auto;
  }
}

#team .row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
}

.five {
  list-style: none;
  padding: 0;
  margin: 0 0 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.five > li {
  width: 300px !important;
  min-width: 300px !important;
  display: block;
}

#team .row {
  display: block;
}

#team ul.five {
  display: grid !important;
  grid-template-columns: repeat(3, 300px);
  gap: 30px;
  justify-content: center;
  justify-items: center;
  padding: 0;
  margin: 0 auto 35px auto;
}

#team ul.five > li {
  width: 300px !important;
  min-width: 300px !important;
  max-width: 300px !important;
}

@media (max-width: 992px) {
  #team ul.five {
    grid-template-columns: repeat(2, 300px);
  }
}

@media (max-width: 768px) {
  #team ul.five {
    grid-template-columns: 300px;
  }
}

#team ul.five {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 40px;
  padding: 0;
  margin: 0 auto;
  max-width: 1000px;
}

#team ul.five > li {
  width: 300px !important;
  min-width: 300px !important;
  max-width: 300px !important;
  flex: 0 0 300px;
}

@media (max-width: 992px) {
  #team ul.five {
    max-width: 650px;
  }
}

@media (max-width: 768px) {
  #team ul.five {
    max-width: 320px;
  }
}

#team ul.five {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0 auto;
  max-width: 1100px;
}

#team ul.five > li {
  flex: 0 0 300px;
  width: 300px !important;
  min-width: 300px !important;
  max-width: 300px !important;
  margin: 0 20px 50px 20px !important;
}

/***********************************************/
/**** SPECIAL STYLE FOR THE RESULTS SECTION ****/
/***********************************************/

#results {
  background-color: #000;
  color: #fff;
}

#results h4 {
  padding-top: 35%;
}

.results {
  margin: 0;
  padding: 0;
  height: 100%;
  display: inline-block;
}

.info h4 {
  font-size: 26px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
}

.info > p {
  color: #000;
  font-size: 20px;
  padding-top: 10px;
  text-align: center;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.info > a {
  background-color: #FFF;
  border-radius: 0;
  color: #000;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 20px;
}

.info > a:hover {
  background-color: #FFF;
  color: #000;
}

#gallery {
  background-color: #9c9c9c;
}

.gallery-title {
  font-size: 36px;
  color: #3F6184;
  text-align: center;
  font-weight: 500;
  margin-bottom: 70px;
}

.gallery_product {
  margin: 0;
  padding: 0;
  position: relative;
}

.gallery_product .img-info {
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  overflow: hidden;
  color: #fff;
  top: 0;
  display: none;
  -webkit-transition: 2s;
  transition: 2s;
}

.gallery_product:hover .img-info {
  display: block;
  -webkit-transition: 2s;
  transition: 2s;
}

.img-overlay {
  overflow: hidden;
  position: relative;
}

figure {
  margin: 0;
}

.img-overlay:hover img {
  transform: scale(1.2) rotate(3deg);
}

figure img {
  width: 100%;
}

.img-overlay img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.img-overlay .overlay-masked-wrap {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}

.img-overlay .overlay-masked {
  color: #fff;
  padding: 20px;
}

.img-overlay .overlay-masked h4 {
  font-size: 20px;
  line-height: 28px;
}

.img-overlay .overlay-masked h1,
.img-overlay .overlay-masked h2,
.img-overlay .overlay-masked h3,
.img-overlay .overlay-masked h4,
.img-overlay .overlay-masked h5,
.img-overlay .overlay-masked h6,
.img-overlay .overlay-masked p {
  color: #fff;
  margin: 0;
}

.img-overlay .overlay-masked p {
  font-size: 16px;
  line-height: 22px;
  margin-top: 5px;
}

/***************************************************/
/**** SPECIAL STYLE FOR THE RESULTS - DOCUMENTS ****/
/***************************************************/

.top-documents {
  background: url(../img/6.jpg) center center no-repeat;
  background-position: center center;
  width: 100%;
  max-height: none;
  height: 350px;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
}

#documents {
  background-color: #f8f8f8;
}

#documents a {
  font-weight: lighter;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.titulo {
  text-transform: uppercase;
  font-weight: bold;
  text-align: left;
}

/***********************************************************/
/**** SPECIAL STYLE FOR THE RESULTS - SOFTWARES/GALLERY ****/
/***********************************************************/

.top-softwaregallery {
  background: url(../img/7.jpg) center center no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  max-height: none;
  height: 350px;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
}

.gal {
  -webkit-column-count: 3;
  /* Chrome, Safari, Opera */
  -moz-column-count: 3;
  /* Firefox */
  column-count: 3;
}

.text-content {
  position: relative;
  color: #000;
  background: #fff;
  box-shadow: 0 0 5px rgba(51, 51, 51, 0.7);
  display: inline-block;
  margin-bottom: 20px;
}

@media (max-width: 500px) {
  .gal {
    -webkit-column-count: 1;
    /* Chrome, Safari, Opera */
    -moz-column-count: 1;
    /* Firefox */
    column-count: 1;
  }
}

/**** SPECIAL STYLE FOR THE EVENTS SECTION  ****/
/***********************************************/

/* ======= EVENTS ======= */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Seção */
#events {
  background: #fff;
  color: #000;
  padding: 90px 0;
}

.events-header {
  margin-bottom: 24px;
  text-align: center;
}

.events-scroller {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  background: #fff;
  padding: 20px 10px;
}

.event-card {
  max-width: 360px;
  width: 100%;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Cabeçalho do card */
.event-card .card-header {
  padding: 16px;
  background: #000;
  color: #fff;
  text-align: center;
}

.event-card .card-header h3 {
  font-size: 18px;
  margin: 0;
  line-height: 1.3;
}

.event-card .card-header a {
  color: inherit;
  text-decoration: none;
}

.event-card .card-header a:hover {
  text-decoration: underline;
}

.event-card .card-media img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.event-card .card-meta {
  background: #000;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-top: 1px solid #000;
}

.event-card time .month,
.event-card time .year {
  white-space: nowrap;
}

.event-card .card-body {
  padding: 8px 16px 16px;
  color: #333;
  flex: 1 1 auto;
  text-align: center;
}

.event-card .card-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 16px;
  border-top: 1px solid #eee;
}

.event-card .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #0f172a;
  background: transparent;
  color: #000000;
  padding: 6px 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.event-card .btn:hover {
  background: #000000;
  color: #fff;
}

.event-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.event-card:hover .card-media img {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .events-scroller {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .events-scroller {
    grid-template-columns: 1fr;
  }
}

/***********************************************/
/***  SPECIAL STYLE FOR THE SPONSOR SECTION  ***/
/***********************************************/

#sponsor {
  background-color: #fff;
  color: #000;
  padding-top: 30px;
}

.sponsors-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 20px 0;
}

#sponsor h2 {
  margin-bottom: 150px;
  text-align: center;
}

.sponsors-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 150px;
}

.sponsor-item {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 200px;
  max-width: 250px;
}

.sponsor-item img {
  max-width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .sponsor-item {
    min-width: 150px;
    flex: 1 1 45%;
  }
}

/*********************************************************************/
/**** SPECIAL STYLE FOR THE CARDS DOCUMENTS AND SOFTWARE/GALLERY  ****/
/*********************************************************************/

.nav-tabs > li,
.nav-pills > li {
  float: none;
  display: inline-block;
  zoom: 1;
}

.nav-tabs,
.nav-pills {
  text-align: center;
}

.event-list h2,
.event-list p {
  margin: 0;
  font-size: 14px;
}

.event-list {
  list-style: none;
  font-family: 'Lato', sans-serif;
  margin: 0;
  padding: 0;
  position: relative;
  color: #000;
}

.event-list > li {
  background-color: rgb(255, 255, 255);
  box-shadow: 0 0 5px rgb(51, 51, 51);
  box-shadow: 0 0 5px rgba(51, 51, 51, 0.7);
  padding: 0;
  margin: 0 0 20px;
}

.event-list > li > time {
  display: inline-block;
  width: 100%;
  color: rgb(255, 255, 255);
  background-color: #000;
  padding: 5px;
  text-align: center;
  text-transform: uppercase;
}

.event-list > li:nth-child(even) > time {
  background-color: #000;
}

.event-list > li > time > span {
  display: none;
}

.event-list > li > time > .day {
  font-weight: bolder;
}

.event-list > li time > .month {
  display: block;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.event-list > li > img {
  width: 100%;
}

.event-list > li > .info {
  padding-top: 5px;
  text-align: center;
}

.event-list > li > .info > .title {
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  text-align: center;
}

.event-list > li > .info > .desc {
  font-size: 13px;
  font-weight: 300;
  margin: 0;
  font-weight: 700;
}

.event-list > li > .info > ul,
.event-list > li > .social > ul {
  display: table;
  list-style: none;
  padding: 0;
  width: 100%;
  text-align: center;
}

.event-list > li > .social > ul {
  margin: 0;
}

.event-list > li > .info > ul > li,
.event-list > li > .social > ul > li {
  display: table-cell;
  cursor: pointer;
  color: rgb(30, 30, 30);
  font-size: 11px;
  font-weight: 300;
}

.event-list > li > .info > ul > li > a {
  display: block;
  width: 100%;
  color: rgb(30, 30, 30);
  text-decoration: none;
}

.event-list > li > .social > ul > li {
  padding: 0;
}

.event-list > li > .social > ul > li > a {
  padding: 3px 0;
}

.event-list > li > .info > ul > li:hover,
.event-list > li > .social > ul > li:hover {
  color: rgb(30, 30, 30);
  background-color: rgb(200, 200, 200);
}

.facebook a,
.twitter a,
.google-plus a {
  display: block;
  width: 100%;
  color: rgb(75, 110, 168) !important;
}

.twitter a {
  color: rgb(79, 213, 248) !important;
}

.google-plus a {
  color: rgb(221, 75, 57) !important;
}

.facebook:hover a {
  color: rgb(255, 255, 255) !important;
  background-color: rgb(75, 110, 168) !important;
}

.twitter:hover a {
  color: rgb(255, 255, 255) !important;
  background-color: rgb(79, 213, 248) !important;
}

.google-plus:hover a {
  color: rgb(255, 255, 255) !important;
  background-color: rgb(221, 75, 57) !important;
}

@media (min-width: 768px) {
  .event-list > li {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    min-height: 120px;
    padding: 0;
  }

  .event-list > li > time,
  .event-list > li > img {
    display: inline-block;
  }

  .event-list > li > time,
  .event-list > li > img {
    width: 120px;
    float: left;
  }

  .event-list > li > .info {
    background-color: #fff;
    overflow: hidden;
  }

  .event-list > li > img {
    height: 120px;
    padding: 0;
    margin: 0;
  }

  .event-list > li > .info {
    position: relative;
    height: auto;
    min-height: 120px;
    text-align: left;
    padding-left: 10px;
  }

  .event-list > li > .info > .title,
  .event-list > li > .info > .desc {
    padding: 0 15px;
  }

  .event-list > li > .info > ul {
    left: 0;
    bottom: 0;
  }

  .event-list > li > .social {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 40px;
  }

  .event-list > li > .social > ul > li {
    display: block;
    padding: 0;
  }

  .event-list > li > .social > ul > li > a {
    display: block;
    width: 40px;
    font-size: 25px;
  }
}

.post-img-content {
  height: 196px;
  position: relative;
}

.post-img-content img {
  position: absolute;
}

.post-title {
  display: table-cell;
  vertical-align: bottom;
  z-index: 2;
  position: absolute;
}

.post-title b {
  background-color: rgba(51, 51, 51, 0.58);
  display: inline-block;
  margin-bottom: 5px;
  color: #FFF;
  padding: 10px 15px;
  margin-top: 5px;
}

@media (max-width: 767px) {
  .post-title b {
    background-color: rgba(51, 51, 51, 0.58);
    display: inline-block;
    margin-bottom: 5px;
    color: #FFF;
    padding: 10px 15px;
    margin-top: 5px;
    position: relative;
    top: -45px;
  }

  .titulo {
    text-transform: uppercase;
    font-weight: bold;
    text-align: center !important;
  }
}

.tab {
  font-size: 14px !important;
  text-transform: uppercase;
  font-weight: 400;
  font-family: 'Cabin', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
}

/***********************************************/
/*****           MODAL GALLERY             *****/
/***********************************************/

.project-wrap {
  position: relative;
  color: #000;
  background: #fff;
  box-shadow: 0 0 5px rgba(51, 51, 51, 0.7);
  -webkit-box-shadow: 0 0 5px rgba(51, 51, 51, 0.7);
  -moz-box-shadow: 0 0 5px rgba(51, 51, 51, 0.7);
  display: inline-block;
  margin-bottom: 20px;
}

.project-wrap h5 {
  padding: 20px 0 0;
  margin: 0 0 20px;
}

.project-wrap a {
  background: #fff;
  display: block;
  max-width: 400px;
}

.project-wrap a img {
  width: 100%;
}

.project-wrap a span,
.project-wrap a b {
  -webkit-transition: all 0s;
  transition: all 0s;
}

.project-wrap a span.top {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  padding: 15px 0 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.project-wrap a span.bottom {
  top: -15px;
  position: relative;
  margin: 0;
  font-size: 14px;
  padding: 5px;
  display: block;
  font-family: 'Lato', sans-serif;
}

.project-wrap a:focus {
  text-decoration: none !important;
  background: #009FFD;
  box-shadow: 0 0 7px 1px #010101;
  -webkit-box-shadow: 0 0 7px 1px #010101;
  -moz-box-shadow: 0 0 7px 1px #010101;
}

.project-wrap a:hover {
  text-decoration: none !important;
  background: #000;
  color: #fff !important;
  box-shadow: 0 0 7px 1px #010101;
  -webkit-box-shadow: 0 0 7px 1px #010101;
  -moz-box-shadow: 0 0 7px 1px #010101;
}

/***********************************************/
/*****         MODAL GALLERY STUFF         *****/
/***********************************************/

#myModal {
  background-color: rgba(103, 119, 137, 0.7);
  text-align: center;
}
.modal-title {
  text-align: center;
  font-weight: bold;
}

@media (min-width: 768px) {
  #myModal .modal-dialog {
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    text-align: center;
  }
}

#myModal .modal-header {
  border-radius: 5px 5px 0 0;
  background-color: #000;
  text-align: center;
}

#myModal .modal-content {
  background-color: #000;
  border-radius: 0;
  padding: 10px;
  box-shadow: none;
  background-clip: inherit;
  max-height: calc(100vh - 200px);
}

#myModal .modal-footer {
  background-color: #000;
  border-radius: 0 0 5px 5px;
  text-align: center;
}

/***********************************************/
/*****  MODAL GALLERY IMAGE DESCRIPTIONS   *****/
/***********************************************/

p.imgPageTop {
  display: block;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 100;
  font-family: sans-serif;
}

p.imgPageDescription {
  display: block;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 100;
  text-align: justify;
  letter-spacing: 0.4px;
}

p.relatedPublications {
  text-transform: uppercase;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}

p.publicationAuthors {
  margin: 0 0 0;
  display: block;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 100;
  text-align: justify;
  letter-spacing: 0.4px;
  font-family: sans-serif;
}

p.publicationTitle {
  margin: 0 0 0;
  display: block;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  text-align: justify;
  letter-spacing: 0.4px;
  font-family: sans-serif;
}

p.publicationRef {
  margin: 0 0 0;
  display: block;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 100;
  text-align: justify;
  letter-spacing: 0.4px;
  font-family: sans-serif;
}

/* Justificar textos das listas e do parágrafo do cabeçalho */
.publication-list li,
.publications-header p {
  text-align: justify;
  text-justify: inter-word; /* melhora a distribuição entre palavras */
}


.link {
  color: #000;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.modal {
  position: fixed !important;
}

/* Logo mobile */
@media (max-width: 767px) {
  #mainNav {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  #mainNav .navbar-brand {
    display: flex;
    align-items: center;
    height: 48px;
    padding-left: 10px;
  }

  #mainNav .site-header-brand-img {
    height: 28px;
    width: auto;
  }

  #mainNav .navbar-toggler {
    padding: 6px;
    height: 36px;
    display: flex;
    align-items: center;
  }
  
}