/* ========================================
   DISPONIBILIDAD - PUERTA DE ALCALÁ
======================================== */

:root {
  --verde-oscuro: #162D24;
  --verde-claro: #3DAA35;
  --beige: #F2E6D6;
  --beige-claro: #F5E8D1;
}


/* ========================================
   BASE
======================================== */

html,
body {
  margin: 0;
  padding: 0;

  width: 100%;
  min-height: 100%;

  overflow-x: hidden;

  background: var(--verde-oscuro);

  color: var(--beige);

  font-family: "Montserrat", sans-serif;
}


/* ========================================
   LAYOUT PRINCIPAL
======================================== */

.disponibilidad-layout {
  min-height: 100vh;

  box-sizing: border-box;

  display: grid;

  grid-template-columns:
    minmax(90px, 0.8fr)
    minmax(0, 7fr)
    minmax(190px, 1.7fr);

  align-items: center;

  gap: clamp(10px, 1.3vw, 28px);

  padding:
    clamp(110px, 7vw, 145px)
    clamp(20px, 2.5vw, 50px)
    clamp(40px, 4vw, 70px);
}


/* ========================================
   COLUMNA IZQUIERDA - PISOS
======================================== */

.col-izquierda {
  align-self: center;

  padding: 0;

  text-align: center;
}


.col-izquierda h3 {
  margin:
    0
    0
    clamp(14px, 1.4vw, 24px);

  color: var(--beige);

  font-family: "Montserrat", sans-serif;

  font-size:
    clamp(11px, 0.85vw, 14px);

  font-weight: 400;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}


/* ========================================
   LISTA PISOS
======================================== */

#lista-pisos {
  display: flex;

  flex-direction: column;

  gap: clamp(7px, 0.7vw, 12px);

  list-style: none;

  padding: 0;
  margin: 0;

  align-items: center;
}


#lista-pisos li {
  display: flex;

  align-items: center;
  justify-content: center;

  width: clamp(34px, 2.6vw, 46px);
  height: clamp(34px, 2.6vw, 46px);

  box-sizing: border-box;

  margin: 0;

  border:
    1px solid
    rgba(242, 230, 214, 0.8);

  border-radius: 50%;

  background: transparent;

  color: var(--beige);

  font-family: "Montserrat", sans-serif;

  font-size:
    clamp(11px, 0.8vw, 14px);

  font-weight: 400;

  line-height: 1;

  cursor: pointer;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}


@media (hover: hover) and (pointer: fine) {

  #lista-pisos li:hover {
    background:
      rgba(242, 230, 214, 0.12);

    border-color:
      var(--beige);
  }

}


#lista-pisos li.activo {
  background:
    var(--beige);

  border-color:
    var(--beige);

  color:
    var(--verde-oscuro);

  font-weight: 600;
}


/* ========================================
   ANIMACIÓN PISOS
======================================== */

@keyframes aparecerPiso {

  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}


#lista-pisos li {
  opacity: 0;

  animation:
    aparecerPiso
    0.4s
    ease
    forwards;
}


#lista-pisos li:nth-child(1) {
  animation-delay: 0.05s;
}

#lista-pisos li:nth-child(2) {
  animation-delay: 0.10s;
}

#lista-pisos li:nth-child(3) {
  animation-delay: 0.15s;
}

#lista-pisos li:nth-child(4) {
  animation-delay: 0.20s;
}

#lista-pisos li:nth-child(5) {
  animation-delay: 0.25s;
}

#lista-pisos li:nth-child(6) {
  animation-delay: 0.30s;
}


/* ========================================
   COLUMNA CENTRAL
======================================== */

.col-centro {
  min-width: 0;

  display: flex;

  justify-content: center;
  align-items: center;
}


/* ========================================
   PLANTA
======================================== */

.planta-wrapper {
  position: relative;

  display: block;

  width: 100%;
  max-width: 1450px;

  height: auto;

  margin: 0 auto;
}


