
    @font-face {
    font-family: 'Montserrat5';
    font-style: bold;
    font-weight: 700;
    src: url('../fontes/Montserrat-ExtraBold.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Lora1';
    font-style: oblique;
    font-weight: normal;
    src: url('../fontes/Lora-Italic.ttf') format('truetype');
    font-display: swap;
}
@font-face {
    font-family: 'HindMadurai';
    font-style: normal;
     font-weight: normal;
    src: url('../fontes/HindMadurai-Regular.ttf') format('truetype');
    font-display: swap;
}
.section-about-us {
  display: flex;
  flex-direction: row; /* Altera a direção do flex para linha */
  max-height: 400px;
  position: relative;
  margin-top: 50px;

}
.gallery-viewer {
  position: relative;
  flex: 1; /* Adicionado para permitir que o conteúdo cresça e ocupe o espaço disponível */
flex: 40%;
}
.gallery-viewer img {
  width: 100%;
  height: 100%; /* Adicionado para preencher a altura do contêiner */
  object-fit: cover; /* Adicionado para manter a proporção da imagem */
  object-position: top;
}
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* Estilizar botão de play */
}
.about-text {
  padding: 20px;
  background-color: #F1F1F1;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  /* Outras estilizações conforme necessário */
  flex: 1; /* Adicionado para permitir que o conteúdo cresça e ocupe o espaço disponível */
flex: 60%;
}
.about-text h2 {
    font-family: 'LATO';
    font-weight: 600;
  margin-bottom: 10px;
  font-size: 2em;
  color: #7d7d7d;
  margin-top: 50px;
  text-transform: uppercase;
}
.about-text .lema {
    font-family: Lora1;
  margin-bottom: 30px;
  font-size: 1.4em;
  color: #3f4646;
    line-height: 35px;
}
.about-text .tema{
    font-family: HindMadurai;
    font-size: 1em;
    color: #24302c;
    text-align: justify;
}
.about-text p {
  margin-bottom: 5px;
}
.about-text  {
 /*padding: 120px;*/
}
.buy-tickets {
  display: inline-block;
  padding: 10px 20px;
  background-color: #d4af37; /* Gold color */
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  /* Outras estilizações conforme necessário */
}

/* Media query para telas menores */
@media screen and (max-width: 768px) {
  .section-about-us {
    flex-direction: column; /* Altera a direção do flex para coluna em telas menores */
    width: 100%; /* Define a largura total para ocupar toda a largura da tela */
    height: auto; /* Altura automática para acomodar o conteúdo */
    max-height: none;
  }
  .sobre-arte-div {
    padding: 0px!important;
  }
  .about-text h2{
    text-align: center;
    padding-bottom: 15px;
  }
}
.sobre-arte-div {
    /*width: 40%;*/
    float: right;
    padding: 20px;
    box-sizing: border-box;
    /* Adicione mais estilos conforme necessário */
    padding: 0px 40px;
}

