/* Exemplo usando @font-face com arquivo local. Ajuste o caminho e formato conforme sua fonte. */
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+2:wght@600&display=swap');

@font-face {
  font-family: 'Conthrax';
  src: url('../fonts/Conthrax-SemiBold.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}


/* Aplicar a fonte apenas em h1 e h2 */
h1,
h2,
h3 {
  font-family: "M PLUS 2", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

#text-banner{
  color: white; 
  font-size: 34px; 
  font-family: 'Conthrax', sans-serif;
  text-shadow: 2px 2px 4px #000000;
}
.text-laranja {
  color: #E9771A;
}

.bg-laranja {
  background-color: #E9771A;
}

#cenario-macro-consorcio h3 {
  font-size: 1.5rem;
  font-weight: bold;
}

#cenario-macro-consorcio ul {
  padding-left: 20px;
  list-style: disc;
}

#contato {
  color: white;
}

/* Estilos para a seção Cenário Macro de Consórcio */
#cenario-macro-consorcio {
  background: #d9d9d9;
  padding: 60px 0;
}

#cenario-macro-consorcio h2,
#cenario-macro-consorcio h3 {
  font-family: "M PLUS 2", sans-serif;
  font-weight: bold;
}

.macro-card {
  background: #fff;
  border: none;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.macro-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.macro-card .card-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.list-group-item {
  border: none;
  border-bottom: 1px solid #eee;
  font-size: 1rem;
  padding: 10px 0;
}

.list-group-item:last-child {
  border-bottom: none;
}

.info-box {
  background: #fff;
  border-radius: 10px;
  line-height: 1.6;
}

.info-box ul {
  margin-left: 20px;
  list-style: disc;
}

.info-box li {
  margin-bottom: 10px;
}

#depoimentos {
  background: #323539;
}

#depoimentos h2 {
  color: #E9771A;
}

#depoimentos .depoimento-box {
  position: relative;
  background: #f9f9f9;
  border-left: 5px solid #E9771A;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 20px;
}

#depoimentos .depoimento-box:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

#depoimentos .fa-quote-left {
  color: #E9771A;
}

#depoimentos p {
  font-size: 1rem;
  font-style: italic;
  color: #333;
}

#depoimentos h5 {
  margin-top: 15px;
  font-size: 0.9rem;
  font-weight: bold;
  color: #555;
}

/* Estilo da seção */
#cta-fale-conosco {
  background-color: #E9771A;
  /* Cor de fundo laranja */
  color: white;
  padding: 60px 20px;
  text-align: center;
}

#cta-fale-conosco h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

#cta-fale-conosco p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Estilo do botão */
.btn-cta {
  display: inline-block;
  background-color: white;
  color: #E9771A;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 12px 30px;
  border: 2px solid white;
  border-radius: 20px;
  text-decoration: none;
  /* Remove o sublinhado */
  transition: all 0.3s ease-in-out;
}

.btn-cta2 {
  display: inline-block;
  background-color: white;
  color: #E9771A;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 12px 30px;
  border: 2px solid white;
  border-radius: 20px;
  text-decoration: none;
  /* Remove o sublinhado */
  transition: all 0.3s ease-in-out;
}

.btn-cta:hover {
  background-color: #D65F0A;
  /* Cor mais escura no hover */
  color: white;
  border-color: #D65F0A;
  transform: scale(1.1);
  /* Leve ampliação */
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-cta2:hover {
  background-color: #212529;
  /* Cor mais escura no hover */
  color: white;
  border-color: #212529;
  transform: scale(1.1);
  /* Leve ampliação */
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}


/* Ajuste da altura do banner */
#banner-principal {
  height: 75vh;
  /* Reduzindo mais a altura do banner */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Ajuste da altura do vídeo */
.video-banner {
  width: 100%;
  height: 75vh;
  /* Mantendo proporcional ao banner */
  object-fit: cover;
  filter: grayscale(180%);
  z-index: -1;
}

/* Ajuste da posição da seta */
.position-absolute.bottom-0 {
  bottom: 12vh !important;
  /* Subindo mais a seta */
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
  #banner-principal {
    height: 70vh;
    /* Reduzindo mais para celulares */
  }

  .video-banner {
    height: 70vh;
  }

  .position-absolute.bottom-0 {
    bottom: 10vh !important;
    /* Subindo mais a seta para celulares */
  }
}


/* Máscara preta semitransparente */
.bg-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  /* Semitransparência para o vídeo */
  z-index: 0;
  /* Garante que a máscara fique sobre o vídeo, mas atrás do conteúdo */
}

/* Ajustes do conteúdo no banner */
#banner-principal .container {
  z-index: 1;
  /* Conteúdo acima do vídeo e da máscara */
  position: relative;
}

/* Estilo para o container dos sócios */
.socio-container {
  position: relative;
  display: inline-block;
}

