@import url('https://fonts.googleapis.com/css?family=Poppins:400,700,800');
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700,800&display=swap');



body {
  background: #fff;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -webkit-animation: fadein 2s;
  /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 2s;
  /* Firefox < 16 */
  -ms-animation: fadein 2s;
  /* Internet Explorer */
  -o-animation: fadein 2s;
  /* Opera < 12.1 */
  animation: fadein 2s;
}

a {
  text-decoration: none;
  color: #fff;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Firefox < 16 */

@-moz-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Safari, Chrome and Opera > 12.1 */

@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Internet Explorer */

@-ms-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Opera < 12.1 */

@-o-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

:root {
  --main-color: #c0392b
}

.color {
  color: var(--main-color); 
}

#quem-foi {
  color: #fff;
  background:var(--main-color); 
}

#quem-foi h1 {
  color: #fff;
}

#quem-foi hr, #alojamento hr {
  display: block;
  height: 4px;
  border: 0;
  border-top: 4px solid #fff;
  margin: 1em auto;
  padding-bottom: 20px;
  width: 4%;
}

#mentores {
  text-align: center;
}

.mentor-img {
  border-radius: 50%;
  height: 300px;
  margin: 70px auto;
}

#mentores h1 {
  font-weight: 600;
}

.mentores-text {
  text-align: left;
  color: rgb(68, 68, 68);
  line-height: 2em;
}

.header {
  background: linear-gradient(to top, rgba(2, 2, 2, 0.85), rgba(24, 24, 24, 0.7)),
  url("https://images.unsplash.com/photo-1491438590914-bc09fcaaf77a?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center top;
  height: 100vh;
}

.center, .error404 {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.bars {
  color: #fff;
}

#nav {
  font-size: 0.9em;
  padding: 20px;
  text-align: center;
  position: fixed;
  z-index: 9999;
  width: 100%;
  margin: 0 auto;
  left: 0px;
  right: 0px;
  float: clear;
  z-index: 2;
}

#nav li {
  display: inline;
  padding: 20px;
  text-transform: uppercase;
  font-weight: 600;
}

#nav li:hover {
  border-bottom: 2px solid var(--main-color); 
}

#nav a {
  text-decoration: none;
  color: #fff;
}

.icon {
  display: none;
}

@media screen and (max-width: 600px) {
  #nav li:not(:first-child) {
    display: none;
  }
  #nav li:hover {
    border-bottom: none;
  }
  #nav .icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  #nav.responsive {
    position: relative;
  }
  #nav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  #nav.responsive li {
    float: none;
    display: block;
    text-align: left;
  }
  
}

@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  .column {
    float: left;
    width: 100%;
    display: none; /* Hide all elements by default */
  }
}

#o-que-e {
  padding-bottom: 100px;
  height: auto;
  width: 100%;
  background: #fff;
}

.image-sobre {
  width: 100%;
}

#alojamento {
  height: auto;
  width: 100%;
  background: var(--main-color); 
  color: #fff;
}

#programa, #alojamento, #inscricoes {
  padding-bottom: 100px;
}

#inscricoes h2, #inscricoes h4 {
  color: #fff;
  padding: 20px;
}

#instagram {
  margin-top: 100px;
  height: auto;
  width: 100%;
  padding: 100px;
  text-align: center;
  color: rgb(14, 14, 14);
}

#instagram h2 {
  font-size: 50px;
}

#instagram a {
  text-decoration: none;
  color: rgb(14, 14, 14);
  ;
}

#instagram a:hover {
  border-bottom: 4px solid rgb(14, 14, 14);
}

.footer {
  width: 100%;
  background: rgb(14, 14, 14);
  padding: 50px;
  text-align: center;
  color: #fff;
  letter-spacing: 1px;
  
}

.btn-primary {
  background: var(--main-color); 
  color: #fff;
  border: 2px solid var(--main-color); 
  padding: 10px 20px;
  border-radius: 5px;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;

}

.btn-primary:hover {
  background: none;
  color: #fff;
  border: 2px solid var(--main-color); 
}

