/* ------------------------- */
/* Estilos Generales */
/* ------------------------- */

:root {
  --corporativo: #121637;
  --rojo: #121637;
  --blanco: #ffffff;
  --negro: #000000;
  --gris: #333333;
  --verde: #00FF00;
}

* {
    box-sizing: border-box;
    margin: 0; padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: bold;
}

h1, h2, h3, h4, h5, h6 {
    text-align: left;
    margin-bottom: 0;
}

p {
  font-weight: 100;
  color: #ffffff;
  font-size: 14px;
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    line-height: 45px;
}



.texto-naranja {
    font-weight: 300;
    color: orange;
}

.texto-blanco {
    font-weight: 700;
    color: #fff;
}

.texto-negro {
	color: #000;
}


.clear{clear: both;}

.boton-bajar a {
    position: absolute;
    bottom: 50px;
    display: inline-block;
    width: 60px;
    z-index: 99;
    left: calc(50% - 30px);
    animation: MoveUpDown 2s ease infinite;
}

.cotizar-flotante a {
    position: absolute;
    right: 50px;
    top: 20px;
    background: var(--rojo);
    font-size: 18px;
    color: var(--corporativo);
    padding: 5px 30px;
    text-decoration: none;
    transition: 0.5s ease all;
    z-index: 9;
}

.wz-desktop {
  text-align: center;
  position: absolute;
  display: inline-block;
  width: 90px;
  height: 90px;
  top: 18px;
  right: 0px;
  padding: 14px 10px 10px 10px;
  bottom: 20px;
  /* border-radius: 50%; */
  background: #121637;
  /* box-shadow: 2px 2px 6px rgb(0 0 0 / 40%); */
  z-index: 9999;
  transition: 0.5s ease all;
}

.wz-desktop span{

  float: left;
  font-size: 10px;
  font-weight: 400;
  color: #fff;
  width: 100%;
  text-align: center;
  margin-top: -3px;
}

.wz-desktop img {
    width: 38px;
    margin-top: 4px;
}

.wz-desktop .vineta {
  display: none;
    position: absolute;
    width: 103px;
    height: 29px;
    left: -115px;
    top: 11px;
    /* -webkit-animation: 8s ease 0s normal forwards 1 fadein;
    animation: 8s ease 0s normal forwards 1 fadein; */
    z-index: 999999999;
}

.wz-movil {
    display: none;
}

@keyframes fadein{
    0% { opacity:0; }
    40% { opacity:0; }
    45% { opacity:1; }
    95% { opacity:1; }
    100% { opacity:0; }
}

@-webkit-keyframes fadein{
  0% { opacity:0; }
  20% { opacity:0; }
  25% { opacity:1; }
  85% { opacity:1; }
  100% { opacity:0; }
}

.marcos{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999999;
}

.marco-izquierdo{
  position: absolute;
  top: 0;
  left: -10px;
  width: 10px;
  height: 100%;
  background: #ffffff;
  z-index: 9999999999;
  /* transition: 0.5s ease all; */

  animation-name: move-left;
  animation-delay: 3s;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}

.marco-arriba{
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background: #ffffff;
  z-index: 9999999999;

  animation-name: move-top;
  animation-delay: 3s;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}
.marco-derecho{
  position: absolute;
  top: 0;
  right: -10px;
  width: 10px;
  height: 100%;
  background: #ffffff;
  z-index: 9999999999;

  animation-name: move-right;
  animation-delay: 3s;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}
.marco-abajo{
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background: #ffffff;
  z-index: 9999999999;

  animation-name: move-bottom;
  animation-delay: 3s;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}


@keyframes move-left {
  from { left: -10px; }
  to { left: 0px; }
}
@keyframes move-top {
  from { top: -10px; }
  to { top: 0px; }
}
@keyframes move-right {
  from { right: -10px; }
  to { right: 0px; }
}
@keyframes move-bottom {
  from { bottom: -10px; }
  to { bottom: 0px; }
}
/* ------------------------- */
/* Estilos Generales */
/* ------------------------- */

/* ------------------------- */
/* intro */
/* ------------------------- */

#contenedor-intro{
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 99999999;
}

.bg-video {
    position: absolute;
    z-index: 10;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: auto 100%;
    background: #000;
    background-position: center;
    background-size: contain;
    object-fit: cover;
}

video::-webkit-media-controls-panel {
display: none !important;
opacity: 1 !important;}

#intro-img{
  position: absolute;
  width: 100%;
  height: 100%;
  /* background: url("../media/intro.jpg"); */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  /* clip-path: circle(0% at center); */
  z-index: 99999999;

  /* -webkit-animation-name: maskin;
  animation-name: maskin;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;

  animation-delay: 1s; */
}

.videooabsoluto{
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0px;
  left: 0px;
  z-index: 0;
}

#intro-logo{
  position: absolute;
  width: 400px;
  z-index: 999999999;
  left: calc(50% - 200px);
  top: calc(50% - 150px);
  opacity: 0;
}



@-webkit-keyframes maskin {
  0% {
  clip-path: circle(0% at center);
  }
  100% {
  clip-path: circle(70% at center);
  }

}

@keyframes maskin {
  0% {
  clip-path: circle(0% at center);
  }
  100% {
  clip-path: circle(70% at center);
  }

}

