/* CSS Document */
@import url("fonts/estilos-fontes.css");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
/*fontes*/
:root {
  --cor-01: #6e4b16;
  --cor-02: #9F682B;
  font-size: 16px;
}

/*Type RD*/ html {
  font-size: 1rem !important;
}
@media screen and (min-width: 320px) {
  html {
    font-size: calc(1rem + 6 * ((100vw - 320px) / 680));
  }
}
@media screen and (min-width: 992px) {
  html {
    font-size: 1rem !important;
  }
}
/*Type RD*/
html {
  overflow-x: hidden;
  /*scroll-behavior: smooth;*/
}
.main {
  width: 100%;
  height: 100%;
  position: relative;
}
body, html {
  height: 100%;
  width: 100%;
}
body {
  font-family: 'Brandon Grotesque';
	font-weight: normal;
    font-style: normal;
    font-display: swap;
	background: #000;
	color: white;
	font-size: 1rem;
}
a {
  text-decoration: none;
}
ol, ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1, h2, h3, h4, h5, h6 {
	color: white;
	letter-spacing: 3px;
	font-weight: 500;
}
p {
  letter-spacing: 1px;
  font-size: .9rem;
  line-height: 1.85rem;
	font-weight: 300;
}

.bg-cor-pri {
  background: var(--cor-01);
}
.bg-cor-sec {
  background: var(--cor-02);
}
a:focus, button:focus, input:focus, textarea:focus {
  outline: none !important;
}
.offcanvas {
  background: var(--cor-01) url("../imgs/bgs/bg-menu.webp") no-repeat 0 0;
  background-size: cover;
  border-right: 3px solid white !important;
  box-shadow: 10px 0 10px rgba(0, 0, 0, 0.5);
  max-width: 330px;
}
.offcanvas .btn-close {
  ;
  background: url("../imgs/btn-close-white.svg") no-repeat center center;
  background-size: 16px;
}
.offcanvas-header {
  background: var(--cor-02);
}
.offcanvas h5 {
  border-bottom: 1px solid white;
  font-weight: bold;
  border: none;
}
.offcanvas nav {
  margin: 0 auto;
}
.offcanvas .nav-link {
  color: rgba(255, 255, 255, .6);
  transition: all .3s;
}
.offcanvas .nav .nav-item .nav-link, .offcanvas .dropdown-toggle::after {
  font-size: 1rem;
}
.offcanvas .nav-link:before {
  /*content: " • ";*/
}
.offcanvas .nav-link:hover {
  color: white;
  background: rgba(0, 0, 0, .25);
}
.offcanvas .offcanvas-body {
  background: rgba(0, 0, 0, .35);
}
/*menu internas*/
.navbar {
	display: block;	/*para manter o efeito do hover before fixo*/
	margin: 0 auto;
	max-width: 330px;
	left: 3vw;
}
.nav .nav-item {
  /*text-align: right;*/
  /*text-shadow: 1px 1px 3px rgba(0, 0, 0, .75);*/
  margin-bottom: 25px;
}
.nav .nav-item .nav-link {
  /*text-align: center;*/
  /*display: inline-block;*/
  transition: all .5s;
  font-size: 1.5em;
  color: white;
  position: relative;
  padding: 10px 20px;
  display: inline-block;  
  border-bottom: 1px solid rgba(255,255,255,.2);
	  border-left: 3px solid var(--cor-01);
  background: rgba(45, 34, 22, .20);	
	font-weight: 400;
	text-shadow: 1px 1px 4px black;
}

.nav .nav-item .nav-link:hover,
.nav .nav-item .nav-link:focus {
  /*background: var(--cor-02);*/
	background: rgba(45, 34, 22, .90);
	transform: scale(1.1);
	color: white;  
}

.nav .nav-item .nav-link::before {
    content: "";
    /* Reserve o espaço para o ícone no estado normal */	
    width: 30px; 
    height: 14px; 
    position: absolute;
    background: none;
	background: url("./../../assets/imgs/ico-infinito.png") no-repeat center center;
	background-size: 0; 
    display: inline-flex; 
    margin-right: 5px;
    opacity: 0; 
    transition: all .25s;   
}

.nav .nav-item .nav-link:hover::before,
.nav .nav-item .nav-link:focus::before {
    content: "";
	position: relative;
    background: url("./../../assets/imgs/ico-infinito.png") no-repeat center center;
	background-size: contain; 
    opacity: 1; 
}

.offcanvas .nav .nav-item .nav-link:before {
	content: "";
	width: auto;
	height: auto;
	background: auto;		
	display:none;
}

.nav .nav-item .nav-link.gold:hover,
.nav .nav-item .nav-link.gold:focus {
  background: var(--cor-02);
  color: white !important;
}
/*dropdown*/
.dropdown-menu {
  position: relative;
  border-radius: 0;
  background: transparent;
  width: 100%;
  margin-left: 15px;
  border: none;
}
.dropdown-menu.show {
  display: block;
  margin-top: 0px;
  max-width: 200px;
}
.dropdown-toggle::after {
  content: '\F282' !important;
  font-family: "bootstrap-icons";
  border: none;
  font-size: 18px;
  vertical-align: -.1rem;
}
.dropdown-menu .dropdown-item {
  color: white;
  text-shadow: 1px 1px 2px black;
  text-transform: uppercase;
  border-bottom: 1px solid white;
  border-left: 1px solid white;
  transition: all .25s;
	background: rgba(110, 75, 22, .5);
}
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
  background: rgba(110, 75, 22, .9);
  color: #FFF;
}
/* Backgrounds */

.section-endless {
  background: url("../../assets/imgs/bgs/bg-endless.webp") no-repeat center center fixed;
  background-size: cover !important;
  /*width: 100%;
  height: 100vh;*/
  touch-action: auto;
  position: relative;
}
.section-endless h5 {
  line-height: 1.6;
  font-weight: 500;
	letter-spacing: 10px;
  text-transform: uppercase;
}
.section-life-style {
  background: url("../../assets/imgs/bgs/bg-life-style.webp") no-repeat center center fixed;
  background-size: cover !important; 
  touch-action: auto;
  z-index: 1;
}
.section-flexon:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(135deg, #000000, #000000);
  opacity: .3;
  mix-blend-mode: multiply;
  z-index: 1;
}
.section-endless:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(135deg, #000000, #000000);
  opacity: .4;
  mix-blend-mode: multiply;
  z-index: 0;
}
.section-life-style:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(135deg, #000000, #000000);
  opacity: .40;
  mix-blend-mode: multiply;
  z-index: 0;
}


