.cygnus-hero {
  height: 100vh;
  min-width: 100%;
  position: relative;
}
.cygnus-hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 70vh;
}

.hero-slide {
  background-position: center;
  background-repeat: no-repeat;
  height: 70vh;
  background-size: cover;
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;
  cursor: pointer;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: -6px;
}

.hero-slide.fade-out {
  opacity: 0;
}

/* ARROWS CONTAINER - Right side, stacked vertically */
.hero-arrows {
  position: absolute !important;
  right: 170px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

/* ARROW BUTTONS */
.hero-arrow {
  width: 25px;
  height: 50px;
  background: rgba(11, 42, 69, 0.9);
  border: none;
  color: #fff;
  font-size: 28px;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  line-height: 1;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.hero-arrow:hover {
  background: rgba(255, 138, 0, 1);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(255, 138, 0, 0.4);
}

.hero-arrow:hover::before {
  left: 100%;
}

.hero-arrow:active {
  transform: scale(0.95);
}
body {
  margin: 0;
  padding: 0;
}
.cygnus-navbar {
  box-sizing: border-box;
  max-width: 100vw;
  overflow-x: hidden;
}

.pc-catalog {
  max-width: 1200px;
}

.hero-logo {
  max-width: 180px;
  margin-bottom: 16px;
}

.hero-type {
  color: #f08018;
  font-weight: 600;
  margin-bottom: 12px;
}

.hero-icons {
  display: flex;
  gap: 24px;
  margin-bottom: 12px;
}

.hero-icons .icon {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-address {
  font-size: 16px;
}

/* HERO INFO OVERLAY - Left side */
.hero-info {
 background: rgb(240 128 24 / 75%);
  padding: 28px 32px;
  width: 460px;
  color: #fff;
  font-family: 'Geist';
  margin-left: 12vw;
  position: relative;
  z-index: 5;
  display: grid;
  justify-content: end;
  transform: translateX(0);
  transition:
    transform 0.6s ease-in-out,
    opacity 0.6s ease-in-out;
  opacity: 1;
  border-radius: 30px;
}

.hero-slide.slide-out .hero-info {
  transform: translateX(-150%);
  opacity: 0;
}

.hero-slide.slide-in .hero-info {
  animation: slideInFromLeft 0.8s ease-out forwards;
}

@keyframes slideInFromLeft {
  from {
    transform: translateX(-150%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* TOP ROW */
.hero-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.hero-project-logo {
  max-height: 54px;
  max-width: 160px;
}

/* ORANGE DIVIDER */
.hero-divider {
  width: 2px;
  height: 40px;
  background: #fff;
}

/* PRE VENTA */
.hero-status {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  color: #ffffff;
}

/* ICON ROW */
.hero-specs {
  display: flex;
  gap: 36px;
  margin-bottom: 18px;
}

.hero-spec {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

/* LOCATION */
.hero-location {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.hero-location strong {
  font-weight: 700;
}

/* ICON BASE */
.hero-icon {
  width: 26px;
  height: 26px;
  background-size: contain;
  background-repeat: no-repeat;
}

/* ICONS (ORANGE) */
.hero-icon.bed {
  width: 36px;
  height: 36px;
  background-color: #fff;
  -webkit-mask: url("../img/bed.png") no-repeat center / contain;
  mask: url("../img/bed.png") no-repeat center / contain;
}

.hero-icon.area {
  width: 36px;
  height: 36px;
  background-color: #ffffff;
  -webkit-mask: url("../img/medidastarjetas.png") no-repeat center / contain;
  mask: url("../img/medidastarjetas.png") no-repeat center / contain;
}

.hero-icon.pin {
  width: 36px;
  height: 36px;
  background-color: #ffffff;
  -webkit-mask: url("../img/locationtarjetas.png") no-repeat center / contain;
  mask: url("../img/locationtarjetas.png") no-repeat center / contain;
}

/* Slider Image zoom abimation */
/* ===== CINEMATIC BACKGROUND ZOOM LOOP ===== */

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  animation: heroKenBurns 22s ease-in-out infinite;
  transform-origin: center;
}

/* Keep your content above the animated layer */
.hero-slide > * {
  position: relative;
  z-index: 2;
}

/* Subtle cinematic zoom + pan */
@keyframes heroKenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  40% {
    transform: scale(1.06) translate(-2%, -1%);
  }
  70% {
    transform: scale(1.12) translate(2%, 1%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}
