@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --color-white: hsl(206, 5%, 100%);
  --color-yellow: hsl(50, 100%, 50%);
  --color-black: hsl(0, 0%, 0%);
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
     0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
     0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
     0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.text-section {
    opacity: 0; /* Inicialmente invisível */
    transform: translateY(100px); /* Movida mais para baixo para criar um efeito mais visível */
    transition: opacity 0.5s ease-out, transform 0.5s ease-out; /* Aumenta o tempo da transição para 1.5 segundos */
}

.text-section.visible {
    opacity: 1; /* Torna visível */
    transform: translateY(0); /* Volta para a posição original */
}


.swal-wide {
    width: 90% !important; /* Ajuste a largura conforme necessário */
    max-width: 100%;
  }

/* Estilos para o lightbox */
.lightbox {
  display: none; /* Oculto por padrão */
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 1);
}
/* Estilo para desabilitar a rolagem do body */
body.no-scroll {
  overflow: hidden; /* Impede a rolagem do body */
}

/* Ajustes no lightbox para permitir rolagem no conteúdo */
.lightbox-content {
  max-height: 100vh; /* Altura máxima do lightbox */
  overflow-y: auto; /* Permite rolagem se o conteúdo for maior que a altura máxima */
  position: relative;
  margin: 0 auto; /* Centraliza o modal */
  padding: 0;
  width: 100%; /* Ajuste a largura conforme necessário */
}

.close {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 35px;
  color: var(--color-black);
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: var(--color-yellow);
  text-align: center;
  line-height: 35px;
}

.close:hover,
.close:focus {
  color: var(--color-yellow);
  background-color: var(--color-black);
  border: 1px solid var(--color-yellow);
  text-decoration: none;
  cursor: pointer;
}


*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.5;
  height: -webkit-fill-available;
  color: var(--color-white);
  background-color: var(--color-black);
}