@-webkit-keyframes desaparecer {
  0% {
  opacity: 1;
  }
  100% {
  opacity: 0;
  }

}

@keyframes desaparecer {
  0% {
  opacity: 1;
  }
  100% {
  opacity: 0;
  }

}

@-webkit-keyframes zoomIn {
 0% {
 opacity: 0;
 -webkit-transform: scale3d(.3, .3, .3);
 transform: scale3d(.3, .3, .3);
 }
 50% {
 opacity: 1;
 }
 }
 @keyframes zoomIn {
 0% {
 opacity: 0;
 -webkit-transform: scale3d(.3, .3, .3);
 transform: scale3d(.3, .3, .3);
 }
}

/* ------------------------- */
/* intro */
/* ------------------------- */

.popup-inicio{
  width: 100%;
  height: 400px;
  background: var(--corporativo);
}

.popup-inicio .proyecto-izquierdo{
  position: relative;
  float: left;
  overflow:auto;
  display: flex;
  width: 60%;
  height: 400px;

  align-content: center;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
}

.popup-inicio .titulo-proyecto{
  float: left;
  width: 350px;
  margin: 0px 0 0 38px;

  /* opacity: 0;
  transition: 2s ease all;
  transform: scale(0.6); */


}

.popup-inicio .texto-proyecto{
  float: left;
    margin: 10px 0 0px 50px;
    width: 80%;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 200;
    color: #ffffff;
    text-align: left;
    line-height: 30px;

}

