/* ===== BASE ===== */
body {
  margin: 0;
  font-family: "Lora", serif;
  color: #111;
  background: #fff;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 1.5rem;
}

.icon-propis {
  display: block;
  width: 3rem;
  height: auto;
  margin: 0 auto;
}

/* ===== HERO ===== */
.explore-hero {
  background: radial-gradient(ellipse at top, #111 0%, #000 70%);
  color: #fff;
  padding: 6rem 0 5rem;
  text-align: center;
}

.eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: #c5aa6a;
}

.explore-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 1.5rem 0;
}

.hero-text {
  max-width: 600px;
  margin: auto;
  opacity: 0.85;
  font-size: 1.05rem;
}

/* ===== CTA ===== */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #c5aa6a, #e6cf8b);
  color: #000;
  padding: 0.9rem 2.2rem;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: 40px;
  text-decoration: none;
}

/* ===== PREVIEW ===== */
.explore-preview {
  padding: 5rem 0;
  background: #f7f7f7;
  text-align: center;
}

.section-text {
  max-width: 700px;
  margin: 1rem auto 3rem;
  color: #444;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

.preview-card {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.preview-placeholder {
  /* Contenedor en proporción 9:16 */
  aspect-ratio: 9 / 16;
  max-height: 500px;
  width: auto;

  /* Fondo para las áreas que no ocupe la imagen */
  background: linear-gradient(135deg, #1a1a2e, #16213e);

  border-radius: 24px;
  margin: 0 auto 1.5rem auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex; /* Para centrar la imagen */
  align-items: center;
  justify-content: center;
}

.preview-placeholder img {
  /* Muestra la imagen completa sin recortar */
  object-fit: contain; /* ¡IMPORTANTE! Muestra toda la imagen */

  /* Ajusta al tamaño disponible manteniendo relación de aspecto */
  max-width: 100%;
  max-height: 100%;

  /* Centra la imagen */
  display: block;
  position: relative;
  z-index: 1;

  /* Si quieres que conserve sus bordes redondeados */
  border-radius: 12px;
}
/* ===== CTA FINAL ===== */
.explore-cta {
  background: #0c0c0c;
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}

/* ===== FOOTER ===== */
.explore-footer {
  background: #000;
  color: #777;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.85rem;
}
