@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.2/font/bootstrap-icons.min.css");
html h1, body h1 {
  font-family: "Instrument Sans", sans-serif;
}
html p, body p {
  font-family: "Poppins", sans-serif;
}

@media screen and (min-width: 1024px) {
  .espacamento-desktop {
    padding: 0 6rem;
  }
}
@media screen and (min-width: 1440px) {
  .espacamento-desktop {
    padding: 0 15rem;
  }
}
@media screen and (min-width: 2000px) {
  .espacamento-desktop {
    padding: 0 45rem;
  }
}
.top-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.727);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  color: #000000;
  height: 50px;
  padding: 1em;
}
.top-nav .container__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #2B2A4C;
}
.top-nav .container__logo img {
  width: 40px;
  height: 40px;
}
.top-nav .container__logo p {
  text-align: center;
  margin: 0 auto;
  font-weight: 500;
}

.menu {
  font-family: "Instrument Sans", sans-serif;
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu > li {
  margin: 0 1rem;
  overflow: hidden;
}

.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #B31312;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 500ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: "";
  margin-top: -8px;
}

.menu-button::after {
  content: "";
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: none;
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}

@media (max-width: 768px) {
  .menu-button-container {
    display: flex;
  }
  .menu {
    position: absolute;
    top: 0;
    margin-top: 50px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 500ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle:checked ~ .menu li {
    border: 1px solid #B31312;
    height: 4.5em;
    padding: 1.5em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    font-weight: 600;
    background: rgb(255, 255, 255);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  }
  .menu > li a {
    text-decoration: none;
    color: #2B2A4C;
  }
  .menu > li:not(:last-child) {
    border-bottom: 1px solid #bbbbbb;
  }
}
@media (min-width: 768px) {
  .menu > li a {
    text-decoration: none;
    font-weight: 600;
    color: #2B2A4C;
    transition: 200ms all;
  }
  .menu .texto-hover {
    position: relative;
    cursor: pointer;
  }
  .menu .linha-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #B31312;
    transition: width 0.3s ease;
  }
  .menu .texto-hover:hover .linha-hover {
    width: 100%;
  }
}
@media (min-width: 1440px) {
  .top-nav {
    padding: 0 15rem;
  }
}
@media (min-width: 2560px) {
  .top-nav {
    padding: 0 35rem;
  }
}
.entrada {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  height: 100vh;
}
.entrada .video {
  display: block;
  width: 100%;
  /* Ocupa 100% da largura da tela */
  height: 100vh;
  /* Ocupa 100% da altura da tela */
  -o-object-fit: cover;
     object-fit: cover;
  /* Mantém a proporção do vídeo e cobre a tela */
  position: absolute;
  /* Fixa o vídeo na tela, evitando rolagem */
  top: 0;
  left: 0;
  z-index: -1;
}
.entrada .textos {
  padding: 2rem;
  margin: 1rem;
  z-index: 1;
  /* From https://css.glass */
  background: rgba(236, 236, 236, 0);
}
.entrada .textos h1 {
  text-align: left;
  font-size: 2rem;
  font-weight: 700;
  color: whitesmoke;
  margin-bottom: 1.5rem;
}
.entrada .textos p {
  text-align: left;
  font-weight: 500;
  font-size: 1.1rem;
  word-spacing: 8%;
  color: white;
  font-family: "Poppins", sans-serif;
  line-height: 2rem;
  /* Highlight 2 */
}
.entrada .textos p .highlight {
  position: relative;
  display: inline-block;
  font-weight: 500;
  font-size: 1.1rem;
  font-family: "Poppins", sans-serif;
}
.entrada .textos p .highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  /* Inicialmente sem largura */
  height: 100%;
  background-color: #B31312;
  /* Cor de fundo da marcação */
  mix-blend-mode: multiply;
  /* Define o modo de mistura para que a cor de fundo não cubra o texto */
  z-index: -1;
  /* Coloca o pseudo-elemento abaixo do texto */
  transition: width 2s ease-out;
  /* Adiciona uma transição para suavizar a animação */
  border-radius: 5px;
}
.entrada .textos p .highlight.active::before {
  width: 100%;
  /* Largura total quando a classe "active" é aplicada */
}
.entrada .textos p .highlight-2 {
  position: relative;
  display: inline-block;
  font-weight: 500;
  font-size: 1.1rem;
  font-family: "Poppins", sans-serif;
}
.entrada .textos p .highlight-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  /* Inicialmente sem largura */
  height: 100%;
  background-color: #B31312;
  /* Cor de fundo da marcação */
  mix-blend-mode: multiply;
  /* Define o modo de mistura para que a cor de fundo não cubra o texto */
  z-index: -1;
  /* Coloca o pseudo-elemento abaixo do texto */
  transition: width 2s ease-out;
  /* Adiciona uma transição para suavizar a animação */
  border-radius: 5px;
}
.entrada .textos p .highlight-2.active::before {
  width: 100%;
  /* Largura total quando a classe "active" é aplicada */
}
.entrada .entrada__img {
  width: 50%;
}