main {
  overflow: hidden;
}
a,
button {
  cursor: pointer;
  border: none;
  outline: none;
  user-select: none;
  background: none;
  box-shadow: none;
  text-decoration: none;
}
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.section {
  margin: 0 auto;
  padding: 6rem 0 6rem;
}
.container {
  max-width: 75rem;
  height: auto;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.centered {
  text-align: center;
  vertical-align: middle;
  margin-bottom: 1rem;
}
.heading-xl {
  font-family: inherit;
  font-size: clamp(2.648rem, 6vw, 4.241rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
}
.heading-lg {
  font-family: inherit;
  font-size: clamp(2.179rem, 5vw, 3.176rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
}
.heading-md {
  font-family: inherit;
  font-size: clamp(1.794rem, 4vw, 2.379rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
}
.heading-sm {
  font-family: inherit;
  font-size: clamp(1.476rem, 3vw, 1.782rem);
  font-weight: 600;
  line-height: 1.5;
}
.heading-xs {
  font-family: inherit;
  font-size: clamp(1.215rem, 2vw, 1.335rem);
  font-weight: 500;
  line-height: 1.5;
}
.paragraph {
  font-family: inherit;
  font-size: clamp(1rem, 2vw, 1.125rem);
  text-wrap: balance;
  color: var(--color-white-200);
}
.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  user-select: none;
  outline: none;
  border: none;
  border-radius: 0.25rem;
  text-transform: unset;
/*  transition: all 0.3s ease-in-out;*/
}
.btn-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.5rem;
}
.btn-darken {
  padding: 0.75rem 2rem;
  color: var(--color-white);
  background-color: var(--color-black-200);
  box-shadow: var(--shadow-medium);
}
.btn-neutral {
  padding: 0.75rem 2rem;
  color: var(--color-black-500);
  background-color: var(--color-white);
  box-shadow: var(--shadow-medium);
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: auto;
  margin: 0 auto;
  transition: all 0.35s ease;
}
.header.on-scroll {
  background: hsl(0deg 0% 0% / 61%);
  box-shadow: var(--shadow-medium);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: all 0.35s ease;

}
.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  column-gap: 1.25rem;
  width: 100%;
  height: 4.25rem;
  margin: 0 auto;
}
.brand {
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -1px;
  color: var(--color-white);
  text-transform: uppercase;
}
.menu {
  position: fixed;
  top: -500vh;
  left: 0;
  width: 100%;
  height: auto;
  padding: 4rem 0 3rem;
  overflow: hidden;
  background-color: var(--color-black);
  box-shadow: var(--shadow-medium);
  transition: all 0.4s ease-in-out;
  z-index: 9998;
}
.menu.is-active {
  top: 0;
  width: 100%;
  height: 100vh;
  background-image: url(../imgs/menu-shape.png);
  background-size: cover;
  z-index: 9998;
}
.menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  row-gap: 1.25rem;
  height: 80vh;
  padding-left: 0;
}
.menu-link {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-white);
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 3px; /* Espaçamento antes da linha */
}
.menu-link:hover {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-yellow);
  text-decoration: none;
  transition: all 0.3s ease;
}
.menu-link:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-yellow); /* Linha amarela no hover */
  transition: width 0.3s ease;
  width: 100%; /* Largura final quando hover */
}
.menu-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-yellow); /* Linha amarela no item ativo */
}
.menu-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0; /* Largura inicial */
  height: 1px;
  background-color: var(--color-yellow); /* Cor amarela */
  transition: width 0.3s ease; /* Animação de transição */
}
.menu-link.active {
    color: var(--color-yellow); /* Cor diferente para o item ativo */
}
.menu-link.active::after {
    width: 100%;
}
.menu-link-yellow {
  display: inline-block;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25;
  user-select: none;
  white-space: nowrap;
  text-align: center;
  margin-left: auto;
  padding: 0.65rem 1.5rem;
  border-radius: 3rem;
  text-transform: capitalize;
  color: var(--color-black);
  background-color: var(--color-yellow);
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--color-yellow);
}
.menu-link-yellow:hover {
   display: inline-block;
   font-family: inherit;
   font-size: 0.875rem;
   font-weight: 500;
   line-height: 1.25;
   user-select: none;
   white-space: nowrap;
   text-align: center;
   margin-left: auto;
   padding: 0.65rem 1.5rem;
   border-radius: 3rem;
   text-transform: capitalize;
   color: var(--color-yellow);
   background-color: var(--color-black);
   box-shadow: var(--shadow-medium);
   border: 1px solid var(--color-yellow);
}
.menu-link-yellow:hover::after {
  content: initial;
  position: initial;
  bottom: initial;
  left: initial;
  width: initial;
  height: initial;
  background-color: initial;
  transition: initial;
  width: initial;
}
.menu-link-yellow.active::after {
  content: initial;
  position: initial;
  bottom: initial;
  left: initial;
  width: initial;
  height: initial;
  background-color: initial;
}
.menu-link-yellow::after {
  content: initial;
  position: initial;
  bottom: initial;
  left: initial;
  width: initial;
  height: initial;
  background-color: initial;
  transition: initial;
}
.menu-link-yellow.active {
    color: var(--color-black);
}
.menu-link-yellow.active:hover {
    color: var(--color-yellow);
}
.menu-link-yellow.active::after {
    width: initial;
}
.menu-block {
  display: inline-block;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25;
  user-select: none;
  white-space: nowrap;
  text-align: center;
  margin-left: auto;
  padding: 0.65rem 1.5rem;
  border-radius: 3rem;
  text-transform: capitalize;
  color: var(--color-black);
  background-color: var(--color-yellow);
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease-in-out;
}
.burger {
  position: absolute;
  display: block;
  cursor: pointer;
  user-select: none;
  order: 0;
  z-index: 9999;
  width: 1.6rem;
  height: 1.15rem;
  border: none;
  outline: none;
  background: none;
  visibility: visible;
  transform: rotate(0deg);
  transition: 0.35s ease;
  right: 30px;
}
.burger-line {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  border: none;
  outline: none;
  opacity: 1;
  border-radius: 1rem;
  transform: rotate(0deg);
  background-color: var(--color-white);
  transition: 0.25s ease-in-out;
}
.burger-line:nth-child(1) {
  top: 0px;
}
.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}
.burger-line:nth-child(3) {
  top: 1rem;
}
.burger.is-active .burger-line:nth-child(1) {
  top: 0.5rem;
  transform: rotate(135deg);
}
.burger.is-active .burger-line:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}
.burger.is-active .burger-line:nth-child(3) {
  top: 0.5rem;
  transform: rotate(-135deg);
}
.banner-column {
  position: relative;
  display: grid;
  align-items: center;
  row-gap: 3rem;
}
.banner-image {
  display: block;
  max-width: 18rem;
  height: auto;
  margin-top: 2rem;
  object-fit: cover;
  justify-self: center;
}
.banner-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1.75rem;
}
.banner-links {
  position: absolute;
  top: 40%;
  right: 1.5rem;
  display: grid;
  justify-items: center;
  row-gap: 0.5rem;
  opacity: 0;
  visibility: hidden;
  width: 50px;
}
.banner-links > * {
  font-size: 1.25rem;
  line-height: 1.25;
  color: var(--color-white);
}
.banner-links::before {
  position: absolute;
  content: "";
  top: -3rem;
  width: 4rem;
  height: 1.5px;
  transform: rotate(90deg);
  background: var(--color-white);
}
.banner-links::after {
  position: absolute;
  content: "";
  bottom: -3rem;
  width: 4rem;
  height: 2px;
  transform: rotate(90deg);
  background: var(--color-white);
}
.hero {
    height: 100vh; /* 100% da altura da viewport */
    display: flex;
    align-items: center; /* Centraliza verticalmente */
/*    background: linear-gradient(225deg, #171404 50%, #ffd600 90% 100%);*/
}
.quem-somos{
   background: #000000;
}

