/* ============================================================
   XPLORA — alquileres.css
   Estilos específicos para la página de alquileres temporarios
   ============================================================ */

/* ── Hero ── */
.alq-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.alq-hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets/form.png') center/cover no-repeat;
}

.alq-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,14,8,.88) 0%, rgba(45,35,20,.7) 100%);
}

.alq-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  padding-bottom: 4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.alq-eyebrow {
  color: var(--terra-2) !important;
  margin-bottom: 1rem;
}

.alq-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.alq-hero-sub {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,.8);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.alq-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--ff-display);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 999px;
  padding: .9rem 2rem;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.btn-ghost-light:hover {
  border-color: #fff;
  background: rgba(255,255,255,.08);
}

.alq-hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
}

.alq-hero-scroll span {
  font-family: var(--ff-body);
  font-size: .65rem;
  letter-spacing: .25em;
  color: rgba(255,255,255,.5);
}

.alq-hero-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: lineDown 1.6s ease-in-out infinite;
}

@keyframes lineDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Stats ── */
.alq-stats {
  background: var(--navy);
  padding: 3rem 0;
}

.alq-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.alq-stat {
  flex: 1;
  text-align: center;
  padding: 1rem 2rem;
}

.alq-stat-num {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--terra-2);
}

.alq-stat-suf {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--terra-2);
}

.alq-stat-label {
  font-family: var(--ff-body);
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin-top: .3rem;
  letter-spacing: .04em;
}

.alq-stat-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

/* ── Beneficios ── */
.alq-beneficios {
  position: relative;
  background: var(--bg);
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.alq-ben-mesh {
  position: absolute;
  inset: -20% -10%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 20% 30%, rgba(196,96,58,.22) 0%, transparent 60%),
    radial-gradient(ellipse 60% 45% at 80% 70%, rgba(122,138,80,.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 55% 10%, rgba(196,96,58,.12) 0%, transparent 55%);
  filter: blur(60px);
  animation: meshDrift 18s ease-in-out infinite alternate;
  will-change: transform;
}

.alq-ben-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .035;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}

.alq-ben-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.alq-ben-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,200,150,.15);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform .25s, box-shadow .25s;
}

.alq-ben-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.09);
}

.alq-ben-icon {
  width: 44px;
  height: 44px;
  color: var(--terra);
}

.alq-ben-icon svg { width: 100%; height: 100%; }

.alq-ben-card h3 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: #F2E8D9;
}

.alq-ben-card p {
  font-family: var(--ff-body);
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
}

/* ── Proceso ── */
.alq-proceso {
  background: #F2E8D9;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.alq-proceso-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.alq-proceso-img-col { }

.alq-proceso-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.alq-proceso-content-col { }

@media (max-width: 767px) {
  .alq-proceso-layout { grid-template-columns: 1fr; }
  .alq-proceso-img-col { display: none; }
}

.alq-pasos {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.alq-paso {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(0,0,0,.1);
}

.alq-paso:last-child { border-bottom: none; }

.alq-paso-num {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--terra-2);
  opacity: .4;
  line-height: 1;
}

.alq-paso-content h3 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--terra-3);
  margin-bottom: .5rem;
}

.alq-paso-content p {
  font-family: var(--ff-body);
  font-size: .95rem;
  color: #1a1a1a;
  line-height: 1.7;
  max-width: 600px;
}

/* ── Propiedades ── */
.alq-props {
  background: #2a1f15;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.alq-props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.alq-prop-card {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  transition: transform .25s, box-shadow .25s;
}

.alq-prop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}

.alq-prop-img {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.alq-prop-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.alq-prop-tag {
  font-family: var(--ff-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--terra);
}

.alq-prop-info h3 {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}

.alq-prop-info p {
  font-family: var(--ff-body);
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
}

/* ── Contacto ── */
.alq-contacto {
  background: #1a1a1a;
  color: #fff;
}

.alq-contacto-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.alq-contacto-img {
  background-size: cover;
  background-position: center;
}

.alq-contacto-form-col {
  padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.alq-contacto-title {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: .5rem;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .alq-ben-grid { grid-template-columns: 1fr 1fr; }
  .alq-props-grid { grid-template-columns: 1fr 1fr; }
  .alq-contacto-layout { grid-template-columns: 1fr; }
  .alq-contacto-img { min-height: 280px; }
  .alq-stats-inner { flex-wrap: wrap; }
  .alq-stat-line { display: none; }
}

@media (max-width: 600px) {
  .alq-ben-grid { grid-template-columns: 1fr; }
  .alq-props-grid { grid-template-columns: 1fr; }
  .alq-paso { grid-template-columns: 50px 1fr; gap: 1rem; }
}

/* ── Testimonios ── */
.testimonios { background: #2a1f15; padding: clamp(2.5rem,4vw,4rem) 0; }
.testimonios .section-title { font-size: clamp(1.4rem,2.5vw,2rem) !important; }
.testi-slider { margin-top: 2rem; position: relative; overflow: hidden; }
.testi-track { display: flex; transition: transform .45s cubic-bezier(.4,0,.2,1); }
.testi-slide { min-width: 100%; padding: 0 .5rem; box-sizing: border-box; }
.testi-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,200,150,.15); border-radius: 20px; padding: clamp(2rem,4vw,3rem); max-width: 780px; margin: 0 auto; }
.testi-stars { color: var(--terra-2); font-size: 1.3rem; letter-spacing: .1em; margin-bottom: 1.5rem; }
.testi-text { font-family: var(--ff-body); font-size: clamp(1rem,1.4vw,1.15rem); color: rgba(255,255,255,.85); line-height: 1.75; margin: 0 0 2rem; font-style: italic; }
.testi-meta { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.testi-prop { font-family: var(--ff-display); font-size: .95rem; font-weight: 700; color: #F2E8D9; margin: 0; }
.testi-dates { font-family: var(--ff-body); font-size: .8rem; color: rgba(255,255,255,.5); margin: .2rem 0 0; }
.testi-source { font-family: var(--ff-body); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); }
.testi-controls { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 2.5rem; }
.testi-btn { background: none; border: 1.5px solid rgba(255,255,255,.25); border-radius: 50%; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); cursor: pointer; transition: border-color .2s, color .2s; }
.testi-btn:hover { border-color: var(--terra-2); color: var(--terra-2); }
.testi-btn svg { width: 18px; height: 18px; }
.testi-dots { display: flex; gap: .5rem; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: rgba(255,255,255,.25); cursor: pointer; padding: 0; transition: background .2s, transform .2s; }
.testi-dot.is-active { background: var(--terra-2); transform: scale(1.3); }
