/* Botão Invista Aqui */

.btn-invista {
  width: 180px;
  height: 40px;
  border-radius: 20px;
  display: block;
  position: relative;
  border: 1px solid #e8c547;
  background-color: transparent;
  transition: all 0.5s ease-out;
  cursor: pointer;
}

.btn-invista.btn-invista-mobile {
  width: 180px;
  height: 40px;
  border-radius: 20px;
  display: block;
  position: relative;
  border: 1px solid #e8c547;
  background-color: #e8c547;
  transition: all 0.5s ease-out;
  cursor: pointer;
  margin: 0 auto;
}

.btn-invista:hover {
  border-color: #fff;
  outline: none;
}

.btn-invista.btn-invista-mobile:hover {
  border-color: #fff;
  outline: #fff;
}

.btn-invista:active,
.btn-invista:focus {
  outline: 0;
}

.btn-invista i {
  position: absolute;
  top: 3px;
  width: 32px;
  height: 32px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e8c547;
  font-size: 12px;
  transition: all 0.5s ease;
  transform: translateX(-10px);
}

.btn-invista.btn-invista-mobile i {
  position: absolute;
  top: 3px;
  width: 32px;
  height: 32px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #110036;
  font-size: 12px;
  color: #e8c547;
  transition: all 0.5s ease;
  transform: translateX(2px);
}

.btn-invista span {
  position: absolute;
  display: block;
  top: 9px;
  font-family: 'Verdana Bold';
  font-size: 12px;
  color: #e8c547;
  transition: all 0.5s ease;
  transform: translateX(35px);
}

.btn-invista.btn-invista-mobile span {
  position: absolute;
  display: block;
  top: 9px;
  font-family: 'Verdana Bold';
  font-size: 12px;
  color: #110036;
  transition: all 0.5s ease;
  transform: translateX(45px);
}

.btn-invista:hover i {
  background-color: white;
  transform: translateX(131px);
}

.btn-invista.btn-invista-mobile:hover i {
  background-color: white;
  transform: translateX(143px);
}

.btn-invista:hover span {
  color: #fff;
  transform: translateX(10px);
}

/* Title */

.title {
  font-family: 'Verdana Bold';
  font-size: 22px;
  text-align: center;
  padding-bottom: 32px;
}

@media (min-width: 992px) {
  .title {
    font-size: 28px;
    padding-bottom: 48px;
  }
}

.title.gold {
  color: #e8c547;
}

/* Subtitle */

.subtitle {
  font-family: 'Verdana Bold';
  font-size: 22px;
  text-align: center;
  padding-bottom: 32px;
}

.subtitle.darkblue {
  color: #110036;
}

/* Subtitle 2 */

.subtitle2 {
  font-family: 'Verdana Normal';
  font-size: 14px;
  text-align: center;
}

.subtitle2.darkblue {
  color: #110036;
}

/* Card Fundo */