#imagen-piso {
  display: block;

  width: 100%;
  height: auto;

  object-fit: contain;

  transition:
    opacity 0.5s ease;

  user-select: none;
}


/* ========================================
   SVG SOBRE PLANTA
======================================== */

#svg-overlay {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  pointer-events: none;
}


#svg-overlay svg {
  display: block;

  width: 100%;
  height: 100%;
}


/* ========================================
   APARTAMENTOS INTERACTIVOS
======================================== */

#svg-overlay .apto {
  pointer-events: auto;

  fill: transparent !important;

  stroke: none !important;

  cursor: pointer;

  transition:
    fill 0.25s ease;
}


/* Disponible */

@media (hover: hover) and (pointer: fine) {

  #svg-overlay .apto[data-estado="Disponible"]:hover,
  #svg-overlay .apto.disponible:hover {
    fill:
      rgba(61, 170, 53, 0.32)
      !important;
  }

}


/* Separado */

@media (hover: hover) and (pointer: fine) {

  #svg-overlay .apto[data-estado="Separado"]:hover,
  #svg-overlay .apto.separado:hover {
    fill:
      rgba(242, 230, 214, 0.22)
      !important;
  }

}


/* Vendido */

@media (hover: hover) and (pointer: fine) {

  #svg-overlay .apto[data-estado="Vendido"]:hover,
  #svg-overlay .apto.vendido:hover {
    fill:
      rgba(22, 45, 36, 0.35)
      !important;
  }

}


/* Mobile activo */

#svg-overlay .apto.active.disponible,
#svg-overlay .apto.active[data-estado="Disponible"] {
  fill:
    rgba(61, 170, 53, 0.32)
    !important;
}


#svg-overlay .apto.active.separado,
#svg-overlay .apto.active[data-estado="Separado"] {
  fill:
    rgba(242, 230, 214, 0.22)
    !important;
}


#svg-overlay .apto.active.vendido,
#svg-overlay .apto.active[data-estado="Vendido"] {
  fill:
    rgba(22, 45, 36, 0.35)
    !important;
}


/* ========================================
   MARCADORES
======================================== */

.marker-circle,
.marker-icon,
.marker-text,
.apto-text {
  pointer-events: none;
}


.marker-circle {
  transition:
    transform 0.2s ease;
}


#svg-overlay text {
  user-select: none;

  font-family:
    "Montserrat",
    sans-serif;

  text-anchor: middle;

  dominant-baseline: middle;

  pointer-events: none;
}


/* ========================================
   COLUMNA DERECHA
======================================== */

.col-derecha {
  min-width: 0;

  align-self: center;

  display: flex;

  flex-direction: column;

  align-items: flex-end;

  padding: 0;
}


/* ========================================
   TORRE + PISO
======================================== */

.fila-superior {
  width: 100%;

  display: flex;

  flex-direction: column;

  align-items: flex-end;

  gap: clamp(20px, 2vw, 35px);
}


.info-torre-piso {
  display: flex;

  flex-direction: column;

  align-items: flex-end;

  width: 100%;
}


.titulo-torre {
  margin:
    0
    0
    clamp(4px, 0.4vw, 8px);

  color:
    var(--beige);

  font-family:
    "Montserrat",
    sans-serif;

  font-size:
    clamp(12px, 1vw, 17px);

  font-weight: 400;

  line-height: 1;

  letter-spacing: 0.10em;

  text-transform: uppercase;
}


#titulo-piso {
  margin: 0;

  color:
    var(--beige);

  font-family:
    "Montserrat",
    sans-serif;

  font-size:
    clamp(44px, 4vw, 100px);

  font-weight: 300;

  line-height: 0.9;

  letter-spacing: -0.03em;

  text-align: right;

  opacity: 1;
}


/* ========================================
   BOTÓN REGRESAR
======================================== */