.popup-inicio .proyecto-derecho{
  position: relative;
  float: left;
  display: flex;
  width: 40%;
  height: 400px;
  background: url('../media/pop-imagen.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  /* background: yellow; */
}


/* ------------------------- */
/* Botonera */
/* ------------------------- */

.botonera{
  position: absolute;
  right: 220px;
  top: 48px;
}

.botonera li{
    float: left;
    list-style:none;
}
.botonera li a{
  font-size: 12px;
  font-weight: 300;
    color: #ffffff;
    margin: 5px 0 0 20px;
    border-left: 1px solid #ffffff;
    text-decoration: none;
    padding-left: 20px;
}

/* ------------------------- */
/* Botonera */
/* ------------------------- */

/* ------------------------- */
/* Header */
/* ------------------------- */

header{
  position: fixed;
  width: 100%;
  height: 125px;
  background:none;
  /* background: var(--blanco); */
  top: 0px;
  left: 0px;
  z-index: 1;

  transition: 1s ease all;
}

.header-blanco{
  display: inline-block;
}
.btnblanco{
  color: #ffffff;
}
.btnnegro{
  color: #000000!important;
  border-left: 1px solid #000000!important;
}
.header-negro{
  display: none;
}

.header-negro .botonera li a{
  color:#000000;
  border-left: 1px solid #000000;
}

.logo-blanco{
  display: inline-block;
  width: 156px;
  height: 60px;
  margin: 29px 0 0 30px;
}
.logo-gris{
  display: inline-block;
  width: 156px;
  height: 60px;
  margin: 29px 0 0 30px;
}

.cotizar-header a{
  position: absolute;
    width: 90px;
    height: 90px;
    right: 90px;
    top: 18px;
    font-size: 16px;
    font-weight: 100;
    color: #fff;
    padding: 32px 0 0 0;
    text-align: center;
    text-decoration: none;
    background: url(../media/cotiza-fondo.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.obra-imagen{
	float: left;
	display: block;
	width:100%;
	/* height: 500px; */
  margin-bottom: 10px;
}



/* ------------------------- */
/* Header */
/* ------------------------- */

/* ------------------------- */
/* Proyecto */
/* ------------------------- */

.proyecto {
	position: relative;

    text-align: center;
		/* background-size: 100%; */
}

.proyecto-izquierdo{
  position: relative;
  float: left;
  overflow:auto;
  display: flex;
  width: 30%;
  height: 100vh;
  background: var(--corporativo);

  align-content: center;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
}

.titulo-proyecto{
  float: left;
  width: 250px;
  margin: 130px 0 0 40px;

  /* opacity: 0;
  transition: 2s ease all;
  transform: scale(0.6); */


}

.texto-proyecto{
  float: left;
  margin: 10px 0 0px 50px;
  width: 80%;

  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 200;
  color: #ffffff;
  text-align: left;

  /* opacity: 0;
  transition: 2s ease all;
  transform: scale(0.6); */
}


.boton-popup{
  float: left;
    margin: 20px 0 0px 50px;
    width: 80%;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 200;
    color: #ffffff;
    text-align: left;
}

.boton-popup a{
  color: #00ff00;
  text-decoration: none;
}

.boton-galeria{
    float: left;
    margin: 20px 0 50px 50px;
    padding: 5px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    text-align: left;
    text-decoration: none;
    border: 1px solid #fff;
    /*background: url(../media/cotiza-fondo.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;*/
}


.boton-galeria a{
  color: #ffffff;
  text-decoration: none;
}

.proyecto-derecho{
  position: relative;
  float: left;
  display: flex;
  width: 70%;
  height: 100vh;
  background: url('../media/proyecto-fondo.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  /* background: yellow; */
}

/* ------------------------- */
/* Proyecto */
/* ------------------------- */

/* ------------------------- */
/* Imagenes */
/* ------------------------- */



.imagenes {
	position: relative;
  background: var(--corporativo);
  text-align: center;
}

.contendor-proyecto-1{
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
}

.contendor-proyecto{
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
}

.frases-imagenes{
  width: 600px;
  position: absolute;
  left: 100px;
  bottom: 100px;
  z-index: 999;
  font-size: 20px;
  color: #fff;
  text-align: left;
  font-weight: 100;
}

.centro-multiuso-galeria {
    position: relative;
    display: inline-block;
    width:  100%;
    height: 100%;
    margin: 0 0 0 0;
    /* vertical-align:top; */
}



.botonabsoluto a{
position: absolute;
background: var(--rojo);
padding: 20px;
border-radius: 50px;
color: #ffffff;
top: 20px;
left: 150px;
z-index: 10;
text-decoration:none;
}

.contendor-vertical-amarillo-galeria{
  width: 15%;
  height: 100%;
  float: left;
  position: relative;
  background: var(--corporativo);
  z-index: 1;

}

.cont-galeria{
  width: 90%;
  height: 400px;
  display: inline-block;
  margin-top: calc(50vh - 200px);
}

.cont-galeria-middle{
  width: 100%;
  height: 300px;
  display: inline-block;
  position: relative;

}

.texto-vertical-galeria {
  white-space: nowrap;
    display: inline-block;
    overflow: visible;
    transform: rotate(-90deg);
    transform-origin: 0;
    position: absolute;
    /* bottom: 0px; */
    font-size: 35px;
    font-weight: 600;
    text-align: center;
    /* width: 240px; */
    color: var(--negro);
    text-transform: uppercase;
}

.frase {
    width: 100%;
    height: 100px;
    position: absolute;
    /* margin-left: -400px; */
    top: 46%;
    margin-top: -20px;
    z-index: 99;
}

.frase h1{
  font-family: 'Poppins', sans-serif;
  font-size: 46px;
    font-weight: 200;
  color: #ffffff;
  text-align: center;
}

.frase p {
    margin: 40px 0 0 0;
    padding: 0 12%;
    /* width: 800px; */
}

.overlay-img{
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 98;
  background: #0b0019;
  opacity: .6;
}

.imagenes-facilities{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.imagenes-facilities img{
  position: absolute;
  left:-10000%; right: -10000%;
  top: -10000%; bottom: -10000%;
  margin: auto auto;
  min-width: 1000%;
  min-height: 1000%;
  -webkit-transform:scale(0.1);
  transform: scale(0.1);
}

.te-1{
  bottom: -13px;
}
.te-2{
  bottom: 20px;
}

.te-3{
  bottom: 38px;
}

.te-4{
  bottom: -23px;
}

.te-5 {
    bottom: 50px;
}



.fp-controlArrow.fp-next {
    right: 10px;
    background-image: url(../media/flecha-der.svg);
    /* border-width: 20px 0 20px 20px; */
    /* border-color: transparent transparent transparent #000; */
    animation: MoveRightLeft 2s ease infinite;
}

.fp-controlArrow.fp-prev {
    left: 10px;
    background-image: url(../media/flecha-izq.svg);
    /* border-width: 20px 0 20px 20px; */
    /* border-color: transparent transparent transparent #000; */

    animation: MoveLeftRight 2s ease infinite;
}

.fp-controlArrow.fp-next, .fp-controlArrow.fp-prev {
    top: 55%;
    width: 40px;
    height: 70px;
    background-position: center;
    background-size: 100%;
    border: none;
}

.descripcion-header {
  float: left;
display: block;
width: 100%;
text-align: left;
font-size: 12px;
font-weight: 300;
color: #ffffff;
margin-bottom: 10px;
margin-top: 10px;
text-transform: uppercase;
}

.descripcion-imagen{
	float: left;
	display: block;
	width:100%;
	/* height: 500px; */
  margin-bottom: 10px;
}


.miniaturas{
  position: absolute;
    width: 100%;
    bottom: 20px;
    z-index: 9;
    /* left: calc(50% - 250px); */
    background: #ffffff80;
    padding: 10px 20px 5px 15px;
}

.miniatura-img{
  display: inline-block;
  width: 80px;
  height: 80px;
  margin-left: 1px;
  z-index: 9999;
  transition: 1s ease all;
  opacity: .8;
}

.miniatura-img:hover{
  transform: scale(1.1);
  opacity: 1;
}


.puntos-navegacion{
  position: absolute;
    width: 20px;
    height: 200px;
    top: calc(50% - 100px);
    right: 30px;
    z-index: 9;
}

.cont-puntos{
  position: absolute;
  width: 20%;
  height: 100%;
  z-index: 9999999999999;
}

.puntos-navegacion li{
  list-style:none;
}

.puntos-navegacion li a{
  float: left;
width: 5px;
height: 5px;
border-radius: 50px;
background: #ffffff;
margin: 10px;
margin-left: 5px;
}

.puntos-navegacion li a.on{
width: 10px;
height: 10px;
margin-left: 2px;
}


/* ------------------------- */
/* proyecto */
/* ------------------------- */


/* ------------------------- */
/* proyectoInfo */
/* ------------------------- */

.proyectoInfo {
	position: relative;
  text-align: center;
}

.vidaDeBarrio-desktop {
    /* float: left; */
    /* display: block; */
    width: 100%;
    height: 100%;
}

.fachada-barrio-cueto{
  float: left;
  position: relative;
  display: block;
  width: 69%;
  height: 90vh;
  margin-top: 70px;
  text-align: center;
  transition: 1s ease all;

  background: url('../media/fachada-barrio-cueto.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.texto-proyectoInfo{
  float: left;
  position: relative;
  display: block;
  width: 30%;
  margin-top: 120px;
  text-align: left;
  padding-left: 30px;
}



.titulo-proyectoInfo {
  float: left;
  position: relative;
  display: block;
  width: 90%;
  margin-top: 10px;
}

.espacio-izq-titulo{
  margin-left: 70px;
}

.titulo-proyectoInfo h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    color: #868686;
    text-align: left;
    line-height: 45px;
}

.p-proyectoInfo{
  position: relative;
  display: inline-block;
  width: 90%;
  margin-top: 20px;
}

.texto-proyectoInfo ul {
    width: 90%;
    float: left;
    margin-left: 13px;
    margin-top: 10px;
}

.texto-proyectoInfo ul li{
  list-style:none;
  position: relative;
  margin-bottom: 7px;
}

.texto-proyectoInfo ul li::before {
  position: absolute;
  left: -10px;
  top: 1px;
  content: "•";
  font-size: 12px;
  color: #868686;
}

/* ------------------------- */
/* proyectoInfo */
/* ------------------------- */



/* ------------------------- */
/* VidaDeBarrio */
/* ------------------------- */

.ubicacion {
	position: relative;
  text-align: center;
}

.contendor-ubicacion {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
}



.imagenes-ubicacion {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}



.imagenes-ubicacion-div{
  width: 100%;
  height: 100%;
  background: url(../media/mapa-entremares.jpg) no-repeat top center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.hitos{
  width: 430px;
  position: absolute;
  bottom: 20px;
  right: 50px;
}


.vidaDeBarrio-movil{
  display: none;
}

.mapa{
  position: relative;
  display: inline-block;
  width: 55%;
  height: 75vh;
  margin-top: 130px;
  text-align: center;
  vertical-align:top;

  opacity: 0;
  transition: 1s ease all;
}

.mapa img{
  height: 100%;
}

.texto-vida{
  position: relative;
  display: inline-block;
  width: 44%;
  top: 140px;
  text-align: left;
}

.titulo-vida{
  position: relative;
  display: inline-block;
  width: 80%;
  text-align: center;
}

.p-vida{
  position: relative;
  display: inline-block;
  width: 90%;
  margin-top: 10px;
  margin-left: 7px;
}

.listado{
  position: relative;
  display: inline-block;
  width: 90%;
  margin-top: 30px;
}

.cont-contador{
  width: 195px;
  margin-left: 20px;
    float: left;
    display: block;
}

.cada-linea{
  margin: 5px 0 0 0;
}

ol {
  max-width: 225px;
  counter-reset: my-awesome-counter;
  list-style: none;
  padding-left: 20px;
}
ol li {
  margin: 0 0 0.5rem 0;
  counter-increment: my-awesome-counter;
  position: relative;
  font-size: 12px;
  font-weight: 400;
  color: #9a9ab0;
}
ol li::before {
  content: counter(my-awesome-counter);
    color: #ffffff;
    font-size: 11px;

    font-weight: 600;
    position: absolute;
    --size: 32px;
    left: -30px;
    line-height: 20px;
    width: 20px;
    height: 20px;
    top: 0;
    background: #da0000;
    border-radius: 50%;
    text-align: center;
}

ol li#x::before {background-color: #7177a0;}
ol li#a::before {content: "7";}
ol li#b::before {content: "8";}
ol li#c::before {content: "9";}
ol li#d::before {content: "10";}
ol li#e::before {content: "11";}
ol li#f::before {content: "12";}
ol li#g::before {content: "13";}

ol li.icono-metro::before {
  content: url("../media/metro.svg")!important;
  background-color: #ffffff00!important;
  width: 28px;
  left: -34px;
  top: 3px;
}

.img-vidaDeBarrio{
  position: relative;
  display: inline-block;
  width: 80%;
  height: 100%;
  top: 0;
  text-align: center;
  margin-top: 20px;

  opacity: 0;
  transition: 1s ease all;
}
/* ------------------------- */
/* VidaDeBarrio */
/* ------------------------- */

/* ------------------------- */
/* Entorno */
/* ------------------------- */

.entorno {
  position: relative;
}

.contenedor-entorno{
  width: 100%;
  /* height: calc(100vh - 80px); */
  /* background: red; */
  /* margin-top: 80px; */
}

.square-container {
  display: flex;
  flex-wrap: wrap;
}

.header-entorno {
  width: 100%;
  height: 125px;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
}

.square {
  position: relative;
  flex-basis: calc(20%);
  box-sizing: border-box;
}

a.square:hover .info-leyenda{
    opacity: 1;
}

a.square:hover .info-square{
    opacity: .2;
}

.info-square{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background: #000;
  opacity: 0;
  z-index: 9;
  mix-blend-mode: multiply;


  transition: .6s ease all;
}

.info-leyenda{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 99;
  opacity: 0;
  text-align: center;

  display:flex;
  justify-content: center;
  align-items: center;

  transition: .6s ease all;
}

.titulo-leyenda{
  float:left;
  width: 100%;
  display: block;
  font-size: 12px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.icon-leyenda{
  display: inline-block;
  width: 25px;
  margin-top: 5px;
}

.color1{background: #ccc222;}
.color2{background: green;}
.color3{background: #000000;}
.color4{background: blue;}
.color5{background: yellow;}

.square::before {
  content: '';
  display: block;
  padding-top: 100%;
}

.square .content {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 100%;
}

.square .content img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

a.square:hover .content img{
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}


.entorno-imagen{
	float: left;
	display: block;
	width:100%;
	/* height: 500px; */
  margin-bottom: 10px;
}

.entorno-cont{
	float: left;
	display: block;
	width:19%;
	/* height: 500px; */
  margin-bottom: 10px;
  margin-left: 1%;
}

.entorno-mapa{
	float: left;
	display: block;
	width:100%;
	/* height: 500px; */
  margin-bottom: 10px;
}

.entorno-texto {
    float: left;
    display: block;
    width: 100%;
    text-align: left;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 10px;
    margin-top: 10px;
    text-transform: uppercase;
}
/* ------------------------- */
/* GaleriaImagenes */
/* ------------------------- */


/* ------------------------- */
/* Piloto */
/* ------------------------- */

.piloto {
	position: relative;
    /* background: url('../media/fondo-inversion.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center; */
		/* background-size: 100%; */
}

#videoPiloto {
  width: 100%;
  display: block;
  opacity: 1;
  visibility: visible;
}


.video-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: auto;
}

.toggle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.6);
  color: white;
  font-size: 18px;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.toggle-btn {
  position: absolute;
  background: rgba(0,0,0,0.6);
  color: white;
  font-size: 18px;
  padding: 10px 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.sound-btn {
  position: absolute;
  background: rgba(255, 255, 255, 1); /* blanco translúcido */
  color: white;
  font-size: 18px;
  padding: 10px 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
    z-index: 10;
}

.toggle-btn {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sound-btn {
  bottom: -50px;
  right: 0px;
}

/* Ajuste solo en móviles */
@media (max-width: 768px) {
  .sound-btn {
    right: 10px; /* o la distancia que prefieras */
  }
}

/* Mostrar botones solo en desktop al hacer hover */
.video-container:hover .toggle-btn,
.video-container:hover .sound-btn {
  opacity: 1;
}

/* En mobile (touch), mostrar solo tras primer clic */
@media (hover: none) and (pointer: coarse) {
  .toggle-btn,
  .sound-btn {
    opacity: 1;
  }
}

.video-container:hover .toggle-btn {
  opacity: 1 !important;
}

.fullscreen-btn {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 18px;
  padding: 10px 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  opacity: 1;
  z-index: 9999;
  pointer-events: auto;
  touch-action: manipulation;
}

/* Solo en desktop: mostrar al hacer hover */
@media (hover: hover) and (pointer: fine) {
  .fullscreen-btn {
    opacity: 0;
  }

  .video-container:hover .fullscreen-btn {
    opacity: 1;
  }
}


/* ------------------------- */
/* Piloto */
/* ------------------------- */



/* ------------------------- */
/* Plantas */
/* ------------------------- */


.plantas {
	position: relative;
  /* background: var(--corporativo);
  background: -moz-linear-gradient(90deg, rgba(89,84,126,1) 0%, rgba(118,130,170,1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(89,84,126,1) 0%, rgba(118,130,170,1) 100%);
  background: linear-gradient(90deg, rgba(89,84,126,1) 0%, rgba(118,130,170,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#59547e",endColorstr="#7682aa",GradientType=1); */
  text-align: center;
}

.cont-paso{
  display: flex;
  /* width: 250px; */
  margin-bottom: 10px;
  text-align: center;
  flex-direction: column;
  align-content: center;
  align-items: center;
}

.paso1{
  float: left;
  display: block;
  width: 60px;
  height: 65px;
}

.flecha-derecha{
  float: left;
  display: block;
  width: 40px;
  height: 40px;
  margin: 20px 0 0 20px;
}

.flecha-abajo{
  float: left;
  display: block;
  width: 40px;
  /* height: 40px; */
  margin-left: 30%;
}

.texto-paso{
  display: block;
    float: left;
    width: 100px;
    /* margin-left: 10px; */
    /* margin-top: 12px; */
    font-weight: 300;
    text-align: center;
    font-size: 16px;
    color: #ffffff;
}

.texto-paso2{
  display: block;
  float: left;
  width: 140px;
  font-weight: 300;
  text-align: center;
  font-size: 16px;
  color: #ffffff;
}

.contendor-fijo{
  display: inline-block;
  margin-top: 70px;
  width: 90%;
  height: 90vh;
}

.webpay a{
  width: 120px;
  position: absolute;
  top: 120px;
  right: 74px;
  /* transform: translate(0%, -50%); */
}

.tipo-boton a{
    display: inline-block;
    width: 250px;
    height: 50px;
    background: url(../media/boton.svg);
    margin: 0 0 0 0;
    text-align: center;
    font-size: 13px;
    color: #ffffff;
    font-weight: 300;
    padding: 15px 0 0 0;
    text-decoration: none;
}

.tipo-boton a:hover{
    background: url(../media/boton-hover.svg);
    color: var(--corporativo);
}

.tipo-boton a.seleccionado{
    background: url(../media/boton-hover.svg);
}

.parentesis-grande-izq {

    position: relative;
    display: inline-block;
    width: 80px;
    height: 700px;
    margin: 20px 0 0 0;
}

.centro-informacion {
    position: relative;
    display: inline-block;
    width:  100%;
    margin: 80px 0 0 0;
    vertical-align:top;
}

.centro-informacion .izq{
  position: relative;
  display: inline-block;
  width: 20%;
  margin: 0px 0 0 0;
  /* background: #ffffff33; */
  vertical-align:top;

  -webkit-animation-name: fadeIn;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-in;
  animation-name: fadeIn ;
  animation-duration: 0.5s;
  animation-timing-function: ease-in;
}

.contenedor-pisotipo{

  -webkit-animation-name: fadeIn;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-in;
  animation-name: fadeIn ;
  animation-duration: 0.5s;
  animation-timing-function: ease-in;
}

.centro-informacion .centro{
  position: relative;
  display: inline-block;
  width: 36%;

  margin: 0px 0 0 0;
  /* background: #ffffff33; */
  vertical-align:top;
}

.centro-informacion .der{
  position: relative;
  display: inline-block;
  width: 40%;
  height: 400px;
  margin: 0px 0 0 0;
  /* background: #ffffff33; */
  vertical-align:top;
}

.centro-informacion .centro .centro-izq{
  position: relative;
  display: block;
  float: left;
  width: 49%;
  height: 50px;
  margin: 0px 0 0 0;
}

.centro-informacion .centro .centro-der{
  position: relative;
  display: block;
  float: left;
  width: 49%;
  height: 50px;
  margin: 0px 0 0 0;
}

.contenedor-paso2{
  display: flex;
  flex-direction: column;
  align-items: center;
  -webkit-animation-name: fadeIn;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-in;
  animation-name: fadeIn ;
  animation-duration: 0.5s;
  animation-timing-function: ease-in;
}

.contenedor-paso3{
  display: flex;
  flex-direction: column;
  align-items: center;
  -webkit-animation-name: fadeIn;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-in;
  animation-name: fadeIn ;
  animation-duration: 0.5s;
  animation-timing-function: ease-in;
}

.contenedor-paso3-trans{
  display: flex;
  flex-direction: column;
  align-items: center;
}

@-webkit-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.parentesis-grande-der {
    /* position: absolute;
    width: 80px;
    right: 10%;
    top: 55%;
    transform: translate(0%, -50%); */

    position: relative;
    display: inline-block;
    width: 80px;
    height: 700px;
    margin: 20px 0 0 0;
}

select {
  border: 0 none;
  color: #FFFFFF;
  background: transparent;
  font-size: 14px;
  font-weight: 300;
  padding: 10px 10px;
  width: 378px;


  -webkit-appearance: none;
  appearance: none;


}

option {
  color: #000;
}

*:focus {
  outline: none !important;
}

.custom-select {
      margin-top: 29px;
  overflow: hidden;

  background: rgb(255,179,109);

background-image: linear-gradient(to right, #0da4d9, #00c2e0, #00ddc8, #37f296, #b8fe58);
}

/* ------------------------- */
/* plantas */
/* ------------------------- */


/* ------------------------- */
/* Depto */
/* ------------------------- */

.contenedor-depto{
  width: 100%;
  height: 100%;
}

.depto-volver{
  float: left;
  display: block;
  width: 100%;
  height: 50px;
}

.depto-volver a{
  float: left;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  margin-left: 50px;
  text-decoration: none;
}

.depto-volver a .volver-img{
  float: left;
  display: block;
  width: 40px;
}

.depto-volver a .volver-texto{
  float: left;
  display: block;
  width: 182px;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: var(--corporativo);
  margin-left: 11px;
}

.depto-izq{
  float: left;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  width: 20%;
  height: 90vh;
}
.depto-centro{
  float: left;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 53%;
  height: 90vh;
  margin-left: 2%;
  flex-wrap: wrap;
  align-content: center;
}
.depto-der{
  float: left;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  width: 25%;
  height: 90vh;
}

.depto-textos{
  display: block;
  float: right;
  text-align: right;
  width: 300px;
  margin-bottom: 20px;
}

.depto-textos h1{
  display: block;
  float: right;
  text-align: right;
  width: 300px;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: bold;
  color: var(--corporativo);
  padding-right: 25px;
}

.depto-textos h2{
  display: block;
float: right;
text-align: right;
width: 300px;
font-family: 'Poppins', sans-serif;
font-size: 17px;
font-weight: 400;
color: var(--corporativo);
padding-right: 25px;
margin-top: -10px;
}

.depto-textos p{
  color: var(--corporativo);
  padding-right: 25px;
}

.texto-renta {
    width: 100%;
    display: block;
    float: left;
    text-align: left;
    width: 300px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #333333;
    margin-top: 12px;
    margin-left: 10px;
}

.depto-plantaimg{
  position: relative;
  display: block;
  float: right;
  width: 100%;
}

.depto-plantaimg img#vendido {
    width: 60%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 0.5s;
    -webkit-animation-timing-function: ease-in;
    animation-name: fadeIn;
    animation-duration: 0.5s;
    animation-timing-function: ease-in;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
}

.texto-referencia{
  width: 80%;
  display: block;
  float: left;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #333;
  margin: 10px 0 0 10%;
}


.depto-cotizar{
  display: block;
  float: left;
  text-align: left;
  width: 100%;
  margin: 0 0 0 0px;
}

.depto-cotizar h1{
  display: block;
  float: left;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: bold;
  color: var(--corporativo);
}

#pla-form{
  float: left;
  display: block;
  margin: 0px 0 0 0px;
}


.depto-der input[type=text] {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #9a9ab0;
    float: left;
    display: block;
    width: 100%;
    border: solid thin #9a9ab0;
    margin: 6px 0 0 0;
    padding: 5px 10px;
    background: #ffffff00;
    border-radius: 10px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.depto-der textarea {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #9a9ab0;
    float: left;
    display: block;
    width: 100%;
    height: 106px;
    border: solid thin #9a9ab0;
    margin: 6px 0 0 0;
    padding: 10px;
    background: #ffffff00;
    border-radius: 10px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.depto-der input[type=submit] {
    float: right;
    font-weight: 600;
    color: #9a9ab0;
    font-size: 16px;
    text-align: center;
    margin: 10px 0 0 0;
    padding: 9px 30px;
    background: #ffffff00;
    border: none;
    cursor: pointer;
}

/* ------------------------- */
/* Depto */
/* ------------------------- */


/* ------------------------- */
/* Inicio Agradecimiento */
/* ------------------------- */

.inicio-agradecimiento {
  position: relative;
  background: #000;
    background: url('../media/fondo-contacto.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
}

@keyframes MoveUpDown {
  0%, 100% {
    bottom: 5px;
  }
  50% {
    bottom: 20px;
  }
}

@keyframes MoveLeftRight {
  0%, 100% {
    left: 5px;
  }
  50% {
    left: 10px;
  }
}

@keyframes MoveRightLeft {
  0%, 100% {
    right: 5px;
  }
  50% {
    right: 10px;
  }
}

/* ------------------------- */
/* Inicio Agradecimiento */
/* ------------------------- */

/* ------------------------- */
/* Inversion */
/* ------------------------- */

.inversion {
	position: relative;
    background: url('../media/fondo-inversion.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
		/* background-size: 100%; */
}

.inversion-izquierdo{
  position: relative;
  float: left;
  overflow:auto;
  display: flex;
  width: 50%;
  height: 100vh;
  /* background: var(--corporativo); */

  align-content: center;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;

}

.titulo-inversion{
  float: left;
  width: 400px;
  margin: 0px 150px 0 0px;


    opacity: 0;
    transition: 2s ease all;
    transform: scale(1);
}

.linea-vert{
  float: right;
  width: 2px;
  margin:0px 0 0 0px;
  background: #fff;
  height: 400px;

  opacity: 0;
  transition: 2s ease all;
  transform: scale(0.6);
}

.inversion-derecho{
  position: relative;
  float: left;
  display: flex;
  width: 50%;
  height: 100vh;

  align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
  /* background: yellow; */


}

.texto-inversion{
  float: left;
  margin: 10px 0 10px 50px;
  width: 70%;

  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 200;
  color: #ffffff;
  text-align: left;


}

.texto-inversion span{
  font-size: 11px;
}

.anim-1, .anim-2, .anim-3, .anim-4, .anim-5, .anim-6, .anim-7, .anim-8, .anim-9{
  opacity: 0;
  margin-left:100px;
  transition: 2s ease all;
}

/* ------------------------- */
/* Inversion */
/* ------------------------- */


/* ------------------------- */
/* Footer */
/* ------------------------- */

.footer {
	position: relative;
    background: url('../media/intro.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
		/* background-size: 100%; */
}

.footer .texto {
    text-transform: uppercase;
    font-size: 40px;
    letter-spacing: 2px;
    margin-bottom: 0px;
    background: url(../media/transparente-contacto.png) repeat;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    color: #fff;
}

#contacto-form{
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 500px;
    margin: 130px 0 0 0;

	}

  .info-contacto{
    margin-top: 35px;
    display: inline-block;
  }

  .info-contacto a, .info-contacto .separador-footer{
    float: left;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    color: var(--blanco);
    margin: 0 5px;
  }

  .info-contacto a:hover{
    color: #ccc;
  }

  .footer-izq{
    float: left;
    width: 20%;
    height: 100%;
  }
  .footer-centro{
    float: left;
    width: 60%;
    text-align: center;
  }
  .footer-der{
    float: left;
    width: 20%;
  }

  .footer-inmobiliaria{
    float: left;
    width: 100%;
  }

  .footer-inmobiliaria img{
    float: right;
    width: 160px;
    margin-top: 12px;
    margin-right: 50px;
  }

  .texto-vertical-contacto {
    width: 500px;
    color: var(--blanco);
    margin-top: 60px;
    position: relative;
}

.iso-contacto-1 {
  position: absolute;
  top: -76px;
  right: 0;
  width: 206px;
}
.iso-contacto-2 {
  position: absolute;
  top: -76px;
  right: -110px;
  width: 120px;
}
.iso-contacto-3 {
  position: absolute;
  top: -16px;
  left: -150px;
  width: 120px;
}

form{
    width: 100%;
    /* height: 600px; */
    margin: 10px 0 0 0;
}


#contacto-form form{
    width: 500px;
    height: 600px;
    margin: 10px 0 0 0;
}



  #respa{
    position: absolute;
    top: 48%;
    right: 0;
    width: 300px;
    padding: 10px 0;
    color: #fff;
    font-family: 'Poppins', sans-serif;
  	font-size:14px;
  	font-weight:900;
    z-index: 9999;
    background: Green;

  }

input[type=text] {
  font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--blanco);

    float: left;
    display: block;
    width: 100%;
    border: solid thin #ffffff;
    margin: 6px 0 0 0;
    padding: 5px 10px;
    background: #ffffff00;
    border-radius: 10px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

textarea {
  font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--blanco);

    float: left;
    display: block;
    width: 100%;
    height: 106px;
    border: solid thin #ffffff;
    margin: 6px 0 0 0;
    padding: 10px;
    background: #ffffff00;
    border-radius: 10px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

}

input[type=submit] {
  float: right;
  font-weight: 600;
  color: var(--blanco);
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  margin: 10px 0 0 0;
  padding: 9px 30px;
  background: #ffffff00;
  border: none;
  cursor: pointer;
}

.boton-formulario a{
  float: right;
  font-weight: 600;
  color: var(--blanco);
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  margin: 10px 0 0 0;
  padding: 9px 30px;
  background: #ffffff00;
  border: none;
  cursor: pointer;
  text-decoration: none;

}

.boton-cotizador a{
  float: right;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  margin: 10px 0 0 0;
  padding: 9px 30px;
  background: #ffffff00;
  color: #9a9ab0;
  border: none;
  cursor: pointer;
  text-decoration: none;

}



.huincha-footer{
    display: inline-block;
    width: 100%;
    height: 90px;
    background: #00000030;
    margin-bottom: 20px;
    z-index: 1;
    transition: 1s ease all;
}

.texto-legal{
  font-size: 12px;
  color: #C3CC50;
  text-align: center;
    display: inline-block;
    width: 60%;
    margin: 20px 0 40px 0;
    transition: 1s ease all;
}

.logo-cueto-footer {
    float: left;
    width: 10%;
    height: 60px;
    margin: 12px 0px 0 50px;
}

.texto-condiciones-movil {
  display: none;
}

.texto-condiciones {
    width: 60%;
    font-size: 12px;
    font-weight: 300;
    color: var(--blanco);
    float: left;
    margin: 10px 0 0 5%;
}

.logo-ikant-footer {
    float: right;
    width: 10%;
    height: 60px;
    margin: 12px 50px 0 0px;
}


.cont-urmeneta {
    width: 100%;
    display: inline-block;
    margin: 12px 0 10px 0px;
}

.logo-urmeneta {
    width: 220px;
    display: inline-block;
    margin: 12px 0 0px 0px;
}

.ormuz-contenedor {
    width: 50%;
    display: inline-block;
    margin-bottom: 10px;
}

.logo-ormuz {
float: left;
width: 130px;
    margin: 10px 0px 0 0px;
    /* background-color: var(--blanco); */
}



.texto-ormuz {
  width: calc(100% - 140px);
font-size: 12px;
font-weight: 300;
color: var(--blanco);
float: left;
padding-left: 14px;
margin-left: 10px;
text-align: left;
border-left: thin solid #fff;
}

.guion-rut {
    font-size: 14px;
    font-weight: 900;
    color: #ffffff;
    float: left;
    display: block;
    height: 35px;
    margin: 2px 0 0 0;
    padding: 10px;
}

.informacion{
  width: 100%;
  display: inline-block;
  margin: 12px 0 0px 0px;
}

.direccion {
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    color: var(--blanco);
    float: left;

    margin: 10px 0 0 0;
}

.direccion i{
  width: 20px;
  float: left;
  margin: 0 0 0 0;
}

.direccion p{
  width: 80%;
  float: left;
  margin: 0 0 0 5px;
  text-align: left;
}

.direccion p a{
  color: var(--blanco);
  text-decoration: none;
}

.telefono {
    /* width: 170px; */
    font-size: 14px;
    font-weight: 400;
    color: var(--blanco);
    float: left;
    display: block;
    margin: 10px 0 0 0;
}

.telefono i{
  width: 20px;
  float: left;
  margin: 0 0 0 0;
}

.telefono p{
  /* width: 80%; */
  float: left;
  margin: 0 0 0 5px;
  text-align: left;
  color: var(--blanco);
}

.telefono p a{
  color: var(--blanco);
  text-decoration: none;
}

.espacio-izq{
  margin-left: 10px;
}

.espacio-izq-redes{
  margin-left: 10px;
}

.redes {
    font-size: 14px;
    font-weight: 400;
    color: var(--blanco);
    float: left;
    margin-top: 10px;
}

.redes i{
  width: 40px;
  float: left;
  margin: 0 0 0 0;
}



/* ------------------------- */
/* Footer */
/* ------------------------- */
