/*
* **********************************
* ################################## ESTILOS DO INDEX
* **********************************
*/

/*
========================
======================== ESTILOS GERAIS DO ÍNDICE
========================
*/

/*
========================
======================== MAIN HEADER
========================
*/

@media(max-width: 1024px) {
    .main-header{
        box-shadow: 0px 0px 34px -13px rgba(0,0,0,0.1);
    }
}

/*
========================
======================== BREADCRUMBS
========================
*/

@media(max-width: 1024px) {
    .breadcrumbs{
        margin-top: 180px;
    }
}

/*
========================
======================== BANNER
========================
*/

.banner-content {
    margin: 0 15px 0 15px;
    overflow: hidden;

    -webkit-border-bottom-right-radius: 30px;
    -webkit-border-bottom-left-radius: 30px;
    -moz-border-radius-bottomright: 30px;
    -moz-border-radius-bottomleft: 30px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
}
.banner-mobile{
    display: none;
}
@media(max-width: 1024px) {
    .banner-default{
        display: none;
    }
    .banner-mobile{
        display: block;
    }
}

/*
========================
======================== SOBRE
========================
*/

.about {
    width: 90%;
    margin: -135px auto 0;
}
@media(max-width: 1024px) {
    .about {
        width: 90%;
        margin: 50px auto 0;
    }
}
.about-content {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.about-left {
  width: 50%;
}
@media(max-width: 1024px) {
  .about-left {
    width: 100%;
  }
}
.about .htmlchars ul li{
    list-style: circle;
}
.about .htmlchars ol li{
    list-style: decimal;
}
.gallery{
    width: 100%;
    margin-top: 35px;
}

.gallery-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.gallery-header h3{
    font-size: 2.6rem;
    line-height: 2.8rem;
    color: #292c39;
}

.gallery-header a{
    font-size: 1.6rem;
    line-height: 1.8rem;
    color: #292c39;
}

.gallery-header a i{
    font-size: 1.6rem;
    line-height: 1.8rem;
    color: #292c39;
}

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


.gallery-list .slick-slide {
  margin: 0 10px; /* 10px de cada lado = 20px total */
}

.gallery-list {
  margin: 0 -10px; /* Compensa a margem nos lados extremos */
}

.gallery-box-item{
  display: block;
  background:#006fdb;
  border-radius: 20px;
}

.gallery-box-item .cover{
    width: 100%;
    display: block;
    background:#006fdb;
    border-radius: 20px;
    overflow: hidden;

    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.gallery-box-item .cover img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
}
.gallery-box-item:hover .cover img{
    opacity: 0.5;

    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.gallery-box-item header{
    padding: 20px;
}
.gallery-box-item header h2{
    font-size: 2rem;
    line-height: 2.2rem;
    color: #ffffff;
}
.gallery-box-item header p{
    font-size: 1.6rem;
    line-height: 1.8rem;
    color: #ffffff;
    margin-top: 15px;
}
.gallery-box-item header p i{
    color: #ffc506;
    margin-right: 5px;
}

.gallery-box-item:hover header h2{
    text-decoration: underline;
}





.gallery .slick-dots {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.gallery .slick-dots li {
  display: inline-block;
}

.gallery .slick-dots li button {
  background: #ffc506;
  display: block;
  width: 16px;
  height: 16px;
  margin: 2px;
  cursor: pointer;

  font-size: 0;
  outline: 0;
  padding: 0;
  border: 0;

  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;

  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}

.gallery .slick-dots li:hover button,
.gallery .slick-dots li.slick-active button {
  background: #292c39;
}

/*
========================
======================== VIDEOS
======================== 
*/

.videos{
    margin-top: 70px;
}
.videos .content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .videos .content {
    width: 80%;
  }
}

.videos-header {
  flex-basis: 100%;
  margin-bottom: 40px;
  text-align: center;
}

.videos-header h2 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #292c39;
}

.highcontrast .videos-header h2 {
  color: #fff !important;
}

.videos-left {
  flex-basis: 65%;
}

@media (max-width: 1024px) {
  .videos-left {
    flex-basis: 100%;
    text-align: center;
  }
}

.videos-featured header {
  margin-top: 20px;
}

.videos-featured iframe{
    border-radius: 25px;
}

.videos-featured header h3 {
  font-size: 2.6rem;
  line-height: 2.8rem;
  color: #292c39;
  font-weight: 600;
}

.highcontrast .videos-featured header h3 {
  color: #fff !important;
}

.videos-featured header p {
  font-size: 1.6rem;
  color: #292c39;
  font-weight: 500;
  margin-top: 10px;
  display: block;
}

.highcontrast .videos-featured header p {
  color: #fff;
}

.videos-featured header p i {
  color: #0045a0;
  margin-right: 5px;
}

.highcontrast .videos-featured header p i {
  color: #ffc506 !important;
}

.videos-right {
  flex-basis: 30%;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .videos-right {
    flex-basis: 100%;
    margin-top: 30px;
  }
}

.videos-item {
  background-color: #fff;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  box-shadow: 0px 0px 34px -13px rgba(0,0,0,0.1);
}

.videos-item-cover {
  position: relative;
  overflow: hidden;

  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
}

.videos-item-cover:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgb(20, 18, 35);
  background: linear-gradient(
    180deg,
    rgba(20, 18, 35, 0) 30%,
    rgba(20, 18, 35, 1) 100%
  );
}