.card-img-top {
  width: 100%;
  height: 20vw;
  object-fit: cover;
  display: block;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.card-text {
  font-weight: 400;
}

.card-img-top:hover {
  -webkit-transform: scale(0.97);
  transform: scale(0.97);
}

.btn-outline-dark {
  margin: 50px 0;
  border: 2px solid rgb(14, 14, 14);
  font-weight: 700;
  color: rgb(14, 14, 14);
  padding: 20px 40px;

}

.btn-outline-dark a {
  text-decoration: none;
  color:  rgb(14, 14, 14);
}

.btn-outline-dark a:hover {
  color: #fff;
}

.btn-outline-dark:hover {
  background:  rgb(14, 14, 14);
  border: 2px solid rgb(14, 14, 14);
  color: #fff;
}



.title {
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  padding-top: 100px;
}

.subtitle {
  font-size: 20px;
  padding-bottom: 100px;
  text-align: center;
  font-weight: 400;
  letter-spacing: 3px;
}

hr {
  display: block;
  height: 4px;
  border: 0;
  border-top: 4px solid var(--main-color); 
  margin: 1em auto;
  padding-bottom: 20px;
  width: 4%;
}

.about-text {
  text-align: justify;
  line-height: 2em;
  color: #343a40;
}

.quem-foi-text {
  text-align: justify;
  line-height: 2em;
  color: #fff;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: .5s ease;
  background-color: rgb(14, 14, 14);
}

.container:hover .overlay {
  opacity: 0.7;
}

.text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.animation {
  visibility: hidden;
}

.show {
  animation-name: slide;
  -webkit-animation-name: slide;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  visibility: visible;
}

@keyframes slide {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}



.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  color: #fff;
  background:  var(--main-color);

}

.nav-link:hover {
  color: #fff;
  background:  var(--main-color);

}

/* PREÇOS */

.panel {
  padding: 30px;
  border-radius: 0 !important;
  transition: box-shadow 0.5s;
  box-shadow: 5px 0px 40px rgba(0, 0, 0, .2);
}

.panel:hover {
  box-shadow: 5px 0px 40px rgba(0, 0, 0, .2);
}

.panel-footer .btn:hover {
  background-color: #fff !important;
  color: rgb(14, 14, 14);
  ;
}

.panel-heading {
  color: rgb(14, 14, 14) !important;
  padding: 25px;
  border-bottom: 1px solid transparent;
}

.panel-footer {
  background-color: white !important;
}

.panel-footer h3 {
  font-size: 32px;
  font-weight: 700;
}

.panel-heading h1 {
  font-weight: 700;
}

.panel-footer h4 {
  color: #aaa;
  font-size: 14px;
}

/* PAGINAS PESSOAIS */

.galeria-nav {
  width: 100%;
  height: auto;
  background: linear-gradient(to top, rgba(2, 2, 2, 0.55), rgba(24, 24, 24, 1)),
  url("https://images.unsplash.com/photo-1523240795612-9a054b0db644?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=2250&q=80");
  background-size: cover;
  background-position: center;
  padding: 30px;
}

.galeria-body {
  margin-top: 100px;
}

.galeria-body img {
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.galeria-body img:hover {
  transform: scale(1.02);
}

.scroll-to-top {
  border: 2px solid #fff;
  padding: 20px;
  font-size: 20px;
  border-radius: 10px;
}

.scroll-to-top:hover {
  background: #fff;
  color: #000;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.scroll-to-top a:hover {
  color: #000;
  
}

.scroll-to-down {
  padding: 20px;
  font-size: 20px;
  border-radius: 10px;
}

.scroll-to-down:hover {
  color: #ccc;
  padding: 20px;
  font-size: 20px;
  border-radius: 10px;
}

.social-icon {
  border: 2px solid var(--main-color);
  background: none;
  color: var(--main-color);
  padding: 13px;
  font-size: 22px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: auto 5px;;
}

.services {
  border: 2px solid #fff;
  background: none;
  color: #fff;
  padding:27px;
  font-size: 50px;
  width:110px;
  height: 110px;
  border-radius: 50%;
  margin: auto 5px;;
}



.social-icon:hover {
  border: var(--main-color);
  color: #fff;
  background: var(--main-color);
}

.logo {
  padding-top: 200px;
}


.social {
  background: rgb(243, 243, 243);
  border:4px solid rgb(243, 243, 243);
  padding: 40px;
  border-radius: 50%;
  margin-bottom: 30px;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}


.social:hover {
  border:4px solid rgb(14, 14, 14);
}

#inscricoes {
  font-weight: 400;
  height: auto;
}

/* If the screen size is 600px wide or less, set the font-size of <div> to 30px */

@media screen and (max-width: 600px) {
  #instagram h2 {
    font-size: 30px;
  }
  #instagram {
    padding: 60px 0;
  }
  .card-img-top {
    width: 100%;
    height: 70vw;
    object-fit: cover;
    display: block;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    padding-top: 20px;
  }
}

/* Botoes partilhar */

#share {
  padding: 100px;
}

#share a {
  width: 50px;
  height: 50px;
  display: inline-block;
  margin: 8px;
  border-radius: 50%;
  font-size: 24px;
  color: #fff;
  opacity: 1;
  transition: opacity 0.15s linear;
}

#share a:hover {
  opacity: 0.8;
}

/* icons */

#share i {
  padding: 13px;
}

/* colors */

.facebook {
  background: #3b5998;
}

.twitter {
  background: #55acee;
}

.googleplus {
  background: #dd4b39;
}

.linkedin {
  background: #0077b5;
}

.pinterest {
  background: #cb2027;
}

.tumblr {
  background: #2c4762;
}



