/* ============================================================
   v3 — camada de fotos (complementa styles-v2.css)
   ============================================================ */

/* ---------- HERO com foto de fundo ---------- */
.hero--photo {
  background: var(--ink);
  color: #fff;
  padding-block: 96px 84px;
}
.hero--photo::after { display: none; }
.hero--photo::before { display: none; }
.hero__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero__photo.is-loaded { opacity: 1; }
.hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16,15,15,.62) 0%, rgba(16,15,15,.55) 45%, rgba(16,15,15,.86) 100%),
    linear-gradient(90deg, rgba(16,15,15,.55), rgba(16,15,15,0) 70%);
}
.hero--photo .hero__inner { position: relative; z-index: 2; }
.hero--photo .kicker { color: #E2B7B1; }
.hero--photo .kicker::before { background: #E2B7B1; }
.hero--photo h1 { color: #fff; }
.hero--photo h1 .accent { color: #E0695E; }
.hero--photo h1 .accent::after { background: #E0695E; }
.hero--photo .hero__lead { color: #D4D0CD; }
.hero--photo .hero__proof { color: #B8B3AF; }
.hero--photo .hero__proof b { color: #fff; }
.hero--photo .btn--ghost { color: #fff; border-color: rgba(255,255,255,.45); }
.hero--photo .btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
@media (min-width: 700px) {
  .hero--photo { padding-block: 130px 110px; }
}

/* ---------- SOBRE com foto ---------- */
.about__layout { display: grid; gap: 36px; }
.about__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--paper-2);
}
.about__media .ph {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform .6s ease, opacity .8s ease;
  opacity: 0;
}
.about__media .ph.is-loaded { opacity: 1; }
.about__media:hover .ph { transform: scale(1.07); }
.about__badge {
  position: absolute;
  left: 16px; bottom: 16px;
  z-index: 2;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(4px);
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
}
.about__badge b {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  color: var(--red);
}
.about__badge span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.about__col h2 { font-size: clamp(26px, 6.4vw, 38px); margin-top: 14px; }
.about__col > p { margin-top: 14px; color: var(--muted); max-width: 50ch; }
.about__points { margin-top: 22px; display: grid; gap: 12px; }
.about__points li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 15.5px;
  color: var(--ink-soft);
}
.about__points li::before {
  content: "";
  flex: none;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  transform: translateY(-2px);
}
@media (min-width: 900px) {
  .about__layout { grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
}

/* ---------- QUEM ATENDEMOS com fotos ---------- */
.audience--photo { grid-template-columns: 1fr 1fr; }
.aud-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 3.6;
  background: var(--ink);
}
.aud-photo .ph {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .55s ease, opacity .8s ease;
  opacity: 0;
}
.aud-photo .ph.is-loaded { opacity: 1; }
.aud-photo:hover .ph { transform: scale(1.06); }
.aud-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,15,15,.04) 40%, rgba(16,15,15,.84) 100%);
}
.aud-photo__label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 18px;
  color: #fff;
}
.aud-photo__label::before {
  content: "";
  display: block;
  width: 28px; height: 2px;
  background: #E0695E;
  margin-bottom: 10px;
  transition: width .3s ease;
}
.aud-photo:hover .aud-photo__label::before { width: 44px; }
.aud-photo__label h3 { font-size: 19px; color: #fff; }
.aud-photo__label p {
  margin-top: 4px;
  font-size: 13px;
  color: #CDC8C4;
}
@media (min-width: 860px) {
  .audience--photo { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}

/* ---------- FAIXA CTA com foto fixa (parallax) ---------- */
.band {
  position: relative;
  color: #fff;
  overflow: hidden;
  padding-block: 84px;
  background: var(--ink);
}
.band__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0;
  transition: opacity 1s ease;
}
.band__photo.is-loaded { opacity: 1; }
.band__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,15,15,.78), rgba(16,15,15,.66));
}
@supports (-webkit-touch-callout: none) {
  .band__photo { background-attachment: scroll; }
}
.band__inner { position: relative; z-index: 2; text-align: center; max-width: 620px; margin-inline: auto; }
.band h2 { color: #fff; font-size: clamp(28px, 7vw, 44px); }
.band p { margin-top: 14px; color: #D4D0CD; font-size: 17px; }
.band__btns {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
@media (min-width: 620px) {
  .band__btns { flex-direction: row; justify-content: center; }
  .band { padding-block: 110px; }
}

/* ---------- Fallback de foto ---------- */
.ph.ph-fallback, .hero__photo.ph-fallback, .band__photo.ph-fallback {
  opacity: 1;
  background-image: linear-gradient(135deg, #262422, #141312) !important;
}
