/* =========================
   HERO
========================= */
.orgulho-hero {
  background: linear-gradient(135deg, #fb923c, #f97316);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.orgulho-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.orgulho-hero p {
  max-width: 700px;
  margin: auto;
  font-size: 1.15rem;
  line-height: 1.6;
}

/* =========================
   DESTAQUE DO MÊS
========================= */
.destaque-mes {
  display: flex;
  gap: 30px;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  margin: 50px 0;
  box-shadow: 0 14px 35px rgba(0,0,0,0.12);
  align-items: center;
}

.destaque-mes img {
  width: 320px;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
}

.badge-orgulho {
  display: inline-block;
  background: #fde68a;
  color: #92400e;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.destaque-mes h2 {
  margin: 8px 0 10px;
}

.destaque-mes p {
  line-height: 1.6;
}

/* =========================
   HISTÓRIAS
========================= */
.orgulho-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.orgulho-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.orgulho-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.15);
}

.orgulho-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.orgulho-card h3 {
  padding: 15px 15px 5px;
}

.orgulho-card p {
  padding: 0 15px 18px;
  color: #555;
  line-height: 1.5;
}

/* =========================
   DEPOIMENTOS
========================= */
.depoimentos {
  margin: 70px 0;
  text-align: center;
}

.depoimentos h2 {
  margin-bottom: 20px;
}

.depoimentos blockquote {
  font-style: italic;
  font-size: 1.2rem;
  max-width: 700px;
  margin: auto;
  color: #444;
  line-height: 1.6;
}

/* =========================
   GALERIA
========================= */
.galeria-bairro {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.galeria-bairro .foto {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.15);
}

.galeria-bairro img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.galeria-bairro .foto:hover img {
  transform: scale(1.08);
}

.galeria-bairro span {
  position: absolute;
  inset: auto 0 0 0;
  background: rgba(0,0,0,0.55);
  color: #fff;
  padding: 10px;
  font-size: 0.9rem;
}

/* =========================
   PARTICIPE
========================= */
.participe {
  background: #fff7ed;
  text-align: center;
  padding: 70px 20px;
  border-radius: 20px;
  margin: 60px 0;
}

.participe h2 {
  margin-bottom: 12px;
}

.participe p {
  max-width: 600px;
  margin: 0 auto 25px;
  line-height: 1.6;
}

.btn-orgulho {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 30px;
  background: #fb923c;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.btn-orgulho:hover {
  background: #f97316;
  transform: translateY(-2px);
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 768px) {
  .destaque-mes {
    flex-direction: column;
    text-align: center;
  }

  .destaque-mes img {
    width: 100%;
    height: 220px;
  }
}
/* =========================
   LIGHTBOX
========================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 999;
}

.lightbox img {
  max-width: 90%;
  max-height: 70vh;
  border-radius: 14px;
}

.lightbox p {
  color: #fff;
  margin-top: 12px;
}

.lightbox .fechar {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}
/* =========================
   DARK MODE (DESKTOP ONLY)
========================= */
@media (min-width: 1024px) {

  body {
    background: #0f0f0f;
    color: #e5e5e5;
  }

  /* HERO */
  .orgulho-hero {
    background: linear-gradient(135deg, #1c0f05, #2a1407);
  }

  .orgulho-hero p {
    color: #f5f5f5;
  }

  /* CONTAINERS */
  main.container {
    background: transparent;
  }

  /* CARDS / SEÇÕES */
  .destaque-mes,
  .orgulho-card,
  .participe,
  .galeria-bairro .foto {
    background: #1a1a1a;
    box-shadow: 0 14px 35px rgba(0,0,0,0.6);
  }

  /* TEXTOS */
  h1, h2, h3 {
    color: #f5f5f5;
  }

  p {
    color: #d4d4d4;
  }

  /* BADGE */
  .badge-orgulho {
    background: #78350f;
    color: #fde68a;
  }

  /* GALERIA */
  .galeria-bairro span {
    background: rgba(0,0,0,0.7);
  }

  /* DEPOIMENTOS */
  .depoimentos blockquote {
    color: #e7e7e7;
  }

  /* BOTÃO ORGULHO */
  .btn-orgulho {
    background: #f59e0b;
    color: #1a1a1a;
  }

  .btn-orgulho:hover {
    background: #fbbf24;
  }
}