.zoom {
  animation: zoom 2s infinite 1s alternate;
}
.zoom2 {
  animation: zoom2 3s infinite 2s alternate;
}
@keyframes zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}
@keyframes zoom2 {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes shrink {
  0% {
    transform: scale(1) rotate(0deg);
  }
  100% {
    transform: scale(1.25) rotate(7deg);
  }
}
.cont-mask {
  -webkit-filter: drop-shadow(-10px 0px 10px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(-10px 0px 10px rgba(0, 0, 0, 0.5));
}
.mask-img-01 {
  -webkit-clip-path: polygon(37.5% 0%, 100% 0%, 62.5% 100%, 0% 100%);
  clip-path: polygon(37.5% 0%, 100% 0%, 62.5% 100%, 0% 100%);
}
.botao-home a .cont-mask {
  transition: .25s all;
}
.botao-home a:hover .cont-mask {
  position: relative;
  /*padding: .25rem;
  //box-shadow: 0px 0px 5px 10px rgba(255, 255, 255, .25);*/
  z-index: 110 !important;
  transform: scale(1.1);
}
.botao-menu a img, .botao-home2 a img {
  transition: .25s all;
}
.botao-menu a:hover img {
  position: relative;
  /*padding: .1rem;*/
  /*box-shadow: 0px 0px 5px 5px rgba(255, 255, 255, .9);*/
  z-index: 110 !important;
  transform: scale(1.1);
  filter: contrast(200%);
}
.botao-home2 a:hover img {
  position: relative;
  z-index: 110 !important;
  transform: scale(1.1);
  filter: brightness(130%);
}
.botao-home2 {
  margin-top: 25%;
}
.logo-endless {
  min-width: 300px;
  /*animation: zoom 3s infinite 3s alternate;*/
}
.ped-01 {
  position: absolute;
  z-index: 5;
  top: 0%;
  left: 0%;
  opacity: .5;
}
.ped-02 {
  position: absolute;
  z-index: 5;
  bottom: 0%;
  right: 0%;
  opacity: .5;
}
@keyframes example {
  /*from {opacity: 1;}
  to {opacity: 0;}*/
}
.endless-open.after {
  display: none !important;
}
/* Ox*/
.fixed-bottom {
  bottom: -10px;
}
/* areas comuns */
.section-endless-areas-comuns {
  background: #111 url("../../assets/imgs/bgs/bg-flexon.webp") no-repeat center center;
  background-size: cover !important;
  position: relative;
}
.section-endless-areas-comuns .list-unstyled {
  text-align: left;
  color: black;
  font-size: 80%;
}
.section-endless-areas-comuns .list-unstyled .media {
  margin-bottom: 8px;
}
.section-endless-areas-comuns .list-unstyled .media .numero {
  background: #444;
  border-radius: 50%;
  min-width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  color: white;
  border: 1px solid rgba(255, 255, 255, .5);
  display: flex;
  justify-content: center;
  align-items: center;	
}
.section-endless-areas-comuns .list-unstyled .media .numero.on {
  background: var(--cor-02);
  color: white;
  font-weight: 300;
  text-shadow: 0 0 1px black;
}
.section-endless-areas-comuns .list-unstyled .media-body, .section-endless-areas-comuns .list-unstyled .media-body a {
  display: flex;
  align-items: center;
}
.section-endless-areas-comuns .list-unstyled .media-body span {
  display: block;
  padding: 0 3px;
  margin-left: 5px;
  color: white;
}
.section-endless-areas-comuns .list-unstyled .media-body a {
  /*display: inline-block;*/
  border-radius: 25px;
  color: black;
  transition: all .25s;
  padding-right: 10px;
  max-width: 360px;
}
.section-endless-areas-comuns .list-unstyled .media-body a:hover {
  color: black !important;
  background: white;
  text-decoration: none;
}
.section-endless-areas-comuns .list-unstyled .media-body a:hover span {
  color: black !important;
}
.section-endless-areas-comuns .list-unstyled .media-body a:hover .numero, .section-endless-areas-comuns .list-unstyled .media-body a:focus .numero {
  border: transparent !important;
  color: white !important;
}
.box-card-info {
  background: rgba(255, 255, 255, 0.75);
  padding: 1rem;
  border-radius: 10px;
}
.section-endless-seu-espaco {
  background: url("../../assets/imgs/bgs/bg-seu-espaco.webp") no-repeat center center fixed;
  background-size: cover !important;
  touch-action: auto;
  position: relative;
}
.section-endless-seu-espaco h5, .section-endless-seu-espaco h6 {
  font-weight: 300;
}
.section-endless-comodidades {
  background: #111 url("../imgs/bgs/bg-flexon.webp") no-repeat center center fixed;
  background-size: cover !important;
  touch-action: auto;
  position: relative;
}
.section-endless-comodidades h4 {
  color: white;
  font-size: 1.5rem;
}
.section-endless-comodidades h5 {
  font-size: .95rem;
  margin-bottom: 1.75rem;
}
.section-endless-comodidades p {
  font-size: 1.025rem;
  line-height: inherit;
  margin-top: -1.25rem;
  font-weight: 300;
}
.section-endless-comodidades p small {
  font-size: .6rem;
  ;
}
.box-imagens {
	position: relative;
}
.box-imagens img {
  position: relative;
  z-index: 2;
}
.box-imagens span {
  position: absolute;
  z-index: 3;
  bottom: 15px;
  left: 15px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.75);
  color: white;
}

.box-imagens a img {
	transition: all .3s;
	border: 5px solid transparent;
}
.box-imagens a img:hover {
	border: 5px solid rgba(255,255,255,1);
}

.legendas-internas {
  position: relative;
}
.legendas-internas span {
  position: absolute;
  bottom: 15px;
  left: 10px;
  text-shadow: 1px 1px 2px black;
  font-size: .75rem !important;
  background: rgba(0, 0, 0, .25);
  padding: 0px 5px;
}
/*projeto*/
.section-endless-projeto {
  background: var(--cor-01) url("../../assets/imgs/bgs/bg-flexon.webp") no-repeat center center fixed;
  background-size: cover !important;
  position: relative;
}
.section-endless-projeto p {
  font-size: .80rem;
  line-height: inherit;
  font-weight: 300;
}
.font-redux {
  font-size: 75%;
}
/* rjz cyrela */

.section-rjz-01 {
  background: url("../../assets/imgs/bgs/bg-by-01.webp") no-repeat center center;
  background-size: cover !important;
  position: relative;
}
.section-rjz-02 {
  background: url("../../assets/imgs/bgs//bg-by-02.webp") no-repeat center center;
  background-size: cover !important;
  position: relative;	
}
.section-rjz-03 {
  background: url("../../assets/imgs/bgs/bg-by-03.webp") no-repeat center center;
  background-size: 100% !important;
  position: relative;	
}

.section-rjz-04 {
  background: url("../../assets/imgs/bgs/bg-by-04.webp") no-repeat right bottom;
  background-size: cover !important;
}

.section-rjz-03 p {
	text-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
	font-size: .6rem;
	text-transform: uppercase;
}

.section-rjz-01 p {
  position: relative;
  font-size: .85rem;
  letter-spacing: 4px;
}
.section-rjz-02 p {
  font-size: 1rem;
  line-height: 1.5;
}
.section-rjz-04 p {
	font-size: 1rem;
	line-height: 1.75;
	text-transform: uppercase;
	font-weight: 500;
}

.section-rjz-01:before,
.section-rjz-02:before,
.section-rjz-03:before,
.section-rjz-04:before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0,0,0,.4) 20%, rgba(0,0,0,0) 60%);
	mix-blend-mode: multiply;	
}

