@font-face {
  font-family: akrobat-regular;
  src: url("font/Akrobat-Regular.otf");
}

@font-face {
  font-family: akrobat-bold;
  src: url("font/Akrobat-Bold.otf");
}

@font-face {
  font-family: akrobat-extrabold;
  src: url("font/Akrobat-ExtraBold.otf");
}

@font-face {
  font-family: akrobat-light;
  src: url("font/Akrobat-Light.otf");
}

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

@-webkit-keyframes fadeInP {
  0% {
    filter: brightness(100%);
  }
  100% {
    filter: brightness(40%);
  }
}
@-moz-keyframes fadeInP {
  0% {
    filter: brightness(100%);
  }
  100% {
    filter: brightness(40%);
  }
}
@-o-keyframes fadeInP {
  0% {
    filter: brightness(100%);
  }
  100% {
    filter: brightness(40%);
  }
}
@keyframes fadeInP {
  0% {
    filter: brightness(100%);
  }
  100% {
    filter: brightness(40%);
  }
}
@keyframes pulse {
  from {
    transform: scale(1);
  }
  50% {
    transform: scale(0.85);
  }
  to {
    transform: scale(1);
  }
}

.background-thumb{
  background-color: #e4e4e4;
}
.fab-home-container{
  position: fixed;
  right:0;
  top: 40%;
  z-index: 7;
}
.fab-home{
  background-color: #f34519;
  cursor: pointer;
  width: 200px;
  height: 95px;
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fab-home:hover {
  animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
  transform: translate3d(0, 0, 0);
  perspective: 1000px;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  
  30%, 50%, 70% {
    transform: translate3d(-2px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(2px, 0, 0);
  }
}
.fab-home img {
  width: 80px;
  height: 80px;
}
.fab-home h3 {
  color: white;
  text-align: center;
}

.text-button-home1{
  text-decoration: none;
  color: white;
  text-align: center;
}

.fab-home1{
  border-top-left-radius: 7px;
}
.fab-home2{
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom-left-radius: 7px;
}
.fab-home3{
  border-bottom-left-radius: 7px;
  width: 200px;
  display: none;
}

@media screen and (max-width: 700px) {
  .fab-home-container{
    position: -webkit-sticky; /* Safari */
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
  
  .text-button-home1{
    font-size: medium;
  }

  .fab-home2{
    margin-left: 2px;
    margin-right: 2px;
    border-bottom-left-radius: 0px;
  }
  .fab-home3{
    display:flex;
    border-top-right-radius: 7px;
    border-bottom-left-radius: 0px;
  }
  .fab-home img {
    width: 50px;
    height: 50px;
  }
  .fab-home h3 {
    font-size: medium;
  }
}
.faba {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #f83200;
  color: white;
  padding: 24px 9px;
  border-radius: 50%;
  z-index: 5;
  box-shadow: 5px 2px 2px #881b00;
}
.faba:hover {
  animation-name: pulse;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

.faba h3 {
  font-family: akrobat-bold !important;
  font-size: 15px;
  text-align: center;
}
.faba a {
  font-family: akrobat-bold !important;
}

.clear {
  clear: both;
}

/* Footer Link Interactions */
.footer-cta-link {
    color: #1184ff !important;
    font-weight: 600;
    text-decoration: none;
}

.footer-cta-link:hover {
  text-decoration: underline;
}

.footer-link:hover {
  text-decoration: underline !important;
}

.footer-landing-page-link:hover{
  color: inherit;
}
/* Responsive Handling */
@media (max-width: 768px) {
    .footer-content {
        display: flex !important;
        flex-direction: column !important; /* Forces the stack */
        align-items: center !important;
        text-align: center;
        gap: 15px; /* Adjust spacing between copyright and links */
    }
    
    .footer-website-copyright {
        width: 100%; /* Ensures text can wrap naturally or take full width */
        font-size: 13px; /* Keep it readable */
        margin-bottom: 5px !important;
    }

    .footer-links {
        width: 100%; /* Gives links full room */
        justify-content: center !important;
        flex-wrap: wrap;
        gap: 15px !important; /* Adds space between individual links (Termos, etc.) */
    }
}

.rodape {
  background-color: #e0e0e0;
  padding: 10px;
}

.fadeIn {
  -webkit-animation: fadeIn 1s ease-in-out;
  -moz-animation: fadeIn 1s ease-in-out;
  -o-animation: fadeIn 1s ease-in-out;
  animation: fadeIn 1s ease-in-out;
}

.paginacao {
  clear: both;
}
.display-top-data-imovel{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.imovel-destaque {
  height: 510px;
  width: 32%;
  margin-right: 2%;
  float: left;
  margin-bottom: 20px;
  box-shadow: 1px 1px 5px 0px rgba(50, 50, 50, 0.28);
}

.imovel-destaque h3 {
  font-family: akrobat-bold;
}

.imovel-destaque h4 {
  font-family: akrobat-extrabold;
  color: white;
}

.imovel-destaque a {
  color: #23272b;
}

.imovel-destaque a:hover {
  text-decoration: none;
}

.imovel-destaque a:hover h4 {
  display: inherit;
  -webkit-animation: fadeIn 1s ease-in-out;
  -moz-animation: fadeIn 1s ease-in-out;
  -o-animation: fadeIn 1s ease-in-out;
  animation: fadeIn 1s ease-in-out;
}

.imovel-destaque a:hover img {
  filter: brightness(40%);
  -webkit-animation: fadeInP 0.5s ease-in-out;
  -moz-animation: fadeInP 0.5s ease-in-out;
  -o-animation: fadeInP 0.5s ease-in-out;
  animation: fadeInP 0.5s ease-in-out;
}
.imovel-destaque p {
  font-family: akrobat-regular;
  font-size: 18px;
}

.listaImoveis .imovel-destaque {
  width: 47%;
}

.d {
  margin-right: 0 !important;
}

.thumb {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}
.thumb img {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 100%;
  width: auto;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
}

.thumb h4 {
  font-family: akrobat-extrabold;
  font-size: 50px;
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  display: none;
}

.thumb .tipo {
  top: 0;
  right: 0;
  z-index: 3;
  margin: 10px;
  padding: 8px;
  border-radius: 4px;
  position: absolute;
  background-color: forestgreen;
  color: white;
  font-family: akrobat-regular;
}

.akrobat-regular {
  font-family: akrobat-regular;
}

.akrobat-bold {
  font-family: akrobat-bold;
}

.akrobat-extrabold {
  font-family: akrobat-extrabold;
}

.faixa {
  height: 90px;
  margin-right: 20px;
  width: 15px;
  border-radius: 10px;
  float: left;
}
body {
  background-color: #fafafa;
}
.backgroundPrincipal {
  background-color: rgba(0, 0, 0, 0.7);
  height: 450px;
  background-attachment: fixed;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 120px;
  box-shadow: 0px 2px 3px 1px #8b8b8b;
}

.backgroundSecundario {
  background-color: rgba(0, 0, 0, 0.7);
  height: 250px;
  background-attachment: fixed;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 130px;
  box-shadow: 0px 2px 3px 1px #8b8b8b;
}

.listaImoveis {
  width: 70%;
  float: left;
}
.textoProcure {
  background-color: white;
  font-family: akrobat-regular;
  font-size: 30px;
  float: left;
  height: inherit;
  padding: 5px;
  border-radius: 0px 4px 4px 0px;
}

.listaImoveis .textoProcure {
  width: calc(100% - 60px);
}

.boxPesquisaImoveis .textoProcure {
  width: calc(100% - 50px);
}

.boxPesquisaImoveis .form {
  background-color: white;
}

.icone {
  padding: 12px 15px;
  float: left;
  height: inherit;
  border-radius: 4px 0px 0px 4px;
}
.icone i {
  color: white;
  font-size: 25px;
}
.boxPesquisaImoveis {
  width: 30%;
  float: right;
}
.boxPesquisaImoveis .form {
  padding: 15px;
}

.boxPesquisaImoveis i {
  font-size: 20px;
  margin-left: 1%;
}
.boxPesquisaImoveis select,
.boxPesquisaImoveis input {
  width: 80%;
  height: 40px;
  border: none;
  border-radius: 20px;
  background-color: #fafafa;
  color: grey;
  margin-bottom: 10px;
  padding: 10px;
}
.boxPesquisaImoveis i {
  width: 18%;
  float: left;
  margin-top: 10px;
}
.boxPesquisaImoveis button {
  width: 100%;
  height: 40px;
  border: none;
  border-radius: 30px;
  color: white;
}
.boxPesquisaImoveis button:hover {
  color: white;
}
.boxPesquisaImoveis form {
}
.boxPrincipal h1 {
  font-family: akrobat-bold;
  font-size: 60px;
  text-shadow: black 0.1em 0.1em 0.2em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 480px) {
  .backgroundSecundario {
    height: auto;
    min-height: 160px;
    padding-top: 80px;
    padding-bottom: 20px;
  }
  .boxPrincipal h1 {
    font-size: 22px;
    padding: 0 16px;
    line-height: 1.3;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .backgroundSecundario {
    height: auto;
    min-height: 180px;
    padding-top: 100px;
    padding-bottom: 24px;
  }
  .boxPrincipal h1 {
    font-size: 28px;
    padding: 0 12px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .boxPrincipal h1 {
    font-size: 42px;
  }
}

.boxPrincipal h3 {
  font-family: akrobat-regular;
  text-shadow: black 0.1em 0.1em 0.2em;
}

.boxPesquisa {
  width: 70%;
  height: 65px;
  background-color: #fafafa;
  border-radius: 70px;
  border-width: 1px;
  border-style: solid;
  padding: 10px;
}

.infoContainer{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 10px;
  border-radius: 7px;
  display: flex;
  width: auto;
  align-items: center;
  justify-content: center;
  background-color: #fcfcfc;
  -webkit-box-shadow: 0px 0px 10px 1px rgba(7,7,7,0.4); 
  box-shadow: 0px 0px 10px 1px rgba(7,7,7,0.4);
  margin: 20px 0px;
}
.centeredImage{
  align-self: center;
}
.infoContainer:hover{
  background-color: #d0d0d0;
}

.infoContainer span{
  font-weight: bold;
  color: black;
  font-size: larger;
}
.infoContainer ol, ul{
  align-self:flex-start;
}

.btnGeraBoleto{
  border-radius: 7px;
}

.imoveis-page-mobile{
  display: none;
}
.item-imovel-mobile{
  margin: 10px 5px 0px 5px;
  background-color: white;
  border: none;
  border-radius: 7px;
  padding: 10px;
  -webkit-box-shadow: 0px 10px 13px -7px #000000, 0px 6px 15px 17px rgba(0,0,0,0); 
  box-shadow: 0px 10px 13px -7px #000000, 0px 6px 15px 17px rgba(0,0,0,0);
}
.item-imovel-mobile-btn-container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.item-imovel-mobile-btn{
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 90%;
  margin: 5px;
}

.item-imovel-mobile-btn button{
  width: 100%;
}

@media screen and (max-width: 700px) {
  .paginatedGrid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-left: 2px;
  }
  .paginatedGridItem{
    border-radius: 2px !important;
  }

  .imoveisConteudoPag{
    max-width: 600px !important;
    overflow-x: scroll;
  }
  .imoveis-page-mobile{
    display: initial;
    margin-bottom: 20px;
  }
  .imoveis-page-web{
    display: none;
  }
  .tabelaImoveis{
    overflow-x: scroll;
    width: 90%;
  }

  .infoContainer{
    left: 50%;
    right: 50%;
    padding: 20px;
  }

  .infoContainer iframe{
    width: 95% !important;
  }
  .carousel-inner{
    height: fit-content;
  }
}
.boxPesquisa i {
  font-size: 20px;
  margin-left: 1%;
}
.boxPesquisa select,
.boxPesquisa input {
  width: 23%;
  height: 100%;
  border: none;
  border-radius: 10px;
  background-color: #fafafa;
  color: grey;
}

.boxPesquisa button {
  width: 15%;
  height: 100%;
  border: none;
  border-radius: 30px;
  color: white;
  float: right;
}

.boxPesquisa form {
}
.footer {
  position: relative;
}
.footer-container{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  background-color: #e0e0e0;
  padding: 10px;
  height: 80px;
}
.header-link:hover {
  font-weight: bolder;
}
.imovel-descricao {
  width: 70%;
  padding: 30px;
  float: left;
}
.informacoes-corretor {
  width: 30%;
  float: right;
  margin-top: 130px;
}
.informacoes-corretor h1 {
  font-family: akrobat-light;
}
.informacoes-corretor h3 {
  font-family: akrobat-light;
}

.informacoes-corretor li,
.institucional li,
.box-contato li {
  margin-bottom: 15px;
  font-family: akrobat-regular;
}

.imovel-descricao h1 {
  font-family: akrobat-bold;
}
.imovel-descricao h3 {
  font-family: akrobat-regular;
}

.informacoes-corretor {
  width: 30%;
}

.box-imovel {
  border-radius: 5px;
  background-color: white;
  padding: 15px;
  box-shadow: 1px 1px 5px 0px rgba(50, 50, 50, 0.28);
  margin-bottom: 15px;
}

.box-imovel h3 {
  font-family: akrobat-regular;
}

.caracteristica {
  width: 33%;
  float: left;
}
.box-imovel .faixa {
  height: 4px;
  margin-top: -10px;
  width: 15%;
  border-radius: 10px;
  float: left;
}
.imovel-descricao .thumb {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}
.imovel-descricao .thumb img {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 100%;
  width: auto;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
}

.foto-corretor {
  position: relative;
  width: 80%;
  height: 0; /* A mÃ¡gica estÃ¡ aqui */
  padding-bottom: 80%; /* ... e estÃ¡ aqui */
  overflow: hidden;
  border-radius: 50%;
}
.foto-corretor img {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 100%;
  width: auto;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
}
.institucional h1,
.box-contato h1 {
  font-family: akrobat-bold;
  text-align: center;
}
.institucional h2,
.box-contato {
  font-family: akrobat-regular;
}
.institucional h3,
.box-contato h3 {
  font-family: akrobat-light;
}
.institucional p {
  font-family: akrobat-regular;
}
.institucional .foto {
  width: 30%;
  float: right;
}

.institucional .texto {
  align-self: center;
}

.maps iframe {
  width: 100% !important;
  height: 350px !important;
}

.formulario-contato {
  width: 59%;
  float: left;
}
.box-contato {
  width: 39%;
  float: right;
}

.box-contato .foto-corretor {
  width: 50%;
  padding-bottom: 50%;
}
.nav-item a {
  font-family: akrobat-regular;
  font-size: 18px;
}

@media (min-width: 700px) and (max-width: 950px) {
  .boxPesquisa {
    width: 90%;
  }
  .boxPesquisaImoveis {
    width: 100%;
  }
  .listaImoveis {
    width: 100%;
  }

  .imovel-destaque {
    width: 49% !important;
  }

  .listaImoveis .imovel-destaque {
    width: 100% !important;
  }
  .d {
    margin-right: 2% !important;
  }
  .c {
    margin-right: 0 !important;
  }
  .imovel-descricao {
    width: 100%;
  }
  .informacoes-corretor {
    padding: 30px;
    width: 100%;
    margin-top: 10px;
  }
}

@media (max-width: 699px) {
  .footer-container{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 120px;
    padding: 20px;
  }
  .footer-container div{
    margin-top: 15px;
  }
  .boxPesquisa {
    width: 90%;
    height: 300px;
    border-radius: 20px;
    border-width: 1px;
    border-style: solid;
    padding: 10px;
  }

  .boxPesquisa i {
    font-size: 20px;
    margin-left: 1%;
  }
  .boxPesquisa select,
  .boxPesquisa input {
    width: 90%;
    height: 70px;
    border: none;
    border-radius: 10px;
    background-color: #fafafa;
    color: grey;
  }

  .boxPesquisa button {
    width: 100%;
    height: 70px;
    border: none;
    border-radius: 50px;
    color: white;
    float: none;
  }

  .backgroundPrincipal {
    height: 800px;
    padding-top: 150px;
  }
  .imovel-destaque {
    width: 100% !important;
  }

  .boxPesquisaImoveis {
    width: 100%;
  }
  .listaImoveis {
    width: 100%;
  }
  .imovel-descricao {
    width: 100%;
  }
  .informacoes-corretor {
    padding: 30px;
    width: 100%;
    margin-top: -50px;
  }
  .caracteristica {
    width: 100%;
    float: none;
    margin-bottom: 5px;
  }
  .institucional .foto {
    width: 100%;
    float: right;
  }
  .institucional .texto {
    width: 100%;
    float: left;
  }

  .formulario-contato {
    width: 100%;
    float: left;
  }
  .box-contato {
    width: 100%;
    float: right;
  }
  .textoProcure {
    font-size: 27px;
  }
}

/* ============================
   LinkTree — Página de links
   ============================ */
.linktree-body {
  background: linear-gradient(135deg, #00549f 0%, #0077c2 50%, #00a3e0 100%);
  min-height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.linktree-container {
  position: relative;
  max-width: 480px;
  width: 100%;
  padding: 40px 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

/* Compartilhar */
.linktree-share-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.linktree-share-btn:hover {
  background: rgba(255, 255, 255, 0.35);
}

.linktree-share-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 10px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 100;
}

.linktree-share-toast-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Perfil */
.linktree-profile {
  text-align: center;
  margin-bottom: 32px;
}

.linktree-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.6);
  margin-bottom: 14px;
}

.linktree-nome {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 4px;
}

.linktree-creci {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  margin: 0 0 4px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.linktree-localizacao {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin: 0;
}

.linktree-localizacao i {
  margin-right: 4px;
}

/* Links */
.linktree-links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.linktree-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.95);
  color: #1a1a2e;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.linktree-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  color: #1a1a2e;
}

.linktree-btn:active {
  transform: translateY(0);
}

.linktree-btn i {
  font-size: 18px;
  width: 22px;
  text-align: center;
}

.linktree-btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.linktree-btn-whatsapp:hover {
  background: #20bd5a;
  color: #fff;
}

/* Mapa */
.linktree-map-card {
  width: 100%;
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.linktree-map-card-label {
  color: #1a1a2e;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin: 0;
  padding: 12px 16px;
}

.linktree-map-card-label i {
  margin-right: 4px;
}

.linktree-map-card-embed {
  width: 100%;
  overflow: hidden;
}

.linktree-map-card-embed iframe {
  width: 100% !important;
  height: 200px !important;
  border: 0;
  display: block;
}

/* Rodapé */
.linktree-footer {
  margin-top: auto;
  padding-top: 40px;
  text-align: center;
}

.linktree-footer a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  text-decoration: none;
  transition: color 0.2s;
}

.linktree-footer a:hover {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}