@media screen and (min-width: 768px) {
  .entrada {
    flex-direction: row;
    padding: 0 2rem;
  }
  .entrada .textos {
    padding-left: 15px;
  }
}
@media screen and (min-width: 1440px) {
  .entrada {
    padding: 0 15rem;
  }
}
@media screen and (min-width: 2060px) {
  .entrada {
    padding: 0 35rem;
    height: 100vh;
  }
  .entrada__img {
    width: 500px;
  }
}
.sobre {
  margin-top: 1rem;
}
.sobre .sobre__imagem {
  display: none;
}
.sobre .textos {
  border-left: 4px solid #B31312;
  padding-left: 8px;
  margin: 1rem;
  margin-bottom: 3rem;
}
.sobre .textos h1 {
  text-align: left;
  font-size: 2rem;
  font-weight: 400;
  color: #2B2A4C;
}
.sobre .textos p {
  text-align: left;
  font-weight: 300;
  color: gray;
}
.sobre .textos .sobre__link {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.9rem;
  border-bottom: 2px solid #2B2A4C;
  color: #2B2A4C;
}
.sobre .textos .sobre__link:hover {
  color: #B31312;
  border-color: #B31312;
}

@media screen and (min-width: 768px) {
  .sobre {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
  }
  .sobre .sobre__imagem {
    display: block;
    width: 400px;
    height: 400px;
  }
  .sobre .textos {
    border-left: 4px solid #B31312;
    padding-left: 12px;
  }
  .sobre .textos h1 {
    font-weight: 600;
    font-size: 2.5rem;
  }
  .sobre .textos p {
    font-size: 1.2rem;
  }
  .sobre .textos .sobre__link {
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 768px) {
  .sobre .sobre__imagem {
    display: block;
    width: 100%;
    height: 100%;
  }
}
.gallery-desktop {
  display: none;
}

.gallery-mobile .textos {
  align-items: center;
  border-left: 4px solid #B31312;
  padding-left: 8px;
  margin: 1rem;
}
.gallery-mobile .textos h2 {
  text-align: left;
  font-size: 2rem;
  font-weight: 400;
  color: #2B2A4C;
}
.gallery-mobile .textos p {
  text-align: left;
  font-weight: 300;
  color: gray;
}
.gallery-mobile .container__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 1rem;
}
.gallery-mobile .container__grid .categoria p {
  position: absolute;
  color: red;
  text-align: center;
  left: -500%;
}
.gallery-mobile .container__grid .categoria img {
  width: 250px;
  height: 120px;
  border-radius: 10px;
}
.gallery-mobile .container__grid .ver-mais a {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.9rem;
  border-bottom: 2px solid #2B2A4C;
  color: #2B2A4C;
}
.gallery-mobile .container__grid .ver-mais a:hover {
  color: #B31312;
  border-color: #B31312;
}