.nossa-cultura{
   background: #000000;
   padding: 110px 0;
}

.contato{
   background: #000000;
}

.hero img {
    margin-top: 10vh;
    max-height: 80vh; /* Limita a altura da imagem a 80% da viewport */
    object-fit: cover; /* Corta a imagem quando necessário */
    object-position: left center; /* Centraliza a imagem cortando pela direita */
}
.marquee-container {
    width: 100%;
    overflow: hidden; /* Oculta o conteúdo que está fora da tela */
    background-color: var(--color-yellow);; /* Cor de fundo opcional */
    padding: 1rem 0;
    color: var(--color-black);
/*    margin: 0 0 60px 0;*/
}

.marquee {
    display: flex;
    white-space: nowrap; /* Impede a quebra de linha */
    animation: marquee 20s linear infinite; /* Animação contínua */
}

.marquee span {
    display: inline-block;
    padding-right: 2rem; /* Espaçamento entre itens */
    font-size: 100px;
}
@keyframes marquee {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-100%);
    }
}
/*.text-section {
    height: 70%;
    display: flex;
    background-color: var(--color-black);
    color:var(--color-white);
    margin-bottom: 100px;
}*/

.text-column {
    width: 63%;
    padding: 2rem; /* Adiciona um respiro na lateral direita */
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Alinha o texto à direita */
    text-align: left;
}

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

.social-icons{
   font-size: 30px;
}
.footer-links{
  color: var(--color-white);
  text-decoration: none;
}
.footer-links:hover{
  color: var(--color-yellow);
  text-decoration: none;
}
.footer-links:visited{
  color: var(--color-white);
  text-decoration: none;
}
.copy{
  color: var(--color-white) !important;
  font-size: 12px;
}
.border-top {
    border-color: var(--color-yellow) !important;
}

.card-cultura {
    background-color: #fff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
    padding: 20px;
}
.card-cultura-yellow {
    background-color: var(--color-yellow);
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
    padding: 20px;
}

.card-cultura:hover, .card-cultura-yellow:hover {
    transform: translateY(-10px); /* Eleva o card ao hover */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); /* Sombra mais profunda ao hover */
}

