:root {
  --bg: #000;
  --bg-2: #57463a;
  --gold: #b28a57;
  --text: #f2ede6;
  --muted: #cfc7bc;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #1f1f1f;
  background: #fff;
}

.navbar {
  background: linear-gradient(90deg, var(--bg), var(--bg-2));
}

.navbar .nav-link,
.navbar .navbar-brand {
  color: var(--text) !important;
}

.navbar .nav-link:hover {
  color: #fff !important;
  opacity: .95;
}

.btn-gold {
  background: var(--gold);
  border: none;
  color: #fff;
}

.btn-gold:hover {
  filter: brightness(.95);
  color: #fff;
}

.hero {
  background: linear-gradient(120deg, var(--bg), #1f1c1a);
  color: var(--text);
  padding: 56px 0;
}

.hero p {
  color: var(--muted);
}

.section-title {
  font-weight: 800;
  letter-spacing: .2px;
}

.badge-gold {
  background: rgba(178, 138, 87, .15);
  color: #6a4b27;
  border: 1px solid rgba(178, 138, 87, .25);
}

.card-soft {
  border: 1px solid #eee;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
}

.footer {
  background: #111;
  color: #cfcfcf;
  padding: 30px 0;
}

.footer a {
  color: #d9d9d9;
}

.page-head {
  background: #f7f4f1;
  border-bottom: 1px solid #eee;
  padding: 28px 0;
}

.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

.small-muted {
  color: #6b6b6b;
  font-size: .95rem;
}

.carousel-caption {
  background: rgba(0, 0, 0, .45);
  border-radius: 14px;
  padding: 14px 18px;
}

/* Ajuste do carousel da home */
#homeCarousel .carousel-item {
  height: 620px;
  /* altura padrão desktop */
}

#homeCarousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* corta sem distorcer */
  object-position: center;
  /* centraliza */
}

/* Responsivo */
@media (max-width: 768px) {
  #homeCarousel .carousel-item {
    height: 320px;
  }
}

#homeCarousel .carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, .55),
      rgba(0, 0, 0, .15));
}

/* Wrapper centralizado do slider */
.carousel-wrapper {
  max-width: 1300px;
  /* controla largura */
  width: 100%;
}

/* Altura padrão do slide */
#homeCarousel .carousel-item {
  height: 420px;
  position: relative;
}

/* Imagem ajustada */
#homeCarousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
}

/* Responsivo */
@media (max-width: 768px) {
  #homeCarousel .carousel-item {
    height: 260px;
  }
}

/* ===== SLIDE VÍDEO FULL ===== */
.video-section {
  position: relative;
  width: 100%;
  height: 720px;
  overflow: hidden;
  background: #000;
}

.video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay de texto */
.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(to right,
      rgba(0, 0, 0, .65),
      rgba(0, 0, 0, .15));
  color: #fff;
}

.video-overlay h2 {
  font-size: 2rem;
}

.video-overlay p {
  max-width: 520px;
  opacity: .95;
}

/* Responsivo */
@media (max-width: 768px) {
  .video-section {
    height: 300px;
  }

  .video-overlay h2 {
    font-size: 1.5rem;
  }
}

footer img {
  transition: 0.3s;
}
footer img:hover {
  transform: scale(1.08);
}