/*local*/
.section-local-01 {
  background: url("../../assets/imgs/bgs/bg-local-01.webp") no-repeat center center;
  background-size: cover !important;
  position: relative;
}

.section-local-02 {
  background: url("../../assets/imgs/bgs/bg-local-02.webp") no-repeat center center;
  background-size: cover !important;
  position: relative;
}

.section-local-03 {
  background: url("../../assets/imgs/bgs/bg-local-03.webp") no-repeat center center;
  background-size: cover !important;
  position: relative;	
}

.section-local-04 {
  background: url("../../assets/imgs/bgs/bg-local-04.webp") no-repeat right center;
  background-size: cover !important;
  position: relative;
}

.section-local-05 {
  background: url("../../assets/imgs/bgs/bg-local-05.webp") no-repeat left center;
  background-size: cover !important;
  position: relative;
}

.section-local-06 {
  background: url("../../assets/imgs/bgs/bg-local-06.webp") no-repeat left center;
  background-size: cover !important;
  position: relative;
}

.section-local-07 {
  background: url("../../assets/imgs/bgs/bg-local-07.webp") no-repeat right center;
  background-size: cover !important;
  position: relative;
}

.section-local-08 {
  background: url("../../assets/imgs/bgs/bg-local-08.webp") no-repeat center center;
  background-size: cover !important;
  position: relative;
}

.section-local-01:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(255,255,255,.3), rgba(255,255,255,0));	
	--z-index: 1;
	/*mix-blend-mode: multiply;*/
}
.section-local-02:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/*background-image: linear-gradient(30deg, rgba(0,0,0,0), rgba(0,0,0,1));*/
	background: linear-gradient(to bottom left, rgba(0,0,0,.5) 40%, rgba(0,0,0,.1) 60%);	
	mix-blend-mode: multiply;
	--z-index: 1;
}

.section-local-03:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 1;
	background: linear-gradient(to top right, rgba(0,0,0,.5) 40%, rgba(0,0,0,0) 60%);
	mix-blend-mode: multiply;
	z-index: 1;
}

.section-local-04:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to bottom right, rgba(0,0,0,0) 40%, rgba(0,0,0,.5) 60%);
	mix-blend-mode: multiply;
	--z-index: 1;
}
.section-local-05:before,
.section-local-06:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(135deg, rgba(0,0,0,.6), rgba(0,0,0,0));
	mix-blend-mode: multiply;
	--z-index: 1;
}

.section-local-07:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to bottom right, rgba(0,0,0,0) 40%, rgba(0,0,0,.5) 60%);
	mix-blend-mode: multiply;
	--z-index: 1;
}

.section-local-08:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.5));	
	mix-blend-mode: multiply;
	--z-index: 1;
}

.section-local-01 h4, .section-local-08 h4 {
	font-size: 1.30vw;
	line-height: 1.5;
	letter-spacing: 10px;
}
.section-local-03 h4,
.section-local-04 h4,
.section-local-05 h4,
.section-local-06 h4,
.section-local-07 h4 {
	font-size: 1.10vw;
	line-height: 1.5;
	letter-spacing: 10px;
}
.section-local-02 p,
.section-local-03 p,
.section-local-04 p,
.section-local-05 p,
.section-local-06 p,
.section-local-07 p {
	line-height: 1.5;
	font-size: 1.1rem;	
}

/*end local */

