/* assets/css/home.css */

body {
  overflow: hidden; /* Home no tiene scroll, es slider */
}

.vertical-slider-container {
  width: 100%;
  height: 100vh;
  position: relative;
}

.swiper-slide {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.65) contrast(1.1);
  transform: scale(1);
  transition: transform 10s ease;
}
.swiper-slide-active .slide-bg {
  transform: scale(1.1);
}

.slide-content {
  position: relative;
  z-index: 20;
  padding: 0 0 80px 80px;
  max-width: 900px;
  color: #fff;
  pointer-events: none;
}
.cat-line {
  width: 60px;
  height: 2px;
  background: #fff;
  margin-bottom: 20px;
  display: block;
}
.slide-cat {
  font-family: "Courier New", monospace;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.3s;
}
.slide-title {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 7vw, 9rem);
  line-height: 0.85;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease 0.4s;
}
.swiper-slide-active .slide-cat,
.swiper-slide-active .slide-title {
  opacity: 1;
  transform: translateY(0);
}

/* Botón flotante */
.btn-float {
  pointer-events: auto;
  margin-top: 40px;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 15px 40px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  transition: 0.3s;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease 0.6s,
    transform 0.8s ease 0.6s;
}
.swiper-slide-active .btn-float {
  opacity: 1;
  transform: translateY(0);
}
.btn-float:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* Paginación Vertical */
.vertical-pagination {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.swiper-pagination-bullet {
  width: auto;
  height: auto;
  background: transparent;
  color: rgba(255, 255, 255, 0.3);
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
  opacity: 1;
  padding-right: 20px;
}
.swiper-pagination-bullet-active {
  color: #fff;
  font-weight: bold;
  transform: scale(1.2);
}

/* NUEVA SECCION DE PRUEBA */

/* assets/css/home.css */

/* Utilidades de Texto Arquitectónico */
.fw-black {
  font-weight: 900 !important;
}

.ls-1 {
  letter-spacing: 1px;
}
.ls-2 {
  letter-spacing: 2px;
}

/* Ajuste del botón del Hero */
.hero-cta .btn:hover {
  background-color: #fff !important;
  color: #000 !important;
}

/* Aseguramos que el body tenga el color correcto en el home */
body.is-dark {
  background-color: #fff; /* Aunque el nav sea dark, el contenido suele ser light abajo */
}
/* Si quieres que toda la pagina sea oscura, cambia a: background-color: #111; */