.btn-volver {
  appearance: none;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 40px;

  box-sizing: border-box;

  padding:
    10px
    clamp(18px, 1.6vw, 28px);

  border:
    1px solid
    var(--beige);

  border-radius: 999px;

  background: transparent;

  color:
    var(--beige);

  font-family:
    "Montserrat",
    sans-serif;

  font-size:
    clamp(10px, 0.75vw, 13px);

  font-weight: 400;

  text-transform: uppercase;

  cursor: pointer;

  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}


@media (hover: hover) and (pointer: fine) {

  .btn-volver:hover {
    background:
      var(--beige);

    color:
      var(--verde-oscuro);
  }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 768px) {

  .disponibilidad-layout {
    min-height: 0;

    display: flex;

    flex-direction: column;

    padding:
      105px
      18px
      40px;

    gap: 25px;
  }


  /* ================================
     TORRE / PISO ARRIBA
  ================================ */

  .col-derecha {
    order: 1;

    width: 100%;

    align-items: stretch;
  }


  .fila-superior {
    width: 100%;

    display: flex;

    flex-direction: row;

    align-items: flex-end;

    justify-content: space-between;

    gap: 15px;
  }


  .info-torre-piso {
    width: auto;

    align-items: flex-start;
  }


  .titulo-torre {
    font-size: 11px;

    margin-bottom: 6px;
  }


  #titulo-piso {
    font-size:
      clamp(42px, 13vw, 64px);

    text-align: left;
  }


  .btn-volver {
    flex-shrink: 0;

    min-height: 38px;

    padding:
      8px
      14px;

    font-size: 9px;
  }


  /* ================================
     PLANTA
  ================================ */

  .col-centro {
    order: 2;

    width: 100%;

    /*
      Conservamos tu comportamiento
      horizontal de la planta.
    */

    transform: rotate(90deg);

    transform-origin:
      center center;

    width: 125vw;

    aspect-ratio: 1 / 1;

    margin:
      clamp(20px, 7vw, 40px)
      0;
  }


  .planta-wrapper {
    width: 100%;
  }


  .col-centro img,
  .col-centro > * {
    transform-origin:
      center center;
  }


  /* ================================
     PISOS ABAJO
  ================================ */

  .col-izquierda {
    order: 3;

    width: 100%;

    padding: 0;
  }


  .col-izquierda h3 {
    margin-bottom: 14px;

    font-size: 11px;
  }


  #lista-pisos {
    display: grid;

    grid-template-columns:
      repeat(6, 1fr);

    gap: 9px;

    width: 100%;

    max-width: 390px;

    margin: 0 auto;
  }


  #lista-pisos li {
    width:
      clamp(38px, 11vw, 46px);

    height:
      clamp(38px, 11vw, 46px);

    margin: 0;

    justify-self: center;

    font-size:
      clamp(11px, 3.5vw, 14px);
  }


  #svg-overlay text {
    font-size:
      clamp(12px, 6vw, 28px);
  }

}







/* === Tooltip de apartamento === */
.tooltip-apto {
  position: absolute;
  z-index: 20;
  background: var(--beige);
  color: var(--verde-oscuro);
  padding: 30px;
  font-size: 14px;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, 0);
  transition: opacity 0.25s ease, transform 0.25s ease;
  width: 140px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  text-align: left!important;
}

.tooltip-apto.show {
  opacity: 1;
  transform: translate(-50%, 10px);
}

.tooltip-apto .tooltip-content {
  text-align: left;
}

.tooltip-apto .tooltip-content p {
  margin: 2px 0;
}

.tooltip-apto.hide {
  opacity: 0;
}

.tooltip-apto .tooltip-titulo {
  margin: 0;
  padding-bottom: 2vh;
}

.tooltip-apto .tooltip-label {
  font-weight: 400;
  color: var(--verde-oscuro);
  font-size: 12px;
  line-height: 1; /* Para que no haya diferencia vertical */
  text-transform: uppercase;
}

.tooltip-apto .tooltip-id {
  font-weight: 600;
  color: var(--verde-oscuro);
  font-size: clamp(25px, 2.8vw, 50px);
  line-height: 0.9; /* Para que no haya diferencia vertical */
}