@media screen and (min-width: 768px) {
  .gallery-mobile {
    display: none;
  }
  .gallery-desktop {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 0;
    background-color: rgba(125, 124, 124, 0.097);
    border-radius: 50% 50% 50% 50%/10px;
  }
  .gallery-desktop .textos {
    border-right: 4px solid #B31312;
    padding-right: 12px;
    margin: 1rem;
    margin-bottom: 3rem;
    text-align: right;
    width: 50%;
  }
  .gallery-desktop .textos h2 {
    font-weight: 600;
    text-align: right;
    font-size: 2.5rem;
  }
  .gallery-desktop .textos p {
    font-weight: 300;
    text-align: right;
    color: gray;
  }
  .gallery-desktop .textos .ver-mais {
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.8rem;
    border-bottom: 2px solid #2B2A4C;
    color: #2B2A4C;
    font-size: 1.1rem;
  }
  .gallery-desktop .textos .ver-mais:hover {
    color: #B31312;
    border-color: #B31312;
  }
  .gallery-desktop .container__flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 50%;
  }
  .gallery-desktop .container__flex .categoria p {
    position: absolute;
    color: red;
    text-align: center;
    left: -500%;
  }
  .gallery-desktop .container__flex .categoria img {
    width: 150px;
    height: 90px;
    border-radius: 10px;
  }
  .gallery-desktop .ver-mais {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .gallery-desktop .ver-mais a {
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.4rem;
    border: 2px solid #2B2A4C;
    border-radius: 5px;
    color: #2B2A4C;
  }
  .gallery-desktop .ver-mais a:hover {
    color: #B31312;
    border-color: #B31312;
  }
}
@media screen and (min-width: 1024px) {
  .gallery-desktop {
    border-radius: 5%/40px;
  }
}
@media screen and (min-width: 1440px) {
  .gallery-desktop {
    border-radius: 5%/40px;
  }
  .container__flex .categoria img {
    width: 250px;
  }
}
.orcamento .orcamento-imagem {
  display: none;
}
.orcamento .textos {
  border-left: 4px solid #B31312;
  padding-left: 12px;
  margin: 1rem;
}
.orcamento .textos h2 {
  text-align: left;
  font-size: 2rem;
  font-weight: 400;
  color: #2B2A4C;
}
.orcamento .textos p {
  text-align: left;
  font-weight: 300;
  color: gray;
}
.orcamento .textos .orcamento-link {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.9rem;
  border-bottom: 2px solid #2B2A4C;
  color: #2B2A4C;
}
.orcamento .textos .orcamento-link:hover {
  color: #B31312;
  border-color: #B31312;
}

@media screen and (min-width: 768px) {
  .orcamento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    margin-top: 2rem;
  }
  .orcamento .textos h2 {
    font-weight: 600;
    font-size: 2.5rem;
  }
  .orcamento .textos p {
    font-size: 1.2rem;
  }
  .orcamento .textos .orcamento-link {
    font-size: 1.1rem;
  }
  .orcamento .orcamento-imagem {
    display: block;
    width: 400px;
    height: 400px;
  }
}
@media screen and (min-width: 1440px) {
  .orcamento .orcamento-imagem {
    display: block;
    width: 100%;
    height: 100%;
  }
}
.rodape {
  background-color: rgba(125, 124, 124, 0.097);
  border-radius: 50% 50% 0 0/10px;
  display: flex;
  justify-content: space-between;
  padding: 1rem;
}
.rodape .redes {
  display: flex;
  gap: 0.6rem;
}
.rodape .redes a {
  transition: 500ms all;
}
.rodape .redes a i {
  color: #2B2A4C;
  font-size: 1.6rem;
  transition: 500ms all;
}
.rodape .redes a i:hover {
  color: #B31312;
  margin-bottom: 15px;
}
.rodape .conteudo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  margin-top: 1rem;
}
.rodape .conteudo a {
  text-decoration: none;
  color: #2B2A4C;
  font-size: 1.2rem;
  font-weight: 400;
}
.rodape .conteudo a:hover {
  color: #B31312;
  border-bottom: 2px solid #B31312;
}
.rodape .logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}
.rodape .logo .logo-desktop {
  display: none;
}
.rodape .logo img {
  width: 100px;
  height: 100px;
}

.dev {
  background-color: black;
  padding: 1.5rem;
}
.dev p {
  color: white;
  font-size: 0.8rem;
  text-align: center;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .rodape {
    display: flex;
    justify-content: space-between;
    padding: 2rem 8rem;
  }
  .rodape .conteudo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.3rem;
    margin-top: 1rem;
  }
  .rodape .conteudo a {
    text-decoration: none;
    color: #2B2A4C;
    font-size: 1.2rem;
    font-weight: 400;
  }
  .rodape .logo .logo-mobile {
    display: none;
  }
  .rodape .logo .logo-desktop {
    display: block;
    width: 100%;
  }
  .rodape .logo .redes {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    width: 100%;
  }
  .rodape .logo .redes i {
    color: #2B2A4C;
    font-size: 2rem;
  }
}
@media screen and (min-width: 1440px) {
  .rodape {
    padding: 4rem 15rem;
  }
}
@media screen and (min-width: 2260px) {
  .rodape {
    padding: 4rem 45rem;
  }
}
#btnScrollToTop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  color: #fff;
  border: none;
  padding: 5px 10px;
  background-color: #007BFF;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}