.row {
  margin: 10px -16px;
}

/* Add padding BETWEEN each column */
.row,
.row > .column {
  padding: 8px;
}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 33.33%;
  display: none; /* Hide all elements by default */
}

/* Clear floats after rows */ 
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Content */
.content {
  background-color: white;
}

.content h4 {
 padding: 20px;
 font-size: 1.2em;
 font-weight: 400;
}

/* The "show" class is added to the filtered elements */
.show {
  display: block;
}

.btn {
 padding: 10px 20px;
}

.btn a {
  color: #fff;
  text-decoration: none;
}

.btn:hover {
  background: var(--main-color); 
  border-color: var(--main-color); 
 }

.work-image {
  width: 100%;
  padding: 10px;
}

.center {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}


.form-control, .form-control:hover {
  background: #ebebeb;
  color: #222;
  border: none;
}

.progress-bar {
  background: -webkit-linear-gradient(left, #0e6453 0%,#1abc9c 100%); /* Chrome10-25,Safari5.1-6 */
  text-align: left;
  padding: 10px;
 
  }

  .progress {
    margin: 10px auto;
    height: 10px;
  }



  .timeline {
    width:100%;
    margin:0 auto;
    overflow:auto;
    padding:2%;
  }
  .right-content, .left-content {
    float:left;
    display:block;
    width:50%;
    padding:1% 2%;
  }
  .left-content {
    border-right:5px dotted #ccc;	
    text-align:right;
  }
  .left-content p {
    margin:150px 0 0;
  }
  .right-content p {
    margin:80px 0 150px;
  }
  .timeline p {
  -webkit-transition: all 0.7s ease-in-out;
  -moz-transition: all 0.7 ease-in-out;
  -ms-transition: all 0.7s ease-in-out;
  -o-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;	
  }
  .left-content .more-padding {
    padding-right:100px;
  }
  .right-content .more-padding {
    padding-left:100px;
  }

.timeline-title {
  font-weight: 600;
  font-size: 1.3em;
  padding-bottom: 30px;
}  

.experience-icons {
  color: rgb(224, 224, 224);
  font-size: 3em;
  padding: 10px;
}

.experience-square {
  border-left: 3px solid var(--main-color);

  padding: 30px;
  margin: 10px;
  line-height: 1.6em;

}

.message-title {
  padding: 0;
}

#list-tab {
  border-right: 2px solid #ccc;
}

.list-group-item {
  border: none;
}

.list-group-item-active {
 background: #000;
}

.head-title {
  padding-top: 24%; 
  color: #fff; 
  font-size: 6em;
  text-align: center; 
  font-weight: 600; 
  letter-spacing: -2px;
}

.head-subtitle {
  font-size: 10px;
  padding-bottom: 100px;
  text-align: center;
  font-weight: 400;
  letter-spacing: 3px;
  color: #Fff;
}

.about-picture {
height: 400px;
margin-bottom: 100px;
}



#blog {
  color: #fff;
  background: var(--main-color);
  padding-bottom: 100px;
}

.card-post {
background: none;
border: 3px solid var(--main-color);
}

.carousel-item, .carousel-inner {
  margin: auto;
  width: 100%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none;
}

.carousel-control-next-icon:after
{
  font-family: "Font Awesome 5 Free"; 
  font-weight: 900; 
  content: "\f054";
  font-size: 40px;
  color: #000;
}

.carousel-control-prev-icon:after {
  font-family: "Font Awesome 5 Free"; 
  font-weight: 900; 
  content: "\f053";
  font-size: 40px;
  color: #000
}

.card-title {
  font-weight: 600;
  font-size: 34px;
  padding:10px 0;
}

.texto-temas {
  line-height: 2em;
}

.theme-icon {
  font-size: 50px;
  height: 120px;
  width: 120px;
  border: 3px solid var(--main-color);
  padding: 30px;
  color: var(--main-color);
  border-radius: 50%;
  margin-bottom: 30px;
}

#programa {
  text-align: center;
  background: linear-gradient(to top, rgba(19, 19, 19, 0.8), rgba(58, 58, 58, 0.8)),  /* bottom, image */
  url("https://images.unsplash.com/photo-1523240795612-9a054b0db644?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=2250&q=80");
  background-size: cover;
  background-position: center top;
  margin-top: -10px;
  background-attachment: fixed;
}

#programa h5 {
  padding: 30px auto;
  font-weight: 600;
  font-size: 2em;
  color: #fff;
  text-align: left;
}

.programa-text {
line-height: 2em;
text-align: left;
color: #fff;
}
.press-text {
line-height: 1.7em;
}



.container-fluid {
  width: 80%;
}

#inscricoes {
    background: linear-gradient(to top, rgba(2, 2, 2, 0.85), rgba(24, 24, 24, 0.7)),
    url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1350&q=80");
    background-size: cover;
    background-position: center top;  
    margin-top: -10px;
}