
#top-palestrante{
  background-image: url("../images/bg_palestrante.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 600px;
}
.palestrante-img img{
  width: 250px;
  height: 290px;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
  margin-top: 120px;
}
.banner-temas{
  width: 100%;
  height: 120px;
  background-color: var(--color-primary);
  color: var(--color-black);
  padding: 0 40px;
  font-size: 22px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cargo {
  margin-bottom: 15px;
}
.text-geral {
  font-size: 1.4rem;
}
.social-media-palestrante {
  margin-top: -10px;
  margin-bottom: 10px;
}
.social-media-palestrante a{
  color: var(--color-primary);
  font-size: 1.15rem;
  margin-right: 12px;
  text-decoration: none;
}
/* LETREIRO */
* .letreiro {
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  width: 100%;
  max-width: 95%;
  color: var(--color-black);
  font-size: 1.3rem;
  text-transform: uppercase;
} */
.letreiro {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  width: 100%;
  max-width: 600px;
  color: var(--color-link-hover);
  font-size: 1.3rem;
  text-transform: uppercase;
}

.texto {
  display: inline-block;
  padding-right: 1rem; /* espaçamento entre as repetições */
  /* padding-left: 100%; */
  animation: rolar 40s linear infinite;
}
.faixa {
      display: inline-block;
      white-space: nowrap;
    }
.texto i{
  margin:0 30px;
}

@keyframes rolar {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* FIM Letreiro */


/* container que vira colunas */
.duas-colunas {
  column-count: 2;       /* número de colunas */
  column-gap: 32px;      /* espaço entre colunas */
  /*column-rule: 1px solid rgba(255,255,255,0.12);  linha entre colunas (opcional) */
  /* comportamento de preenchimento: balance tenta equilibrar; 'auto' preenche a primeira coluna antes */
  column-fill: balance;
  /* tipografia */
  font-size: 18px;
  line-height: 1.6;
  /* para visualização */
  text-align: justify;
  
}

/* evitar que certos blocos sejam divididos entre colunas */
.nao-quebrar {
  break-inside: avoid;           /* padrão moderno */
  -webkit-column-break-inside: avoid; /* prefix para navegadores webkit */
  page-break-inside: avoid;      /* para impressão/pdfs */
}

/* fazer um título ocupar todas as colunas */
.titulo-span {
  column-span: all;              /* permite que o elemento ocupe todas as colunas */
  width: 100%;
  display: block;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.4rem;
}

/* responsivo: em telas pequenas usar 1 coluna */
@media (max-width: 700px) {
  .duas-colunas {
    column-count: 1;
    column-gap: 16px;
  }
  .palestra{
    margin-bottom: 8px;
  }
  .palestra .titulo-2{
    line-height: 18px;
  }
}
@media (max-width: 768px) {
  .palestra{
    margin-bottom: 8px;
  }
  .palestra .titulo-2{
    line-height: 18px;
  }
}
@media (max-width: 425px) {
  .palestrante-dados{
    margin-top: 15px;
  }
  .duas-colunas {
    padding: 0 10px;
  }
  .palestra{
    margin-bottom: 8px;
  }
  .palestra .titulo-2{
    line-height: 18px;
  }
  .social-media {
    margin-top: 0px;
    margin-bottom: 10px;
}
}

.comentario{
  font-size: 1rem;
  color: var(--color-primary-transparent);
  margin-top: -10px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.sinal a{
  text-decoration: none;
  color: var(--color-black);
}
.sinal-button{
  display:flex;
  width: 30px ;
  height: 30px;
  background-color: var(--color-primary);
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  /* adiciona a transição suave */
  transition: transform 0.4s ease-in-out 0.1s;
  /* duração = 0.4s, easing = ease-in-out, delay = 0.1s */
}
.sinal-button:hover {
  transform: rotate(90deg);
}
.titulo-link{
  text-decoration: none;
  font-weight: 500;
  font-size: 2rem;
  color: var(--color-primary);
  display: inline-block;
  line-height: 1.1;
}
.titulo-link:hover {
  cursor: pointer;
}
.titulo-link:hover ~ .sinal-button{
  transform: rotate(90deg);
}
.rotate:hover .sinal-button {
  transform: rotate(90deg);
}
.palestra-sinopse{
  width: 98%;
  margin: 0 0 0 30px;
  background-color: var(--color-black);
  font-size: 18px;
  line-height: 1.6;
  padding: 5px 20px;
  border-radius: 5px;
  margin-bottom: 20px;
}
.video-container {
  width: 100%;
  max-width: 800px;   /* largura máxima opcional */
  margin: auto;       /* centralizar */
  aspect-ratio: 16 / 9; /* mantém a proporção do vídeo */
  border-radius: 20px;
  overflow: hidden;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
@media (max-width: 769px) {
 .video-container {
    max-width: 700px ;   /* largura máxima opcional */
  }
  .titulo-link {
    font-size: 1.1rem;
  }
  .palestra-sinopse {
    margin: 0 0 0 18px;  
  }
}
@media (max-width: 425px) {
 .video-container {
    max-width: 400px ;   /* largura máxima opcional */
  }
  .sinal-button {
    width: 20px;
    height: 20px;
    border-radius: 10px;
  }
  .titulo-1 {
    font-size: 2.2rem;
  }
  .text-geral {
      font-size: 1.3rem;
  }
  .palestra-sinopse {
    margin: 0 0 0 9px;  
  }
}
@media (max-width: 375px) {
 .video-container {
    max-width: 350px ;   /* largura máxima opcional */
  }
}

/* ORÇAMENTOS */

#orcamento{
  background-color: var(--color-black);
  color: var(--color-primary);
  /* padding-top: 150px;
  padding-bottom: 150px; */
  font-size: 1.5rem;
  max-width: 800px;
  margin: auto;
}
#orcamento .orcamento-titulo{
  font-size: 2.3rem;
  margin-left: 20px;
  line-height: 45px;
  font-weight: 450;
}
#orcamento form{
  margin-top: 30px
}
#orcamento .form-control {
    font-size: 1.3rem;
    font-weight: 400;
    padding: .7rem 1.9rem;
    border: 1px solid #242424;
    border-radius: 12px;
}