#btnScrollToTop p {
  text-align: center;
  margin: 0 auto;
}

#btnScrollToTop:hover {
  background-color: #0056b3;
}

.sobre-nos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  height: 100vh;
}
.sobre-nos .video {
  display: block;
  width: 100%;
  /* Ocupa 100% da largura da tela */
  height: 100vh;
  /* Ocupa 100% da altura da tela */
  -o-object-fit: cover;
     object-fit: cover;
  /* Mantém a proporção do vídeo e cobre a tela */
  position: absolute;
  /* Fixa o vídeo na tela, evitando rolagem */
  top: 0;
  left: 0;
  z-index: -1;
}
.sobre-nos .textos {
  padding-left: 8px;
  padding: 1rem;
  z-index: 1;
  background: rgba(236, 236, 236, 0);
}
.sobre-nos .textos h1 {
  text-align: left;
  font-size: 2rem;
  font-weight: 700;
  color: whitesmoke;
  margin-bottom: 1.5rem;
}
.sobre-nos .textos p {
  text-align: left;
  font-weight: 500;
  font-size: 1.2rem;
  word-spacing: 8%;
  color: white;
  font-family: "Poppins", sans-serif;
}
.sobre-nos .textos p .highlight {
  position: relative;
  display: inline-block;
  font-weight: 500;
  font-size: 1.2rem;
  font-family: "Poppins", sans-serif;
}
.sobre-nos .textos p .highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  /* Inicialmente sem largura */
  height: 100%;
  background-color: #B31312;
  /* Cor de fundo da marcação */
  mix-blend-mode: multiply;
  /* Define o modo de mistura para que a cor de fundo não cubra o texto */
  z-index: -1;
  /* Coloca o pseudo-elemento abaixo do texto */
  transition: width 2s ease-out;
  /* Adiciona uma transição para suavizar a animação */
  border-radius: 5px;
}
.sobre-nos .textos p .highlight.active::before {
  width: 100%;
  /* Largura total quando a classe "active" é aplicada */
}
.sobre-nos .sobre-nos__img {
  width: 50%;
}

@media screen and (min-width: 768px) {
  .sobre-nos {
    flex-direction: row;
    padding: 0 2rem;
  }
  .sobre-nos .textos {
    padding-left: 15px;
  }
}
@media screen and (min-width: 1440px) {
  .sobre-nos {
    padding: 0 15rem;
  }
}
@media screen and (min-width: 2060px) {
  .sobre-nos {
    padding: 0 35rem;
    height: 100vh;
  }
  .sobre-nos__img {
    width: 500px;
  }
}
.historia {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
.historia .textos {
  border-left: 4px solid #B31312;
  padding-left: 8px;
  margin: 1rem;
}
.historia .textos h2 {
  text-align: left;
  font-size: 2rem;
  font-weight: 700;
  color: #2B2A4C;
  margin-bottom: 1.5rem;
}
.historia .textos p {
  text-align: left;
  font-weight: 500;
  font-size: 1.1rem;
  word-spacing: 8%;
  color: #45474B;
  font-family: "Poppins", sans-serif;
}
.historia .historia__img {
  width: 350px;
}

@media screen and (min-width: 768px) {
  .historia {
    flex-direction: row-reverse;
    padding: 0 2rem;
  }
  .historia .textos {
    padding-left: 15px;
  }
}
@media screen and (min-width: 1440px) {
  .historia {
    padding: 0 15rem;
  }
}
@media screen and (min-width: 2060px) {
  .historia {
    padding: 0 35rem;
    height: 100vh;
  }
}
.linha-do-tempo {
  font-family: "Instrument Sans", sans-serif;
  color: #2B2A4C;
}
.linha-do-tempo .pt-100 {
  padding-top: 100px;
}
.linha-do-tempo .pb-100 {
  padding-bottom: 100px;
}
.linha-do-tempo .section-title {
  margin-bottom: 60px;
}
.linha-do-tempo .section-title p {
  color: #777;
  font-size: 16px;
}
.linha-do-tempo .section-title h4 {
  text-transform: capitalize;
  font-size: 40px;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
  font-weight: 600;
}
.linha-do-tempo .section-title h4:before {
  position: absolute;
  content: "";
  width: 60px;
  height: 2px;
  background-color: #B31312;
  bottom: 0;
  left: 50%;
  margin-left: -30px;
}
.linha-do-tempo .section-title h4:after {
  position: absolute;
  background-color: #B31312;
  content: "";
  width: 10px;
  height: 10px;
  bottom: -4px;
  left: 50%;
  margin-left: -5px;
  border-radius: 50%;
}
.linha-do-tempo ul.timeline-list {
  position: relative;
  margin: 0;
  padding: 0;
}
.linha-do-tempo ul.timeline-list:before {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  background-color: #B31312;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.linha-do-tempo ul.timeline-list li {
  position: relative;
  clear: both;
  display: table;
}
.linha-do-tempo .timeline_content {
  border: 2px solid #B31312;
  background-color: #fff;
}
.linha-do-tempo ul.timeline-list li .timeline_content {
  width: 45%;
  color: #333;
  padding: 10px;
  float: left;
  text-align: right;
}
.linha-do-tempo ul.timeline-list li:nth-child(2n) .timeline_content {
  float: right;
  text-align: left;
}
.linha-do-tempo .timeline_content h4 {
  font-size: 22px;
  font-weight: 600;
  margin: 10px 0;
}
.linha-do-tempo ul.timeline-list li:before {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  background-color: #B31312;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.linha-do-tempo .timeline_content span {
  font-size: 18px;
  font-weight: 500;
  color: #B31312;
  font-family: "Instrument Sans", sans-serif;
}

/* Highlight 2 */
.highlight-2 {
  position: relative;
  display: inline-block;
  font-weight: 500;
  font-size: 1.2rem;
  font-family: "Poppins", sans-serif;
}

.highlight-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  /* Inicialmente sem largura */
  height: 100%;
  background-color: #B31312;
  /* Cor de fundo da marcação */
  mix-blend-mode: multiply;
  /* Define o modo de mistura para que a cor de fundo não cubra o texto */
  z-index: -1;
  /* Coloca o pseudo-elemento abaixo do texto */
  transition: width 2s ease-out;
  /* Adiciona uma transição para suavizar a animação */
  border-radius: 5px;
}

