/* 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);
}

/* Hero buttons */

.hero-actions .btn-hero-primary,
.hero-actions .btn-hero-secondary {
  width: auto;
  max-width: 100%;
  min-width: 200px;
  min-height: 46px;
  height: auto;
  padding: 12px 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(17, 0, 54, 0.25);
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-actions .btn-hero-primary {
  background-color: #e8c547;
  border-color: #e8c547;
}

.hero-actions .btn-hero-secondary {
  border-color: rgba(232, 197, 71, 0.85);
  background: linear-gradient(135deg, rgba(232, 197, 71, 0.16), rgba(255, 255, 255, 0.05));
  box-shadow: 0 12px 28px rgba(17, 0, 54, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.hero-actions .btn-hero-primary i,
.hero-actions .btn-hero-secondary i {
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  transition: left 0.45s ease, transform 0.45s ease;
}

.hero-actions .btn-hero-primary span,
.hero-actions .btn-hero-secondary span {
  position: relative;
  top: auto;
  left: auto;
  width: auto;
  height: auto;
  padding: 0;
  display: block;
  font-family: 'Verdana Bold';
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.3px;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
  text-align: center;
  transform: none;
  transition: color 0.3s ease;
}

.hero-actions .btn-hero-primary span {
  color: #110036;
}

.hero-actions .btn-hero-secondary span {
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
}

.hero-actions .btn-hero-primary i {
  background-color: #110036;
  color: #e8c547;
}

.hero-actions .btn-hero-secondary i {
  background-color: #e8c547;
  color: #110036;
}

.hero-actions .btn-hero-primary:hover,
.hero-actions .btn-hero-secondary:hover {
  outline: none;
}

.hero-actions .btn-hero-primary:hover {
  background-color: #f0d768;
  border-color: #f0d768;
}

.hero-actions .btn-hero-secondary:hover {
  background: linear-gradient(135deg, rgba(17, 0, 54, 0.92), rgba(27, 10, 74, 0.95));
  border-color: #e8c547;
  box-shadow: 0 14px 30px rgba(17, 0, 54, 0.3), inset 0 0 0 1px rgba(232, 197, 71, 0.35);
}

.hero-actions .btn-hero-primary:hover i,
.hero-actions .btn-hero-secondary:hover i {
  left: calc(100% - 44px);
  transform: translateY(-50%);
}

.hero-actions .btn-hero-primary:hover span {
  transform: translateX(-6px);
}

.hero-actions .btn-hero-secondary:hover span {
  color: #e8c547;
  text-shadow: none;
  transform: none;
}

/* 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;
}

.media-results-wrapper {
  position: relative;
}

.media-results-indicator {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.media-results-indicator__spinner {
  width: 26px;
  height: 26px;
  border: 3px solid #d7dee5;
  border-top-color: #063c53;
  border-radius: 50%;
  animation: media-spinner 0.9s linear infinite;
}

.media-results-indicator.htmx-request {
  display: flex;
}

@keyframes media-spinner {
  to {
    transform: rotate(360deg);
  }
}

/* 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;
}

.library-nav {
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  top: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.library-nav::after {
  font-size: 18px;
}

.library-list {
  border-top: 1px solid #e8e8e8;
  padding-top: 24px;
}

.library-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px 24px;
}

.library-list li {
  font-size: 15px;
}

.library-list a {
  color: #063c53;
  font-weight: 600;
}

.library-list .reference {
  display: block;
  font-size: 13px;
  color: #666;
}

/* 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.c510a9c235b0.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.9685663cd4e6.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;
}
