:root { --gold: #b8935f; --text: #2c2c2c; --bg: #faf7f2; }
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  background: var(--bg);
  color: var(--text);
  text-align: center;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 20px 60px 20px;
}
.hero h1 {
  font-size: 2.6em;
  font-weight: normal;
  letter-spacing: 2px;
  margin: 0 0 10px 0;
}
.amp { color: var(--gold); font-style: italic; }
.eyebrow { font-size: 1.1em; letter-spacing: 4px; text-transform: uppercase; color: #777; margin: 0; }
.divider { width: 60px; height: 2px; background: var(--gold); margin: 20px auto 32px auto; }

/* Carrusel centrado, tipo marco de foto */
.carousel {
  position: relative;
  width: min(94vw, 820px);
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  margin: 0 auto 36px auto;
  background: #e9e4db;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(20, 16, 12, 0.25);
}
.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}
.carousel-slide img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  transform: scale(1.04);
  transition: transform 6.5s ease-out;
}
.carousel-slide.active img {
  transform: scale(1.14);
}

/* Aviso de construcción */
.construction-badge {
  display: inline-block;
  background: var(--gold);
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  font-family: -apple-system, sans-serif;
  font-size: 0.85em;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 16px;
}
.construction-msg {
  max-width: 480px;
  font-family: -apple-system, sans-serif;
  font-size: 0.95em;
  color: #666;
  line-height: 1.6;
  margin: 0 0 30px 0;
}
.domain { margin: 0; font-size: 1em; letter-spacing: 3px; text-transform: uppercase; color: #999; }