.card-fundo {
  width: 100%;
  height: auto;
  min-height: 280px;
  background-color: #fff;
  padding: 48px 24px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (min-width: 992px) {
  .card-fundo {
    width: 100%;
    height: auto;
    min-height: 280px;
    background-color: #fff;
    padding: 48px;
    padding-left: 56px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.card-fundo .content {
  width: 100%;
  height: 100%;
  display: block;
  grid-template-columns: initial;
  grid-column-gap: initial;
}

@media (min-width: 992px) {
  .card-fundo .content {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-column-gap: 20px;
  }
}

.card-fundo .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

@media (min-width: 992px) {
  .card-fundo .right {
    align-items: flex-end;
  }
}

.card-fundo .content h3 {
  max-width: 70%;
  font-family: 'Verdana Bold';
  font-size: 18px;
  line-height: 28px;
  color: #110036;
  margin-bottom: 24px;
}

@media (min-width: 992px) {
  .card-fundo .content h3 {
    max-width: 60%;
    margin-bottom: 0;
  }
}

.card-fundo .content p {
  font-family: 'Verdana Normal';
  font-size: 13px;
  color: #110036;
  margin-bottom: 32px;
  white-space: pre-wrap;
}

@media (min-width: 992px) {
  .card-fundo .content p {
    font-family: 'Verdana Normal';
    font-size: 13px;
    color: #110036;
    margin-bottom: 24px;
  }
}

/* Botão Ver Mais */

.btn-vermais {
  width: 150px;
  height: 40px;
  border-radius: 20px;
  display: block;
  position: relative;
  border: 1px solid #130134;
  background-color: transparent;
  transition: all 0.5s ease-out;
  cursor: pointer;
}

.btn-vermais:hover {
  outline: none;
  background-color: #130134;
}

.btn-vermais:active,
.btn-vermais:focus {
  outline: 0;
}

.btn-vermais i {
  position: absolute;
  top: 3px;
  width: 32px;
  height: 32px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e8c547;
  font-size: 12px;
  transition: all 0.5s ease;
  transform: translateX(-10px);
}

.btn-vermais span {
  font-family: 'Verdana Normal';
  position: absolute;
  display: block;
  top: 8px;
  font-size: 13px;
  color: #130134;
  transition: all 0.5s ease;
  transform: translateX(40px);
}

.btn-vermais:hover i {
  transform: translateX(102px);
}

.btn-vermais:hover span {
  color: #fff;
  transform: translateX(10px);
}

/* Botão Saiba Mais */

.btn-saibamais {
  width: 150px;
  height: 40px;
  border-radius: 20px;
  display: block;
  position: relative;
  border: 1px solid #e8c547;
  background-color: transparent;
  transition: all 0.5s ease-out;
  cursor: pointer;
}

.btn-saibamais:hover {
  border-color: #fff;
  outline: none;
}

.btn-saibamais:active,
.btn-saibamais:focus {
  outline: 0;
}

.btn-saibamais i {
  position: absolute;
  top: 3px;
  width: 32px;
  height: 32px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e8c547;
  font-size: 12px;
  transition: all 0.5s ease;
  transform: translateX(-10px);
}

.btn-saibamais span {
  position: absolute;
  display: block;
  top: 9px;
  font-family: 'Verdana Bold';
  font-size: 12px;
  color: #e8c547;
  transition: all 0.5s ease;
  transform: translateX(35px);
}

.btn-saibamais:hover i {
  background-color: white;
  transform: translateX(101px);
}

.btn-saibamais:hover span {
  color: #fff;
  transform: translateX(10px);
}

/* Botão Enviar */

.btn-enviar {
  width: 130px;
  height: 40px;
  border-radius: 20px;
  display: block !important;
  position: relative !important;
  border: 1px solid #100135 !important;
  background-color: transparent;
  transition: all 0.5s ease-out;
  cursor: pointer;
}

.btn-enviar:hover {
  border-color: #100135;
  background-color: #100135;
  outline: none;
}

.btn-enviar:active,
.btn-enviar:focus {
  outline: 0;
}

.btn-enviar i {
  position: absolute;
  top: 3px;
  width: 32px;
  height: 32px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #100135;
  font-size: 12px;
  color: #e8c547;
  transition: all 0.5s ease;
  transform: translateX(-10px);
}

.btn-enviar span {
  position: absolute;
  display: block;
  top: 9px;
  font-family: 'Verdana Normal';
  font-size: 12px;
  color: #100135;
  transition: all 0.5s ease;
  transform: translateX(35px);
}

.btn-enviar:hover i {
  color: #110036;
  background-color: #e8c547;
  transform: translateX(82px);
}

.btn-enviar:hover span {
  color: #fff;
  transform: translateX(10px);
}

.btn-enviar:hover {
  color: #fff;
}

/* Botão Fundo Período */

.btn-fundo-periodo {
  min-width: 70px;
  font-family: 'Verdana Normal';
  font-size: 13px;
  color: #110036;
  background-color: #ffffff;
  border: 1px solid #110036;
  padding: 8px;
  margin: 0 12px;
  border-radius: 20px;
  transition: all 0.3s ease-out;
}

@media (min-width: 992px) {
  .btn-fundo-periodo {
    min-width: 110px;
    padding: 8px 36px;
  }
}

.btn-fundo-periodo:hover {
  color: #fff;
  background-color: #110036;
}

.btn-fundo-periodo.active {
  color: #fff;
  background-color: #110036;
}

.btn-fundo-periodo:focus {
  outline: 0 !important;
  box-shadow: none;
}

/* Botão Fundos */

.btn-fundos {
  width: 240px;
  height: 40px;
  border-radius: 25px;
  display: block;
  position: relative;
  border: 1px solid #130134;
  background-color: transparent;
  transition: all 0.5s ease-out;
  cursor: pointer;
  margin: 0px 24px;
}

.btn-fundos:hover {
  outline: none;
  background-color: #130134;
}

.btn-fundos:active,
.btn-fundos:focus {
  outline: 0;
}

.btn-fundos i {
  position: absolute;
  top: 3px;
  width: 32px;
  height: 32px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e8c547;
  font-size: 12px;
  transition: all 0.5s ease;
  transform: translateX(-10px);
}

.btn-fundos span {
  width: 160px;
  height: 100%;
  font-family: 'Verdana Normal';
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 0px;
  font-size: 13px;
  line-height: 15px;
  text-align: center;
  color: #130134;
  transition: all 0.5s ease;
  transform: translateX(30px);
}

.btn-fundos:hover i {
  transform: translateX(193px);
}

.btn-fundos:hover span {
  color: #fff;
  transform: translateX(10px);
}

/* Botão Fundo Período */

.btn-midia {
  min-width: 150px;
  font-family: 'Verdana Normal';
  font-size: 13px;
  color: #110036;
  background-color: #ffffff;
  border: 1px solid #110036;
  padding: 8px;
  margin: 0 12px;
  border-radius: 20px;
  transition: all 0.3s ease-out;
}

@media (min-width: 768px) {
  .btn-midia {
    display: block;
    min-width: 120px;
    padding: 8px 16px;
  }
}

.btn-midia:hover {
  color: #fff;
  background-color: #110036;
}

.btn-midia.active {
  color: #fff;
  background-color: #110036;
}

.btn-midia:focus {
  outline: 0 !important;
  box-shadow: none;
}

.select-midia {
  margin: 8px;
}

@media (min-width: 768px) {
  .select-midia {
    margin: 0 8px;
  }
}

.select-mes,
.select-ano {
  font-family: 'Verdana Normal';
  font-size: 13px;
  color: #110036;
  border: 0;
}

.select-mes:focus,
.select-ano:focus {
  outline: 0 !important;
  box-shadow: none;
}

.select-mes option,
.select-ano option {
  font-family: 'Verdana Normal';
  font-size: 13px;
  color: #110036;
}

/* Dropdown Mídia */

.dropdown-midia {
  margin-left: 16px;
  font-family: 'Verdana Normal';
}

@media (min-width: 768px) {
  .dropdown-midia {
    margin-left: 0;
    font-family: 'Verdana Normal';
  }
}

.dropdown-midia .dropdown-toggle {
  width: 100%;
  font-size: 14px !important;
}

.dropdown-midia .dropdown-menu {
  width: 100%;
}

.dropdown-midia .dropdown-item {
  font-size: 13px;
  text-align: center;
}

/* Card Mídia */

.card-midia {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding-bottom: 32px;
}

@media (min-width: 992px) {
  .card-midia {
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    padding-bottom: 0;
  }
}

.card-midia img {
  width: 100%;
  height: auto;
  min-height: 200px;
  max-height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 16px;
}

@media (min-width: 576px) {
  .card-midia img {
    min-height: 350px;
    max-height: 350px;
  }
}

@media (min-width: 768px) {
  .card-midia img {
    min-height: 450px;
    max-height: 450px;
  }
}

@media (min-width: 992px) {
  .card-midia img {
    min-height: 230px;
    max-height: 230px;
  }
}

.card-midia .title {
  width: 100% !important;
  font-family: 'Verdana Bold';
  font-size: 15px;
  color: #110036;
  line-height: 22px;
  text-align: left;
  padding-bottom: 0;
}

.card-midia .data {
  display: block;
  font-family: 'Verdana Normal';
  font-size: 12px;
  color: #e8c547;
  padding-bottom: 16px;
}

.card-midia .excerpt {
  display: block;
  font-family: 'Verdana Normal';
  font-size: 13px;
  padding-bottom: 24px;
}

/* Card Library */

.library-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  padding: 0 32px;
}

.library-card:hover {
  color: #e8c547;
  text-decoration: none;
}

.library-card .image {
  display: block;
  width: 100%;
  height: 200px;
  margin-bottom: 24px;
}

@media (min-width: 576px) {
  .library-card .image {
    display: block;
    width: 100%;
    height: 340px;
    margin-bottom: 24px;
  }
}

@media (min-width: 992px) {
  .library-card .image {
    display: block;
    width: 100%;
    height: 290px;
    margin-bottom: 24px;
  }
}

@media (min-width: 1200px) {
  .library-card .image {
    display: block;
    width: 100%;
    height: 390px;
    margin-bottom: 24px;
  }
}

.library-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.library-card .title {
  width: 100% !important;
  font-family: 'Verdana Bold';
  font-size: 15px;
  color: #110036;
  text-align: left;
  padding: 0;
  transition: all 0.3s ease-out;
}

.library-card:hover .title {
  color: #e8c547;
}

.library-card .reference {
  font-family: 'Verdana Normal';
  font-size: 14px;
  color: #110036;
  transition: all 0.3s ease-out;
}

.library-card:hover .reference {
  color: #e8c547;
}

/* Formulário contato */

.form-contato label {
  width: 100%;
  font-family: 'Verdana Normal';
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  color: #110036;
  padding-bottom: 16px;
}

.form-contato input[type='text'],
.form-contato input[type='email'],
.form-contato textarea {
  width: 100%;
  background: rgba(247, 247, 247, 0.5) !important;
  border-radius: 10px;
  margin-top: 8px;
}

.navigation-mobile {
  width: 100%;
  font-family: 'Verdana Bold';
}

.navigation-mobile * {
  padding: 0;
  margin: 0;
}

.navigation-mobile a {
  text-decoration: none;
}

.navigation-mobile li {
  list-style: none;
}

.navigation-mobile-ul > li > a {
  width: 100%;
  border-bottom: 1px solid #100135;
}

.navigation-mobile-ul > li:last-child > a {
  border-bottom: none;
}

.navigation-mobile a {
  color: #110036;
  display: inline-block;
  padding: 12px 48px 12px 0;
  transition: all 0.3s ease-out;
  text-align: center;
}

.navigation-mobile li {
  text-align: center !important;
  padding-left: 50px !important;
}

.navigation-mobile-ul a:hover {
  color: #ffffff;
}

.navigation-mobile-ul > li > ul {
  display: none;
  padding-top: 16px;
  padding-bottom: 16px;
  font-family: 'Verdana Normal';
  transition: all 0.3s ease-out;
}

.navigation-mobile-ul > li > ul > li {
  margin-bottom: -8px;
}

.navigation-mobile-ul li:hover > ul {
  display: block;
  padding-left: 0;
}

.navigation-mobile .sub-arrow:after {
  display: inline-block;
  content: '';
  width: 12px;
  height: 12px;
  background-image: url('../../assets/img/arrow_dwn.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 6px;
}

.navigation-mobile li:hover .sub-arrow:after {
  content: '';
  background-image: url(../../assets/img/arrow_up.svg);
}

/* Contact form */
.wpcf7-not-valid-tip {
  font-family: 'Verdana Normal';
  font-size: 14px;
  color: #e8c547;
  padding-top: 8px;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-response-output {
  font-family: 'Verdana Normal';
  font-size: 14px;
  color: #fff;
  text-align: center;
  background-color: #e8c547;
  border: 2px solid #e8c547 !important;
  padding-top: 8px;
}
