/* VariÃ¡veis de cores */
:root {
  --primary-purple: #451c6a;
  --dark-purple: #2e0d4c;
  --light-blue: #00b1eb;
  --gold: #ffc107;
  --pink: #e83e8c;
  --text-gray: #666666;
  --light-bg: #f9f9f9;
  --text-gray-secondary: #575757;

  --color-blue: #6c85aa;
  --color-blueblack: #1e1d4d;
  --color-blue-2: #405caa;
  --color-yellow: #edc64d;
  --color-white: #fff;
  --color-purple: #66589e;
  --color-purple-2: #5d3989;

  --background-image-1: url("../../../images/paint-1.png") no-repeat right;
  --background-image-2: url("../../../images/paint-2.png") no-repeat left;

  --text-size-min: 11px;
  --text-size-med: 14px;
  --text-size-max: 16px;

  --title-size-min: 18px;
  --title-size-med: 30px;
  --title-size-med2: 22px;

  @media (max-width: 1024px) {
    --text-size-min: 10px;
    --text-size-med: 11px;
    --text-size-max: 14px;

    --title-size-min: 16px;
    --title-size-med: 25px;
  }
}


/* Fonte */

@font-face {
  font-family: 'Raleway';
  src: url('../../../inc/assets/fonts/Raleway.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Raleway';
  src: url('../../../inc/assets/fonts/Raleway-Italic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

/* Estilos gerais */
body {
  font-family: 'Raleway', "Montserrat", sans-serif;
  overflow-x: hidden;
}


.text-gray-secondary {
  color: var(--text-gray-secondary);
}

.color-blueblack {
  background-color: var(--color-blueblack);
}

.title_breadCrumb {
  height: auto;
}

.title_breadCrumb h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: normal;
  /* margin-top: 10px !important; */
  font-style: normal;
}

@media(max-width:1024px) {
  .title_breadCrumb h1 {
    font-size: 2rem;
  }
}

.title_breadCrumb span.gold {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}

.title_breadCrumb span {
  font-size: 1rem;
  font-weight: 700;
}

/* Barra superior */
.top-bar {
  background-color: #fff;
  padding: 0;
}

/* Header Color Bar */
.header-color-bar {
  display: flex;
  width: 100%;
  height: 8px;
}

.top-menu {
  display: flex;
}

.top-menu-item {
  display: inline-flex;
  align-items: center;
  padding: 0px 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  margin-left: 5px;
  border-radius: 5px;
}

.top-menu-item:first-child {
  background-color: var(--color-blueblack);
}

.top-menu-item:nth-child(2) {
  background-color: var(--primary-purple);
}

.top-menu-item:nth-child(3) {
  background-color: var(--light-blue);
}

.top-menu-item i {
  margin-right: 8px;
  font-size: 16px;
}

.top-menu-item:hover {
  opacity: 0.9;
  color: #fff;
}

/* Menu principal */
.main-menu {
  background-color: var(--primary-purple);
  padding: 10px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-toggler {
  border: 1px solid white;
  padding: 15px 10px 5px 10px;
  border-radius: 5px;
  color: #fff;
  font-size: 17px;
}

.logo {
  position: relative;
  margin-top: -130px;
  margin-bottom: -30px;
  z-index: 100;
}

.logo img {
  max-width: 155px;
}

.navbar {
  padding: 0;
}

.navbar-nav {
  gap: 5px;
}

.nav-link {
  color: #fff !important;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 11px !important;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--gold) !important;
}

.nav-link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width 0.3s ease;
  opacity: 0;
}

.nav-link:hover:after {
  width: 80%;
  opacity: 1;
}

.dropdown-menu.show {
  background-color: var(--dark-purple);
}

.search-icon {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.search-icon:hover {
  color: var(--gold);
}

/* Carrossel */
.carousel-section {
  position: relative;
  overflow: hidden;
}

.carousel-inner {
  /* height: 475px; */
}

.carousel-inner img {
  height: 475px;
  object-fit: cover;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.carousel-nav-button {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-nav-button i {
  font-size: 24px;
  color: var(--primary-purple);
}

.carousel-control-prev,
.carousel-control-next {
  opacity: 1;
  width: 5%;
}

.carousel-control-prev:hover .carousel-nav-button,
.carousel-control-next:hover .carousel-nav-button {
  background-color: rgba(255, 255, 255, 0.9);
}

/* Indicadores do carrossel para mobile */
.carousel-indicators {
  margin-bottom: 15px;
  justify-content: center;
  gap: 10px;
  position: absolute;
  bottom: -10px;
}

.carousel-indicators button {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background-color: rgba(255, 255, 255, 0.6) !important;
  margin: 0 !important;
  opacity: 1 !important;
  border: none !important;
}

.carousel-indicators button.active {
  background-color: var(--primary-purple) !important;
  transform: scale(1.2);
}

@media (max-width: 767px) {
  .carousel-inner img {
    height: auto;
    max-height: 350px;
  }
}

/* About Section */
.about-section {
  padding: 80px 0;
}

.about-content {
  padding-right: 30px;
}

.about-title {
  color: var(--text-gray);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-subtitle {
  color: var(--primary-purple);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-text {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.3;
}

@media (max-width: 767px) {
  .about-section {
    padding: 20px 0 0 0;
  }

  .about-content {
    padding-right: 0px;
    margin-bottom: 0px;
    text-align: center;
  }
}

.stat-card {
  background-color: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  height: 218px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.col-md-6 .mb-4 {
  margin-bottom: 20px !important;
}

.stat-number {
  color: var(--primary-purple);
  font-size: 32px;
  font-weight: 700;
  margin-top: 20px;
}

.stat-label {
  color: var(--text-gray);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0;
  letter-spacing: 1px;
}

/* Stats Dots */
.stats-dots {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 70px;
}

.dots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 4px;
}

/* Adicione essa classe aos dois Ãºltimos dots */
.dots-grid .last-row {
  grid-column: 3 / span 1;
  /* ComeÃ§a na coluna 3 */
}

.dots-grid .last-row:last-child {
  grid-column: 4 / span 1;
  /* ComeÃ§a na coluna 4 */
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.yellow-dots .dot {
  background-color: #ffc64a;
}

.blue-dots .dot {
  background-color: var(--light-blue);
}

.purple-dots .dot {
  background-color: #451c6a;
}

.green-dots .dot {
  background-color: #c9d546;
}

/* Ajuste do tamanho para o card com 85% */
.row.h-100 .col-12:last-child .stat-number {
  font-size: 32px;
}

/* Efeito de scroll */
/* .main-menu.scrolled {
    padding: 5px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    animation: slideDown 0.3s ease-out;
} */

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

/* Responsividade */
@media (max-width: 991px) {
  .top-menu {
    flex-direction: column;
  }

  .top-menu-item {
    margin-left: 0;
    margin-bottom: 5px;
  }

  .logo {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
  }

  .main-menu .container {
    flex-direction: column;
  }

  .navbar {
    width: 100%;
    margin: 0;
  }

  .navbar-nav {
    gap: 0;
  }

  .search-icon {
    margin-bottom: 10px;
    font-size: 30px;
  }

  .carousel-inner {
    height: auto;
  }

  .carousel-inner img {
    height: auto;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  .stat-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .about-subtitle {
    font-size: 26px;
  }

  .stat-number {
    font-size: 32px;
  }
}

/* Ajuste dos espaÃ§amentos na seÃ§Ã£o About */
.about-section .row.h-100 {
  gap: 20px;
}

.about-section .row.h-100 .col-12 {
  padding-bottom: 0;
  padding-top: 0;
}

/* EspaÃ§amento especÃ­fico para os cards na seÃ§Ã£o About */
.about-section .col-md-6 .stat-card.mb-4 {
  margin-bottom: 20px !important;
}

/* Podcast Section */
.podcast-section {
  margin-bottom: -110px;
  z-index: 1;
  position: relative;
}

.podcast-card {
  background-color: #00b1eb;
  border-radius: 15px;
  padding: 30px;
  color: white;
}

.podcast-logo {
  max-width: 120px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.podcast-info h3 {
  font-size: 22px;
  font-weight: 600;
  color: white;
}

.btn-spotify {
  background-color: #451c6a;
  color: white;
  border-radius: 5px;
  padding: 10px 20px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-spotify:hover {
  background-color: #33155c;
  color: white;
}

.btn-spotify i {
  margin-right: 8px;
}

/* Video Section */
.video-section {
  background-color: #451c6a;
  padding: 200px 0;
  color: white;
  border-radius: 50px 50px 0 0;
}

@media (max-width: 767px) {
  .video-section {
    background-color: #451c6a;
    padding: 200px 0 150px 0;
    color: white;
    border-radius: 50px 50px 0 0;
  }
}

.video-container {
  position: relative;
}

.video-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  margin-right: -30px;
}

.video-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.video-wrapper img {
  width: 100%;
  display: block;
  border-radius: 15px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
  color: #451c6a;
  font-size: 30px;
  margin-left: 5px;
}

.dots-decoration {
  position: absolute;
  top: -20px;
  right: -30px;
  z-index: 3;
}

.video-content {
  padding-left: 30px;
}

@media (max-width: 767px) {
  .video-content {
    padding-left: 0;
    padding-top: 20px;
    text-align: center;
  }
}

.video-content h2 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.3;
}

.btn-videos {
  background-color: #ffc64a;
  color: #451c6a;
  border-radius: 5px;
  padding: 10px 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-videos:hover {
  background-color: #ffbb33;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-videos i {
  margin-right: 8px;
}

/* Marcas Section */
.marcas-section {
  background-color: #f5f5f5;
  padding: 100px 0;
  position: relative;
  margin-top: -50px;
  border-radius: 0 0 50px 50px;
}

@media (min-width: 1024px) {
  .marcas-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background-color: #f5f5f5;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    transform: translateY(-50%);
  }
}

@media (max-width: 767px) {
  .marcas-section {
    border-radius: 50px;
  }
}

.marcas-intro h4 {
  color: #666;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}

.marcas-intro h2 {
  color: #451c6a;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.marcas-intro p {
  color: #666;
  font-size: 16px;
  line-height: 1.7;
}

.marca-card {
  background: white;
  border-radius: 15px;
  padding: 55px 20px 50px;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.btn span {
  border-left: 1px solid #fff;
  padding: 13px 0px 14px 10px;
  margin: 0px 10px 0px 10px;
}

.btn-purple {
  background-color: var(--primary-purple);
  color: var(--color-white);
  border-radius: 5px;
  padding: 10px 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-purple:hover {
  background-color: var(--dark-purple);
  color: var(--color-white);
  transform: translateY(-3px);
}

.btn-blue {
  background-color: var(--light-blue);
  color: var(--color-white);
  border-radius: 5px;
  padding: 10px 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-blue:hover {
  background-color: var(--color-blue-2);
  color: var(--color-white);
  transform: translateY(-3px);
}

.btn-yellow {
  background-color: var(--gold);
  color: var(--color-white);
  border-radius: 5px;
  padding: 10px 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-yellow:hover {
  background-color: var(--color-yellow);
  color: var(--color-white);
  transform: translateY(-3px);
}

.card-dots {
  position: absolute;
  top: 15px;
  right: 15px;
}

.card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.card-purple .card-icon {
  background-color: #451c6a;
  color: white;
}

.card-purple {
  box-shadow: -11px -13px 0px 0px var(--primary-purple);
  -webkit-box-shadow: -11px -13px 0px 0px var(--primary-purple);
  -moz-box-shadow: -11px -13px 0px 0px var(--primary-purple);
}

.card-blue .card-icon {
  background-color: #00b1eb;
  color: white;
}

.card-blue {
  box-shadow: -11px -13px 0px 0px var(--light-blue);
  -webkit-box-shadow: -11px -13px 0px 0px var(--light-blue);
  -moz-box-shadow: -11px -13px 0px 0px var(--light-blue);
}

.card-yellow .card-icon {
  background-color: #ffc64a;
  color: white;
}

.card-yellow {
  box-shadow: -11px -13px 0px 0px var(--gold);
  -webkit-box-shadow: -11px -13px 0px 0px var(--gold);
  -moz-box-shadow: -11px -13px 0px 0px var(--gold);
}

.card-icon i {
  font-size: 32px;
}

.marca-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.card-purple h3 {
  color: #451c6a;
}

.card-blue h3 {
  color: #00b1eb;
}

.card-yellow h3 {
  color: #ffc64a;
}

.card-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-expand {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.card-purple .btn-expand {
  background-color: #451c6a;
  color: white;
}

.card-blue .btn-expand {
  background-color: #00b1eb;
  color: white;
}

.card-yellow .btn-expand {
  background-color: #ffc64a;
  color: white;
}

.btn-saiba-mais {
  color: #666;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-saiba-mais:hover {
  opacity: 0.8;
}

/* Ajuste dos pontos na decoraÃ§Ã£o de vÃ­deo */
.video-section .dots-decoration {
  width: 40px;
  height: 70px;
}

.video-section .dots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 4px;
}

/* SeÃ§Ã£o de Depoimentos */
.depoimentos-section {
  padding: 80px 0;
  background-color: #fff;
}

.section-header {
  margin-bottom: 40px;
}

.section-header .subtitle {
  color: #666;
  font-size: 18px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}

.section-header .title {
  color: #451c6a;
  font-size: 36px;
  font-weight: 700;
}

.video-item {
  position: relative;
  margin-bottom: 20px;
}

.video-item.large {
  margin-bottom: 0;
}

.video-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  max-width: 100%;
}

.video-wrapper img {
  width: 100%;
  display: block;
  transition: all 0.3s ease;
}

.video-wrapper:hover img {
  transform: scale(1.05);
}

.video-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.play-button i {
  color: #451c6a;
  font-size: 26px;
  margin-left: 4px;
}

.video-item:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
}

.specialist-info {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.specialist-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 15px 15px 0;
  flex-shrink: 0;
}

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

.specialist-details h4 {
  font-size: 18px;
  font-weight: 700;
  color: #451c6a;
  margin-bottom: 5px;
}

.specialist-details p {
  font-size: 14px;
  color: #666;
  margin-bottom: 0;
}

/* Carrossel de Depoimentos */
.depoimentos-carrossel-section {
  padding: 60px 0 100px;
  background-color: #f5f5f5;
  position: relative;
  border-radius: 50px 50px 0 0;
}

.depoimento-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.specialist-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.specialist-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  flex-shrink: 0;
}

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

.specialist-details h4 {
  font-size: 16px;
  font-weight: 700;
  color: #451c6a;
  margin-bottom: 5px;
}

.specialist-details p {
  font-size: 14px;
  color: #666;
  margin-bottom: 0;
}

.depoimento-texto p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

.carousel-navigation {
  position: absolute;
  left: -25px;
  right: -25px;
  display: flex;
  justify-content: space-between;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: calc(100% + 50px);
  pointer-events: none;
  padding: 0;
}

#depoimentosCarousel {
  padding: 0 26px;

  .carousel {
    padding: 0 26px;
  }

  .carousel-nav-button {
    width: 50px;
    height: 50px;
    background-color: #ffc64a;
    border: none;
    border-radius: 0;
    color: #451c6a;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    position: relative;
  }

  .prev-button {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
  }

  .next-button {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }

  .carousel-nav-button:hover {
    background-color: #e6b043;
  }
}

/* Ajuste responsivo para os botÃµes de navegaÃ§Ã£o */
@media (max-width: 767px) {
  .carousel-navigation {
    position: static;
    margin-top: 20px;
    transform: none;
    justify-content: center;
    gap: 20px;
    left: 0;
    right: 0;
    width: 100%;
  }

  .carousel-nav-button {
    position: static;
    transform: none;
    top: 0;
  }

  .prev-button,
  .next-button {
    border-radius: 5px;
  }
}

/* Footer */
footer {
  font-family: "Montserrat", sans-serif;
}

.footer-color-bar {
  display: flex;
  width: 100%;
  height: 18px;
}

.color-segment {
  flex: 1;
  height: 100%;
}

.segment-purple {
  background-color: #451c6a;
}

.segment-blue {
  background-color: #00b1eb;
}

.segment-yellow {
  background-color: #ffc64a;
}

.segment-green {
  background-color: #a4ce4e;
}

.segment-pink {
  background-color: #e83e8c;
}

.segment-purple-dark {
  background-color: #451c6a;
}

.segment-blue-light {
  background-color: #79d1f1;
}

.footer-content {
  background-color: #1e1d4d;
  padding: 30px 0;
  color: white;
}

.footer-logo img {
  max-width: 120px;
}

.footer-address p {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 500;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffc64a;
}

.footer-copyright {
  background-color: #181740;
  padding: 15px 0;
  color: white;
  text-align: center;
}

.footer-copyright p {
  margin-bottom: 0;
  font-size: 14px;
}

@media (max-width: 991px) {
  .footer-content .container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-address,
  .footer-links {
    margin-top: 20px;
  }

  .footer-links {
    align-items: center;
  }
}

@media (max-width: 767px) {
  .footer-content .container {
    padding: 0 20px;
  }
}

/* Search Bar */
.search-bar-section {
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

@media (max-width: 767px) {
  .search-bar-section {
    margin-top: 10px;
  }
}

.search-bar-container {
  background-color: #451c6a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 5px;
  max-width: 890px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 15px 30px;
  margin: auto;
}

.search-title {
  color: white;
  font-weight: 600;
  font-size: 16px;
  padding: 0 20px;
  flex: 1;
}

.search-input-wrapper {
  display: flex;
  flex: 1;
  max-width: 400px;
  gap: 5px;
}

.search-input {
  flex: 1;
  border: none;
  padding: 15px 20px;
  font-size: 14px;
  outline: none;
  background-color: white;
  border-radius: 5px;
}

.search-button {
  background-color: #00b1eb;
  color: white;
  border: none;
  padding: 0 20px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.search-button:hover {
  background-color: #0099cc;
}

/* Ajustes responsivos para a barra de pesquisa */
@media (max-width: 767px) {
  .search-bar-container {
    flex-direction: column;
    padding: 15px;
  }

  .search-title {
    margin-bottom: 15px;
    text-align: center;
    padding: 0;
  }

  .search-input-wrapper {
    width: 100%;
    max-width: 100%;
  }
}

/* Modal de Busca */
#searchModal .modal-content {
  border-radius: 15px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

#searchModal .modal-header {
  background-color: #451c6a;
  border-bottom: none;
  padding: 20px 25px;
}

#searchModal .modal-title {
  color: white;
  font-weight: 600;
  font-size: 18px;
}

#searchModal .btn-close {
  color: white;
  opacity: 1;
  filter: invert(1) brightness(1.5);
}

#searchModal .modal-body {
  padding: 25px;
}

.search-modal-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.search-input-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.search-modal-input {
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 16px;
}

.search-modal-input:focus {
  border-color: #451c6a;
  box-shadow: 0 0 0 0.25rem rgba(69, 28, 106, 0.25);
}

.search-options {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.form-check-input:checked {
  background-color: #451c6a;
  border-color: #451c6a;
}

#searchModal .modal-footer {
  border-top: none;
  padding: 0px 0px;
}

.btn-search {
  background-color: #00b1eb;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.btn-search:hover {
  background-color: #0099cc;
  color: white;
}

#searchModal .btn-secondary {
  background-color: #e9ecef;
  color: #495057;
  border: none;
  font-weight: 600;
}

#searchModal .btn-secondary:hover {
  background-color: #dde2e6;
}

/* Ajustes responsivos para o modal de busca */
@media (min-width: 576px) {
  #searchModal .modal-dialog {
    max-width: 500px;
  }
}

/* BACKGROUNDS */
.bgpurple {
  background-color: var(--color-purple) !important;
}

.bgblue {
  background-color: var(--color-blue-2) !important;
}

.bgblueblack {
  background-color: var(--color-blue-black) !important;
}

.bgwhite {
  background-color: var(--color-white) !important;
}

.bgyellow {
  background-color: var(--color-yellow);
}

/* TEXT COLOR */
.textwhite {
  color: var(--color-white) !important;
}

.textpurple {
  color: var(--color-purple) !important;
}

.textsilver {
  color: var(--color-silver) !important;
}

.textblueblack {
  color: var(--color-blueblack);
}

.textyellow {
  color: var(--color-yellow);
}

/* MITOS */
#mitos .mitonumero {
  font-size: var(--text-size-med);
}

#mitos .mito {
  font-size: var(--text-size-max);
}

#mitos .icon {
  border: 2px solid var(--color-yellow);
  padding: 5px 10px;
  margin-top: 3px;
  display: block;
  text-align: center;
  cursor: pointer;
  border-radius: 3px;
  color: var(--color-yellow);
}

#mitos a {
  text-decoration: none;
  color: var(--color-purple);
}

#mitos .collapsed .icon {
  background: var(--color-yellow);
  color: var(--color-white);
}