.tooltip-apto .tooltip-area {
  margin: 4px 0 0;
  color: var(--verde-oscuro);
  font-size: 13px;
  text-transform: uppercase;
}

.tooltip-apto button {
  background: var(--verde-oscuro);
  color: var(--beige);
  border: none;
  border-radius: 100px;
  padding: 5px 10px;
  font-size: 13px;
  cursor: pointer;
  font-weight: 600;
  margin-top: 6px;
  width: 100%;
}

.tooltip-apto .tooltip-arrow {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--beige);
}

/* --- En móvil: tooltip fijo inferior --- */
@media (max-width: 768px) {
  .tooltip-apto {
    position: fixed;
    box-sizing: border-box;
    left: 50%;
    bottom: 0px !important;
    transform: translateX(-50%);
    width: 100vw;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    padding: 0;
    margin: 0;
    padding: 8vw;
    top: auto;
    margin-bottom: 0 !important;
  }

  .contenido-cel{
    display: flex;
    flex-direction: row;
    justify-content:space-between;
    align-items: end;
    padding-bottom: 4vw;
  }

  .tooltip-apto.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
  }

  .tooltip-apto .tooltip-titulo {
  margin: 0;
  padding-bottom: 0;
}


  .tooltip-apto .tooltip-arrow {
    display: none;
  }
}

/* --- Botón solo visible en móvil --- */
@media (min-width: 769px) {
  .tooltip-apto #btn-apto-info {
    display: none;
  }
}




/* === Overlay de fondo === */
.overlay-apto {
  position: fixed;
  inset: 0;
  background: rgba(22,45,36,0.6);
  display: flex;
  justify-content: flex-end;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.overlay-apto.show {
  opacity: 1;
  pointer-events: all;
}




/* === BLOQUEAR SCROLL DEL BODY CUANDO HAY PANEL === */
body.no-scroll {
  overflow:hidden;
  height: 100svh;
  touch-action: none; /* Evita desplazamientos en móvil */
}

/* Panel lateral (desktop) */
#panel-apto {
  overflow-y: auto;
  max-height: 100svh;
}

/* Panel móvil */
.panel-apto-movil {
  overflow-y: auto;
}

/* === PANEL COMPUTADOR === */


.panel-apto {
  background: var(--verde-claro);
  color: var(--beige);
  width: 60%;
  box-sizing: border-box;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  box-shadow: -4px 0 20px rgba(0,0,0,0.4);
}

.overlay-apto.show .panel-apto {
  transform: translateX(0);
}

/* === FRANJA DE CIERRE PANEL ESCRITORIO === */
.panel-franja-cerrar {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 100% !important;
  background: var(--verde-claro);
  display: flex;
  justify-content: center;
  align-items:start;
  cursor: pointer;
  z-index: 1002;
  transition: background 0.3s;
  box-sizing: border-box;
}

/* Asegura que el contenido del panel comience después de la franja */
#panel-apto {
  position: relative;
  padding-left: 60px; /* espacio para la franja */
}

.panel-franja-cerrar img {
  padding-top: 20px;
  width: 40px;
  height: 40px;
}


.franja-superior {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--verde-oscuro);
  color: #fff;
  padding: 2vw 5vw; 
  align-items:start;
  gap: 1vw;
}

.apto-label {
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
  font-size: 13px;
}

.apto-numero {
  font-weight: 500;
  color: var(--beige);
  font-size: 90px !important;
  line-height: 1em;
  margin: 0;
}

.Titulo-area{

  text-transform: uppercase;
  font-size: 14px !important;
}

.metros-cuadrados{
color: var(--beige);
font-weight: 600;

}

.valor {
  color: var(--beige);
font-weight: 600;
}

.col3{

  display: flex;
  gap: 0.5vw;
  flex-direction: column;
}

.icon-row {
  display: flex;
  align-items: center;
  justify-content:start;
  gap: 1vw;
  font-size: 14px;
  margin: 4px 0;
  text-transform: uppercase;
}

