/* Layout base */
.cdc-main { margin-top: 30px; margin-bottom: 60px; }
.cdc-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; }
.cdc-col--aside { position: sticky; top: 90px; align-self: start; }
@media (max-width: 991px){ .cdc-grid { grid-template-columns: 1fr; } .cdc-col--aside { position: static; } }

/* Hero Parallax */
.cdc-hero {
  position: relative;
  min-height: 58vh;
  background-image: var(--cdc-hero);
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* parallax puro e leve */
  display: grid;
  align-items: end;
  color: #fff;
}
@media (max-width: 1024px){
  .cdc-hero { background-attachment: scroll; } /* mobile fallback */
}
.cdc-hero__shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.55) 60%, rgba(0,0,0,.75) 100%);
}
.cdc-hero__content { position: relative; padding: 48px 0; }
.cdc-hero__title { font-size: clamp(28px, 4vw, 46px); margin: 0 0 6px; font-weight: 800; }
.cdc-hero__subtitle { font-size: clamp(16px, 1.6vw, 22px); margin: 0 0 20px; opacity: .95; }
.cdc-hero__pill {
  display: inline-flex; gap: 14px; align-items: center;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25);
  padding: 10px 14px; border-radius: 999px; backdrop-filter: blur(6px);
}
.cdc-pill__label { font-size: 13px; opacity: .9; }
.cdc-pill__price { font-size: 20px; font-weight: 800; }
.cdc-btn { display: inline-block; padding: 10px 14px; border-radius: 10px; text-decoration: none; font-weight: 700; }
.cdc-btn--gold { background: #f1c40f; color: #1a1a1a; }
.cdc-btn--ghost { border: 1px solid #e6e6e6; color: #1a1a1a; background: #fff; }

/* Cards */
.cdc-card { background: #fff; border: 1px solid #eee; border-radius: 16px; box-shadow: 0 6px 28px rgba(0,0,0,.06); padding: 18px; }
.cdc-card__title { font-size: 20px; font-weight: 800; margin: 4px 0 14px; }

/* Datas */
.cdc-dates { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.cdc-date { display: flex; justify-content: space-between; align-items: center; border: 1px dashed #eee; padding: 10px 12px; border-radius: 12px; }
.cdc-date__when { font-weight: 700; }

/* Mapa */
.cdc-map { width: 100%; height: auto; border-radius: 12px; }

/* Galeria leve, sem slider */
.cdc-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; 
}
@media (max-width: 600px){ .cdc-gallery { grid-template-columns: repeat(2, 1fr); } }
.cdc-gallery__item { display: block; border-radius: 12px; overflow: hidden; }
.cdc-gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Relacionados */
.cdc-related { display: grid; gap: 12px; }
.cdc-related__item { display: grid; grid-template-columns: 88px 1fr; gap: 12px; text-decoration: none; color: #222; border: 1px solid #eee; border-radius: 14px; padding: 10px; background: #fff; }
.cdc-related__thumb { width: 88px; height: 68px; border-radius: 10px; background-size: cover; background-position: center; }
.cdc-related__title { font-size: 14px; font-weight: 700; line-height: 1.25; }
.cdc-related__meta { font-size: 12px; color: #666; margin-top: 4px; }
