/* ── vila.css — CSS compartilhado pelas 4 Vilas Temáticas ── */

/* SPLIT SECTION */
.split-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }

/* MOSAIC */
.mosaic-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.mosaic-4 img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.mosaic-4 img.wide { grid-column: 1/-1; aspect-ratio: 16/7; }

/* THEMED DARK BLOCK */
.theme-block { background: var(--claret); }
.theme-block-alt { background: var(--charcoal); }
.theme-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.theme-flag { font-size: 5rem; margin-bottom: 1rem; display: block; }
.theme-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }

/* INTRO BADGES */
.intro-badges { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 2rem; }

/* FULL WIDTH IMAGE SECTION */
.full-img-sec { background: var(--charcoal); overflow: hidden; height: 55vh; min-height: 360px; position: relative; }
.full-img-sec img { width: 100%; height: 100%; object-fit: cover; opacity: .65; }
.full-img-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(20,5,10,.8) 0%, transparent 60%); display: flex; align-items: center; padding: 0 4rem; }
.full-img-text { max-width: 480px; }
.full-img-text h3 { font-family: var(--serif); font-size: clamp(2rem,4vw,3rem); font-weight: 900; color: var(--cream); line-height: 1.1; }
.full-img-text h3 em { font-style: italic; font-weight: 400; color: var(--gold-lt); }
.full-img-text p { font-size: .88rem; color: rgba(247,243,236,.55); margin-top: 1rem; line-height: 1.8; }

/* ALPINE / ICONS BANNER */
.icon-banner { background: var(--sand); padding: 3.5rem 4rem; text-align: center; }
.icon-banner-inner { max-width: 900px; margin: 0 auto; }
.icon-row { display: flex; justify-content: center; gap: 3.5rem; flex-wrap: wrap; margin-top: 2.5rem; }
.icon-item { text-align: center; }
.icon-emoji { font-size: 2.5rem; display: block; margin-bottom: .6rem; }
.icon-label { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted); }

/* FRENCH WORDS BANNER */
.words-banner { background: var(--cream); padding: 3.5rem 4rem; text-align: center; border-top: 1px solid rgba(201,165,90,.2); border-bottom: 1px solid rgba(201,165,90,.2); }
.words-row { display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap; margin-top: 1.5rem; }
.word-item { text-align: center; }
.word-fr { font-family: var(--serif); font-size: 1.8rem; font-style: italic; color: var(--claret); line-height: 1; }
.word-pt { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted); margin-top: .4rem; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .split-inner, .theme-inner { grid-template-columns: 1fr; gap: 3rem; }
  .full-img-overlay { padding: 0 1.5rem; }
  .icon-banner, .words-banner { padding: 3rem 1.5rem; }
  .icon-row, .words-row { gap: 2rem; }
}

/* GRID DE ACOMODAÇÕES DAS VILAS */
.vila-rooms-grid {
  max-width: 1200px;
  margin: 4rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.vila-room-card {
  background: var(--ivory);
  border: 1px solid rgba(201, 165, 90, 0.15);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.vila-room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(61, 12, 31, 0.06);
  border-color: var(--gold);
}

/* MINI CARROSSEL DENTRO DO CARD */
.card-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.card-carousel-slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}
.card-carousel-slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  cursor: pointer;
}
.card-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(61, 12, 31, 0.6);
  border: 1px solid rgba(201, 165, 90, 0.3);
  color: var(--cream);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 10;
  opacity: 0;
}
.card-carousel:hover .card-carousel-btn {
  opacity: 1;
}
.card-carousel-btn:hover {
  background: var(--gold);
  color: var(--claret);
}
.card-carousel-btn.prev {
  left: 0.5rem;
}
.card-carousel-btn.next {
  right: 0.5rem;
}
.card-carousel-dots {
  position: absolute;
  bottom: 0.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 10;
}
.card-carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(247, 243, 236, 0.4);
  cursor: pointer;
  transition: all 0.2s;
}
.card-carousel-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

.vila-room-info {
  padding: 2rem;
}
.vila-room-cat {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.vila-room-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--claret);
  margin-bottom: 1rem;
}
.vila-room-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.vila-room-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.8rem;
}
.vila-room-feats {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 2rem;
}
.vila-room-feat {
  font-size: 0.8rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.vila-room-feat::before {
  content: '—';
  color: var(--gold);
}

