@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap');
 

*, *::before, *::after {
  box-sizing: border-box;
}
 
html {
  scroll-behavior: smooth;
}
 
html, body {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
 
body {
  font-family: 'Montserrat','Poppins','Helvetica', sans-serif;
  background: linear-gradient(180deg, #03101a 0%, #092b42 100%);
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
.conteudo {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
  max-width: 1200px;

}

.conteudo.show {
  opacity: 1;
  transform: translateY(0);
}

/* Animações gerais */
.animate-in {
  animation: slideInDown 0.8s ease-out forwards;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.show {
  opacity: 1;
  transform: translateY(0);
}

section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

section.show {
  opacity: 1;
  transform: translateY(0);
}

.revelar {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.revelar.show {
  opacity: 1;
  transform: translateY(0);
}

.setor-card {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.setor-card.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.FAQ {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.FAQ.show {
  opacity: 1;
  transform: translateX(0);
}

details {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

details.show {
  opacity: 1;
  transform: translateY(0);
}

/* Keyframes de animação */
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
 

header {
  position: relative;
  padding: 30px 20px 40px;
  width: 100%;
  min-height: 65vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(-45deg, #051824, #032d6b, #f5c966, #092b42);
  background-size: 400% 400%;
  animation: mover 9s ease infinite;
}
/* animação de fundo */
@keyframes mover {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 40px;
  padding: 8px;
  background: linear-gradient(135deg, rgba(0, 64, 128, 0.1), rgba(227, 186, 93, 0.1));
  transition: all 0.3s ease;
}
 
.logo:hover {
  transform: scale(1.1) rotate(3deg);
  filter: drop-shadow(0 4px 16px rgba(227, 186, 93, 0.6));
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(227, 186, 93, 0.2));
}

.nav-buttons {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 20px;
}
 
.nav-buttons button {
  background: transparent;
  border: none;
  color: #ffffff;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}
 
.nav-buttons button:hover {
  transform: scale(1.03);
}
 
button {
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}
 
.inicio {
  background-color: transparent;
  padding: 24px 20px;
  width: min(100%, 760px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
 
.inicio h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  text-align: center;
  margin: 0;
}

.inicio h5 {
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  margin: 0;
  max-width: 620px;
}
 

span {
  color: #f5c966;
}
 

.contato {
  display: flex;
  flex-direction: column;
  align-items: center;
}
 
.contato .cta {
  background-color: #004080;
  color: #ffffff;
  border: none;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(0, 64, 128, 0.6);
  transition: all 0.3s ease;
  padding: 14px 36px;
}
 
.contato .cta:hover {
  background-color: #003366;
  box-shadow: 0 0 30px rgba(0, 64, 128, 0.9), 0 0 50px rgba(245, 201, 102, 0.4);
  transform: scale(1.05);
}
 

main {
  background-color: #eaeaea;
  min-height: 40vh;
  color: black;
  padding-bottom: 40px;
}
 
#sessao1,
#sessao2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 90%;
  max-width: 1400px;
  margin: 60px auto;
  padding: 40px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
 
#sobrenosimg {
  width: 400px;
  height: auto;
  flex-shrink: 0;
  border-radius: 12px;
 
}

.sessao1-conteudo,
.sessao2-conteudo {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
 
#sobrenos,
#setores {
  font-size: 60px;
  margin: 0;
  font-weight: 700;
}
 
.alinhadodireita,
.alinhadoesquerda {
  line-height: 1.2;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  font-weight: 560;
  font-family: 'Poppins', 'Montserrat', sans-serif;
  margin: 0;
}
.alinhadoesquerda{
  position: relative;
  top: -27px;
  word-break: break-all;
 }

 .importante {
  font-weight: 700;
}
 
#arte-setores {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1400px;
  margin: 40px auto 0;
  padding: 40px 24px 0;
}

.setor-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  padding: 14px;
  gap: 16px ;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  overflow: hidden;
  position: relative;
  top:-45px;
   word-break: break-all;

}

.setor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

#arte-setores img {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

#arte-setores p {
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
 
#confira {
  text-align: center;
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  padding: 24px 16px;
  margin: 0 auto;
  max-width: 720px;
}

#carrossel {
 width: 100%;
  height: auto;
}
.swiper-slide {
  width: auto;
  max-width: 700px;
  flex-shrink: 0;
  border-radius: 18px;
  overflow: hidden;
}
.swiper-slide img {
  width: 100%;
  display: block;
  border-radius: 16px;
}
 
#perguntas {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600;
  font-family: 'Poppins', 'Montserrat', sans-serif;
  text-align: center;
  padding: 40px 20px 20px;
  margin: 0;
}

footer {
  background-color: #0d2d4e;
  padding: 60px 20px;
 
}

.faq-lista {
  width: 90%;
  max-width: 700px;
  margin: 0 auto;
}

details > p, ol{
  font-family: 'Montserrat', 'Poppins', Arial, Helvetica, sans-serif;
  font-weight: 700;
}

details {
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 20px 0;
}

details summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: white;
}

details summary::after {
  content: 'v';
  font-size: 18px;
  transition: transform 0.3s ease;
}

details[open] summary::after {
  transform: rotate(180deg);
}

.footer-logo {
  width: 25px;
  height: auto;
  object-fit: contain;
}

.redes-sociais {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-barra {
  border-top: 3px solid #051824;
  margin: 70px auto;
  width: 100%;
  padding: 40px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.icone-zap,
.icone-insta {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background-color: transparent;
  cursor: pointer;
  margin: 0;
  padding: 0;
  font-size: 0;
}

.icone-zap img,
.icone-insta img {
  width: 48px;
  height: 48px;
  object-fit: contain; 
}

.icone-zap:hover,
.icone-insta:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: scale(1.1);
  border-color: #f5c966;
}

#sessao1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  width: 90%;
  max-width: 960px;
  margin: 60px auto;
  padding: 40px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

@media(max-width: 768px) {
  body {
    font-size: 15px;
  
}

  header {
    padding: 20px 14px 32px;
  }

  .nav-buttons {
    gap: 6px;
    margin: 18px auto 20px;
  }

  .inicio {
    padding: 20px 16px;
  }

  #sessao1,
  #sessao2 {
    flex-direction: column;
    padding: 28px 18px;
    margin: 40px auto;
    text-align: center;
  }

  #sobrenosimg {
    width: min(100%, 300px);
  }

  #arte-setores {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 30px 18px 0;
  }

  .setor-card {
    padding: 12px;
    gap: 12px;
  }

  #arte-setores img {
    height: 180px;
  }

  #arte-setores p {
    font-size: 0.9rem;
  -webkit-line-clamp: 2;
  }

  .sessao1-conteudo,
  .sessao2-conteudo {
    align-items: center;
  }

  .alinhadodireita,
  .alinhadoesquerda {
    text-align: center;
  }
}

 .footer-barra {
  margin: 70px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  }

  .footer-logo {
    width: 160px;
  }

  #footer-logos{
display: flex;
align-items: center;
gap: 16px;
  }

@media (max-width: 600px) {
  .nav-buttons {
    gap: 6px;
    width: 100%;
    padding: 0 10px;
  }

  .nav-buttons button {
    flex: 1 1 120px;
    min-width: 0;
    padding: 10px 8px;
    font-size: 12px;
  }

  #sessao1,
  #sessao2 {
    padding: 22px 14px;
    margin: 28px auto;
  }

  #sobrenosimg {
    width: min(100%, 260px);
  }

  #arte-setores img {
    width: 100%;
    height: 160px;
 
  }

  #arte-setores p {
    font-size: 10px;
    line-height: 1.5;
    padding: 0;
    -webkit-line-clamp: 2;
  }

  #confira {
    font-size: clamp(1.5rem, 5vw, 2rem);
    padding: 18px 14px;
  }

  .footer-barra {
  margin: 70px auto;
  width: 100%;
  padding: 40px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  }

  .footer-logo {
    width: 90px;
  }

  #footer-logos {
display: flex;
align-items: center;
gap: 16px;
}