/* Imagem com efeito de zoom suave no hover */
.socio-img {
  transition: transform 0.3s ease;
}

.socio-container:hover .socio-img {
  transform: scale(1.05);
}

/* Overlay que cobre a imagem com fundo semitransparente */
.socio-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 95%;
  border-radius: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.socio-container:hover .overlay {
  opacity: 1;
}

/* Botão customizado "Ver Mais" */
.btn-custom {
  background: transparent;
  border: 2px solid #E9771A;
  color: #E9771A;
  padding: 8px 16px;
  font-weight: bold;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background: #E9771A;
  color: #fff;
  transform: scale(1.05);
}

/* Estilização customizada para os modais */
.custom-modal .modal-content {
  border-radius: 15px;
  background: #fff;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
  border: none;
}

.custom-modal .modal-header {
  border-bottom: none;
  padding-bottom: 0;
}

.custom-modal .modal-title {
  font-family: "M PLUS 2", serif;
  color: #E9771A;
}

.custom-modal .modal-body {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Fundo com gradient suave para a seção */
#nosso-proposito {
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  padding: 80px 0;
}

/* Estilo do container que envolve o texto */
.proposito-text {
  background: rgba(255, 255, 255, 0.85);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Estilo do título */
#nosso-proposito h2 {
  font-family: "M PLUS 2", sans-serif;
  font-size: 2.5rem;
  color: #E9771A;
  margin-bottom: 20px;
  position: relative;
}

/* Linha decorativa abaixo do título */
/* #nosso-proposito h2::after {
  content: '';
  width: 60px;
  height: 4px;
  background: #E9771A;
  display: block;
  margin-top: 10px;
  border-radius: 2px;
} */

/* Estilo do parágrafo */
#nosso-proposito p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}

/* Ajustes responsivos (opcional) */
@media (max-width: 768px) {
  #nosso-proposito h2 {
    font-size: 2rem;
  }

  #nosso-proposito p {
    font-size: 1rem;
  }
}

/* Container geral dos gráficos de barra - Versão Compacta */
.motivos-grafico.compact {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  /* Centraliza todos os elementos dentro do container */
}

/* Cada item (motivo) */
.motivos-grafico.compact .bar-item {
  margin-bottom: 10px;
}

/* Percentual exibido acima da barra */
.motivos-grafico.compact .bar-percentage {
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 2px;
  color: #333;
}

/* Barra com altura reduzida e transição suave */
.motivos-grafico.compact .bar {
  height: 15px;
  background-color: #E9771A;
  border-radius: 8px;
  transition: width 0.5s ease;
  margin: 0 auto;
  /* Centraliza a barra horizontalmente */
}

/* Legenda abaixo da barra */
.motivos-grafico.compact .bar-label {
  font-size: 0.9rem;
  margin-top: 3px;
  color: #555;
}

/* Ajuste para telas menores */
@media (max-width: 576px) {
  .motivos-grafico.compact .bar-item {
    margin-bottom: 8px;
  }

  .motivos-grafico.compact .bar-percentage,
  .motivos-grafico.compact .bar-label {
    font-size: 0.8rem;
  }

  .motivos-grafico.compact .bar {
    height: 12px;
  }
}


/* Seção de Consórcio para Investidores */
#consorcio-investimento {
  background: #212529;
  padding: 80px 0;
}

#consorcio-investimento h2 {
  font-family: "M PLUS 2", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

#consorcio-investimento .lead {
  font-size: 1.1rem;
  color: white;
  line-height: 1.6;
  margin-bottom: 20px;
}

.consorcio-benefits li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #D8D8D8;
  line-height: 1.5;
}

/* Cartão com informações para investidores */
.investimento-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

.investimento-card h4 {
  font-family: "M PLUS 2", sans-serif;
  font-size: 1.75rem;
  margin-bottom: 15px;
}

.investimento-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.investimento-card ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.investimento-card ul li i {
  color: #E9771A;
  margin-right: 8px;
}

/* Responsividade */
@media (max-width: 768px) {
  #consorcio-investimento h2 {
    font-size: 2rem;
  }

  .investimento-card h4 {
    font-size: 1.5rem;
  }

  .lead,
  .consorcio-benefits li,
  .investimento-card p,
  .investimento-card ul li {
    font-size: 0.95rem;
  }
}

#number_sell {
  color: #333;
  font-size: 42px;
  font-weight: 700;
  margin-top: 20px;
}

#title_sell {
  color: white;
  font-size: 24px;
  background-color: #323539;
  padding: 10px;
  border-radius: 10px;
}


#img_card_sell:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

/* Classe que aplica a animação no botão */
.btn-pulse {
  animation: pulse 2s infinite;
}

.seek4tech {
  color: white;
  font-family: 'Conthrax', sans-serif;
  font-size: 18px;
}

verde-seek4tech {
  color: #A4B53F;
}