/* PAGINAS INTERNAS */

#contentinter {
  color: var(--color-blue);
  position: relative;
}

/* Estilos para a pÃ¡gina de resultados da busca */
.search-results-section {
  background-color: var(--light-bg);
}

.search-results-count {
  color: var(--text-gray);
  font-size: 16px;
}

.search-result-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
}

.search-result-card:hover {
  transform: translateY(-5px);
}

.search-result-thumbnail {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.search-result-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-result-content {
  padding: 20px;
}

.search-result-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.search-result-title a {
  color: var(--primary-purple);
  text-decoration: none;
  transition: color 0.3s ease;
}

.search-result-title a:hover {
  color: var(--light-blue);
}

.search-result-meta {
  margin-bottom: 15px;
}

.search-result-meta .badge {
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 5px;
}

.search-result-excerpt {
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.search-result-card .btn-primary {
  background-color: var(--primary-purple);
  border-color: var(--primary-purple);
  font-size: 14px;
  padding: 8px 20px;
  transition: all 0.3s ease;
}

.search-result-card .btn-primary:hover {
  background-color: var(--light-blue);
  border-color: var(--light-blue);
  transform: translateY(-2px);
}

/* PaginaÃ§Ã£o */
.pagination {
  gap: 5px;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background-color: white;
  color: var(--primary-purple);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #ddd;
}

.pagination .page-numbers.current {
  background-color: var(--primary-purple);
  color: white;
  border-color: var(--primary-purple);
}

.pagination .page-numbers:hover:not(.current) {
  background-color: var(--light-bg);
  border-color: var(--primary-purple);
}

/* Modal de VÃ­deo */
.video-modal .modal-content {
  background-color: transparent;
  border: none;
  box-shadow: none;
}

.video-modal .modal-dialog {
  max-width: 800px;
  margin: 1.75rem auto;
}

.video-modal .modal-body {
  padding: 0;
  position: relative;
  background-color: #000;
  border-radius: 15px;
  overflow: hidden;
}

.video-modal .btn-close {
  position: absolute;
  right: -40px;
  top: -40px;
  color: white;
  opacity: 1;
  z-index: 10;
  filter: invert(1) brightness(1.5);
  background: none;
  border: none;
  font-size: 24px;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.video-modal .btn-close:hover {
  opacity: 0.8;
}

.video-modal .video-container {
  width: 100%;
  background-color: #000;
}

.video-modal .video-iframe-container {
  width: 100%;
  height: 100%;
}

.video-modal .video-iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Ajustes nos vÃ­deos */
.video-item {
  cursor: pointer;
  transition: transform 0.3s ease;
  width: 100%;
}

.video-item:hover {
  transform: translateY(-5px);
}

.video-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background-color: #000;
}

/* ProporÃ§Ãµes do vÃ­deo principal (730x415) */
.video-main-wrapper {
  width: 100%;
  padding-top: 56.85%;
  /* 415/730 * 100 = 56.85% */
  position: relative;
}

/* ProporÃ§Ãµes dos vÃ­deos secundÃ¡rios (415x240) */
.video-secondary-wrapper {
  width: 100%;
  padding-top: 45%;
  /* 240/415 * 100 = 57.83% */
  position: relative;
}

.video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.video-item:hover .video-thumbnail img {
  transform: scale(1.05);
}

.video-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 1;
}

.video-item:hover .video-wrapper::after {
  background: rgba(0, 0, 0, 0.5);
}

.video-item .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.video-item:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--primary-purple);
}

