/* =========================
   PROVA SOCIAL — EXPERIENCE MURAL
========================= */

.experience-mural {
  position: relative;
  padding: 120px 24px;
  background:
    radial-gradient(
      circle at top,
      rgba(0,191,98,0.06),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      var(--bg-main),
      var(--bg-section)
    );
  color: var(--text-main);
  overflow: hidden;
}

/* Glow sutil */
.experience-mural::before {
  content: '';
  position: absolute;
  top: -220px;
  left: -240px;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(0,191,98,0.12),
    rgba(0,191,98,0.04),
    transparent 70%
  );
  filter: blur(90px);
  pointer-events: none;
}

.experience-mural > * {
  position: relative;
  z-index: 1;
}

/* =========================
   CONTAINER / HEADER
========================= */

.experience-mural .container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.experience-mural h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.experience-mural h2::after {
  content: '';
  display: block;
  width: 64px;
  height: 3px;
  margin: 16px auto 0;
  background: linear-gradient(135deg, #00BF62, #7CFFB6);
  border-radius: 2px;
}

.experience-mural .subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 64px;
  line-height: 1.6;
}

/* =========================
   MURAL GRID
========================= */

.mural-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  justify-content: center;
  gap: 28px;
  margin-bottom: 72px;
}

/* =========================
   ITEM
========================= */

.mural-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;

  background: rgba(17, 24, 39, 0.85);
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.06);

  box-shadow:
    0 22px 50px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,0.04);

  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

/* REMOVIDO overlay verde sobre a imagem */
.mural-item::before {
  display: none;
}

.mural-item:hover {
  transform: translateY(-8px);
  border-color: rgba(0,191,98,0.35);
  box-shadow:
    0 30px 65px rgba(0,0,0,.55),
    0 12px 40px rgba(0,191,98,0.18);
}

.mural-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}



/* ===============================
   MURAL 4:5 — IMAGENS VERTICAIS
   (ISOLADO — NÃO AFETA AS OUTRAS)
================================ */

/* ===============================
   MURAL 4:5 AJUSTADO
================================ */

/* ===============================
   MURAL 4:5 — LADO A LADO
================================ */

.mural-45 {
  aspect-ratio: 4 / 5; 
  width: 100%;        /* ocupa toda a coluna do grid */
  max-width: 100%;    /* impede limitar largura */
  margin: 0;          /* remove centralização */
}

.mural-45 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}




/* =========================
   BOTÃO CTA — GLOBAL
========================= */

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 18px 42px;
  font-size: 1.05rem;
  font-weight: 700;

  border-radius: 999px;
  text-decoration: none;

  border: none;
  background: none;

  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;

  background: linear-gradient(
    135deg,
    var(--brand),
    var(--brand-dark)
  );

  color: #03140B;

  box-shadow: var(--shadow-brand);
  transition: all 0.25s ease;

  position: relative;
  z-index: 2;
}

.cta-button:hover,
.cta-button:focus,
.cta-button:active {
  transform: translateY(-2px);
  box-shadow: 0 18px 55px rgba(0,191,98,0.45);
  color: #03140B;
  text-decoration: none;
  outline: none;
}


/* =========================
   RESPONSIVO
========================= */

@media (max-width: 1024px) {
  .experience-mural {
    padding: 100px 20px;
  }

  .mural-grid {
    grid-template-columns: repeat(2, minmax(0, 360px));
    gap: 22px;
  }
}

@media (max-width: 768px) {
  .mural-grid {
    grid-template-columns: 1fr;
  }

  .experience-mural h2 {
    font-size: 2.1rem;
  }

  .experience-mural .subtitle {
    font-size: 1rem;
    margin-bottom: 48px;
  }
}