.card-cultura .card-title, .card-cultura-yellow .card-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.card-cultura .card-text, .card-cultura-yellow .card-text {
    font-size: 16px;
    color: #555;
}

.card-body {
    padding: 30px;
    text-align: left;
}

.lead {
    font-size: 16px;
    font-weight: 300;
    text-wrap: balance;
}

.contato {
    background-color: var(--color-black);
    padding: 60px 0;
}

.contato h2 {
    color: #333;
}

.contato .form-control, .contato .form-check-input {
    border-radius: 8px;
}

.contato .btn-primary {
    background-color: transparent;
    border: 1px solid var(--color-yellow);
    padding: 10px 130px;
    border-radius: 3rem;
}

.contato .btn-primary:hover {
    background-color: var(--color-yellow);
    border-color: var(--color-yellow);
    color: var(--color-black);
}


.contato .btn-secondary {
    background-color: var(--color-yellow);
    border: 1px solid var(--color-yellow);
    color: var(--color-black);
    padding: 10px 50px;
    border-radius: 3rem;
}

.contato .btn-secondary:hover {
    background-color: transparent;
    border-color: var(--color-yellow);
    color: var(--color-black);
}

.contato .form-check-input:checked {
    background-color: var(--color-yellow);
    border-color: var(--color-yellow);
    color: var(--color-black);
}
.contato .form-check-input:checked[type=checkbox] {
    --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e") !important;
}
.contato .form-check-input:focus {
    border-color: var(--color-yellow);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(255 213 0 / 30%) !important;
}

.contato .form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: var(--color-yellow);
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(255 213 0 / 30%) !important;
}
.contato .form-label, .contato .form-check-label {
    margin-bottom: .5rem;
    font-size: 16px;
}

/* Estilo base do select */
.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select {
  appearance: none; /* Remove estilo padrão */
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 16px;
  color: #333;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6' fill='%23000000'%3E%3Cpath d='M0 0l5 6 5-6H0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
}

/* Garantir que o select não mostre a seta padrão no Firefox */
select::-ms-expand {
  display: none;
}


.texto-objeto3d {
    padding: 60px 0;
}

.texto-objeto3d .texto {
    padding-right: 30px;
}