.btn-rolar {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 30;
  font-size: 1.5rem;
  transition: .35s all;
  border-radius: 50%;
  border: 1px solid white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;	
}
.btn-rolar:hover {
  background: var(--cor-02);
  color: black !important;
}
#pp-nav {
  display: none;
}
/*flex on*/
.section-flexon {
  background: url("../../assets/imgs/bgs/bg-flexon-2.webp") no-repeat center center;
  background-size: cover !important;
}
.section-flexon h4 {
  font-size: 1.3rem;
  line-height: inherit;
  font-weight: 500;
  margin-bottom: 30px;
}
.section-flexon h5 {
  font-size: 1.15rem;
  font-weight: 500;
}
.section-flexon p {
  line-height: inherit;
  font-size: 1rem;
  color: white;
  font-weight: 300;
}
.box-flexon {
	/*--margin-bottom: 15px;
	--display: flex;
	--align-items: start;*/
	padding: 5px 20px;
	text-align: center;
}
.box-flexon .icone {
	margin-right: 10px;
}
@media (min-width: 1300px) {
  .align-self-xxl-end {
    -ms-flex-item-align: end !important;
    align-self: end !important;
  }
}
@media (min-width: 769px) {
  .section-home-02 .vh-100.align-content-center {
    align-items: end !important;
  }
}
/**/
.titulo {
  /*font-size: 1rem;*/
  margin-bottom: 3px;
  font-style: normal;
}
.section-endless-cuidados {
  background: var(--cor-01) url("../imgs/bgs/bg-cuidados.webp") no-repeat left center fixed;
  background-size: cover !important;
  position: relative;
}
.section-endless-cuidados h4 {
  z-index: 10;
  position: relative;
}
.section-endless-cuidados h5 {
  margin-bottom: .75rem;
	font-size: 1rem;
}
.section-endless-cuidados p {
  font-size: 1.025rem;
  line-height: inherit;
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.section-endless:before,
.section-endless-projeto:before,
.section-endless-comodidades:before,
.section-endless-projeto:before,
.section-rjz-01:before,
.section-rjz-02:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(135deg, #000000, #000000);
  opacity: .20;
  mix-blend-mode: multiply;
}
.section-endless-areas-comuns:before,
.section-endless:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5), #000000);
  opacity: .4;
  mix-blend-mode: multiply;
}

.section-endless-seu-espaco:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
	/*background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5), #000000);
	opacity: .3;
	mix-blend-mode: multiply;*/
	background-image: linear-gradient(to top, rgba(0,0,0,.3) 30%, rgba(255,255,205,.3) 100%);
	z-index: 1;
}

.section-endless-cuidados:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 1), #000000);
  opacity: .40;
  mix-blend-mode: multiply;
}
.box-texto1 {
  padding: 1rem 2rem;
  text-align: left;
  line-height: 2.75rem;
  text-shadow: 0px 0px 1px black;
}
.box-texto2 {
  padding: 1rem 2rem;
  text-align: left;
  color: black;
  font-style: italic;
  font-size: 1.1rem;
  text-shadow: 0px 0px 1px white;
  background: rgba(255, 255, 255, .25);
  border-left: 5px solid var(--cor-02);
}
/* section 06 */
img.kal {
  max-width: 350px;
}
a img.kal {
  transition: all .3s;
}
a img.kal:hover {
  transform: scale(1.1);
}
#box-kal-01 a, #box-kal-01-cob a {
  /*background: rgba(153, 102, 51, 0.25);
    border: 1px solid white;*/
  border-radius: 30px !important;
  padding: 2%;
  transition: all .2s;
}
#box-kal-01 a:hover, #box-kal-01-cob a:hover {
  background: rgba(204, 153, 0, .75);
  border: 1px solid white;
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
  padding: 2%;
}
.section-06 h5 {
  /*padding: 0 2rem;*/
}
.section-06 h5.bold {
  font-weight: 600;
}
.box-residenciais a img {
  border-radius: 50%;
  transition: all .25s;
  border: 3px solid rgba(153, 102, 51, 0.5);
  -webkit-filter: grayscale(100);
  filter: grayscale(100);
  width: 110px;
  margin-bottom: 10px;
}
.box-residenciais a {
  margin-top: 1rem;
  text-decoration: none;
}
.box-residenciais a img:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-filter: grayscale(0) contrast(110%);
  filter: grayscale(0) contrast(110%);
}
.section-a-gardens,
.section-a-aptos,.section-a-cobs {
  background: #ffffff url("../imgs/bgs/bg-flexon.webp") no-repeat center center fixed;
  background-size: cover !important;
  position: relative;
}

.section-a-gardens .navbar .nav-link .bi,
.section-a-aptos .navbar .nav-link .bi,
.section-a-cobs .navbar .nav-link .bi {
  background: rgba(0,0,0,0.5);
	padding: 8px;
	border-radius: 30px;
	display: inline-flex;
	color: var(--cor-02);
	border: 1px solid var(--cor-02);
	margin-bottom: 10px;
}
.section.aptos h4 {
	/*color: white;
	font-size: 1.1rem;
	font-weight: 500;*/
}
.section.aptos h6 {
  color: white;
  padding-bottom: .5rem;
  font-size: 1rem;
  font-weight: 500;
}
.section.aptos p {
  /*color: white;
  padding-bottom: .5rem;
  font-size: 1rem;*/
}
.alinhamento {
  margin-top: 0%;
  margin-left: -4%;
}

.box-plantas-container {
	margin-left: 11vw;
}

.section-a-cobs .box-plantas-container {
	margin-left: 8vw;
}

.box-plantas-container .box-dados {
	display: flex;
    align-items: center;
    text-align: left;
	margin-bottom: 10px;
}
.box-plantas-container .box-dados img { 
	max-width: 60px;
	margin-right: 20px;
	padding-bottom: 6px;
}
.box-plantas-container .box-dados h4 {
	font-size: 1.3rem;
	letter-spacing: 3px;
	/*margin-left: -11%;*/
}


.box-plantas-container .box-plantas-texto {
  padding-bottom: 15px;
}

.box-plantas-container .box-plantas-texto p {	
	line-height: 1.45;
}
.box-plantas-container .box-plantas-texto p span b { 
	font-size: 1.1rem;
	font-weight: 500;
}
.box-plantas-container .box-plantas-texto p small {
  font-size: .65rem !important;  
}

.box-2blocos {
    display: flex;
    align-items: flex-start;
	margin-top: -10px;
	margin-bottom: 15px;
}
.box-2blocos span {
   font-size: .9rem !important;   
} 
.box-2blocos .fio-plantas {
    width: 1px;
    height: 5.2rem;
    background: white; 
	margin: 0 15px;
}
.box-2blocos .fio-plantas.lin-3 {
    height: 4rem;
}