.video-item:hover .play-button i {
  color: white;
}

.video-item .play-button i {
  color: var(--primary-purple);
  font-size: 26px;
  margin-left: 4px;
  transition: all 0.3s ease;
}

/* Responsividade */
@media (max-width: 767px) {

  .video-main-wrapper,
  .video-secondary-wrapper {
    padding-top: 56.25%;
    /* 16:9 para mobile */
  }

  .video-item .play-button {
    width: 50px;
    height: 50px;
  }

  .video-item .play-button i {
    font-size: 20px;
  }
}

/* Video Section - Ajustes especÃ­ficos para o vÃ­deo */
.video-about-wrapper {
  position: relative;
  width: 100%;
  padding-top: 66.67%;
  /* ProporÃ§Ã£o 3:2 (600x400) */
  overflow: hidden;
  border-radius: 15px;
  background-color: #000;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.video-about-wrapper:hover {
  transform: translateY(-5px);
}

.video-about-wrapper .video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-about-wrapper .video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.video-about-wrapper:hover .video-thumbnail img {
  transform: scale(1.05);
}

.video-about-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 1;
}

.video-about-wrapper:hover::after {
  background: rgba(0, 0, 0, 0.5);
}

.video-about-wrapper .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.video-about-wrapper:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--primary-purple);
}