.highlight-2.active::before {
  width: 100%;
  /* Largura total quando a classe "active" é aplicada */
}

@media screen and (min-width: 1440px) {
  .linha-do-tempo {
    padding: 0 15rem;
  }
}
@media screen and (min-width: 2060px) {
  .linha-do-tempo {
    padding: 0 35rem;
  }
}
.visao {
  padding: 0 2rem;
}
.visao .textos h2 {
  text-align: left;
  font-size: 2rem;
  font-weight: 700;
  color: #2B2A4C;
  border-left: 4px solid #B31312;
  padding-left: 8px;
  margin-bottom: 3rem;
}

.conteudo {
  padding: 0 1rem;
}
.conteudo .conteudo-item {
  margin-bottom: 2rem;
}
.conteudo .conteudo-item h3 {
  text-align: left;
  font-size: 2rem;
  font-weight: 700;
  color: #2B2A4C;
  margin-bottom: 1.5rem;
}
.conteudo .conteudo-item h3 .icone-emoji {
  color: #B31312;
  font-size: 2rem;
}
.conteudo .conteudo-item p {
  text-align: left;
  font-weight: 500;
  font-size: 1.2rem;
  word-spacing: 8%;
  color: #45474B;
  font-family: "Poppins", sans-serif;
}

.accordion {
  font-family: "Instrument Sans", sans-serif;
}
.accordion .accordion-button {
  padding: 0.5rem;
  font-weight: 500;
}
.accordion .accordion-body li {
  margin-bottom: 0.5rem;
  line-height: normal;
  font-weight: 500;
  color: #45474B;
  font-family: "Poppins", sans-serif;
}

