/* ===========================
   BLOCO 1 — INTRODUÇÃO
=========================== */
.qs-intro {
  padding: 150px 20px 60px 20px;
  background: #0a0a0a;
  color: #ffffff;
}

.qs-container {
  max-width: 1100px;
  margin: 0 auto;
}

.qs-intro h1 {
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 25px;
  color: #ffffff;
}

.qs-intro p {
  font-size: 1.15rem;
  line-height: 1.7;
  text-align: justify;
  color: #e4e4e4;
}

/* ===========================
   BLOCO 2 — MOSAICO
=========================== */
.qs-mosaico {
  padding: 10px 20px;
  background: #0a0a0a;
  color: #ffffff;
}

.qs-mosaico .qs-container {
  max-width: 1200px;
  margin: 0 auto;
}

.qs-mosaico h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #ffffff;
}

/* ===========================
   GRID — 2 CARDS POR LINHA
=========================== */
.qs-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
}

@media (max-width: 768px) {
  .qs-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   CARDS
=========================== */
.qs-card {
  background: #111111;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #1f1f1f;
  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  color: #eaeaea;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 400px;
}

.qs-card:hover {
  transform: translateY(-4px);
  background: #161616;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
}

/* ===========================
   FOTO
=========================== */
.qs-foto {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  background: #1d1d1d;
  border: 1px solid #222;
}

.qs-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
}

/* ===========================
   TEXTO
=========================== */
.qs-card h3 {
  text-align: center;
  font-size: 1.25rem;
  margin: 0;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.qs-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #d6d6d6;
  margin: 0;
  flex: none;
}

/* ===========================
   RESPONSIVO
=========================== */
@media (max-width: 1024px) {
  .qs-card {
    min-height: 380px;
    padding: 14px;
  }
  .qs-foto {
    height: 180px;
  }
}

@media (max-width: 600px) {
  .qs-card {
    min-height: auto;
    padding: 12px;
  }
  .qs-foto {
    height: 150px;
  }
}

/* ===========================
   LINKS NO CARD
=========================== */
.qs-card .qs-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.qs-card .qs-link:hover h3,
.qs-card .qs-link:hover .qs-foto {
  transform: translateY(-4px);
  background: #161616;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
}

/* ===========================
   EMAIL FOOTER
=========================== */
.footer-email {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}

.footer-email:hover {
  border-bottom: 1px solid #fff;
}

/* ===========================
   CARD CLICÁVEL
=========================== */
.qs-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.qs-card-link:visited {
  color: inherit;
}

.qs-card-link:hover .qs-card {
  transform: scale(1.02);
  transition: transform 0.2s ease;
}

/* ===========================
   AJUSTE FINAL — FOTO DO MENATO
=========================== */
.menato-foto img {
  object-position: 50% 35%;
  transform: scale(1.15);
}

/* ===========================
   AJUSTE FINAL — FOTO JAQUELINE
=========================== */
.jaqueline-foto img {
  object-position: 50% 18%; /* desce um pouco */
  transform: scale(1.1);
}

/* ===========================
   RESPONSIVO EXTRA
=========================== */
@media (max-width: 1024px) {
  .qs-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .qs-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .qs-foto {
    height: 120px;
  }
}