.icon-row img {
  width: 40px;
  height: 40px;
}

.franja-media {
  background: var(--beige);
  color: var(--verde-oscuro);
}

.franja-media .fila-controles {
  display: flex;
  justify-content: space-between;
  align-items:center;
  padding: 2vw 5vw 1vw 5vw; 
}

.col-toggle{
display: flex;
  align-items: center;
  width: 50%;
  justify-content:start;
}

.col-botones{

  border: solid var(--verde-oscuro) 2px;
  padding: 0;
  margin: 0;
  border-radius: 100px;
}

.btn-toggle{

   background-color: var(--beige);
  color: var(--verde-oscuro);
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  font-size: 14px;
  line-height: 1em;
  padding: 13px 40px;
  border: none;
}


button.btn-toggle.active{

   background-color: var(--verde-oscuro) !important;
  color: var(--beige);
}

.col-links{

  display: flex;
  align-items: center;
  gap: 1vw;
  width: 50%;
  justify-content: end;
}

.btn-tour{
  background-color: var(--verde-oscuro);
  color: var(--beige);
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  font-size: 14px;
  line-height: 1em;
  padding: 13px 60px;

}

.btn-whatsapp img{
  width: 50px;
  height: 50px;
}

.franja-media .fila-imagen{
 padding: 1vw 5vw;
 box-sizing: border-box;
}

.franja-media .fila-imagen img {
  width: 100%;
  height: auto;
  border-radius: 0px;
}

.fila-ubicacion{
 padding: 1vw 3vw 2vw 3vw;
 box-sizing: border-box;
 display: flex;
 justify-content: space-between;
}

.planta-ubicacion{

  width: 30%;
  max-width: 250px;
  min-width: 150px;

}

.rosa-vientos{
  width: 10%;
  max-width: 40px;
  min-width: 45px;
}


.franja-inferior img {
  width: 100%;
  height: auto;
  display: block;
}


@media (max-width: 1372px) {

  .panel-apto {
  width: 80%;
}
}

@media (max-width: 982px) {

  .panel-apto {
  width: 90%;
}

.panel-franja-cerrar {
  width: 40px;
}


.panel-franja-cerrar img {
  width: 30px;
  height: 30px;
}

#panel-apto {
  padding-left: 40px; /* espacio para la franja */
}

.col-toggle{
  width: 60%;
}

.col-links{
  width: 40%;
}

.btn-tour{
  padding: 13px 22px;

}

.btn-whatsapp img{
  width: 50px;
  height: 50px;
}
}

@media (max-width: 768px) {
  .franja-superior {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .icon-row {
    justify-content: center;
  }
}


/* === PANEL MÓVIL === */

.panel-apto-movil {
  position: fixed;
  top: 0;
  left: 0;
  width: 100svw;
  height: 100svh;
  background: var(--verde-oscuro);
  color: var(--beige);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  transform: translateY(150%);
  transition: transform 0.4s ease;
  overflow-y: auto;
  overflow-x: hidden;
}

.panel-apto-movil.show {
  transform: translateY(0);
}

.panel-movil-contenido {
  padding: 6%;
  overflow-y: auto;
}

#panel-movil-media img,
#panel-movil-media iframe {
  width: 100%;
  max-width: 100%;
  margin-top: 1.5rem;
  border-radius: 10px;
}

.panel-movil-header {
  position: sticky;
  top: 0;
  z-index: 10001;
  width: 100svw;
  height: 80px;
  background: var(--verde-claro);
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 0 16px;
}

.btn-cerrar-panel-movil {
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--verde-oscuro);
  font-size: 1.1rem;
  letter-spacing: 1px;
  cursor: pointer;
}

.btn-cerrar-panel-movil img.icono-regresar {
  width: 35px;
  height: 35px;
}

.btn-cerrar-panel-movil span {
  user-select: none;
  font-family: 'Open Sans', sans-serif;
  padding-right: 20px;
}