@media screen and (min-width: 768px) {
  .visao {
    margin-bottom: 3rem;
  }
  .conteudo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    align-items: flex-start;
    justify-content: center;
  }
  .conteudo .conteudo-item {
    margin-bottom: 0rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    height: 100%;
    padding: 1rem;
  }
  .conteudo .conteudo-item h3 {
    margin-bottom: 0;
  }
  .conteudo .conteudo-item p {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1440px) {
  .visao {
    padding: 0 15rem;
  }
}
@media screen and (min-width: 2060px) {
  .visao {
    padding: 0 35rem;
  }
}
.missao {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
.missao .textos {
  border-left: 4px solid #B31312;
  padding-left: 8px;
  margin: 1rem;
}
.missao .textos h2 {
  text-align: left;
  font-size: 2rem;
  font-weight: 700;
  color: #2B2A4C;
  margin-bottom: 1.5rem;
}
.missao .textos p {
  text-align: left;
  font-weight: 500;
  font-size: 1.2rem;
  word-spacing: 8%;
  color: #45474B;
  font-family: "Poppins", sans-serif;
}
.missao .missao__img {
  width: 350px;
}

@media screen and (min-width: 768px) {
  .missao {
    flex-direction: row;
    padding: 0 2rem;
  }
  .missao .textos {
    padding-left: 15px;
  }
}
@media screen and (min-width: 1440px) {
  .missao {
    padding: 0 15rem;
  }
}
@media screen and (min-width: 2060px) {
  .missao {
    padding: 0 35rem;
  }
}
.navegacao {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.navegacao .video {
  display: block;
  width: 100%;
  /* Ocupa 100% da largura da tela */
  height: 100vh;
  /* Ocupa 100% da altura da tela */
  -o-object-fit: cover;
     object-fit: cover;
  /* Mantém a proporção do vídeo e cobre a tela */
  position: absolute;
  /* Fixa o vídeo na tela, evitando rolagem */
  top: 0;
  left: 0;
  z-index: -1;
}
.navegacao label {
  font-size: 2rem;
  color: white;
  font-weight: 600;
}
.navegacao .dropdown {
  padding: 1rem;
}
.navegacao .dropdown select {
  padding: 1rem;
  border: 2px solid #B31312;
  border-radius: 20px;
  color: white;
  font-size: 1.2rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.483);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.navegacao .dropdown select option {
  color: #2B2A4C;
  font-weight: 500;
}

.galeria {
  padding-bottom: 2rem;
}
.galeria .titulo h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #2B2A4C;
  font-family: "Instrument Sans", sans-serif;
  margin: 2rem;
  text-align: center;
}
.galeria .imagens {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}
.galeria .imagens .imagens-item {
  transition: 500ms;
  border: 2px solid #B31312;
  border-radius: 10px;
  box-shadow: -1px 15px 15px -9px rgba(125, 125, 125, 0.46);
  -webkit-box-shadow: -1px 15px 15px -9px rgba(125, 125, 125, 0.46);
  -moz-box-shadow: -1px 15px 15px -9px rgba(125, 125, 125, 0.46);
}
.galeria .imagens .imagens-item:hover {
  transform: scale(1.05);
}

.clientes {
  background-color: rgba(125, 124, 124, 0.097);
  padding: 1rem 0;
  margin: 2rem 0;
}
.clientes .titulo h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #2B2A4C;
  font-family: "Instrument Sans", sans-serif;
  margin: 1.5rem;
}
.clientes .clientes-logos {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  overflow-x: auto;
  white-space: nowrap;
  padding: 2rem;
}
.clientes .clientes-logos .logos {
  width: 100px;
  border-radius: 50px;
  transition: 300ms;
}
.clientes .clientes-logos .logos:hover {
  transform: scale(1.05);
}

/* Estilo para o modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

/* Estilo para a imagem dentro do modal */
.modal-content {
  max-width: 80%;
  max-height: 80%;
}

/* Estilo para a galeria de imagens */
.gallery {
  display: flex;
  flex-wrap: wrap;
}

/* Estilo para cada imagem na galeria */
.gallery img {
  cursor: pointer;
  margin: 5px;
  max-width: 300px;
  max-height: 300px;
}

@media screen and (min-width: 768px) {
  /* Estilo para cada imagem na galeria */
  .gallery img {
    cursor: pointer;
    margin: 5px;
    max-width: 700px;
    max-height: 300px;
  }
}
@media screen and (min-width: 768px) {
  /* Estilo para cada imagem na galeria */
  .gallery img {
    cursor: pointer;
    margin: 5px;
    max-width: 465px;
    max-height: 300px;
  }
}
@media screen and (min-width: 1024px) {
  .clientes .clientes-logos {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    overflow-x: auto;
    white-space: nowrap;
  }
  .clientes .clientes-logos .logos {
    width: 100px;
    border-radius: 50px;
  }
}
@media screen and (min-width: 1440px) {
  .clientes .clientes-logos {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
  }
  .clientes .clientes-logos .logos {
    width: 110px;
    border-radius: 50px;
  }
  /* Estilo para cada imagem na galeria */
  .gallery img {
    cursor: pointer;
    margin: 5px;
    max-width: 485px;
    max-height: 300px;
  }
}/*# sourceMappingURL=style.css.map */