.seta .esq a {
  position: absolute;
  z-index: 10;
  top: 47.5%;
  left: 0;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.seta .dir a {
  position: absolute;
  z-index: 10;
  top: 47.5%;
  right: 0;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.seta a {
  color: rgba(255, 255, 255, 1);
  background: rgba(0, 0, 0, .25);
  transition: all .25s;
}
.seta a:hover {
  color: rgba(255, 255, 255, 1);
  background: rgba(0, 0, 0, 1);
}
.seta a.disabled {
  color: rgba(255, 255, 255, .2);
}
.seta a:hover {
  color: white;
}
.setas {
  position: absolute;
  width: 100%;
  z-index: 10;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.setas a {
  color: rgba(255, 255, 255, .75);
  background: rgba(0, 0, 0, .25);
}
.setas a:hover {
  color: rgba(255, 255, 255, 1);
  background: rgba(0, 0, 0, .5);
}
.setas a.disabled {
  color: rgba(255, 255, 255, .2);
}
.setas a:hover {
  color: white;
}
.setas .nav-link {
  padding: 0;
}
.section.aptos .nav-link {
  transition: all .25s;
}
.section.aptos .nav-link:hover {
  transform: scale(1.2);
}
.section.aptos .navbar.bg-dark {
  background: rgba(153, 102, 51, .9) !important;
}
/* ============ desktop view ============ */
.section.aptos .navbar-nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.navbar-nav .nav-link {
  padding-right: 10px;
  padding-left: 10px;
  min-width: 4rem;
}
/* section 03 conforto */
.nav-pills .nav-link {
  transition: all .5s;
  color: rgba(153, 102, 51, 1);
  background: rgba(255, 255, 255, .75);
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link,
.nav-pills .nav-link:hover {
  color: #fff !important;
  background: rgba(173, 140, 80, 1);
}
.nav-pills .nav-link:hover {
  color: #fff !important;
  background: rgba(173, 140, 80, 1);
}
/* Breadcrumb */
.breadcrumb {
  background-color: rgba(0,0,0,.5);
  text-transform: uppercase;
  font-size: 65%;
  /*margin: 5px 10px 10px 0;*/
  position: fixed;
  padding: 6px 32px 6px 16px;
  /*border-left: 10px solid rgb(0, 0, 0);*/
  z-index: 11;
  color: rgba(255, 255, 255, .5);
  border-bottom: 1px solid rgba(255,255,255,.5);
	/*--width: 100%;*/
	border-bottom-right-radius: 10px;
}
.breadcrumb-item.active {
  color: white;
  font-size: 12px;
}
.breadcrumb-item.menu i {
	background: rgba(0,0,0,.5);
	border-radius: 50%;	
	padding: 2px 4px;	
}
.breadcrumb-item a {
  color: inherit;
}
.breadcrumb-item a:hover {
  color: white;
	text-decoration: underline;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, .25);
  font-size: 12px;
  font-weight: 600;
}

/* box legenda foto */
.box-bg-legenda-foto {
  /*position: relative;*/
}
.box-bg-legenda-foto span {
  position: absolute;
  top: 5%;
  right: 15px;
  font-size: .70rem;
  text-shadow: 1px 1px 1px black;
  color: white;
  z-index: 100;
  margin-bottom: 100px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 100 !important;
}
.box-bg-legenda-foto span.vertical {
  text-align: right;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.box-bg-legenda-foto span.down {
  text-align: right;
  top: auto;
  right: 19%;
  bottom: 0;
  margin-bottom: 2%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  text-transform: none;
}
.box-bg-legenda-foto span.down.cadeira {
  right: 21%;
  margin-bottom: 2%;
}
/*item */
.item a {
  /*position: relative;
            display: block;
            width: 100%; */
}
.item a:before {
  /*content: "\f00e";
            font-family: FontAwesome;            
            color: rgba(255,255,255,0.25);
            text-shadow: none;
            font-size: 2.25rem;    
            position: absolute;               
            text-decoration: none;
            bottom: 10px; 
            left: 0px;
            width: 100%;*/
}
.item span {
  text-transform: uppercase;
  line-height: 5px;
  color: white;
  background: rgba(0, 0, 0, .75);
  padding: 10px;
  /*font-size: 14px;*/
}
.item-tour span {
  text-transform: uppercase;
  color: white;
  /*font-size: 12px;*/
}
.item-tour p {
  text-transform: uppercase;
  color: white;
  /*font-size: 12px;*/
  line-height: 15px;
  margin-top: 10px;
}
/* VenoBox */
.vbox-container {
  overflow-y: auto;
}
.vbox-overlay {
  background: rgba(0, 31, 0, 0.5);
}
.vbox-next, .vbox-prev {
  /*background: rgba(255, 255, 255, 0.5);*/
  border-radius: 50%;
  transition: all .25s;
}
.vbox-next:hover, .vbox-prev:hover {
  background: var(--cor-02) !important;
  transform: scale(1.1);
}
.vbox-next span {
  right: 18px;
  top: 15px;
}
.vbox-prev span {
  left: 18px;
  top: 15px;
}
.vbox-title {
  /*font-size: 15px;*/
  text-transform: uppercase;
  background: #111;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: white !important;
  font-weight: 300;
  text-overflow: inherit;
	    white-space:normal;
}
.vbox-close {
  /*font-size: 2rem;*/
  background: transparent;
  /*border-bottom-left-radius: 5px;*/
  color: white;
}
.vbox-left {
  background: var(--cor-02) !important;
  /*border-bottom-right-radius: 15px;*/
  padding-right: 10px;
}
.vbox-num {
  background: var(--cor-02) !important;
  color: white !important;
}
.vbox-next span, .vbox-prev span {
  width: 14px !important;
  height: 14px !important;
  /*border: 2px solid transparent;*/
}
.vbox-child.vbox-inline, .vbox-child.venoratio {
  max-width: 100%;
  height: 89vh;
}
.vbox-child img {
  /*--max-height: 800px;*/
}
.masterplan .vbox-child img, .plantas .vbox-child img {
  max-height: 100%;
}
.areas-e-vagas .vbox-child.vbox-inline, .areas-e-vagas .vbox-child.venoratio {
  max-width: 100% !important;
  height: 100% !important;
}
.memorial .vbox-child.vbox-inline, .memorial .vbox-child.venoratio {
  max-width: 100% !important;
  height: 100% !important;
}
.venoratio-16x9.vbox-child.venoratio {
  --vb-aspect-ratio: calc(9 / 16* 100%);
  max-width: calc(min(var(--vbox-max-width), (98vh - 90px)* 16 / 9));
}
.vbox-fit .vbox-child img,
.vbox-fit .vbox-child.venoratio {
  max-width: 100%;
  max-height: calc(100vh - 100px);
}
/* VenoBox FIM */
/* animate custom */
.fadeInLeft, .fadeInRight, .fadeInDown, .fadeInUp {
  animation-duration: 3s;
}
.animated.delay-7s {
  animation-delay: 7s;
}
.animated.delay-8s {
  animation-delay: 8s;
}
.animated.delay-9s {
  animation-delay: 9s;
}
.animated.delay-10s {
  animation-delay: 10s;
}
.animated.delay-11s {
  animation-delay: 11s;
}
.animated.delay-12s {
  animation-delay: 12s;
}
/*SR*/
/* extension */
.sr .scroller, .sr .slideUp, .sr .slideDown, .sr .slideLeft, .sr .slideRight {
  visibility: hidden;
}
/*2020*/
.twentytwenty-before-label:before {
  content: "Planta";
}
.twentytwenty-after-label:before {
  content: "Planta Flex On";
}
/* Tour 360 */
.tour-container.mobile {
  /*display: none;*/
}
.tour-container {
  /* width: 100%;
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: center;*/
}
.ico-tour {
  max-height: 60px;
}
.box-tour {
  position: fixed;
  top: 0px;
  right: 15px;
  background: #fff;
  padding: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, .75);
  min-width: auto;
  text-align: center;
  z-index: 100;
}
.box-tour span {
  color: rgba(0, 0, 0, .5)
}
.pnlm-load-button, .pnlm-load-box {
  position: absolute;
  top: 50%;
  background-color: rgba(0, 0, 0, .7);
  border-radius: 5px;
}
.pnlm-load-button {
  width: 100px;
  height: 50px;
  margin: -25px 0 0 -50px;
}
.pnlm-load-button p, .pnlm-load-box p {
  color: white;
  font-size: 14px;
  text-transform: uppercase;
}
.pnlm-load-button p span {
  /*font-size: 2rem;*/
  color: rgba(255, 255, 255, .5)
}
/* Tour 360 */
.box-lupa {
  width: 100%;
  max-width: 1500px;
  position: relative;
}
.lupa {
  width: 100%;
  position: absolute;
  top: -30px;
  z-index: 10;
}
/*Ox*/
.wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 5px;
  /*background-image: linear-gradient(to top, #accbee 0%, #e7f0fd 100%);*/
  /*opacity: .30;*/
  /*overflow: hidden;*/
  z-index: 2;
}
.Ox {
  width: 110%;
  height: 200%;
  position: absolute;
  top: -50%;
  left: 60%;
  margin-left: -60%;
  margin-top: -50%;
  border-radius: 35%;
  background: rgba(255, 255, 255, 0.06);
  animation: Ox 25s infinite linear;
}
.Ox.reflex {
  transform: rotate(90deg);
}
@keyframes Ox {
  from {
    transform: rotate(0deg);
  }
  from {
    transform: rotate(360deg);
  }
}
.planta-max {
  max-width: 700px;
}
.planta-max.max2 {
  max-width: 890px;
}
.planta-max.max3 {
  max-width: 1000px;
}
.planta-max.vertical {
  max-width: 450px;
}
.planta-max.vertical.vert3 {
  max-width: 560px;
}
.planta-max.vertical.vert2 {
  max-width: 660px;
}

/*media queries */
@media (max-width: 1601px) {
	.section-endless-cuidados .vh-100,
	.section-endless-comodidades .vh-100,
	.section-flexon .vh-100,
	.section-endless-projeto .vh-100 {
    height: 100% !important;
  }
  .section-endless-cuidados, .section-endless-comodidades,
	section-flexon, .section-endless-projeto {
    padding: 35px 0;
  }
}

@media (max-width: 1366px) and (max-height: 768px) {
  .vbox-fit .vbox-child img,
	.vbox-fit .vbox-child.venoratio {
    /*max-width: 99%;
    max-height: calc(98vh - 100px);*/
  }
}
@media (max-width: 1366px) {
	.home-01 .vh-100,
	.section-endless .vh-100,
	.section-endless-seu-espaco .vh-100 {
		height: 100vh !important;
	}
	.section-endless-projeto .vh-100,
	.section-flexon .vh-100,
	.section-endless-comodidades .vh-100,
	.section-endless-cuidados .vh-100,
	.section-endless-areas-comuns .vh-100 {
		height: 100% !important;
	}
	
	.section-rjz-03 .vh-100 {
		/*height: 100% !important;
		min-height: 47vw;*/
	}
	
	
  .section-endless-areas-comuns {
    padding: 15px 0;
  }
  /*.img-flexon {
    max-height: 500px;
  }*/
  .section-flexon {
    padding-top: 5%;
  }
  .section-endless .slogan {
    max-width: 540px;
  }
  .section.aptos.section-a-cobs .box-plantas-texto h4 {
    font-size: 1.1rem;
    /*margin-left: -12.85%;*/
  }
  .planta-max {
    max-width: 500px;
  }
  .planta-max.max2 {
    max-width: 700px;
  }
	.planta-max.max3 {
    max-width: 750px;
  }
  .planta-max.vertical {
    max-width: 440px;
  }
  .planta-max.vertical.vert2 {
    max-width: 340px;
  }
  .planta-max.vertical.vert3 {
    max-width: 430px;
  }
	
	.section-rjz-03 {
	  background: url("../../assets/imgs/bgs/bg-by-03.webp") no-repeat center center;
	  height: 50vw;	  	
	}
}
@media (max-width: 1200px) {
  .box-residenciais a img {
    width: 110px !important;
  }
  .sec01-bg-01 {
    height: 100%;
  }
  .section-01.sec01-bg-01, .sec06-bg-03 {
    padding: 60px 0 60px !important;
  }
  .box-plantas-container .box-plantas-texto h4 {
    font-size: 1.15rem;
  }
	.section-rjz-01 .vh-100,
	.section-rjz-02 .vh-100,
	.section-rjz-03 .vh-100,
	.section-rjz-04 .vh-100 {
    height: 100% !important;
    padding: 30px 0;
  }	
}
@media (max-width: 1024px) {
  .section.aptos h6 {
    min-width: 55%;
  }
  .setas a .fa-3x, .seta a .fa-3x {
    font-size: 2rem;
  }
  .box-3-quartos img {
    max-height: 100px !important;
    height: 100%;
    top: 32px;
    left: 0;
  }
  #pagepiling {
    overflow-y: auto !important;
  }
  .box-table .pp-tableCell {
    padding: 60px;
  }
  .section-flexon {
    padding-top: 60px;
  }
  .section-endless .slogan {
    max-width: 380px;
  }
  .section-endless h5 {
    font-size: 1rem;
  }
  .nav .nav-item .nav-link {
    font-size: 1.6rem;
  }
  .box-bg-legenda-foto span.down {
    right: 25%;
  }
  .box-bg-legenda-foto span.down.cadeira {
    right: 25%;
  }
  .box-by2 {
    margin-top: auto;
    margin-left: auto;
  }
  .box-texto1 {
    font-size: 1.15rem !important;
    line-height: 2.2rem !important;
    margin-bottom: 2rem !important;
  }
  .box-texto2 {
    font-size: .95rem !important;
    max-width: 80%;
  }
  .section.aptos.section-a-cobs .box-plantas-texto h4 {
    font-size: 1rem;
    margin-left: -12.85%;
  }
  .planta-max.vertical.vert2 {
    max-width: 320px;
  }
  .planta-max.vertical.vert3 {
    max-width: 320px;
  }
  .planta-max.max2 {
    max-width: 580px;
  }
	.planta-max.max3 {
    max-width: 500px;
  }
	.section-endless-cuidados {
	  background: var(--cor-01) url("../imgs/bgs/bg-cuidados-v.webp") no-repeat left 50% fixed;
	  padding-top: 60px;
	}
}
@media screen and (min-height: 1000px) and (orientation:landscape) {
  .logo-endless {
    margin-top: 10%;
  }
}
@media (max-width: 992px) {
  .box-ele-deco-01, .box-ele-deco-02, .box-3-quartos img {
    max-height: 180px;
  }
  .section-endless-areas-comuns .list-unstyled {
    font-size: 80%;
  }
  .section-endless-areas-comuns {
    padding: 40px 10px;
  }  
}
@media (max-width: 768px) {
  .nav .nav-item {
    /*text-align: center;*/
    padding: 0 0px;
  }
  .navbar {
    display: block;
  }
  .botao-menu img {
    max-height: 200px !important;
    display: block;
    margin: 0 auto;
  }
  .botao-home2 {
    margin-top: 25%;
  }
  img.kal {
    max-height: 120px;
    margin: 0 auto;
  }
  .box-ele-deco-01, .box-ele-deco-02, .box-3-quartos img {
    max-height: 90px !important;
  }
  .box-index {
    background-color: rgba(255, 255, 255, 0.25) !important;
    padding: 30px;
    margin: 0 30px;
  }
  .box-index img {
    width: 230px;
  }
  #section2 .btn {
    margin-top: 0rem;
  }
  .bg-01.box-bg, .bg-02.box-bg, .bg-03.box-bg, .bg-04.box-bg, .bg-05.box-bg {
    background-size: contain;
    min-height: 100px !important;
  }
  .vbox-title {
    /*height: 54px;*/
    height: auto;
    line-height: 18px;
  }
  .vbox-child.vbox-inline, .vbox-child.venoratio {
    max-width: 95%;
  }
  /*mobile*/
  .box-texto1 {
    color: black;
    text-shadow: 0 0 1px white;
  }
  .box-texto2 {
    max-width: 42%;
  }
  .box-bg-legenda-foto span.down {
    right: 26%;
    bottom: 5%;
    font-size: 1rem;
  }
  .section-endless .logo-endless-m {
    max-width: 100px;
  }
  .section-endless-projeto {
    padding: 40px 20px;
  }
  .box-bg-legenda-foto span.down.cadeira {
    right: 33%;
  }
  .section.aptos .box-plantas {
    transform: scale(.90);
  }
  .section.aptos .box-plantas h4 {
    font-size: 1.2rem;
  }
	.offcanvas .nav .nav-item .nav-link,
	.offcanvas .dropdown-toggle::after {
    font-size: 1rem;
  }
  .offcanvas {
    max-width: 85%;
  }
  .alinhamento {
    margin-top: 0%;
    margin-left: 0%;
  }
  .section-rjz-01 .logos {
    display: block;
  }
  .section-rjz-01 .logos img {
    display: block;
    margin: 0 auto;
    margin-bottom: 45px;
  }
  .section-rjz-04 p {
    /*--text-align: center;*/
  }
  .section-rjz-04 .logo-rjz {
    max-width: 200px;
  }
	
  .section-rjz-01 .logos {
    display: block;
  }
  .section-rjz-01 .logos img {
    display: block;
    margin: 0 auto;
    margin-bottom: 45px;
  }
  .btn-rolar {
    font-size: 1rem;
    width: 30px;
    height: 30px;
  }
  .section-endless .logo-endless,
	.section-endless-seu-espaco .logo-endless {
    max-width: 400px;
  }
 
  .section-endless-comodidades .box-imagens span {
    font-size: 80%;
  }
  .vbox-child.vbox-inline, .vbox-child.venoratio {
    max-width: 100%;
    height: 50vh;
  }
  .section-rjz-03 p {
    font-size: 0.5rem;
	  line-height: 1.3;
  }
	.section-rjz-04 {
		background: url("../../assets/imgs/bgs/bg-by-04-v.webp") no-repeat right bottom;		
		background-size: cover !important;
		padding-bottom: 160px;
	}
	
  .planta-max {
    max-width: 240px;
    margin-top: -55%;
  }
  .planta-max.max2 {
    max-width: 480px;
  }
	.planta-max.max3 {
    max-width: 520px;
  }
  .box-plantas-container .box-dados {
    margin-top: -15%;
  }
  .section-flexon .logo-flexon {
    max-width: 150px;
    margin: 0 auto;
    display: block;
  }
  .section-flexon h4 {
    font-size: 1rem !important;
    margin: 0;
  }
	
	.section-local-03 .vh-100,
	.section-local-04 .vh-100,
	.section-local-05 .vh-100,
	.section-local-06 .vh-100,
	.section-local-07 .vh-100 {
		height: 100% !important;		
	}
	
	.section-local-02 p,
	.section-local-03 p,
	.section-local-04 p,
	.section-local-05 p,
	.section-local-06 p,
	.section-local-07 p {
		line-height: 1.15;
		font-size: 1.05rem;	
	}
	.section-local-01 h4,
	.section-local-08 h4 {		
		line-height: 1.5;
		letter-spacing: 5px;
	}
	.section-local-03 h4,
	.section-local-04 h4,
	.section-local-05 h4,
	.section-local-06 h4,
	.section-local-07 h4 {
		line-height: 1.5;
		letter-spacing: 5px;
	}
	.section-local-03,
	.section-local-04,
	.section-local-07 {
	  padding-top: 30px;	
		padding-bottom: 30px;
	}
}
@media (max-width: 576px) {
  h1, h2, h3, h4, h5, h6 {
    font-size: calc(1rem + .3vw) !important;
  }
  .section-home-02 .vh-100.desk {
    height: 100vh !important;
  }
  .section-home-02 img {
    max-width: 250px;
    margin: 0 auto;
  }
  .mx-mob-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .nav-pills {
    height: auto;
  }
  .nav-pills .nav-item:first-of-type {
    margin-top: 20px;
  }
  .nav-pills .nav-item:last-of-type {
    margin-bottom: 20px;
  }
   .section-endless-areas-comuns .list-unstyled .media .numero {
    width: 22px;
    height: 22px;
    padding-top: 2px;
  }
  .mt-4, .my-5, .mt-5, .my-5 {
    margin-top: 1rem !important;
  }
  .box-table .pp-tableCell {
    padding: 30px;
  }
  .legenda.desktop {
    display: none;
  }
  .legenda.mobile {
    display: block;
  }
  p.legenda {
    line-height: 85%;
  }
  .box-texto-home {
    position: fixed !important;
    bottom: 10%;
    padding: 3rem;
  }
  .section-endless .logo-endless-m {
    max-width: 260px;
  }
  .section-endless .slogan {
    max-width: 260px;
  }
  .nav .nav-item {
    padding: .15rem !important;
    margin-bottom: 5px;
  }
  .nav .nav-item .nav-link {
    display: inline-block;
    font-size: 1em;
  }
	
  .box-bg-legenda-foto span.down {
    right: 25%;
    bottom: 1.5%;
    margin-bottom: 0%;
    font-size: .85rem;
  }
  .section-endless h5 {
    font-size: .6rem !important;
    line-height: 1.25rem;
  }
  .section-endless .navbar {
    margin-top: 0%;
  }
  .box-texto1 {
    line-height: 1.50rem !important;
  }
  .box-texto2 {
    font-size: .75rem !important;
    max-width: 75%;
    background: rgba(255, 255, 255, .50);
  }
  .box-bg-legenda-foto span.down {
    font-size: .85rem;
  }
  .box-bg-legenda-foto span.down.cadeira {
    right: 41%;
  }
  .planta-max {
    max-width: 180px;
    margin-top: -75%;
    height: auto;
  }
  .planta-max.max2 {
    max-width: 250px;
  }
	.planta-max.max3 {
    max-width: 360px;
  }
  .planta-max.vertical {
    max-width: 140px;
  }
  .planta-max.vertical.vert2 {
    max-width: 140px;
  }
  .planta-max.vertical.vert3 {
    max-width: 140px;
  }
  .box-plantas-container .box-plantas-texto h4 {
    font-size: .9rem;
  }
	.box-plantas-container .box-plantas-texto h6 {
		font-size: .85rem;
	}	
	.box-plantas-container {
		text-align: center;
		margin: 0 auto !important;
	}
	.box-plantas-container .box-dados,
	.box-plantas-container .box-2blocos {
		justify-content: center;
	}
	.box-plantas-container .box-2blocos span {
		text-align: left;
	}
	 
	.box-plantas-container .text-start {
		text-align: center !important;
	}
	.section.aptos .box-plantas {
		margin: 0 auto;		
	}
  .section.aptos.section-a-cobs .box-plantas-texto h4 {
    margin-left: -15%;
    font-size: .81rem !important;
  }
	.section-rjz-01 p,
	.section-rjz-04 p,
	.section-local-01 p {
		font-size: .8rem !important;
		line-height: 1.5;
	}
	
	img.kal {
    max-height: 110px;
		margin: 0 auto;
	}
	
  .box-plantas-container .box-dados img {
	  max-width: 110px;
  }
  .box-plantas-container .box-dados h4 {
	  font-size: .8rem ;
  }
  .section-rjz-02 p {
    font-size: .8rem;
  }
  .section-endless .logo-endless,
	.section-endless-seu-espaco .logo-endless {
    max-width: 250px !important;
  }
  .section-endless-projeto .logo-endless {
    display: block;
    margin: 30px auto;
    max-width: 250px !important;
  }
  .logo-endless {
    min-width: auto;
  }
  .section-a-gardens .navbar .nav-link,
	.section-a-aptos .navbar .nav-link,
	.section-a-cobs .navbar .nav-link {
    transform: scale(.85);
  }
}
@media (max-width: 420px) {
  .ico-tour {
    max-height: 30px !important;
  }
  .section.aptos .box-plantas h4 {
    font-size: .7rem !important;
  }
  .section.aptos .box-plantas p, .section.aptos .box-plantas p small {
    font-size: .75rem !important;
  }
  .section.aptos.section-a-cobs .box-plantas-texto h4 {
    margin-left: 0%;
  }
  .section.aptos h6 {
    font-size: 0.9rem;
  }
  .box-plantas-container .box-plantas-texto {
    padding: initial;
  }
	.section-a-aptos .vh-100,
	.section-a-gardens .vh-100,
	.section-a-cobs .vh-100 {
    /*height: 100% !important;*/
  }
  .breadcrumb {
    font-size: 50%;
  }
  .breadcrumb-item.active {
    font-size: 10px;
  }
  .section-endless-seu-espaco .vh-100 {
    /*height: 100% !important;*/
  }
  .planta-max.vertical {
    max-width: 130px;
  }
}