@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Fredoka', sans-serif;
  line-height: 1.6;
  background-color: #121212;
  color: #CCCCCC;
  font-size: 18px;
}

header {
  display: flex;
  width: 100%;
  height: 20%;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background-color: #1E1E2F;
  color: white;
  flex-wrap: wrap;
  border-bottom: 2px solid #00FFF7;
  box-shadow: 0 2px 8px rgba(0, 255, 247, 0.2);
  transition: all 0.3s ease;
}

.logo a {
  font-size: 1.5rem;
  font-weight: bold;
  color: #00FFF7;
  text-decoration: none;
}

.logo img {
  width: 90px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

nav ul li a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #7F00FF;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  background: #1E1E2F;
  border-bottom: 1px solid #333;
  margin-bottom: 0vh;
}
.hero {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: linear-gradient(-75deg, #1e1e2f, #393d5f, #2b2b49, #121212);
  background-size: 400% 400%;
  animation: fundoAnimado 30s ease-in-out infinite; 
}

@keyframes fundoAnimado {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.hero {
  position: relative;
  z-index: 1;
}

.hero .imagem::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  background-image: url('../imagens/circuito.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  opacity: 0.2;
}

.texto {
  flex: 1;
  color: #00FFF7;
  margin-right: 30px;
}

.texto h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.texto p {
  font-size: 1.1rem;
  color: #CCCCCC;
}

.imagem {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 100%;
}

.imagem img {
  max-width: 500px;
  height: auto;
  animation: flutuar 4s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.imagem img:hover {
  transform: scale(1.05);
}

@keyframes flutuar {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.bloco {
  padding: 60px 20px;
}

.bloco.claro {
  background-color: #f9f9f9;
  color: #121212;
}

.bloco.escuro {
  background-color: #121212;
  color: #CCCCCC;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.cards-projetos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2vw;
}

.card {
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.img-projeto {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.25rem;
  margin: 0.5rem 0;
}

.card p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.card .btn {
  margin-top: auto;
}
.card .btn:hover {
  background: linear-gradient(135deg, #7F00FF, #00FFF7);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 255, 247, 0.5);
}
.galeria-estrutura {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 2vh 2vw;
  padding: 2vh 2vw;
  justify-items: center;
}

@media (max-width: 768px) {
  .galeria-estrutura {
    grid-template-columns: 1fr;
  }
}

.estrutura-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.estrutura-img {
  width: 100%;
  max-width: 280px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.estrutura-item:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}


.nome-sala {
  margin-top: 0.5em;
  font-weight: 500;
  font-size: 1rem;
  color: #fff;
}

.footer {
  padding: 60px 20px;
  background: #1E1E2F;
  color: #CCCCCC;
}

.localizacao-wrapper {
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
}

.localizacao-wrapper h3 {
  margin-bottom: 15px;
  color: #00FFF7;
}

.contatos-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 30px;
}

.qr-e-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.qrcode {
  width: 120px;
  height: auto;
}

.logo-social {
  width: 40px;
  height: auto;
}

.direitos {
  text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid #444;
  padding-top: 20px;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #1E1E2F;
}

::-webkit-scrollbar-thumb {
  background-color: #00FFF7;
  border-radius: 10px;
  border: 2px solid #1E1E2F;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    align-items: center;
  }

  .texto {
    text-align: center;
    margin-right: 0;
  }

  .imagem img {
    max-width: 100%;
  }

  .contatos-wrapper {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 1024px) {
  .galeria-estrutura {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .galeria-estrutura {
    grid-template-columns: 1fr;
  }
}
.animado-esquerda,
.animado-direita,
.animado-baixo {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animado-esquerda {
  transform: translateX(-40px);
}

.animado-direita {
  transform: translateX(40px);
}

.visivel {
  opacity: 1;
  transform: translate(0);
}
.img-projeto {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.btn {
  background: linear-gradient(135deg, #00FFF7, #7F00FF);
  color: #121212;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 0 12px rgba(127, 0, 255, 0.3);
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn:hover {
  background: linear-gradient(135deg, #7F00FF, #00FFF7);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 255, 247, 0.5);
}

.btn-hero {
  margin-top: 20px;
  font-size: 1rem;
}
.qrcode-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.qr-legenda {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: #00FFF7;
}

.logos-vertical {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.logo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #CCCCCC;
  font-size: 0.95rem;
}

.logo-item img {
  width: 40px;
  height: auto;
}