.video-about-wrapper:hover .play-button i {
  color: white;
}

.video-about-wrapper .play-button i {
  color: var(--primary-purple);
  font-size: 30px;
  margin-left: 5px;
  transition: all 0.3s ease;
}

/* Responsividade do vÃ­deo sobre */
@media (max-width: 767px) {
  .video-about-wrapper {
    padding-top: 56.25%;
    /* ProporÃ§Ã£o 16:9 para mobile */
  }

  .video-about-wrapper .play-button {
    width: 60px;
    height: 60px;
  }

  .video-about-wrapper .play-button i {
    font-size: 24px;
  }
}

/* ----------- SEARCH STYLES ----------*/
.modal-body>form>label>span.is-screen-reader-text,
.modal-body>form>.is-search-submit>span.is-screen-reader-text {
  display: none !important;
}

.modal-body>form>label {
  width: 90%;
}

.modal-body .is-search-input {
  width: 100%;
}

/* Estilo para o formulÃ¡rio de busca dentro do modal */
.modal-body>form.is-search-form {
  width: 100%;
  box-sizing: border-box;
  padding: 5px 10px;
  background: #fff;
  border-radius: 5px;
  display: flex;
  gap: 0;
  align-items: center;
}

/* Remove outline e cor de foco do campo de busca */
.modal-body .is-search-input {
  width: 100%;
  border: none;
  outline: none;
  box-shadow: none !important;
  border-radius: 5px 0 0 5px;
  padding: 12px 16px;
  font-size: 16px;
  background: #f5f5f5;
  transition: background 0.2s;
}

