/* ============================================
   INDEX — Estilos específicos de homepage
   Depende de style.css
   ============================================ */

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
  position: relative;
}
.hero-left {
  padding: 5rem 3rem 5rem 3rem;
  position: relative;
  z-index: 2;
}
.hero-right {
  position: relative;
  height: 100vh;
}
.hero-bg {
  position: absolute; inset: 0;
  background-color: var(--cream);
  background-image: radial-gradient(circle, #C0B49E 1px, transparent 1px);
  background-size: 22px 22px;
}
.hero-img-main {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-60%, -50%);
  width: 78%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-hover);
}
.hero-card-float {
  position: absolute;
  bottom: 18%; right: 6%;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-float);
  padding: 1.125rem 1.375rem;
  display: flex; align-items: center; gap: 1rem;
  z-index: 3;
  min-width: 220px;
}
.hero-card-float-icon {
  width: 44px; height: 44px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.125rem;
  flex-shrink: 0;
}
.hero-rating-float {
  position: absolute;
  top: 22%; right: 5%;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-float);
  z-index: 3;
  text-align: center;
  min-width: 110px;
}
.hero-rating-float .rating-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700; line-height: 1;
}
.hero-rating-float .rating-stars { color: var(--gold-lt); font-size: 0.7rem; margin: 0.25rem 0; }
.hero-rating-float .rating-label { font-size: 0.7rem; color: rgba(247,245,240,0.65); }
.hero-title { margin-bottom: 1.25rem; }
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub { margin-bottom: 2.5rem; max-width: 420px; }
.hero-actions { display: flex; gap: 1rem; align-items: center; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 3rem;
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.75rem; color: var(--muted);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.hero-scroll-line { width: 40px; height: 1px; background: var(--muted); }

/* ── BOOKING BAR ── */
.booking-bar {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-float);
  padding: 1.75rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 1rem;
  align-items: end;
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}
.booking-bar-field label {
  display: block;
  font-size: 0.75rem; font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.booking-bar-field .val { font-size: 1rem; font-weight: 500; color: var(--ink); }
.booking-bar-field .sub { font-size: 0.8125rem; color: var(--muted); }
.booking-bar-field {
  padding: 0 1.5rem 0 0;
  border-right: 1px solid var(--border);
  cursor: pointer;
}
.booking-bar-field:last-of-type { border-right: none; }

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 2rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-float); }
.feature-icon {
  width: 52px; height: 52px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}
.feature-card h3 { font-size: 1.125rem; margin-bottom: 0.625rem; }
.feature-card p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.65; }

/* ── ROOMS PREVIEW ── */
.rooms-scroll { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-float); }
.room-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.room-card-body { padding: 1.5rem; }
.room-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.75rem; }
.room-price { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; }
.room-price span { font-family: var(--font-body); font-size: 0.8rem; font-weight: 400; color: var(--muted); }
.room-amenities { display: flex; gap: 1rem; margin-top: 1rem; flex-wrap: wrap; }

/* ── EXPERIENCE ── */
.exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.exp-images { position: relative; height: 540px; }
.exp-img-1 {
  position: absolute; top: 0; left: 0;
  width: 65%; height: 78%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
}
.exp-img-2 {
  position: absolute; bottom: 0; right: 0;
  width: 58%; height: 62%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
}
.exp-pill {
  position: absolute; top: 50%; left: 54%;
  transform: translate(-50%, -50%);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-float);
  padding: 1rem 1.375rem;
  z-index: 3; min-width: 150px; text-align: center;
}

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 2rem;
  transition: transform 0.25s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-float); }
.testi-stars { color: var(--gold); font-size: 0.875rem; margin-bottom: 1rem; }
.testi-text { font-size: 0.9375rem; color: var(--ink-soft); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cream-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem; color: var(--gold); font-weight: 600;
}
.testi-name { font-weight: 500; font-size: 0.9rem; }
.testi-origin { font-size: 0.8rem; color: var(--muted); }
