/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

/* BODY */
body {
  background: #0b0b0b;
  color: #fff;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(0,140,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  z-index: 100;
  margin-bottom: 50px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}


.menu {
  display: flex;
  gap: 25px;
}

.menu a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  transition: 0.3s;
}

.menu a:hover {
  color: #00c8ff;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

/* HERO */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 20px;
}

.titulo {
  align-self: flex-start; /* 👈 joga só o título pra esquerda */
  text-align: left;
  padding-left: 26%;
  padding-bottom: 10px;
}

/* IMAGEM */
.imagem-container {
  width: 120%;
  max-width: 1000px;  
}

.imagem-container img {
  width: 110%;
  height: auto;
}

.linha-azul {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00c8ff, transparent);
  margin: 40px 0;
}

/* FOOTER */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #111;
}

.footer img {
  height: 35px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .titulo {
    font-size: 1.8rem;
  }
}

.manuais {
  padding: 80px 20px;
}

.manuais-grid {
  max-width: 1100px;
  margin: 40px auto; /* 👈 centraliza o grid */
  
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

/* CARD */
.manual {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 25px;
  transition: 0.3s;
}

.manual:hover {
  transform: translateY(-5px);
  border-color: #00c8ff;
}

/* IMAGEM */
.manual img {
  width: 200px;
  margin-bottom: 15px;
}

/* TEXTO */
.manual p {
  margin-bottom: 10px;
  font-weight: 600;
}

/* LINK */
.manual a {
  text-decoration: none;
  color: #00c8ff;
  font-size: 14px;
}

@media (max-width: 900px) {
  .manuais-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .manuais-grid {
    grid-template-columns: 1fr;
  }
}

.faq {
  max-width: 800px;
  margin: 60px auto;
  padding: 20px;
}

.faq h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #ffffff;
}

.faq-item {
  margin-bottom: 20px;
  padding: 15px;
  border-bottom: 1px solid #333;
}

/* PERGUNTA (AZUL) */
.faq-pergunta {
  color: #2196f3;
  font-size: 18px;
  margin-bottom: 8px;
}

/* RESPOSTA (BRANCO) */
.faq-resposta {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.5;
}

.faq-item {
  background: #111;
  border-radius: 8px;
  padding: 20px;
  transition: 0.3s;
}

.faq-item:hover {
  background: #1a1a1a;
}

.aj1{
    padding-bottom: 5%;
}

