*
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Madani Arabic Regular", sans-serif;
  background-color: #24098A ;
  color: #fff;
}

/*gerais*/

h2 {
  font-size: 32px;
}

/*cabeçalho*/
.header-container {
  background: rgba(25, 0, 255, 0.4);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 5px 0;
}

.navigation nav {
  display: flex;
  gap: 20px;
}

.navigation nav a {
  color: #fff;
  text-decoration: none;
}

.navigation nav a:hover, 
.header-socials a:hover {
  color:black;
}

.social-link {
  color: #fff;
  padding: 0 2px;
}

.header-socials a i {
  font-size: 1.8rem;
}

/*INICIO*/
.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%; 
  height: 56.25vw; 
  min-height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none; 
}

.mobile-container {
  display: none;
}

.hero {
  position:initial;
  width: 100%;
  height: 93vh;
  display: grid;
  justify-content: space-evenly;
  align-items: center;
  overflow: hidden;
  text-align: center;
}

.hero-content h1 {
  font-size: 50px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 23px;
}

/*ECOSSISTEMA*/
.ecossistema-container {
  text-align: center;
  padding-bottom: 100px;
}

.ecossistema-content h2 {
  padding-bottom: 40px;
}

.ecossistema-grid {
  display: block;
}

.efeito-luz {
  display: flex;
  margin-top: 0%;
}

.brand-grid-line-01,
.brand-grid-line-02,
.brand-grid-line-03 {
  display: flex;
  justify-content: center; 
  gap: 65px; 
  margin-bottom: -25px; 
}

.brand-item {
  width: 120px;
  height: 120px;
  display:flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #fff;
  transform: rotate(45deg); 
  overflow: hidden;
  perspective: 1000px; /* Adiciona perspectiva para o efeito de rotação */
  position: relative;
}

.brand-item .front,
.brand-item .back {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  backface-visibility: hidden; /* Oculta o lado de trás */
  transform: rotate(-45deg); /* Mantém a rotação normal das imagens */
}

.brand-item .back {
  transform: rotateY(180deg) rotate(-45deg); /* Esconde o verso por padrão */
  border-radius: 5px; /* Garante que o fundo cubra toda a área de rotação */
}

.brand-item:hover .front {
  transform: rotateY(180deg) rotate(-45deg); /* Gira a frente para fora */
  transition: transform 0.6s;
}

.brand-item:hover .back {
  transform: rotateY(0deg) rotate(-45deg); /* Gira o verso para frente */
  transition: transform 0.6s;
}

.brand-item img {
  transform: rotate(45deg); /* Rotaciona para criar o efeito de losango */
  width: 100%;
  height: auto;
}

/* Popup */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.popup-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.popup-navigation {
  position: absolute;
}

.popup-description img {
  width: 100vw;
  height: 45vw;
}

.popup-navigation {
  font-size: 32px;
  padding-left: 20px;
}


.nav-close {
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

.nav-arrow {
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

.nav-arrow:hover,
.nav-close:hover {
  color: #ccc;
}

/*LOCALIZAÇÃO*/
.efeito-luz {
  justify-content: center;
  align-items: center;
}
.offices-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.office-details {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.offices-title {
  font-size: 24px;
  padding-bottom: 40px;
}

/*FORMULARIO*/
.form-container {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
  padding:0  350px;
}


.form-group label {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #fff;
}


.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  background-color: #2C32FA;
  color: #fff;
}

.form-group textarea {
  height: 150px;
}

button {
  background-color: #2C32FA;
  color: #fff;
  padding: 10px 20px;
  font-size: 1.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #2C32FA;
}

/* Estilos do Pop-up */
.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  color: #151934;
  padding: 20px;
  border-radius: 8px;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.popup button {
  margin-top: 10px;
  background-color: #151934;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.popup button:hover {
  background-color: #2C32FA;
}

.footer-container {
  display: flex;
  flex-direction: column;
  text-align: center;
  border-top:1px solid #ffffff;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
  margin: 0 20px;
  border-bottom:1px solid #ffffff;
}

.footer-logo {
  display: flex;
}

.footer-copyright-container {
  gap: 5px;
  justify-content: space-around;
}

.footer-copyright-container a {
  text-decoration: none;
  color: #fff;
  padding: 0 10px;
}

.footer-socials {
  font-size: 25px;
}

.direitos {
  padding-top: 10px;
}

.direitos a {
  text-decoration: none;
  color: #fff;
  padding: 0 10px;
}