.texto-objeto3d model-viewer {
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

#modelo-3d{
  width: 100%;
  height: 800px;
  z-index: 1;
  pointer-events: auto;
}
.titles-general{
  font-family: inherit;
  font-size: clamp(2.648rem, 4vw, 4.241rem);
  font-weight: 200;
  line-height: 1.15;
  letter-spacing: -1px;
}
.titles-pb{
  padding-bottom: 20px;
}
.titles-fat{
  font-weight: 500 !important;
}
.gradient-fit{
   width: fit-content !important;
}
.color-gradient {
    display: inline-block;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
    width: 100%;
}
.cg-black {
    background: linear-gradient(225deg, #999 10%, #000000 90%);
}
.cg-yellow {
/*    background: linear-gradient(225deg, #666 10%, #ffd600 90%);*/
   background: linear-gradient(225deg, #585858 50%, #ffd600 70%);
}
.cg-white {
    background: linear-gradient(225deg, #999 10%, #FFFFFF 90%);
}


/*
================================================================
================================================================
 ____  _____ ____  ____   ___  _   _ ____ _____     _______ 
|  _ \| ____/ ___||  _ \ / _ \| \ | / ___|_ _\ \   / / ____|
| |_) |  _| \___ \| |_) | | | |  \| \___ \| | \ \ / /|  _|  
|  _ <| |___ ___) |  __/| |_| | |\  |___) | |  \ V / | |___ 
|_| \_\_____|____/|_|    \___/|_| \_|____/___|  \_/  |_____|

================================================================
================================================================
*/

@media only screen and (min-width: 59rem) {
  .menu {
    position: relative;
    top: 0;
    width: auto;
    height: auto;
    padding: 0rem;
    margin-left: auto;
    background: none;
    box-shadow: none;
    z-index: 9998;
  }
  .menu-inner {
    display: flex;
    flex-direction: row;
    column-gap: 2rem;
    margin: 0 auto;
    height: inherit;
  }
  .menu-link {
    text-transform: capitalize;
  }
  .menu-block {
    margin-left: 2rem;
  }

  .banner-image {
    order: 1;
    max-width: 20rem;
    height: auto;
  }

  .banner-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
  }

  .burger {
    display: none;
    visibility: hidden;
    z-index: 9999;
  }
}

@media only screen and (min-width: 64rem) {
  .banner-links {
    opacity: 1;
    visibility: visible;
  }

  .banner-image {
    max-width: 25rem;
    height: auto;
    margin-right: 5rem;
  }

  .banner-column {
    grid-template-columns: 1fr max-content;
    column-gap: 4rem;
    margin-top: 3rem;
  }
}

@media (max-width: 991px) {
    .contact-info .row {
        display: flex;
        flex-wrap: wrap;
    }
    .contact-info .col-lg-6:first-child {
        order: 2; /* Mudar a ordem para o segundo lugar no mobile */
    }
    .contact-info .col-lg-6:last-child {
        order: 1; /* Mudar a ordem para o primeiro lugar no mobile */
    }
}

@media (max-width: 768px) {
  .header .logo{
    display: none;
  }
  
  .on-scroll .logo{
    display: block;
  }

  .hero .row {
    flex-direction: column-reverse;
  }

  .hero img {
    width: 100%;
    height: auto;
    max-height: none;
  }

  .aniScrollContainer img.animated {  
    right: 0;
    width: 39vw;
    height: 40vh;
    position: absolute;
    top: 8%;
  }

  .card-cultura {
    margin-bottom: 20px;

  #modelo-3d{
    width: 100%;
    height: 340px;
    margin-bottom: 40px;
    z-index: 1;
    pointer-events: auto;
  }

  .marquee span {
    font-size: 40px;
  }

  .footer-sa {
    text-align: center;
  }

  .footer-sa .sec-head .row {
    flex-direction: column;
  }

  .footer-sa .logo {
    display: block;
    margin: 0 auto 20px auto;
  }

  .footer-sa .logo img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
  }

  .footer-sa .social-icon {
    justify-content: center;
  }

  .footer-sa .contact-info .row {
    justify-content: center;
  }

  .footer-sa .col-lg-6, .footer-sa .col-md-6 {
    margin: 0 auto;
  }

  .sub-footer .row {
    justify-content: center;
  }

  .sub-footer .copy {
    text-align: center;
  }

  .text-section {
    flex-direction: column;
    height: auto;
  }

  .image-column {
    /*width: 100%;
    height: 135vw;
    background-size: contain;*/
    display: none;
  }

  .text-column {
    width: 100%;
    text-align: center;
    padding: 2rem;
  }
}


@media only screen and (max-width: 770px) {
    .image-column {
    width: 100%;
    height: auto;
  }
  .quem-somos{
   text-align: center;
   padding: 0 0 6rem 0;
  }
  .img-fluid{
   margin: 0 auto;
  }
  .footer-sa{
   text-align: center;
  }
  .d-flex{
    justify-content: center;
  }
  #modelo-3d {
   height: 400px;
   z-index: 1;
   pointer-events: auto;
}
}

.fade-in-up {
   opacity: 0;
   transform: translateY(100px); /* Movimento maior */
   transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1); /* Efeito de ease suave */
}

.fade-in-up.visible {
   opacity: 1;
   transform: translateY(0);
}

#menu {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, display 0s 0.3s; /* Controla a transição de visibilidade */
    position: absolute; /* Ajuste de acordo com seu layout */
    right: 0;
}

/* Quando o menu está ativo (visível) */
#menu.is-active {
    display: block;
    opacity: 1;
    transition: opacity 0.3s ease-in-out, display 0s 0s; /* Faz o menu aparecer gradualmente */
}