.modal-body .is-search-input:focus {
  background: #f0f0f0;
  outline: none;
  box-shadow: none;
  border: none;
}

/* BotÃ£o de busca ao lado do campo */
.modal-body .is-search-submit {
  border: none;
  background: #00b1eb;
  color: #fff;
  padding: 10px 18px;
  height: 100%;
  display: flex;
  align-items: center;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 16px;
}

.modal-body .is-search-submit:hover {
  background: #0099cc;
}

/* Ãcone SVG do botÃ£o de busca: ocupa toda a altura do botÃ£o */
.modal-body .is-search-submit .is-search-icon svg {
  width: 1.5em;
  height: 1.5em;
  display: block;
}

/* Remove outline do botÃ£o ao focar */
.modal-body .is-search-submit:focus {
  outline: none;
  box-shadow: none;
}

/* Search bar input and button styling inside .search-input-wrapper */
.search-input-wrapper {
  display: flex;
  gap: 0;
  width: 100%;
  max-width: 400px;
}

.search-input-wrapper .is-search-input {
  flex: 1;
  border: none;
  outline: none;
  background: #f5f5f5;
  padding: 15px 20px;
  font-size: 16px;
  border-radius: 5px 0 0 5px;
  height: 48px;
  box-sizing: border-box;
  transition: background 0.2s;
}