.videos-item-cover img {
  min-width: 100%;
  height: 203px;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .videos-item-cover img {
    height: 170px;
  }
}

.videos-item-cover span {
  display: flex;
  align-items: center;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 20px;
  font-size: 1.8rem;
  font-weight: 400;
  color: #fff;
  z-index: 9;
}

.videos-item-cover span i {
  font-size: 3rem;
  font-weight: 700;
  margin-right: 5px;
}

.videos-item header {
  padding: 30px;
  text-align: center;
  min-height: 237px;
}
@media (max-width: 1024px) {
  .videos-item header {
    min-height: auto;
  }
}

.videos-item header h2 {
  font-size: 2.6rem;
  line-height: 2.8rem;
  color: #292c39;
  font-weight: 600;
}

.videos-item:hover header h2 {
  text-decoration: underline;
}

.videos-item header p {
  font-size: 1.6rem;
  color: #292c39;
  font-weight: 500;
  margin-top: 10px;
  display: block;
}

.videos-item header p i {
  color: #0045a0;
  margin-right: 5px;
}

/*dots*/
.videos-list .slick-dots {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.videos-list .slick-dots li {
  display: inline-block;
}

.videos-list .slick-dots li button {
  background: #ffc506;
  display: block;
  width: 16px;
  height: 16px;
  margin: 2px;
  cursor: pointer;

  font-size: 0;
  outline: 0;
  padding: 0;
  border: 0;

  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;

  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}

.videos-list .slick-dots li:hover button,
.videos-list .slick-dots li.slick-active button {
  background: #292c39;
}

.highcontrast .videos-list .slick-dots li:hover button,
.highcontrast .videos-list .slick-dots li.slick-active button {
  background: #ffffff;
}

.videos-btn {
  width: 100%;
  margin-top: 30px;
  text-align: center;
}

.videos-btn .btn {
  background-color: #ffc506;
  font-size: 2.2rem;
  font-weight: 500;
  color: #292c39;
  display: inline-block;
  padding: 12px 25px;
}

.videos-btn .btn:hover {
  background-color: #292c39;
  color: #fff;
}

/*
========================
======================== BENEFÍCIOS + VISITA
======================== 
*/

.videos + .content{
    margin-top: 75px;
    overflow: hidden;
}
@media (max-width: 1024px) {
    .videos + .content{
        padding: 0 30px;
    }   
}

/*
========================
======================== BENEFÍCIOS
======================== 
*/

section#beneficios{
    width: 48%;
    float: left;
    background: #292c39;
    padding: 35px;
    border-radius: 20px;
    min-height: 475px;
}
@media (max-width: 1024px) {
    section#beneficios{
        width: 100%;
    }   
}
section#beneficios h3{
    color: #ffc506;
    margin-bottom: 25px;
    font-size: 2.6rem;
    text-transform: uppercase;
}
section#beneficios .htmlchars *{
    color: #ffffff;
}