.panel-movil-contenido {
    padding:0;
    overflow-y: auto;
    background-color: var(--verde-oscuro);
}



@media (max-width: 769px) {


.franja-superior {
  display: flex;
  flex-direction: column;
  background: var(--verde-oscuro);
  color: var(--beige);
  padding: 7%; 
  align-items:center;
  gap: 1vw;
}

.apto-label {
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
  font-size: 13px;
}

.apto-numero {
  color: var(--beige);
  font-size: 90px !important;
  line-height: 1em;
  margin: 0;
  font-weight: 600;
}

.col2{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 2vh;
line-height: 1em !important;
}

.col2 p{
padding: 0;
margin: 0;
}


.col3{

  display: flex;
  gap: 0.5vw;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: 2vh 5vw;
}


.franja-media {
  background: var(--beige);
  color: var(--verde-oscuro);
}

.franja-media .fila-controles {
  padding: 7vw 5vw 1vw 7vw; 
  flex-direction:column-reverse;
}


.franja-media .fila-imagen{
 padding: 7%;
 box-sizing: border-box;
}

.fila-ubicacion{
 padding: 0 7% 7% 7%;
 box-sizing: border-box;
 display: flex;
 flex-direction: row;
 justify-content: space-between;
}

.planta-ubicacion{
  width: 40% !important;
  max-width: 250px;
  min-width: 15px;
 box-sizing: border-box;
}

.rosa-vientos{
  width: 15% !important;
  max-width: 40px;
  min-width: 4px;
  box-sizing: border-box;
}


.col-links{
  background-color: var(--verde-oscuro);
  padding: 7%;
  width: 100%;
  justify-content: space-around;
  box-sizing: border-box;
}

.btn-tour{
  background-color: var(--verde-oscuro);
  color: var(--beige);
 font-weight: 500;
 border: solid 1px var(--beige);

}

.btn-whatsapp img{
  width: 50px;
  height: 50px;
}


.franja-inferior img {
  width: 100%;
  height: auto;
  display: block;
}

}


/* ========================================
   COMPARADOR PLANTA 2D
======================================== */

.planta-comparador {
  position: relative;

  width: 100%;

  overflow: hidden;

  user-select: none;
  touch-action: none;

  cursor: ew-resize;
}


/* ========================================
   IMÁGENES
======================================== */

.planta-comparador img {
  display: block;

  width: 100%;
  height: auto;

  margin: 0;
  padding: 0;

  object-fit: contain;

  pointer-events: none;
  user-select: none;
}


/*
  La imagen base define la altura
  natural del comparador.
*/

.comparador-base {
  position: relative;

  width: 100%;
  height: auto;

  z-index: 1;
}


/*
  La segunda imagen ocupa EXACTAMENTE
  el mismo rectángulo que la primera.
*/

.comparador-superior {
  position: absolute;

  inset: 0;

  width: 100% !important;
  height: 100% !important;

  object-fit: fill;

  z-index: 2;

  clip-path: inset(0 50% 0 0);

  will-change: clip-path;
}


/* ========================================
   LÍNEA
======================================== */

.comparador-linea {
  position: absolute;

  top: 0;
  bottom: 0;

  left: 50%;

  width: 2px;

  background: #F2E6D6;

  transform: translateX(-50%);

  pointer-events: none;

  z-index: 3;
}


/* ========================================
   HANDLE
======================================== */

.comparador-handle {
  position: absolute;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  width: clamp(44px, 4vw, 64px);
  height: clamp(44px, 4vw, 64px);

  padding: 0;

  border: 1px solid #162D24;
  border-radius: 50%;

  background: #F2E6D6;
  color: #162D24;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: ew-resize;

  touch-action: none;

  z-index: 4;
}


.comparador-handle span {
  font-size: clamp(17px, 1.4vw, 24px);

  line-height: 1;

  pointer-events: none;
}



.info-torre-piso {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.titulo-torre {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(12px, 1vw, 16px);
  font-weight: 500;
  color: #F2E6D6;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}