.search-input-wrapper .is-search-input:focus {
  background: #f0f0f0;
}

.search-input-wrapper .is-search-submit {
  border: none;
  background: #451c6a;
  color: #fff;
  width: 48px;
  min-width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}

.search-input-wrapper .is-search-submit:hover {
  background: #2e0d4c;
}

.search-input-wrapper .is-search-submit .is-search-icon svg {
  width: 1.5em;
  height: 1.5em;
  display: block;
}

.search-input-wrapper .is-search-submit:focus {
  outline: none;
  box-shadow: none;
}

/* Hide screen reader text in search bar */
.search-input-wrapper .is-screen-reader-text {
  display: none !important;
}

.search-input-wrapper>label,
.search-input-wrapper>label>input {
  width: 100%;
}

/* Search button blue, icon white */
.search-input-wrapper .is-search-submit {
  background: #00b1eb;
  color: #fff;
  border: none;
  width: 48px;
  min-width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}

.search-input-wrapper .is-search-submit:hover {
  background: #0099cc;
}

/* Magnifier icon white */
.search-input-wrapper .is-search-submit .is-search-icon svg {
  width: 1.5em;
  height: 1.5em;
  display: block;
  fill: #fff;
  color: #fff;
}

/* Magnifier icon in modal always white */
.modal-body .is-search-submit .is-search-icon svg {
  width: 1.5em;
  height: 1.5em;
  display: block;
  fill: #fff !important;
  color: #fff !important;
}