/*
========================
======================== VISITA
======================== 
*/

section#visita{
    width: 48%;
    float: right;
    background: #ffc506;
    padding: 35px;
    border-radius: 20px;
    min-height: 475px;
}
@media (max-width: 1024px) {
    section#visita{
        width: 100%;
        margin-top: 25px;
    }   
}
section#visita h3{
    color: #292c39;
    margin-bottom: 25px;
    font-size: 2.6rem;
    text-transform: uppercase;
}
section#visita .htmlchars *{
    color: #292c39;
}

section#visita form input[type='text'],
section#visita form textarea{
    width: 100%;
    background: #ffffff;
    border: none;
    border-radius: 7px;
    padding: 12px 0;
    color: #292c39;
    margin-bottom: 10px;
}
section#visita form input[type='text']:nth-child(2),
section#visita form input[type='text']:nth-child(3){
    width: 49%;
}
section#visita form input[type='text']:nth-child(3){
    float: right;
}
section#visita form input[type='submit']{
    background: #292c39;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 15px 20px;
    display: block;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
}
section#visita form input[type='submit']:hover{
    background: #8d6c00;
}

/*
========================
======================== DEPOSITIONS
========================
*/

.depositions-box {
  width: 100%;
  overflow: hidden;
  padding: 70px 0 70px;
}

.depositions-box-header {
  width: 100%;
  margin-bottom: 100px;
  text-align: center;
}
.depositions-box-header h2 {
  font-size: 4.2rem;
  line-height: 4.4rem;
  font-weight: 600;
}
.depositions-box-header p {
  font-size: 2.4rem;
  line-height: 1.25rem;
  font-weight: 300;
  margin-top: 10px;
}
.depositions-box-list {
  width: 100%;
}
.depositions-box .slick-list {
  overflow: visible !important;
}
.depositions-box-item {
  background-color: #fff;
  padding: 30px;
  text-align: center;

  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;

  box-shadow: 0px 0px 34px -13px rgba(0,0,0,0.1);
}
.depositions-box-item-cover {
  width: 100px;
  height: 100px;
  overflow: hidden;
  display: inline-block;
  margin-top: -100px;

  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
}

.depositions-box-item-cover img {
  height: 100%;
}

.depositions-box-item-header h2 {
  font-size: 3rem;
  line-height: 3.2rem;
  font-weight: 700;
}

.depositions-box-item-header p {
  font-size: 1.8rem;
  line-height: 2rem;
  font-weight: 400;
}

.depositions-box-item-text {
  margin-top: 20px;
  padding: 10px 0;
}

.depositions-box-item-text p {
  font-size: 1.8rem;
  line-height: 2.2rem;
  font-weight: 300;
}

/*dots*/
.depositions-box-list .slick-dots {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.depositions-box-list .slick-dots li {
  display: inline-block;
}

.depositions-box-list .slick-dots li button {
  background: #ffc506;
  display: block;
  width: 16px;
  height: 16px;
  margin: 2px;
  cursor: pointer;

  font-size: 0;
  outline: 0;
  padding: 0;
  border: 0;

  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;

  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}

@media (max-width: 1024px) {
  .depositions-box-list .slick-dots li button {
    width: 25px;
    height: 25px;
  }
}

.depositions-box-list .slick-dots li:hover button,
.depositions-box-list .slick-dots li.slick-active button {
  background: #292c39;
}

/*
========================
======================== ATENDIMENTO
========================
*/

section#atendimento{
    width: 100%;
    background: #006fdb;
    padding: 30px 0 25px;
    border-radius: 20px;
}
@media (max-width: 1024px) {
    section#atendimento{
        padding: 30px 25px 25px;
    }   
}
section#atendimento h3{
    color: #ffffff;
    margin-bottom: 5px;
    font-size: 2.6rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
}
section#atendimento .htmlchars *{
    color: #ffffff;
    text-align: center !important;
    font-size: 16px;
}