.hero {
  width: 100%;
  height: calc(100vh - 72px);
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left bottom;
  display: block;
}

@media (max-width: 768px) {
  .hero {
    height: 70vh;
  }
}

/* ── CATEGORIAS ── */
.categorias {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.cat-block {
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cat-laranja  { background: #f89b30; }
.cat-vermelho { background: #761011; }

.cat-icon {
  color: rgba(255,255,255,0.85);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-block h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
}

.cat-block p,
.cat-block ul {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  margin: 0;
}

.cat-block ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cat-block ul li::before {
  content: "→ ";
  color: rgba(255,255,255,0.5);
  font-size: 11px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .categorias { grid-template-columns: repeat(2, 1fr); }
}

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



/* ── INTRODUÇÃO ── */
.introducao {
  background: var(--light);
  padding: 64px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.introducao p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 12px;
  max-width: 820px;
}

.introducao .btn-laranja {
  margin-top: 16px;
}

/* ── CARACTERÍSTICAS ── */
.caracteristicas {
  background: var(--bg-light);
  padding: 72px 0;
}

.car-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 0;
  position: relative;
}

.car-conteudo {
  background: var(--white);
  border-radius: 16px;
  padding: 52px 64px 52px 52px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
  margin-right: -40px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.07);
}

.car-imagem {
  border-radius: 12px;
  overflow: hidden;
  height: 420px;
}

.car-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.car-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin: 0;
}

.car-conteudo h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 600;
  color: var(--olive-dark);
  margin: 0;
}

.car-conteudo p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
  margin: 0;
}

/* Botão laranja partilhado */
.btn-laranja {
  display: inline-block;
  padding: 12px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: #f89b30;
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: all 0.22s;
  text-decoration: none;
  align-self: flex-start;
  border-radius: 2px;  border-radius: 50px;

}



.btn-laranja:hover {
  background: #d97e18;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .car-wrap {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .car-conteudo {
    margin-right: 0;
    margin-bottom: -32px;
    padding: 36px 28px;
    border-radius: 16px;
    z-index: 2;
  }

  .car-imagem {
    height: 260px;
    border-radius: 12px;
  }
}

.carrossel-section {
  background: var(--bg-light);
  padding: 48px 0;
}

.carrossel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  margin: 0 auto;
  overflow: hidden;
}

.carrossel-track {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carrossel-slide {
  flex-shrink: 0;
  width: 340px;
  height: 240px;
  border-radius: 8px;
  overflow: hidden;
  opacity: 0.45;
  transition: opacity 0.5s ease;
}

.carrossel-slide.active {
  opacity: 1;
}

.carrossel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carrossel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  color: var(--olive);
  font-size: 40px;
  cursor: pointer;
  padding: 0 8px;
  transition: color 0.2s;
  line-height: 1;
}

.carrossel-btn:hover { color: var(--olive-dark); }
.carrossel-prev { left: 12px; }
.carrossel-next { right: 12px; }

@media (max-width: 768px) {
  .carrossel-slide { width: 260px; height: 180px; }
}


.localizacao {
  background: var(--white);
}
.localizacao + .carrossel-section {
  background: var(--white);
}

@media (max-width: 768px) {
  .carrossel-btn {
    display: flex;
    font-size: 32px;
    padding: 0 4px;
  }
  .carrossel-prev { left: 4px; }
  .carrossel-next { right: 4px; }
}

.carrossel-slide {
  cursor: pointer;
}


/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 16px;
}

.lightbox.open { display: flex; }

.lightbox-img-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 80vw;
}

.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 28px;
  cursor: pointer;
  z-index: 1001;
  line-height: 1;
}
.lightbox-close:hover { color: var(--white); }

.lightbox-prev,
.lightbox-next {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 56px;
  cursor: pointer;
  line-height: 1;
  padding: 0 8px;
  flex-shrink: 0;
}
.lightbox-prev:hover,
.lightbox-next:hover { color: var(--white); }

@media (max-width: 768px) {
  .carrossel-wrapper { width: 100%; }
  .carrossel-slide   { width: 75vw; height: 52vw; }
  .carrossel-btn     { display: flex; font-size: 32px; padding: 0 4px; }
  .carrossel-prev    { left: 4px; }
  .carrossel-next    { right: 4px; }

  .lightbox          { gap: 4px; padding: 0 4px; }
  .lightbox-close    { top: 12px; right: 12px; font-size: 22px; }
  .lightbox-prev,
  .lightbox-next     { font-size: 32px; padding: 0 2px; }
  .lightbox-img-wrap { max-width: 100%; }
  .lightbox-img-wrap img { max-width: 90vw; max-height: 72vh; }
}