/* Page credenciamento */

/* Accordion Styles */
#credenciamento .accordion-button:not(.collapsed) {
  background-color: #461E77;
  color: white;
}

#credenciamento .accordion-button.disabled {
  background-color: #6c757d;
  color: white;
  pointer-events: none;
}

#credenciamento .step-completed {
  background-color: #198754 !important;
  color: white !important;
}

/* Form Styles */
#credenciamento.form-section {
  margin-bottom: 20px;
}

#credenciamento .next-step-btn {
  margin-top: 20px;
}

#credenciamento .cores-group {
  border: 1px solid #dee2e6;
  padding: 15px;
  border-radius: 5px;
  margin-top: 10px;
}

/* Button Overrides */
#credenciamento .btn-primary {
  background-color: #461E77;
  border-color: #461E77;
}

#credenciamento .btn-primary:hover {
  background-color: #381258;
  border-color: #381258;
}

#credenciamento .btn-primary:focus,
#credenciamento .btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(70, 30, 119, 0.5);
}

#credenciamento .btn-primary:not(:disabled):not(.disabled):active,
#credenciamento .btn-primary:not(:disabled):not(.disabled).active {
  background-color: #2f0f47;
  border-color: #2f0f47;
}

#credenciamento .btn-outline-primary {
  color: #461E77;
  border-color: #461E77;
}

