/* =========================================================
   PÁGINAS DE PROJETO
   ========================================================= */

.project-hero {
  padding: 150px 0 70px;
  background: linear-gradient(180deg, #0c1f47 0%, #132c63 100%);
  color: #fff;
}

.project-hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.project-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.project-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 18px;
  color: #fff;
}

.project-hero p {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 700px;
}

.project-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn-primary {
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
  color: #0a1630;
  box-shadow: 0 12px 28px rgba(243, 198, 35, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(243, 198, 35, 0.28);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}

.project-hero-image img {
  width: 100%;
  display: block;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.22);
}

.project-section {
  padding: 78px 0;
}

.project-section.alt {
  background: #f5f7fb;
}

.project-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 24px;
  color: var(--navy);
}

.project-section p {
  max-width: 950px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.project-list,
.results-list {
  margin: 0;
  padding-left: 24px;
}

.project-list li,
.results-list li {
  margin-bottom: 14px;
  color: var(--navy);
  line-height: 1.7;
  font-size: 1.04rem;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.kpi-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(10, 22, 48, 0.08);
  border: 1px solid rgba(10, 22, 48, 0.05);
}

.kpi-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.2rem;
}

.kpi-card p {
  margin: 0;
  font-size: 1rem;
}

.project-gallery {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  overflow: hidden;
  background: #dce5f3;
  box-shadow: 0 25px 55px rgba(10, 22, 48, 0.12);
}

.project-gallery .carousel-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.project-gallery .carousel-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.project-gallery .carousel-image.active {
  opacity: 1;
}

.project-cta {
  padding: 90px 0;
  text-align: center;
  background: linear-gradient(180deg, #0c1f47 0%, #132c63 100%);
  color: #fff;
}

.project-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
  color: #fff;
}

.project-cta p {
  max-width: 760px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.06rem;
  line-height: 1.8;
}

@media (max-width: 980px) {
  .project-hero {
    padding: 130px 0 60px;
  }

  .project-hero-content {
    grid-template-columns: 1fr;
  }

  .kpi-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .project-section {
    padding: 58px 0;
  }

  .project-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}