#orcamento .form-control:focus,
#orcamento .form-check-input:focus{
  border-color: rgb(110, 110, 110) ;
  box-shadow: 0 0 0 .25rem rgba(110, 110, 110, 0.25);
}
#orcamento .form-check-input {
  width: 1em;
  height: 1em;
  border: 1px solid #242424;
}
#orcamento .form-check-input:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
#orcamento .btn {
    background-color: var(--color-primary);
    color: var(--color-black);
    border: 1px solid var(--color-primary);
    padding: 3px 20px;
    font-size: 1.5rem;
    font-weight: 450;
}

@media (max-width: 768px){
  #orcamento{
    max-width: 700px;
  }
  #orcamento .orcamento-titulo {
    font-size: 1.9rem;
    line-height: 35px;
  }
  #orcamento .form-control {
    font-size: 1.5rem;
    padding: .6rem 1.2rem;
  }
  #orcamento .form-options,
  #orcamento .btn{
    font-size: 1.5rem;
  } 
}
@media (max-width: 425px){
  #orcamento{
    max-width: 320px;
    padding-top: 25px;
    padding-bottom: 25px;
  }
  #orcamento .orcamento-titulo {
    font-size: 1.6rem;
    line-height: 30px;
  }
  #orcamento .form-control {
    font-size: 1rem;
    padding: .3rem 1rem;
  }
  #orcamento .form-options,
  #orcamento .btn{
    font-size: 1.3rem;
    width: 100%;
  } 
}
/* FIM ORÇAMENTOS */