#credenciamento .btn-outline-primary:hover {
  background-color: #461E77;
  border-color: #461E77;
  color: #fff;
}

/* Resume Page Styles */
#credenciamento .section-header {
  background-color: #461E77;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  margin: 20px 0 15px 0;
}

#credenciamento .data-table {
  margin-bottom: 20px;
}

#credenciamento .data-table th {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  padding: 8px 12px;
}

#credenciamento .data-table td {
  border: 1px solid #dee2e6;
  padding: 8px 12px;
}

#credenciamento .no-data {
  color: #6c757d;
  font-style: italic;
  text-align: center;
  padding: 20px;
}

#credenciamento .cores-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

#credenciamento .cor-badge {
  background-color: #393939;
  padding: 3px 8px;
  border-radius: 15px;
  font-size: 0.85em;
}

/* Form Input Styles */
#credenciamento .form-control:focus {
  border-color: #461E77;
  box-shadow: 0 0 0 0.2rem rgba(70, 30, 119, 0.25);
}

#credenciamento .form-control.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

#credenciamento .form-control.is-valid {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Placeholder Styles */
#credenciamento .form-control::placeholder {
  color: #6c757d;
  opacity: 0.8;
}

/* Button Disabled State */
#credenciamento .btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* Badge Status Styles */
#credenciamento .badge-status {
  font-size: 0.75em;
  padding: 4px 8px;
  border-radius: 12px;
  background-color: #6c757d;
  color: white;
}

#credenciamento .badge-status.preenchido {
  background-color: #28a745;
}

#credenciamento .badge-status.nao-produzo {
  background-color: #17a2b8;
}

/* Button Saved State Styles */
#credenciamento .btn-salvo {
  background-color: #28a745 !important;
  border-color: #28a745 !important;
  color: white !important;
}

#credenciamento .btn-salvo:hover {
  background-color: #218838 !important;
  border-color: #1e7e34 !important;
}

#credenciamento .btn-salvo::after {
  content: " ✓";
  margin-left: 5px;
}

/* Print Styles */
@media print {
  #credenciamento .no-print {
    display: none;
  }

  #credenciamento body {
    background-color: #fff;
  }

  #credenciamento .container {
    box-shadow: none;
    margin: 0;
    padding: 20px;
  }
}