<header class="banner-enterprise">	
    
<div class="modal fade" id="calculateModal" tabindex="-1" role="dialog" aria-labelledby="calculateModal" aria-hidden="true">
    <div class="modal-dialog">
	<div class="modal-content">
	  <div class="modal-body">
	      <div class="modal-close" data-dismiss="modal" aria-hidden="true">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/modal-close.svg">
        </div>
	      
<section class="contact-footer">
  <div class="container-fluid calculator">
    <div class="row">
      <div class="col-md-1"></div>

      <div class="calculator-details col-md-12">
        <h2>Calculadora</h2>

        <form id="mortgageForm" class="space-y-4">
          <!-- Row 1 -->
          <div class="row">
            <div class="col-md-3">
              <label class="block mb-1">Preço de Compra ($)</label>
              <input type="number" name="purchase_price" value="555999" required class="w-full p-2 border rounded bg-white" />
            </div>
            <div class="col-md-3">
              <label class="block mb-1">Entrada (%)</label>
              <input type="number" step="0.1" name="down_payment_percent" value="20" required class="w-full p-2 border rounded bg-white" />
            </div>
            <div class="col-md-3">
              <label class="block mb-1">Prazo do Financiamento (anos)</label>
              <input type="number" name="mortgage_term" value="30" required class="w-full p-2 border rounded bg-white" />
            </div>
            <div class="col-md-3">
              <label class="block mb-1">Taxa de Juros (%)</label>
              <input type="number" step="0.01" name="interest_rate" value="4" required class="w-full p-2 border rounded bg-white" />
            </div>
          </div>

          <!-- Row 2 -->
          <div class="row">
            <div class="col-md-3">
              <label class="block mb-1">Imposto Predial ($/ano)</label>
              <input type="number" name="property_tax" value="1000" required class="w-full p-2 border rounded bg-white" />
            </div>
            <div class="col-md-3">
              <label class="block mb-1">Seguro Residencial ($/ano)</label>
              <input type="number" name="prop_insurance" value="300" required class="w-full p-2 border rounded bg-white" />
            </div>
            <div class="col-md-3">
              <label class="block mb-1">Taxas de Condomínio ($/mês)</label>
              <input type="number" name="hoa_fees" value="400" required class="w-full p-2 border rounded bg-white" />
            </div>
            <div class="col-md-3">
              <label class="block mb-1">PMI (%)</label>
              <input type="number" step="0.01" name="pmi" value="0.52" required class="w-full p-2 border rounded bg-white" />
            </div>
          </div>

<style>
.bg-gray-200 {
  background: #ccc;
}
.font-bold {
  font-weight: bold;
}
.bg-white {
  background: white !important;
}

table {
  width: 100%;
}

table tr td {
  border: #000 1px solid !important;
}

table td, table th {
 padding: 2px 5px;
}
</style>

          <!-- Row 3 -->
          <div class="row">
            <div class="col-md-3">
              <select name="start_month" class="w-full p-2 border rounded bg-white" style="width: calc(100% - 30px);">
                <option value="1">Jan</option>
                <option value="2">Feb</option>
                <option value="3" selected>Mar</option>
                <option value="4">Apr</option>
                <option value="5">May</option>
                <option value="6">Jun</option>
                <option value="7">Jul</option>
                <option value="8">Aug</option>
                <option value="9">Sep</option>
                <option value="10">Oct</option>
                <option value="11">Nov</option>
                <option value="12">Dec</option>
              </select>
            </div>
            <div class="col-md-3">
              <input type="number" name="start_year" value="2025" class="w-full p-2 border rounded bg-white" />
            </div>
          </div>

          <button type="submit" class="w-full bg-blue-600 text-white py-2 px-4 rounded hover:bg-blue-700">
            Calcular          </button>
        </form>

        <div id="results" class="hidden mt-8 space-y-6">
          <!-- Monthly Payment Details -->
          <div class="row">
            <div class="col-md-3">
              <h3>Pagamento Mensal: <span id="monthlyPayment"></span></h3>
              <p><strong>Principal & Juros:</strong> <span id="principalInterest"></span></p>
              <p><strong>Impostos:</strong> <span id="taxes"></span></p>
              <p><strong>Seguro:</strong> <span id="insurance"></span></p>
              <p><strong>Taxas de Condomínio:</strong> <span id="hoaFees"></span></p>
            </div>
            <div class="col-md-3">
              <h3>Pagamentos Totais</h3>
              <p><strong>Total:</strong> <span id="totalPayments"></span></p>
              <p><strong>Meses:</strong> <span id="totalMonths"></span></p>
            </div>
          </div>

          <!-- Total Payments -->
          <div class="row">
            <div class="col-md-3">
              <h3>Detalhes do Empréstimo</h3>
              <p><strong>Principal:</strong> <span id="totalPrincipal"></span></p>
              <p><strong>Juros:</strong> <span id="totalInterest"></span></p>
            </div>
            <div class="col-md-3">
              <h3>Outros Custos</h3>
              <p><strong>Impostos:</strong> <span id="totalTaxes"></span></p>
              <p><strong>Seguro:</strong> <span id="totalInsurance"></span></p>
              <p><strong>Taxas de Condomínio:</strong> <span id="totalHoaFees"></span></p>
            </div>
          </div>

          <h3 class="text-xl font-bold mb-4">Tabela de Amortização</h3>
          <div class="overflow-x-auto">
            <table class="min-w-full bg-white border-collapse border border-gray-300">
              <thead>
                <tr class="bg-gray-200">
                  <th class="p-2 border border-gray-300">Ano/Mês</th>
                  <th class="p-2 border border-gray-300">Principal</th>
                  <th class="p-2 border border-gray-300">Juros</th>
                  <th class="p-2 border border-gray-300">Impostos, Seguro & Condomínio</th>
                  <th class="p-2 border border-gray-300">Saldo</th>
                </tr>
              </thead>
              <tbody id="amortizationTable" class="text-sm">
              </tbody>
              <tfoot>
                <tr class="bg-gray-200 font-bold">
                  <td class="p-2 border border-gray-300">Totais</td>
                  <td class="p-2 border border-gray-300" id="totalPrincipalFooter"></td>
                  <td class="p-2 border border-gray-300" id="totalInterestFooter"></td>
                  <td class="p-2 border border-gray-300" id="totalTaxInsHoaFooter"></td>
                  <td class="p-2 border border-gray-300"></td>
                </tr>
              </tfoot>
            </table>
          </div>
        </div>
      </div>
    </div>
  </div>
</section>

<script>
  document.getElementById('mortgageForm').addEventListener('submit', function(event) {
    event.preventDefault();

    // Coletar dados do formulário
    const purchasePrice = parseFloat(document.querySelector('input[name="purchase_price"]').value);
    const downPaymentPercent = parseFloat(document.querySelector('input[name="down_payment_percent"]').value);
    const mortgageTerm = parseInt(document.querySelector('input[name="mortgage_term"]').value);
    const interestRate = parseFloat(document.querySelector('input[name="interest_rate"]').value);
    const propertyTax = parseFloat(document.querySelector('input[name="property_tax"]').value);
    const propInsurance = parseFloat(document.querySelector('input[name="prop_insurance"]').value);
    const hoaFees = parseFloat(document.querySelector('input[name="hoa_fees"]').value);
    const pmiRate = parseFloat(document.querySelector('input[name="pmi"]').value);
    const startMonth = parseInt(document.querySelector('select[name="start_month"]').value);
    const startYear = parseInt(document.querySelector('input[name="start_year"]').value);

    // Calcular valores iniciais
    const downPayment = purchasePrice * (downPaymentPercent / 100);
    const loanAmount = purchasePrice - downPayment;
    const months = mortgageTerm * 12;

    // Calcular parcela mensal do empréstimo (P&I)
    const monthlyRate = (interestRate / 100) / 12;
    const monthlyPayment = loanAmount * 
      (monthlyRate * Math.pow(1 + monthlyRate, months)) / 
      (Math.pow(1 + monthlyRate, months) - 1);

    // Calcular PMI se entrada < 20%
    let monthlyPMI = 0;
    if (downPaymentPercent < 20) {
      monthlyPMI = (loanAmount * (pmiRate / 100)) / 12;
    }

    // Calcular custos mensais
    const monthlyTax = propertyTax / 12;
    const monthlyInsurance = propInsurance / 12;
    const taxInsHOA = monthlyTax + monthlyInsurance + hoaFees;

    // Configurar datas: iniciar no mês seguinte ao selecionado
    let currentDate = new Date(startYear, startMonth, 1);

    // Preparar amortização
    let balance = loanAmount;
    const schedule = [];
    let yearlyTotals = { principal: 0, interest: 0, tax: 0, insurance: 0, hoa: 0 };
    let currentYear = currentDate.getFullYear();

    // Loop mensal para construir a tabela de amortização
    for (let i = 0; i < months && balance > 0; i++) {
      const interest = balance * monthlyRate;
      const principal = Math.min(monthlyPayment - interest, balance);
      balance = Math.max(balance - principal, 0);

      yearlyTotals.principal += principal;
      yearlyTotals.interest += interest;
      yearlyTotals.tax += monthlyTax;
      yearlyTotals.insurance += monthlyInsurance;
      yearlyTotals.hoa += hoaFees;

      schedule.push({
        type: 'month',
        date: new Date(currentDate),
        principal: principal,
        interest: interest,
        tax_ins_hoa: monthlyTax + monthlyInsurance + hoaFees,
        balance: balance
      });

      // Se for o último mês do ano ou o último pagamento, adiciona o resumo anual
      if ((currentDate.getMonth() === 11 && balance > 0) || balance === 0) {
        schedule.push({
          type: 'year',
          year: currentYear,
          totals: { ...yearlyTotals },
          balance: balance
        });
        yearlyTotals = { principal: 0, interest: 0, tax: 0, insurance: 0, hoa: 0 };
        currentYear++;
      }

      // Avançar para o próximo mês
      currentDate.setMonth(currentDate.getMonth() + 1);
    }

    // Ajuste dos totais gerais (para coincidir com os valores esperados)
    const grandTotals = {
      principal: loanAmount, // O total de principal deve ser igual ao valor do empréstimo
      interest: (monthlyPayment * months) - loanAmount,
      tax: monthlyTax * months,
      insurance: monthlyInsurance * months,
      hoa: hoaFees * months
    };

    // Função de formatação com locale en-US para separador de milhar
    function format(value) {
      return '$' + Math.round(value).toLocaleString('en-US');
    }

    // Exibir resultados
    const totalMonthlyPayment = monthlyPayment + monthlyPMI + taxInsHOA;
    document.getElementById('monthlyPayment').textContent = format(totalMonthlyPayment);
    document.getElementById('principalInterest').textContent = format(monthlyPayment);
    document.getElementById('taxes').textContent = format(monthlyTax);
    document.getElementById('insurance').textContent = format(monthlyInsurance);
    document.getElementById('hoaFees').textContent = format(hoaFees);

    document.getElementById('totalPayments').textContent = format(totalMonthlyPayment * months);
    document.getElementById('totalMonths').textContent = months;

    document.getElementById('totalPrincipal').textContent = format(grandTotals.principal);
    document.getElementById('totalInterest').textContent = format(grandTotals.interest);
    document.getElementById('totalTaxes').textContent = format(grandTotals.tax);
    document.getElementById('totalInsurance').textContent = format(grandTotals.insurance);
    document.getElementById('totalHoaFees').textContent = format(grandTotals.hoa);

    const tableBody = document.getElementById('amortizationTable');
    tableBody.innerHTML = '';
    let currentDisplayedYear = null;

    schedule.forEach(entry => {
      if (entry.type === 'year') {
        if (entry.year !== currentDisplayedYear) {
          const row = `
            <tr class="bg-gray-100 font-semibold">
              <td class="p-2 border bg-gray-200 font-bold">${entry.year}</td>
              <td class="p-2 border bg-gray-200 font-bold">${format(entry.totals.principal)}</td>
              <td class="p-2 border bg-gray-200 font-bold">${format(entry.totals.interest)}</td>
              <td class="p-2 border bg-gray-200 font-bold">${format(entry.totals.tax + entry.totals.insurance + entry.totals.hoa)}</td>
              <td class="p-2 border bg-gray-200 font-bold">${format(entry.balance)}</td>
            </tr>
          `;
          tableBody.insertAdjacentHTML('beforeend', row);
          currentDisplayedYear = entry.year;
        }
      } else {
        const row = `
          <tr>
            <td class="p-2 border border-gray-300">${entry.date.toLocaleDateString('en-US', { month: 'short', year: 'numeric' })}</td>
            <td class="p-2 border border-gray-300">${format(entry.principal)}</td>
            <td class="p-2 border border-gray-300">${format(entry.interest)}</td>
            <td class="p-2 border border-gray-300">${format(entry.tax_ins_hoa)}</td>
            <td class="p-2 border border-gray-300">${format(entry.balance)}</td>
          </tr>
        `;
        tableBody.insertAdjacentHTML('beforeend', row);
      }
    });

    // Exibir totais gerais no rodapé da tabela
    document.getElementById('totalPrincipalFooter').textContent = format(grandTotals.principal);
    document.getElementById('totalInterestFooter').textContent = format(grandTotals.interest);
    document.getElementById('totalTaxInsHoaFooter').textContent = format(grandTotals.tax + grandTotals.insurance + grandTotals.hoa);

    document.getElementById('results').classList.remove('hidden');
  });
</script>	  </div>
	</div>
    </div>
  </div>

<div style="overflow: hidden; height: 0; width: 0;">
  <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/world-yellow.svg">
  <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-zoom.png">
  <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/play-youtube.png">
</div>

<div style="position: fixed; right: 20px; bottom: 150px; height: 50px; width: 50px; z-index: 999999; border-radius: 50%; background: rgba(0, 0, 255, 0.5);">
  <img class="calculator-start" data-toggle="modal" data-target="#calculateModal" src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/calculator.svg" style="max-width: 50px; max-height: 50px; cursor: pointer;">
</div>

<div style="position: fixed; right: 20px; bottom: 70px; height: 50px; width: 50px; z-index: 999999; border-radius: 50%; background: rgba(0, 0, 255, 0.5);">
  <a href="https://api.whatsapp.com/send?phone=14075757332" target="_blank"><img class="calculator-start" src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/whatsapp.png" style="max-width: 50px; max-height: 50px; cursor: pointer;"></a>
</div>

<script>
    $('.calculator-start').click(function() {
      $('.calculator').show();
      $('.calculator-iframe').hide();
    });
  </script>
  

<div class="modal fade" id="contactModal" tabindex="-1" role="dialog" aria-labelledby="contactModal" aria-hidden="true">
  <div class="modal-dialog">
    <div class="modal-content modal-contact">
      <div class="modal-body">
        <div class="modal-close" data-dismiss="modal" aria-hidden="true">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/modal-close.svg">
        </div>
        
  <section class="contact-footer">
    <div class="container-fluid">
      <div class="row">
	<div class="col-md-1"></div>
		  
	  <div class="col-md-5">
	    <h2>Contato</h2>
		  
	    <p>
	      Insira as suas informações abaixo para que a nossa equipe entre em contato e disponha a você um leque de oportunidades.	    </p>
	
	    <div>
	      <strong>Nome</strong>
	      <br>
	      <input name="name" class="name" placeholder="Digite seu nome completo">
	    </div>
		  
	    <div>
	      <strong>Email</strong>
	      <br>
	      <input name="email" class="email" placeholder="Digite seu email">
	    </div>
		  
	    <div class="row">
	      <div class="col-md-12">
		<strong>Telefone</strong>
	      </div>
	      <div class="col-md-12">
		<input type="tel" class="mobile-number-contact" style="width: 100px;" readonly>
	        <input class="change-phone" style="float: left; width: calc(100% - 150px); margin-left: 20px;">
	      
	        <input class="phone" name="phone" type="hidden">
	        <div style="clear: both;"></div>

	        <script>
  		  $('.mobile-number-contact').intlTelInput();
	        </script>
	      </div>
	    </div>
		  
	    <div class="row">
	      <div class="col-md-12">
		<strong>Mensagem</strong>
	      </div>
	      <div class="col-md-12">
		<textarea name="subject" placeholder="Digite sua mensagem"></textarea>
	      </div>
	    </div>
			  
	    <div class="row">
	      <div class="col-md-6">
		<button class="send-contact">
		  Enviar mensagem		</button>
	      </div>
	    </div> 
	  </div>
	    
	    <div class="col-md-5">
			<div class="contact-footer-info ">
			  
			  <div class="contact-footer-item">
				<hgroup>
				  <h3>
					<img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/contact-footer-whatsapp.png">
					Whatsapp
				  </h3>
				  <h4>
					+1 (407) 575-7332
				  </h4>
				</hgroup>
				<img class="arrow" src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/contact-footer-arrow.png">
			  </div>
			  
			  <div class="contact-footer-item">
				<hgroup>
				  <h3>
					<img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/contact-footer-skype.png">
					Skype
				  </h3>
				  <h4>
					gleyson.persio.silva
				  </h4>
				</hgroup>
				<img class="arrow" src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/contact-footer-arrow.png">
			  </div>
			  
			  <div class="contact-footer-item">
				<hgroup>
				  <h3>
					<img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/contact-footer-phone.png">
					Telefone				  </h3>
				  <h4>
					+55 (11) 3181-7389
				  </h4>
				</hgroup>
				<img class="arrow" src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/contact-footer-arrow.png">
			  </div>
			  
			  <div class="contact-footer-item">
				<hgroup>
				  <h3>
					<img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/contact-footer-location.png">
					Endereço				  </h3>
				  <h4>
					6965 Piazza Grande Ave, 212
					<br>
					Orlando, Florida - 32835
				  </h4>
				</hgroup>
				<img class="arrow" src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/contact-footer-arrow.png">
			  </div>
			  
			  <div class="contact-footer-item"></div>
		  </div>
		<div class="col-md-3"></div>
	    
	  </div>
	</div>
  </section>

<script>
   $('.change-phone').on('keyup', function() {
     $('.phone').val($('.mobile-number-contact').val() + ' ' + $(this).val());
   });
   
  $('.send-contact').click(function() {
    var nome = $.trim($('.contact-footer input[name=name]').val());
    var email = $.trim($('.contact-footer input[name=email]').val());
    var telefone = $.trim($('.contact-footer input[name=phone]').val());
    var subject = $.trim($('.contact-footer textarea[name=subject]').val());   
    
        if (nome == '') {
      alert('Favor preencher o nome');
      $('.contact-footer input[name=name]').focus();
      return false;
    } 
    
    if (email == '') {
      alert('Favor preencher o email');
      $('.contact-footer input[name=email]').focus();
      return false;
    } 
    
    if (telefone == '') {
      alert('Favor preencher o telefone');
      $('.contact-footer input[name=phone]').focus();
      return false;
    }
    
    if (subject == '') {
      alert('Favor preencher a mensagem');
      $('.contact-footer textarea[name=subject]').focus();
      return false;
    }
        
    var parameters = 'name=' + nome + '&email=' + email + '&phone=' + telefone + '&subject=' + subject + '&form_type=full&sys_email=' + '';
    $('.iframe-email-contact').attr('src', 'https://seuimovelnaflorida.com/wp-content/themes/golden-key/views/sendmail.php' + '?' + parameters);
      });
</script>

<div style="height: 0; overflow: hidden;">
  <iframe class="iframe-email-contact"></iframe>
</div>      </div>
    </div>
  </div>
</div>
    
<div class="visible-xs" style="height: 70px;"></div>

<div style="height: 0; overflow: hidden;">
<img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/logo-golden-key-2.svg">
</div>

<div class="container-header">
  <div class="container-fluid container-top">
    <div class="row">
      <div class="logo col-md-2 col-xs-10">
        <a href="https://seuimovelnaflorida.com/en/">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/logo-golden-key.svg">
        </a>
      </div>
        
      <div class="col-xs-2 visible-xs">
        <div class="menu-mobile col-xs-12 visible-xs">
        
                        <img class="menu-bars" src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/mobile-menu-bars.png">
                  </div>
      </div>
      <div class="col-md-10 text-right hidden-xs">

      <div class="menus">
        <ul>
                      <li>
              <a href="https://seuimovelnaflorida.com/busca-mls/"> 

                <div class="dropdown dropdown-menu-top">
                  <span>
                    Busca MLS                  </span>
		      
                                  </div>
              </a>
            </li>
                        <li>
              <a href="https://seuimovelnaflorida.com/en/quem-somos/"> 

                <div class="dropdown dropdown-menu-top">
                  <span>
                    Quem somos                  </span>
		      
                                  </div>
              </a>
            </li>
                        <li>
              <a href="https://seuimovelnaflorida.com/en/imoveis/"> 

                <div class="dropdown dropdown-menu-top">
                  <span>
                    Imóveis                  </span>
		      
                                    <div class="dropdown-content">
                    <div style="height: 5px;">
                      <div class="arrow-up"></div>
                    </div>
                    <ul class="submenu submenu-enterprise">
                                                <li>
                            <a href="https://seuimovelnaflorida.com/imoveis">
                              Todos                            </a>
                          </li>
                                                <li>
                            <a href="https://seuimovelnaflorida.com/imoveis?property_type=vacation-properties">
                              Temporada                            </a>
                          </li>
                                                <li>
                            <a href="https://seuimovelnaflorida.com/imoveis?property_type=luxury-homes">
                              Casas de Luxo                            </a>
                          </li>
                                                <li>
                            <a href="https://seuimovelnaflorida.com/imoveis?property_type=property">
                              Moradia                            </a>
                          </li>
                                                <li>
                            <a href="https://seuimovelnaflorida.com/imoveis?property_type=commercial-property">
                              Comercial                            </a>
                          </li>
                                                <li>
                            <a href="https://seuimovelnaflorida.com/imoveis?property_type=featured-property">
                              Oportunidades                            </a>
                          </li>
                                                <li>
                            <a href="https://seuimovelnaflorida.com/imoveis?property_type=rental-properties">
                              Aluguel                            </a>
                          </li>
                                          </ul>
                  </div>
                                  </div>
              </a>
            </li>
                        <li>
              <a href="https://seuimovelnaflorida.com/en/"> 

                <div class="dropdown dropdown-menu-top">
                  <span>
                    Construção                  </span>
		      
                      
                  <div class="dropdown-content">
                    <div style="height: 5px;">
                      <div class="arrow-up"></div>
                    </div>
                    <ul class="submenu submenu-builder">
                                              <li>
                          <a href="https://seuimovelnaflorida.com/construcao/?id=6526">
                            Ocala – Modelo 1876                          </a>
                        </li>
                                          </ul>
                  </div>
                                  </div>
              </a>
            </li>
                        <li>
              <a href="https://seuimovelnaflorida.com/en/servicos/"> 

                <div class="dropdown dropdown-menu-top">
                  <span>
                    Serviços                  </span>
		      
                      
                  <div class="dropdown-content">
                    <div style="height: 5px;">
                      <div class="arrow-up"></div>
                    </div>
                    <ul class="submenu">
                                                <li>
                            <a href="https://seuimovelnaflorida.com/servico?id=3987">
                              Administração de Imóveis                            </a>
                          </li>
                                                <li>
                            <a href="https://seuimovelnaflorida.com/servico?id=3988">
                              Abertura de empresas                            </a>
                          </li>
                                                <li>
                            <a href="https://seuimovelnaflorida.com/servico?id=3990">
                              Compra e venda de negócios                            </a>
                          </li>
                                                <li>
                            <a href="https://seuimovelnaflorida.com/servico?id=3992">
                              Construção civil                            </a>
                          </li>
                                                <li>
                            <a href="https://seuimovelnaflorida.com/servico?id=3994">
                              Decoração                            </a>
                          </li>
                                                <li>
                            <a href="https://seuimovelnaflorida.com/servico?id=3993">
                              Contabilidade                            </a>
                          </li>
                                                <li>
                            <a href="https://seuimovelnaflorida.com/servico?id=3991">
                              Câmbio                            </a>
                          </li>
                                                <li>
                            <a href="https://seuimovelnaflorida.com/servico?id=3995">
                              Leilões de imóveis                            </a>
                          </li>
                                                <li>
                            <a href="https://seuimovelnaflorida.com/servico?id=3989">
                              Marketing digital                            </a>
                          </li>
                                          </ul>
                  </div>
                                  </div>
              </a>
            </li>
                        <li>
              <a href="https://seuimovelnaflorida.com/en/duvidas/"> 

                <div class="dropdown dropdown-menu-top">
                  <span>
                    Dúvidas                  </span>
		      
                                  </div>
              </a>
            </li>
                        <li>
              <a href="https://seuimovelnaflorida.com/en/depoimentos/"> 

                <div class="dropdown dropdown-menu-top">
                  <span>
                    Depoimentos                  </span>
		      
                                  </div>
              </a>
            </li>
                        <li>
              <a href="https://seuimovelnaflorida.com/en/parceiros/"> 

                <div class="dropdown dropdown-menu-top">
                  <span>
                    Parceiros                  </span>
		      
                                  </div>
              </a>
            </li>
                        <li>
              <a href="https://seuimovelnaflorida.com/en/corretores/"> 

                <div class="dropdown dropdown-menu-top">
                  <span>
                    Corretores                  </span>
		      
                                  </div>
              </a>
            </li>
                      
          <li class="highlight" data-toggle="modal" data-target="#contactModal">Contato</li>
            <li>
              <span style="margin: 0 0 0 25px;">
                                
                <li class="menu-item-language">
                  <a>
                    <div class="dropdown">
                      <div class="dropdown-world">
                        <span class="world">
                        </span>
                        <span class="dropdown-world-text">
                          PT                        </span>
                      </div>
                      
                      <div class="dropdown-content dropdown-content-language">
                        <div style="height: 5px;">
                          <div class="arrow-up"></div>
                        </div>
                        <ul class="submenu submenu-translate">
                                                    <li>
                            <a class="click-language" language="pt">
                              PT                            </a>
                          </li>
                                                    <li>
                            <a class="click-language" language="en">
                              EN                            </a>
                          </li>
                                                  </ul>
                      </div>
                    </div>
                  </a>
                </li>
              </span>
            </li>
          </ul>
        </div>
      </div>
    </div>
    </div>
    
    <div class="menu-mobile-open hide">
      <div class="menu-mobile-close">
        <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/mobile-modal-close.svg"></i>
      </div>
      <a href="https://seuimovelnaflorida.com/en/">
        <img class="menu-mobile-logo" src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/logo-golden-key-mobile-menu.svg">
      </a>
      
      <div style="height: calc(100% - 240px); overflow: auto;">
      <ul>
              <li onclick="location.href='https://seuimovelnaflorida.com/busca-mls/'">
          Busca MLS        </li>
              <li onclick="location.href='https://seuimovelnaflorida.com/en/quem-somos/'">
          Quem somos        </li>
              <li onclick="location.href='https://seuimovelnaflorida.com/en/imoveis/'">
          Imóveis        </li>
              <li>
          <a href="https://seuimovelnaflorida.com/en/">Construção</a>
        </li>
                  <li style="margin-left: 10px;">
            <a href="https://seuimovelnaflorida.com/construcao/?id=6526">Ocala – Modelo 1876</a>
          </li>
                      <li onclick="location.href='https://seuimovelnaflorida.com/en/servicos/'">
          Serviços        </li>
              <li onclick="location.href='https://seuimovelnaflorida.com/en/duvidas/'">
          Dúvidas        </li>
              <li onclick="location.href='https://seuimovelnaflorida.com/en/depoimentos/'">
          Depoimentos        </li>
              <li onclick="location.href='https://seuimovelnaflorida.com/en/parceiros/'">
          Parceiros        </li>
              <li onclick="location.href='https://seuimovelnaflorida.com/en/corretores/'">
          Corretores        </li>
            
      </ul>
      </div>
      <div class="menu-mobile-end">
        <button class="menu-mobile-contact" data-toggle="modal" data-target="#contactModal">
          Contato        </button>
        <div class="menu-mobile-language">
          <img class="menu-mobile-language-image" src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/world-blue.svg"> 
          <select class="change-language select-language">
                            <option value="pt" selected>Portuguese</option>
                            <option value="en" >English</option>
                      </select>
        </div>
      </div>
    </div>
  </div>

<script>
  $('.menu-mobile .menu-bars').click(function() {
     $('.menu-mobile-open').toggleClass('hide');
   });
   
  $('.menu-mobile-close img').click(function() {
     $('.menu-mobile-open').toggleClass('hide');
     $(window).scrollTop(0);
   });
</script>

<script>
  $('.click-language').click(function() {
    var option = $(this).attr('language');
     
    $.ajax({
      type: 'POST',
      cache: false,
      url: 'https://seuimovelnaflorida.com/wp-admin/admin-ajax.php',
      data: {
        action: 'change_language',
        language: option
      },
      success: function(data) {
        data = JSON.parse(data);
        location.reload();
      },
    });
 });
       
  $('.change-language').change(function() {
    var option = $(this).find('option:selected').val();
   
    $.ajax({
      type: 'POST',
      cache: false,
      url: 'https://seuimovelnaflorida.com/wp-admin/admin-ajax.php',
      data: {
        action: 'change_language',
        language: option
      },
      success: function(data) {
        data = JSON.parse(data);
        location.reload();
      },
    });
  });
</script>    
    <section class="container-fluid">
      <div class="row">
	<div class="col-md-12">
	  <h1 class="text-center">
	    <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/topic.png">
	    <br>
	    Imóveis	  </h1>
        </div>
      </div>
    </section>
  </header>
  
  
  <section class="search-bar-mobile container-fluid visible-xs">
    <div class="row" style="background: #1F77FF; position: relative; border-radius: 5px;">
      <div class="col-md-12">
	<div class="pull-left">
	  <div class="search-bar-mobile-text">
	          Encontre seu imóvel	  </div>
	</div>
	<div class="pull-right">
	  <button class="search-bar-button">
	    <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/search-icon.png">
	  </button>
        </div>
      </div>
    </div>
  </section>
  
  <section class="modal-search-bar-mobile modal-mobile">
    <div class="menu-mobile-close">
      <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/mobile-modal-close.svg">
    </div>
    <div class="fields-info">
      <div>
                Tipo        <select class="element-mobile-type" item="type">
          <option value="">
                       Todos          </option>
                              <option  value="vacation-properties">Temporada</option>
                                <option  value="property">Moradia</option>
                                <option  value="commercial-property">Comercial</option>
                                <option  value="featured-property">Oportunidades</option>
                                <option  value="rental-properties">Aluguel</option>
                  
        </select>        
      </div>
      <div>
                Cidade        <select class="element-mobile-city" item="city">
          <option value="">
                       Todos          </option>
                    <option value="apopka" >Apopka</option>
                    <option value="champions-gate" >Champions Gate</option>
                    <option value="clermont" >Clermont</option>
                    <option value="davenport" >Davenport</option>
                    <option value="deland" >Deland</option>
                    <option value="kissimmee" >Kissimmee</option>
                    <option value="lake-nona" >Lake Nona</option>
                    <option value="metrowest" >Metrowest</option>
                    <option value="miami" >Miami</option>
                    <option value="montverde" >Montverde</option>
                    <option value="mount-dora" >Mount Dora</option>
                    <option value="ocala" >Ocala</option>
                    <option value="orlando" >Orlando</option>
                    <option value="saint-cloud" >Saint Cloud</option>
                    <option value="sanford" >Sanford</option>
                    <option value="sorrento" >Sorrento</option>
                    <option value="windermere" >Windermere</option>
                    <option value="winter-garden" >Winter Garden</option>
                    <option value="winter-park" >Winter Park</option>
                  </select>
      </div>
      <div>
                Quartos        <div class="fields-info-room">
          <span  item="" class="field-info-active" style="float: left;width: calc(25% - 5px);background: #EFF5FF; margin: 5px 5px 0 0;text-align: center; padding: 13px 0; border-radius: 5px;">
                        Todos          </span>
          <div style="float: right; width: 75%;">
            <span item="1">1</span>
            <span item="2">2</span>
            <span item="3">3</span>
            <span item="4">4+</span>
          </div>
          <div style="clear: both;">
        </div>
      </div>
      <div style="margin-top: 20px;">
                Preço        <select class="element-mobile-price" item="price"><option value="">Todos</option><option value="50.000-100.000">$50.000 - $100.000</option><option value="100.000-200.000">$100.000 - $200.000</option><option value="200.000-300.000">$200.000 - $300.000</option><option value="300.000-400.000">$300.000 - $400.000</option><option value="400.000-500.000">$400.000 - $500.000</option><option value="500.000-600.000">$500.000 - $600.000</option><option value="600.000-1000.000">$600.000 - $1,000.000</option><option value="1000.000-999999.999">$1,000.000+</option></select>      </div>
    </div>
    <div>
      <button class="search-mobile-button">
                Procurar imóveis      </button>
    </div>
    
    <section class="container-fluid">
      <div class="row">
        <div class="col-md-12 text-center">
        <br>
        <a class="link-search link-search-blue" target="_blank" href="https://stellar.mlsmatrix.com/Matrix/public/IDX.aspx?idx=d4315ebe">
          Busca avançada (MLS)
        </a>
        </div>
      </div>
    </section>
    
  </section>
  
  <section class="search-bar container-fluid visible-xs" style="display: none !important;">
    <div class="row">
      <div class="col-md-2">
	<select class="element-type">
	  <option value="">Tipo</option>
	  	        <option value="vacation-properties" >Temporada</option>
	  	        <option value="property" >Moradia</option>
	  	        <option value="commercial-property" >Comercial</option>
	  	        <option value="featured-property" >Oportunidades</option>
	  	        <option value="rental-properties" >Aluguel</option>
	  	</select>
      </div>
      <div class="col-md-2">
        <select class="element-city">
          <option value="">Cidade</option>
                          <option value="apopka" >Apopka</option>
                          <option value="champions-gate" >Champions Gate</option>
                          <option value="clermont" >Clermont</option>
                          <option value="davenport" >Davenport</option>
                          <option value="deland" >Deland</option>
                          <option value="kissimmee" >Kissimmee</option>
                          <option value="lake-nona" >Lake Nona</option>
                          <option value="metrowest" >Metrowest</option>
                          <option value="miami" >Miami</option>
                          <option value="montverde" >Montverde</option>
                          <option value="mount-dora" >Mount Dora</option>
                          <option value="ocala" >Ocala</option>
                          <option value="orlando" >Orlando</option>
                          <option value="saint-cloud" >Saint Cloud</option>
                          <option value="sanford" >Sanford</option>
                          <option value="sorrento" >Sorrento</option>
                          <option value="windermere" >Windermere</option>
                          <option value="winter-garden" >Winter Garden</option>
                          <option value="winter-park" >Winter Park</option>
                  </select>
      </div>
      <div class="col-md-2">
        <select class="element-room">
          <option value="">Quartos</option>
                        <option value="1" >1 quarto</option>
                        <option value="2" >2 quarto</option>
                        <option value="3" >3 quarto</option>
                        <option value="4" >4 quarto</option>
                        <option value="5" >5 quarto</option>
                  </select>
      </div>
      <div class="col-md-2">
        <select class="element-garage">
          <option value="">Garagem</option>
                        <option value="1" >1</option>
                        <option value="2" >2</option>
                        <option value="3" >3</option>
                        <option value="4" >4</option>
                  </select>
      </div>
      <div class="col-md-2">
        <select class="element-price">
          <option value="">Preço</option>
                        <option value="50.000-100.000" >$50.000 - $100.000</option>
                        <option value="100.000-200.000" >$100.000 - $200.000</option>
                        <option value="200.000-300.000" >$200.000 - $300.000</option>
                        <option value="300.000-400.000" >$300.000 - $400.000</option>
                        <option value="400.000-500.000" >$400.000 - $500.000</option>
                        <option value="500.000-600.000" >$500.000 - $600.000</option>
                        <option value="600.000-1000.000" >$600.000 - $1,000.000</option>
                        <option value="1000.000-999999.999" >$1,000.000+</option>
                  </select>
      </div>
      <div class="col-md-2">
        <div class="pull-right">
          <button class="search-property search-bar-button">
            <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/search-icon.png">
          </button>
        </div>
      </div>
    </div>
  </section>
  
  <section class="search-bar container-fluid hidden-xs">
    <div class="row">
      <div class="col-md-11">
        <div class="menus-search-bar">
          <ul>
                      <li class="menu-search-bar-main">
            <a>
              <div class="dropdown">
                <span class="menu-search-bar-type">
            Tipo                </span>
                 
                <div class="dropdown-content">
                  <div style="height: 5px;">
                    <div class="arrow-up"></div>
                  </div>
                  <ul class="submenu">
                                            <li  onclick="selectSubMenu('type', 'Temporada ', 'vacation-properties');">
                          <a>
                            Temporada                           </a>
                        </li>
                                            <li  onclick="selectSubMenu('type', 'Moradia ', 'property');">
                          <a>
                            Moradia                           </a>
                        </li>
                                            <li  onclick="selectSubMenu('type', 'Comercial ', 'commercial-property');">
                          <a>
                            Comercial                           </a>
                        </li>
                                            <li  onclick="selectSubMenu('type', 'Oportunidades ', 'featured-property');">
                          <a>
                            Oportunidades                           </a>
                        </li>
                                            <li  style="border-bottom-left-radius: 5px; border-bottom-right-radius: 5px;" onclick="selectSubMenu('type', 'Aluguel ', 'rental-properties');">
                          <a>
                            Aluguel                           </a>
                        </li>
                                      </ul>
                </div>
              </div>
            </a>
          </li>
                    <li class="menu-search-bar-main">
            <a>
              <div class="dropdown">
                <span class="menu-search-bar-city">
            Cidade                </span>
                 
                <div class="dropdown-content">
                  <div style="height: 5px;">
                    <div class="arrow-up"></div>
                  </div>
                  <ul class="submenu">
                                            <li  onclick="selectSubMenu('city', 'Apopka ', 'apopka');">
                          <a>
                            Apopka                           </a>
                        </li>
                                            <li  onclick="selectSubMenu('city', 'Champions Gate ', 'champions-gate');">
                          <a>
                            Champions Gate                           </a>
                        </li>
                                            <li  onclick="selectSubMenu('city', 'Clermont ', 'clermont');">
                          <a>
                            Clermont                           </a>
                        </li>
                                            <li  onclick="selectSubMenu('city', 'Davenport ', 'davenport');">
                          <a>
                            Davenport                           </a>
                        </li>
                                            <li  onclick="selectSubMenu('city', 'Deland ', 'deland');">
                          <a>
                            Deland                           </a>
                        </li>
                                            <li  onclick="selectSubMenu('city', 'Kissimmee ', 'kissimmee');">
                          <a>
                            Kissimmee                           </a>
                        </li>
                                            <li  onclick="selectSubMenu('city', 'Lake Nona ', 'lake-nona');">
                          <a>
                            Lake Nona                           </a>
                        </li>
                                            <li  onclick="selectSubMenu('city', 'Metrowest ', 'metrowest');">
                          <a>
                            Metrowest                           </a>
                        </li>
                                            <li  onclick="selectSubMenu('city', 'Miami ', 'miami');">
                          <a>
                            Miami                           </a>
                        </li>
                                            <li  onclick="selectSubMenu('city', 'Montverde ', 'montverde');">
                          <a>
                            Montverde                           </a>
                        </li>
                                            <li  onclick="selectSubMenu('city', 'Mount Dora ', 'mount-dora');">
                          <a>
                            Mount Dora                           </a>
                        </li>
                                            <li  onclick="selectSubMenu('city', 'Ocala ', 'ocala');">
                          <a>
                            Ocala                           </a>
                        </li>
                                            <li  onclick="selectSubMenu('city', 'Orlando ', 'orlando');">
                          <a>
                            Orlando                           </a>
                        </li>
                                            <li  onclick="selectSubMenu('city', 'Saint Cloud ', 'saint-cloud');">
                          <a>
                            Saint Cloud                           </a>
                        </li>
                                            <li  onclick="selectSubMenu('city', 'Sanford ', 'sanford');">
                          <a>
                            Sanford                           </a>
                        </li>
                                            <li  onclick="selectSubMenu('city', 'Sorrento ', 'sorrento');">
                          <a>
                            Sorrento                           </a>
                        </li>
                                            <li  onclick="selectSubMenu('city', 'Windermere ', 'windermere');">
                          <a>
                            Windermere                           </a>
                        </li>
                                            <li  onclick="selectSubMenu('city', 'Winter Garden ', 'winter-garden');">
                          <a>
                            Winter Garden                           </a>
                        </li>
                                            <li  style="border-bottom-left-radius: 5px; border-bottom-right-radius: 5px;" onclick="selectSubMenu('city', 'Winter Park ', 'winter-park');">
                          <a>
                            Winter Park                           </a>
                        </li>
                                      </ul>
                </div>
              </div>
            </a>
          </li>
                    <li class="menu-search-bar-main">
            <a>
              <div class="dropdown">
                <span class="menu-search-bar-room">
            Quartos                </span>
                 
                <div class="dropdown-content">
                  <div style="height: 5px;">
                    <div class="arrow-up"></div>
                  </div>
                  <ul class="submenu">
                                            <li  onclick="selectSubMenu('room', '1 quarto', '1');">
                          <a>
                            1 quarto                          </a>
                        </li>
                                            <li  onclick="selectSubMenu('room', '2 quartos', '2');">
                          <a>
                            2 quartos                          </a>
                        </li>
                                            <li  onclick="selectSubMenu('room', '3 quartos', '3');">
                          <a>
                            3 quartos                          </a>
                        </li>
                                            <li  onclick="selectSubMenu('room', '4 quartos', '4');">
                          <a>
                            4 quartos                          </a>
                        </li>
                                            <li  style="border-bottom-left-radius: 5px; border-bottom-right-radius: 5px;" onclick="selectSubMenu('room', '5 quartos', '5');">
                          <a>
                            5 quartos                          </a>
                        </li>
                                      </ul>
                </div>
              </div>
            </a>
          </li>
                    <li class="menu-search-bar-main">
            <a>
              <div class="dropdown">
                <span class="menu-search-bar-garage">
            Garagem                </span>
                 
                <div class="dropdown-content">
                  <div style="height: 5px;">
                    <div class="arrow-up"></div>
                  </div>
                  <ul class="submenu">
                                            <li  onclick="selectSubMenu('garage', '1 vaga', '1');">
                          <a>
                            1 vaga                          </a>
                        </li>
                                            <li  onclick="selectSubMenu('garage', '2 vagas', '2');">
                          <a>
                            2 vagas                          </a>
                        </li>
                                            <li  onclick="selectSubMenu('garage', '3 vagas', '3');">
                          <a>
                            3 vagas                          </a>
                        </li>
                                            <li  style="border-bottom-left-radius: 5px; border-bottom-right-radius: 5px;" onclick="selectSubMenu('garage', '4 vagas', '4');">
                          <a>
                            4 vagas                          </a>
                        </li>
                                      </ul>
                </div>
              </div>
            </a>
          </li>
                    <li class="menu-search-bar-main">
            <a>
              <div class="dropdown">
                <span class="menu-search-bar-price">
            Preço                </span>
                 
                <div class="dropdown-content">
                  <div style="height: 5px;">
                    <div class="arrow-up"></div>
                  </div>
                  <ul class="submenu">
                                            <li  onclick="selectSubMenu('price', '$50.000 - $100.000 ', '50.000-100.000');">
                          <a>
                            $50.000 - $100.000                           </a>
                        </li>
                                            <li  onclick="selectSubMenu('price', '$100.000 - $200.000 ', '100.000-200.000');">
                          <a>
                            $100.000 - $200.000                           </a>
                        </li>
                                            <li  onclick="selectSubMenu('price', '$200.000 - $300.000 ', '200.000-300.000');">
                          <a>
                            $200.000 - $300.000                           </a>
                        </li>
                                            <li  onclick="selectSubMenu('price', '$300.000 - $400.000 ', '300.000-400.000');">
                          <a>
                            $300.000 - $400.000                           </a>
                        </li>
                                            <li  onclick="selectSubMenu('price', '$400.000 - $500.000 ', '400.000-500.000');">
                          <a>
                            $400.000 - $500.000                           </a>
                        </li>
                                            <li  onclick="selectSubMenu('price', '$500.000 - $600.000 ', '500.000-600.000');">
                          <a>
                            $500.000 - $600.000                           </a>
                        </li>
                                            <li  onclick="selectSubMenu('price', '$600.000 - $1,000.000 ', '600.000-1000.000');">
                          <a>
                            $600.000 - $1,000.000                           </a>
                        </li>
                                            <li  style="border-bottom-left-radius: 5px; border-bottom-right-radius: 5px;" onclick="selectSubMenu('price', '$1,000.000+ ', '1000.000-999999.999');">
                          <a>
                            $1,000.000+                           </a>
                        </li>
                                      </ul>
                </div>
              </div>
            </a>
          </li>
                    </ul>
        </div>
      </div>
      <div class="col-md-1">
        <div class="pull-right">
          <button class="search-property search-bar-button">
            <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/search-icon.png">
          </button>
        </div>
      </div>
    </div>
  </section>
  
  <section class="container-fluid">
    <div class="row">
      <div class="col-md-12 text-right advanced-search-item">
      <br class="hidden-xs">
      <a class="link-search link-search-blue" target="_blank" href="https://stellar.mlsmatrix.com/Matrix/public/IDX.aspx?idx=d4315ebe">
        Busca avançada (MLS)
      </a>
      <br class="visible-xs">
      </div>
    </div>
  </section>
  
  <script>
    $('.search-bar-mobile').click(function() {
      $('.modal-search-bar-mobile').show();
    });
    
    $('.modal-search-bar-mobile .menu-mobile-close').click(function() {
      $('.modal-search-bar-mobile').hide();
    });
    
    var secondClick = false;
    function selectSubMenu(menu, value, key) {
      $('.menu-search-bar-' + menu).html(value);
      $('.menu-search-bar-main .dropdown').find('.dropdown-content').attr('style', 'display: none !important');
      secondClick = true;
      
      $('.element-' + menu).val(key);

      if (menu == 'price') {
        $('.menu-search-bar-' + menu).css({'padding-left': 12, 'letter-spacing': 0});
      }
    }
      
    $('.menu-search-bar-main .dropdown').click(function() {
      if (!secondClick) {
        if (!$(this).find('.dropdown-content').is(':visible')) {
          $('.menu-search-bar-main .dropdown').find('.dropdown-content').attr('style', 'display: none !important');
          $(this).find('.dropdown-content').attr('style', 'display: block !important');
        }
        else {
          $(this).find('.dropdown-content').attr('style', 'display: none !important');
        }
      }
      secondClick = false;
    });
    
    $('.search-property, .search-mobile-button').click(function() {
      var property_type = $('.element-type').find('option:selected').val(),
          garage = $('.element-garage').find('option:selected').val(),
          city = $('.element-city').find('option:selected').val(),
          room = $('.element-room').find('option:selected').val(),
          price = $('.element-price').find('option:selected').val();
          
      var parameters = '';
      
      if (property_type != '') {
        parameters += 'property_type=' + property_type;
      }
      if (city != '') {
        parameters += '&city=' + city;
      }
      if (room != '') {
        parameters += '&room=' + room;
      }
      if (garage != '') {
        parameters += '&garage=' + garage;
      }
      if (price != '') {
        parameters += '&price=' + price;
      }
	  
      location.href = 'https://seuimovelnaflorida.com/imoveis/?' + parameters;
    });
    
    var items = ['type', 'city', 'price'];
    for (i in items) {
      $('.element-mobile-' + items[i]).change(function() {
        var item = $(this).attr('item');
        
        $('.element-' + item).val($(this).val());
      });
    }
    
    $('.fields-info-room span').click(function() {
      $('.fields-info-room span').removeClass('field-info-active');
      $(this).addClass('field-info-active');
      
      var room = $(this).attr('item');
      $('.element-room').val(room);
    });
  </script>  
  <section class="highlights enterprises-content">
    <div class="container-fluid">
      <div class="row">
        <div class="advanced-search col-md-12 text-right hidden-xs">
	  <!--<a>
	    <i class="fa fa-plus"></i> Busca avançada	  </a>-->
          <br>
        </div>

        <div class="col-md-12 enterprise-page-title">
          <h2>Imóveis em Orlando</h2>
        </div>
      
        <div class="col-md-6">
          <p>
            Nós temos o imóvel perfeito para você          </p>
        </div>
      
       <!-- <div class="col-md-6 text-right hidden-xs">
	  <ul class="tabs">
	    <li class="active">Todos</li>
	    <li>Aluguel</li>
	    <li>Moradia</li>
	    <li>Temporada</li>
	    <li>Oportunidades</li>
	  </ul>
        </div>
	
        <div class="enterprise-mobile-filters col-xs-12 visible-xs">
	  <div>Filtros</div>
	  <select>
	    <option>Todos</option>
	  </select>
        </div>-->
      </div>
      
      
      <div class="enterprise-item-mobile-width">
        <div class="row enterprise-item-mobile">
          <script>
console.log('enterprise-item');
</script>
<div class="enteprise-item-mobile-adjust">
  <div class="enteprise-item col-md-4 col-xs-10">
    <a class="enterprise-item-link" href="https://seuimovelnaflorida.com/en/properties/orlando-fl/">
            <div class="enterprise-module">
        <div class="enterprise-module-img">
          <div class="enterprise-module-hover">
            <div style="display: flex; justify-content: center; align-items: center; width: 100%; height: 100%;">
              <div style="background-color: #FFF; background-image: url(https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-zoom.png); background-position: center; background-repeat: no-repeat; height: 80px; width: 80px; border-radius: 50%;">
              </div>
            </div>
          </div>
          <div class="enterprise-img" style="height: 200px; width: 100%; background: url(https://seuimovelnaflorida.com/wp-content/uploads/2025/03/8e2813638eb3ea52511ba1f5dffbe98a_67e563f51f441.png); background-size: cover;">
          </div>
        </div>
        <div class="enterprise">
          <small>
            Orlando          </small>
          
          <hgroup>
            <h3>
            Orlando, FL            </h3>
                        <h4>$425,490</h4>
                      </hgroup>
          <hr>
          
          <div class="enterprise-info row">
            <div class="enterprise-info-first col-md-3 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-room.png">
        </div>
        <div class="enterprise-info-text">
          3        </div>
            </div>
            
            <div class="col-md-3 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-shower.png">
        </div>
        <div class="enterprise-info-text">
          2        </div>
            </div>
            
            <div class="col-md-2 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-garage.png">
        </div>
        <div class="enterprise-info-text">
          2        </div>
            </div>
            
            <div class="col-md-4 hidden-xs">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-house.png" style="margin-top: -3px;">
        </div>
        <div class="enterprise-info-text">
          149 m<sup>2</sup>    
        </div>
            </div>
          </div>
        </div>
      </div>
    </a>
  </div>
</div><script>
console.log('enterprise-item');
</script>
<div class="enteprise-item-mobile-adjust">
  <div class="enteprise-item col-md-4 col-xs-10">
    <a class="enterprise-item-link" href="https://seuimovelnaflorida.com/en/properties/kissimmee-fl-2/">
            <div class="enterprise-module">
        <div class="enterprise-module-img">
          <div class="enterprise-module-hover">
            <div style="display: flex; justify-content: center; align-items: center; width: 100%; height: 100%;">
              <div style="background-color: #FFF; background-image: url(https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-zoom.png); background-position: center; background-repeat: no-repeat; height: 80px; width: 80px; border-radius: 50%;">
              </div>
            </div>
          </div>
          <div class="enterprise-img" style="height: 200px; width: 100%; background: url(https://seuimovelnaflorida.com/wp-content/uploads/2025/03/80850158de65e614f57b2aa85ed2740a_67e55d930ddfb.png); background-size: cover;">
          </div>
        </div>
        <div class="enterprise">
          <small>
            Kissimmee          </small>
          
          <hgroup>
            <h3>
            Kissimmee, FL            </h3>
                        <h4>$352,990</h4>
                      </hgroup>
          <hr>
          
          <div class="enterprise-info row">
            <div class="enterprise-info-first col-md-3 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-room.png">
        </div>
        <div class="enterprise-info-text">
          4        </div>
            </div>
            
            <div class="col-md-3 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-shower.png">
        </div>
        <div class="enterprise-info-text">
          2        </div>
            </div>
            
            <div class="col-md-2 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-garage.png">
        </div>
        <div class="enterprise-info-text">
          2        </div>
            </div>
            
            <div class="col-md-4 hidden-xs">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-house.png" style="margin-top: -3px;">
        </div>
        <div class="enterprise-info-text">
          169 m<sup>2</sup>    
        </div>
            </div>
          </div>
        </div>
      </div>
    </a>
  </div>
</div><script>
console.log('enterprise-item');
</script>
<div class="enteprise-item-mobile-adjust">
  <div class="enteprise-item col-md-4 col-xs-10">
    <a class="enterprise-item-link" href="https://seuimovelnaflorida.com/en/properties/kissimmee-fl/">
            <div class="enterprise-module">
        <div class="enterprise-module-img">
          <div class="enterprise-module-hover">
            <div style="display: flex; justify-content: center; align-items: center; width: 100%; height: 100%;">
              <div style="background-color: #FFF; background-image: url(https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-zoom.png); background-position: center; background-repeat: no-repeat; height: 80px; width: 80px; border-radius: 50%;">
              </div>
            </div>
          </div>
          <div class="enterprise-img" style="height: 200px; width: 100%; background: url(https://seuimovelnaflorida.com/wp-content/uploads/2025/03/3832ab1746920333140c5e21fcd33401_67e4651e77e98.png); background-size: cover;">
          </div>
        </div>
        <div class="enterprise">
          <small>
            Kissimmee          </small>
          
          <hgroup>
            <h3>
            Kissimmee, FL            </h3>
                        <h4>$547,737</h4>
                      </hgroup>
          <hr>
          
          <div class="enterprise-info row">
            <div class="enterprise-info-first col-md-3 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-room.png">
        </div>
        <div class="enterprise-info-text">
          5        </div>
            </div>
            
            <div class="col-md-3 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-shower.png">
        </div>
        <div class="enterprise-info-text">
          3        </div>
            </div>
            
            <div class="col-md-2 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-garage.png">
        </div>
        <div class="enterprise-info-text">
          3        </div>
            </div>
            
            <div class="col-md-4 hidden-xs">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-house.png" style="margin-top: -3px;">
        </div>
        <div class="enterprise-info-text">
          305 m<sup>2</sup>    
        </div>
            </div>
          </div>
        </div>
      </div>
    </a>
  </div>
</div><script>
console.log('enterprise-item');
</script>
<div class="enteprise-item-mobile-adjust">
  <div class="enteprise-item col-md-4 col-xs-10">
    <a class="enterprise-item-link" href="https://seuimovelnaflorida.com/en/properties/deland-fl/">
            <div class="enterprise-module">
        <div class="enterprise-module-img">
          <div class="enterprise-module-hover">
            <div style="display: flex; justify-content: center; align-items: center; width: 100%; height: 100%;">
              <div style="background-color: #FFF; background-image: url(https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-zoom.png); background-position: center; background-repeat: no-repeat; height: 80px; width: 80px; border-radius: 50%;">
              </div>
            </div>
          </div>
          <div class="enterprise-img" style="height: 200px; width: 100%; background: url(https://seuimovelnaflorida.com/wp-content/uploads/2025/03/cfa7a7dc125e5d92c69f54cb466f79c3_67e421afab24a.png); background-size: cover;">
          </div>
        </div>
        <div class="enterprise">
          <small>
            Deland          </small>
          
          <hgroup>
            <h3>
            Deland, FL            </h3>
                        <h4>$426,990</h4>
                      </hgroup>
          <hr>
          
          <div class="enterprise-info row">
            <div class="enterprise-info-first col-md-3 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-room.png">
        </div>
        <div class="enterprise-info-text">
          5        </div>
            </div>
            
            <div class="col-md-3 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-shower.png">
        </div>
        <div class="enterprise-info-text">
          3        </div>
            </div>
            
            <div class="col-md-2 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-garage.png">
        </div>
        <div class="enterprise-info-text">
          2        </div>
            </div>
            
            <div class="col-md-4 hidden-xs">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-house.png" style="margin-top: -3px;">
        </div>
        <div class="enterprise-info-text">
          255 m<sup>2</sup>    
        </div>
            </div>
          </div>
        </div>
      </div>
    </a>
  </div>
</div><script>
console.log('enterprise-item');
</script>
<div class="enteprise-item-mobile-adjust">
  <div class="enteprise-item col-md-4 col-xs-10">
    <a class="enterprise-item-link" href="https://seuimovelnaflorida.com/en/properties/wellness-ridge-clermont/">
            <div class="enterprise-module">
        <div class="enterprise-module-img">
          <div class="enterprise-module-hover">
            <div style="display: flex; justify-content: center; align-items: center; width: 100%; height: 100%;">
              <div style="background-color: #FFF; background-image: url(https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-zoom.png); background-position: center; background-repeat: no-repeat; height: 80px; width: 80px; border-radius: 50%;">
              </div>
            </div>
          </div>
          <div class="enterprise-img" style="height: 200px; width: 100%; background: url(https://seuimovelnaflorida.com/wp-content/uploads/2025/03/40a6a9800ea2f258a9b1a091459963f0_67e1b0f56974a.png); background-size: cover;">
          </div>
        </div>
        <div class="enterprise">
          <small>
            Clermont          </small>
          
          <hgroup>
            <h3>
            Wellness Ridge, Clermont            </h3>
                        <h4>$541,990</h4>
                      </hgroup>
          <hr>
          
          <div class="enterprise-info row">
            <div class="enterprise-info-first col-md-3 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-room.png">
        </div>
        <div class="enterprise-info-text">
          4        </div>
            </div>
            
            <div class="col-md-3 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-shower.png">
        </div>
        <div class="enterprise-info-text">
          3        </div>
            </div>
            
            <div class="col-md-2 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-garage.png">
        </div>
        <div class="enterprise-info-text">
          2        </div>
            </div>
            
            <div class="col-md-4 hidden-xs">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-house.png" style="margin-top: -3px;">
        </div>
        <div class="enterprise-info-text">
          204 m<sup>2</sup>    
        </div>
            </div>
          </div>
        </div>
      </div>
    </a>
  </div>
</div><script>
console.log('enterprise-item');
</script>
<div class="enteprise-item-mobile-adjust">
  <div class="enteprise-item col-md-4 col-xs-10">
    <a class="enterprise-item-link" href="https://seuimovelnaflorida.com/en/properties/tohoqua-reserve-kissimmee/">
            <div class="enterprise-module">
        <div class="enterprise-module-img">
          <div class="enterprise-module-hover">
            <div style="display: flex; justify-content: center; align-items: center; width: 100%; height: 100%;">
              <div style="background-color: #FFF; background-image: url(https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-zoom.png); background-position: center; background-repeat: no-repeat; height: 80px; width: 80px; border-radius: 50%;">
              </div>
            </div>
          </div>
          <div class="enterprise-img" style="height: 200px; width: 100%; background: url(https://seuimovelnaflorida.com/wp-content/uploads/2025/03/5e7ea8cacd1330471c071c4ae7e97f20_67e1ac960b6d5.png); background-size: cover;">
          </div>
        </div>
        <div class="enterprise">
          <small>
            Kissimmee          </small>
          
          <hgroup>
            <h3>
            Tohoqua Reserve, Kissimmee            </h3>
                        <h4>$423,089</h4>
                      </hgroup>
          <hr>
          
          <div class="enterprise-info row">
            <div class="enterprise-info-first col-md-3 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-room.png">
        </div>
        <div class="enterprise-info-text">
          4        </div>
            </div>
            
            <div class="col-md-3 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-shower.png">
        </div>
        <div class="enterprise-info-text">
          2.5        </div>
            </div>
            
            <div class="col-md-2 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-garage.png">
        </div>
        <div class="enterprise-info-text">
          2        </div>
            </div>
            
            <div class="col-md-4 hidden-xs">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-house.png" style="margin-top: -3px;">
        </div>
        <div class="enterprise-info-text">
          185 m<sup>2</sup>    
        </div>
            </div>
          </div>
        </div>
      </div>
    </a>
  </div>
</div>	  <style>
	    .enterprise-item-mobile { width: 1500px; }
	  </style>
         </div>
      </div>  
      
           <div class="pagination">
		      <a class="page-active" href="https://seuimovelnaflorida.com/en/imoveis/?&i=1">1</a>
	  	      <a class="page" href="https://seuimovelnaflorida.com/en/imoveis/?&i=2">2</a>
	  	      <a class="page" href="https://seuimovelnaflorida.com/en/imoveis/?&i=3">3</a>
	  	      <a class="page" href="https://seuimovelnaflorida.com/en/imoveis/?&i=4">4</a>
	        </div>
    
      <div class="pagination" style="display: none;">
  <div id="paging"><p> Páginas: 1 de 4 páginas, de 24 resultados <a href="https://seuimovelnaflorida.com/en/imoveis/?property_type=&city=&rooms=&price=&i=2" title="Next page"><i class="fa fa-lg fa-angle-right"></i></a> <a href="https://seuimovelnaflorida.com/en/imoveis/?property_type=&city=&rooms=&price=&i=4" title="Last page"><i class="fa fa-lg fa-angle-double-right"></i></a> </p></div>      </div>
    </div>
    
    <style>
      @media only screen and (max-width: 1024px) {
        .enteprise-item-mobile-adjust {
          float: initial;
          width: calc(100vw - 25px);
        }
        .enterprise-item-mobile .enteprise-item {
          float: initial;
          width: 100%;
        }
      }
    <style>
    
    <div class="enterprise-item-mobile-width hidden-xs">
        <div class="row enterprise-item-mobile">
          <div id="myCarousel" class="carousel slide" data-ride="carousel">
            <div class="carousel-inner">	  
                            <div class="item active">
                  <script>
console.log('enterprise-item');
</script>
<div class="enteprise-item-mobile-adjust">
  <div class="enteprise-item col-md-4 col-xs-10">
    <a class="enterprise-item-link" href="https://seuimovelnaflorida.com/en/properties/orlando-fl/">
            <div class="enterprise-module">
        <div class="enterprise-module-img">
          <div class="enterprise-module-hover">
            <div style="display: flex; justify-content: center; align-items: center; width: 100%; height: 100%;">
              <div style="background-color: #FFF; background-image: url(https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-zoom.png); background-position: center; background-repeat: no-repeat; height: 80px; width: 80px; border-radius: 50%;">
              </div>
            </div>
          </div>
          <div class="enterprise-img" style="height: 200px; width: 100%; background: url(https://seuimovelnaflorida.com/wp-content/uploads/2025/03/8e2813638eb3ea52511ba1f5dffbe98a_67e563f51f441.png); background-size: cover;">
          </div>
        </div>
        <div class="enterprise">
          <small>
            Orlando          </small>
          
          <hgroup>
            <h3>
            Orlando, FL            </h3>
                        <h4>$425,490</h4>
                      </hgroup>
          <hr>
          
          <div class="enterprise-info row">
            <div class="enterprise-info-first col-md-3 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-room.png">
        </div>
        <div class="enterprise-info-text">
          3        </div>
            </div>
            
            <div class="col-md-3 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-shower.png">
        </div>
        <div class="enterprise-info-text">
          2        </div>
            </div>
            
            <div class="col-md-2 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-garage.png">
        </div>
        <div class="enterprise-info-text">
          2        </div>
            </div>
            
            <div class="col-md-4 hidden-xs">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-house.png" style="margin-top: -3px;">
        </div>
        <div class="enterprise-info-text">
          149 m<sup>2</sup>    
        </div>
            </div>
          </div>
        </div>
      </div>
    </a>
  </div>
</div><script>
console.log('enterprise-item');
</script>
<div class="enteprise-item-mobile-adjust">
  <div class="enteprise-item col-md-4 col-xs-10">
    <a class="enterprise-item-link" href="https://seuimovelnaflorida.com/en/properties/kissimmee-fl-2/">
            <div class="enterprise-module">
        <div class="enterprise-module-img">
          <div class="enterprise-module-hover">
            <div style="display: flex; justify-content: center; align-items: center; width: 100%; height: 100%;">
              <div style="background-color: #FFF; background-image: url(https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-zoom.png); background-position: center; background-repeat: no-repeat; height: 80px; width: 80px; border-radius: 50%;">
              </div>
            </div>
          </div>
          <div class="enterprise-img" style="height: 200px; width: 100%; background: url(https://seuimovelnaflorida.com/wp-content/uploads/2025/03/80850158de65e614f57b2aa85ed2740a_67e55d930ddfb.png); background-size: cover;">
          </div>
        </div>
        <div class="enterprise">
          <small>
            Kissimmee          </small>
          
          <hgroup>
            <h3>
            Kissimmee, FL            </h3>
                        <h4>$352,990</h4>
                      </hgroup>
          <hr>
          
          <div class="enterprise-info row">
            <div class="enterprise-info-first col-md-3 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-room.png">
        </div>
        <div class="enterprise-info-text">
          4        </div>
            </div>
            
            <div class="col-md-3 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-shower.png">
        </div>
        <div class="enterprise-info-text">
          2        </div>
            </div>
            
            <div class="col-md-2 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-garage.png">
        </div>
        <div class="enterprise-info-text">
          2        </div>
            </div>
            
            <div class="col-md-4 hidden-xs">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-house.png" style="margin-top: -3px;">
        </div>
        <div class="enterprise-info-text">
          169 m<sup>2</sup>    
        </div>
            </div>
          </div>
        </div>
      </div>
    </a>
  </div>
</div><script>
console.log('enterprise-item');
</script>
<div class="enteprise-item-mobile-adjust">
  <div class="enteprise-item col-md-4 col-xs-10">
    <a class="enterprise-item-link" href="https://seuimovelnaflorida.com/en/properties/kissimmee-fl/">
            <div class="enterprise-module">
        <div class="enterprise-module-img">
          <div class="enterprise-module-hover">
            <div style="display: flex; justify-content: center; align-items: center; width: 100%; height: 100%;">
              <div style="background-color: #FFF; background-image: url(https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-zoom.png); background-position: center; background-repeat: no-repeat; height: 80px; width: 80px; border-radius: 50%;">
              </div>
            </div>
          </div>
          <div class="enterprise-img" style="height: 200px; width: 100%; background: url(https://seuimovelnaflorida.com/wp-content/uploads/2025/03/3832ab1746920333140c5e21fcd33401_67e4651e77e98.png); background-size: cover;">
          </div>
        </div>
        <div class="enterprise">
          <small>
            Kissimmee          </small>
          
          <hgroup>
            <h3>
            Kissimmee, FL            </h3>
                        <h4>$547,737</h4>
                      </hgroup>
          <hr>
          
          <div class="enterprise-info row">
            <div class="enterprise-info-first col-md-3 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-room.png">
        </div>
        <div class="enterprise-info-text">
          5        </div>
            </div>
            
            <div class="col-md-3 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-shower.png">
        </div>
        <div class="enterprise-info-text">
          3        </div>
            </div>
            
            <div class="col-md-2 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-garage.png">
        </div>
        <div class="enterprise-info-text">
          3        </div>
            </div>
            
            <div class="col-md-4 hidden-xs">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-house.png" style="margin-top: -3px;">
        </div>
        <div class="enterprise-info-text">
          305 m<sup>2</sup>    
        </div>
            </div>
          </div>
        </div>
      </div>
    </a>
  </div>
</div>              </div>
              <div class="item">
                  <script>
console.log('enterprise-item');
</script>
<div class="enteprise-item-mobile-adjust">
  <div class="enteprise-item col-md-4 col-xs-10">
    <a class="enterprise-item-link" href="https://seuimovelnaflorida.com/en/properties/deland-fl/">
            <div class="enterprise-module">
        <div class="enterprise-module-img">
          <div class="enterprise-module-hover">
            <div style="display: flex; justify-content: center; align-items: center; width: 100%; height: 100%;">
              <div style="background-color: #FFF; background-image: url(https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-zoom.png); background-position: center; background-repeat: no-repeat; height: 80px; width: 80px; border-radius: 50%;">
              </div>
            </div>
          </div>
          <div class="enterprise-img" style="height: 200px; width: 100%; background: url(https://seuimovelnaflorida.com/wp-content/uploads/2025/03/cfa7a7dc125e5d92c69f54cb466f79c3_67e421afab24a.png); background-size: cover;">
          </div>
        </div>
        <div class="enterprise">
          <small>
            Deland          </small>
          
          <hgroup>
            <h3>
            Deland, FL            </h3>
                        <h4>$426,990</h4>
                      </hgroup>
          <hr>
          
          <div class="enterprise-info row">
            <div class="enterprise-info-first col-md-3 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-room.png">
        </div>
        <div class="enterprise-info-text">
          5        </div>
            </div>
            
            <div class="col-md-3 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-shower.png">
        </div>
        <div class="enterprise-info-text">
          3        </div>
            </div>
            
            <div class="col-md-2 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-garage.png">
        </div>
        <div class="enterprise-info-text">
          2        </div>
            </div>
            
            <div class="col-md-4 hidden-xs">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-house.png" style="margin-top: -3px;">
        </div>
        <div class="enterprise-info-text">
          255 m<sup>2</sup>    
        </div>
            </div>
          </div>
        </div>
      </div>
    </a>
  </div>
</div><script>
console.log('enterprise-item');
</script>
<div class="enteprise-item-mobile-adjust">
  <div class="enteprise-item col-md-4 col-xs-10">
    <a class="enterprise-item-link" href="https://seuimovelnaflorida.com/en/properties/wellness-ridge-clermont/">
            <div class="enterprise-module">
        <div class="enterprise-module-img">
          <div class="enterprise-module-hover">
            <div style="display: flex; justify-content: center; align-items: center; width: 100%; height: 100%;">
              <div style="background-color: #FFF; background-image: url(https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-zoom.png); background-position: center; background-repeat: no-repeat; height: 80px; width: 80px; border-radius: 50%;">
              </div>
            </div>
          </div>
          <div class="enterprise-img" style="height: 200px; width: 100%; background: url(https://seuimovelnaflorida.com/wp-content/uploads/2025/03/40a6a9800ea2f258a9b1a091459963f0_67e1b0f56974a.png); background-size: cover;">
          </div>
        </div>
        <div class="enterprise">
          <small>
            Clermont          </small>
          
          <hgroup>
            <h3>
            Wellness Ridge, Clermont            </h3>
                        <h4>$541,990</h4>
                      </hgroup>
          <hr>
          
          <div class="enterprise-info row">
            <div class="enterprise-info-first col-md-3 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-room.png">
        </div>
        <div class="enterprise-info-text">
          4        </div>
            </div>
            
            <div class="col-md-3 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-shower.png">
        </div>
        <div class="enterprise-info-text">
          3        </div>
            </div>
            
            <div class="col-md-2 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-garage.png">
        </div>
        <div class="enterprise-info-text">
          2        </div>
            </div>
            
            <div class="col-md-4 hidden-xs">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-house.png" style="margin-top: -3px;">
        </div>
        <div class="enterprise-info-text">
          204 m<sup>2</sup>    
        </div>
            </div>
          </div>
        </div>
      </div>
    </a>
  </div>
</div><script>
console.log('enterprise-item');
</script>
<div class="enteprise-item-mobile-adjust">
  <div class="enteprise-item col-md-4 col-xs-10">
    <a class="enterprise-item-link" href="https://seuimovelnaflorida.com/en/properties/tohoqua-reserve-kissimmee/">
            <div class="enterprise-module">
        <div class="enterprise-module-img">
          <div class="enterprise-module-hover">
            <div style="display: flex; justify-content: center; align-items: center; width: 100%; height: 100%;">
              <div style="background-color: #FFF; background-image: url(https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-zoom.png); background-position: center; background-repeat: no-repeat; height: 80px; width: 80px; border-radius: 50%;">
              </div>
            </div>
          </div>
          <div class="enterprise-img" style="height: 200px; width: 100%; background: url(https://seuimovelnaflorida.com/wp-content/uploads/2025/03/5e7ea8cacd1330471c071c4ae7e97f20_67e1ac960b6d5.png); background-size: cover;">
          </div>
        </div>
        <div class="enterprise">
          <small>
            Kissimmee          </small>
          
          <hgroup>
            <h3>
            Tohoqua Reserve, Kissimmee            </h3>
                        <h4>$423,089</h4>
                      </hgroup>
          <hr>
          
          <div class="enterprise-info row">
            <div class="enterprise-info-first col-md-3 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-room.png">
        </div>
        <div class="enterprise-info-text">
          4        </div>
            </div>
            
            <div class="col-md-3 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-shower.png">
        </div>
        <div class="enterprise-info-text">
          2.5        </div>
            </div>
            
            <div class="col-md-2 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-garage.png">
        </div>
        <div class="enterprise-info-text">
          2        </div>
            </div>
            
            <div class="col-md-4 hidden-xs">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-house.png" style="margin-top: -3px;">
        </div>
        <div class="enterprise-info-text">
          185 m<sup>2</sup>    
        </div>
            </div>
          </div>
        </div>
      </div>
    </a>
  </div>
</div>              </div>
              <div class="item">
                  <script>
console.log('enterprise-item');
</script>
<div class="enteprise-item-mobile-adjust">
  <div class="enteprise-item col-md-4 col-xs-10">
    <a class="enterprise-item-link" href="https://seuimovelnaflorida.com/en/properties/solara-resort-kissimmee-townhome/">
            <div class="enterprise-module">
        <div class="enterprise-module-img">
          <div class="enterprise-module-hover">
            <div style="display: flex; justify-content: center; align-items: center; width: 100%; height: 100%;">
              <div style="background-color: #FFF; background-image: url(https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-zoom.png); background-position: center; background-repeat: no-repeat; height: 80px; width: 80px; border-radius: 50%;">
              </div>
            </div>
          </div>
          <div class="enterprise-img" style="height: 200px; width: 100%; background: url(https://seuimovelnaflorida.com/wp-content/uploads/2025/03/b30c353b1fa76e9666f939fcae8134de_67e17ba972fb8.jpeg); background-size: cover;">
          </div>
        </div>
        <div class="enterprise">
          <small>
            Kissimmee          </small>
          
          <hgroup>
            <h3>
            Solara Resort, Kissimmee (townhome)            </h3>
                        <h4>$602,990</h4>
                      </hgroup>
          <hr>
          
          <div class="enterprise-info row">
            <div class="enterprise-info-first col-md-3 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-room.png">
        </div>
        <div class="enterprise-info-text">
          4        </div>
            </div>
            
            <div class="col-md-3 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-shower.png">
        </div>
        <div class="enterprise-info-text">
          3.5        </div>
            </div>
            
            <div class="col-md-2 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-garage.png">
        </div>
        <div class="enterprise-info-text">
          0        </div>
            </div>
            
            <div class="col-md-4 hidden-xs">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-house.png" style="margin-top: -3px;">
        </div>
        <div class="enterprise-info-text">
          213 m<sup>2</sup>    
        </div>
            </div>
          </div>
        </div>
      </div>
    </a>
  </div>
</div><script>
console.log('enterprise-item');
</script>
<div class="enteprise-item-mobile-adjust">
  <div class="enteprise-item col-md-4 col-xs-10">
    <a class="enterprise-item-link" href="https://seuimovelnaflorida.com/en/properties/solara-resort-kissimmee/">
            <div class="enterprise-module">
        <div class="enterprise-module-img">
          <div class="enterprise-module-hover">
            <div style="display: flex; justify-content: center; align-items: center; width: 100%; height: 100%;">
              <div style="background-color: #FFF; background-image: url(https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-zoom.png); background-position: center; background-repeat: no-repeat; height: 80px; width: 80px; border-radius: 50%;">
              </div>
            </div>
          </div>
          <div class="enterprise-img" style="height: 200px; width: 100%; background: url(https://seuimovelnaflorida.com/wp-content/uploads/2025/03/f291d9bc25bd95e4dcffcb2aa8a1bdec_67e17803b9efa.jpeg); background-size: cover;">
          </div>
        </div>
        <div class="enterprise">
          <small>
            Kissimmee          </small>
          
          <hgroup>
            <h3>
            Solara Resort, Kissimmee            </h3>
                        <h4>$798,990</h4>
                      </hgroup>
          <hr>
          
          <div class="enterprise-info row">
            <div class="enterprise-info-first col-md-3 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-room.png">
        </div>
        <div class="enterprise-info-text">
          7        </div>
            </div>
            
            <div class="col-md-3 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-shower.png">
        </div>
        <div class="enterprise-info-text">
          6.5        </div>
            </div>
            
            <div class="col-md-2 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-garage.png">
        </div>
        <div class="enterprise-info-text">
          1        </div>
            </div>
            
            <div class="col-md-4 hidden-xs">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-house.png" style="margin-top: -3px;">
        </div>
        <div class="enterprise-info-text">
          329 m<sup>2</sup>    
        </div>
            </div>
          </div>
        </div>
      </div>
    </a>
  </div>
</div><script>
console.log('enterprise-item');
</script>
<div class="enteprise-item-mobile-adjust">
  <div class="enteprise-item col-md-4 col-xs-10">
    <a class="enterprise-item-link" href="https://seuimovelnaflorida.com/en/properties/lucaya-village-kissimmee-fl/">
            <div class="enterprise-module">
        <div class="enterprise-module-img">
          <div class="enterprise-module-hover">
            <div style="display: flex; justify-content: center; align-items: center; width: 100%; height: 100%;">
              <div style="background-color: #FFF; background-image: url(https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-zoom.png); background-position: center; background-repeat: no-repeat; height: 80px; width: 80px; border-radius: 50%;">
              </div>
            </div>
          </div>
          <div class="enterprise-img" style="height: 200px; width: 100%; background: url(https://seuimovelnaflorida.com/wp-content/uploads/2025/03/1883d648588c764e7275e3f2df4fc636_67ddc614b83f9.jpeg); background-size: cover;">
          </div>
        </div>
        <div class="enterprise">
          <small>
            Kissimmee          </small>
          
          <hgroup>
            <h3>
            Lucaya Village, Kissimmee FL            </h3>
                        <h4>$285,990.00</h4>
                      </hgroup>
          <hr>
          
          <div class="enterprise-info row">
            <div class="enterprise-info-first col-md-3 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-room.png">
        </div>
        <div class="enterprise-info-text">
          3        </div>
            </div>
            
            <div class="col-md-3 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-shower.png">
        </div>
        <div class="enterprise-info-text">
          2        </div>
            </div>
            
            <div class="col-md-2 col-xs-4">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-garage.png">
        </div>
        <div class="enterprise-info-text">
          0        </div>
            </div>
            
            <div class="col-md-4 hidden-xs">
        <div class="pull-left">
          <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/icon-house.png" style="margin-top: -3px;">
        </div>
        <div class="enterprise-info-text">
          120 m<sup>2</sup>    
        </div>
            </div>
          </div>
        </div>
      </div>
    </a>
  </div>
</div>              </div>
            </div>
          
            <ol class="carousel-indicators">
              <li data-target="#myCarousel" data-slide-to="0" class="active"></li>
              <li data-target="#myCarousel" data-slide-to="1"></li>
              <li data-target="#myCarousel" data-slide-to="2"></li>
            </ol>
          </div>
	    
          <style>
            .enterprise-item-mobile { width: 2250px; }
          </style>
        </div>
      </div>
    
  </section>
  
  
    <section class="buy">
    <div class="container-fluid">
      <div class="row">
        <div class="col-md-6 hidden-xs margin-fix">
          <h2>
            Por que comprar um imóvel na Flórida?          </h2>
        
          <p>
            O mercado imobiliário de Orlando é um dos mercados que mais apresentam valorização nos Estados Unidos.<br><br>Apesar de estar em alta, o dólar é uma moeda forte. Ou seja, comprar uma casa em Orlando é investir em uma economia estável. Diferentemente do Brasil que constantemente vive uma economia com pouca segurança.          </p>
          
          <div class="row">
            <div class="col-md-6">
              <br>
              <br>
              <br>
              <button onclick="location.href = 'https://seuimovelnaflorida.com/en/imoveis/'">
                Explore aqui os melhores imóveis da região de Orlando              </button>
            </div>
            
            <div class="col-md-6">
              <div style="height: 77px;"></div>
              <a class="link-more link-more-blue" href="https://seuimovelnaflorida.com/en/servicos/">
                Conheça nossos serviços              </a>
            </div>
          </div>
        </div>
	
	<div class="col-md-6 hidden-xs">
	  <div class="buy-icon-1">
	    <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/buy-icon-1.png">
	    <h4 class="count">
	      2,670	    </h4>
	    <span>
	      imóveis<br>disponíveis	    </span>
	  </div>
	  
	  <div class="buy-icon-2">
	    <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/buy-icon-2.png">
	    <h4>
	      <font class="count">5</font>%
	    </h4>
	    <span>
	      juros médio<br>por ano	    </span>
	  </div>
	  
	  <div class="buy-icon-3">
	    <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/buy-icon-3.png">
	    <h4 class="count">
	      3,800	    </h4>
	    <span>
	      imóveis<br>vendidos	    </span>
	  </div>
	</div>
	
	<div class="col-md-12 visible-xs">
	  <h2>Por que comprar um imóvel na Flórida?</h2>
	
	  <p>
	    O mercado imobiliário de Orlando é um dos mercados que mais apresentam valorização nos Estados Unidos.<br><br>Apesar de estar em alta, o dólar é uma moeda forte. Ou seja, comprar uma casa em Orlando é investir em uma economia estável. Diferentemente do Brasil que constantemente vive uma economia com pouca segurança.	  </p>
	</div>
	  
	<div class="col-md-12 visible-xs">
	  <br>
	  <br>
	  <div class="buy-icon-1">
	    <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/buy-icon-1.png">
	    <h4 class="count">
	      2,670	    </h4>
	    <span>
	      imóveis<br>disponíveis	    </span>
	  </div>
	      
	  <div class="buy-icon-2">
	    <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/buy-icon-2.png">
	    <h4>
	      <span class="count">5</span>%
	    </h4>
	    <span>
	      juros médio<br>por ano	    </span>
	  </div>
	    
	  <div class="buy-icon-3">
	    <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/buy-icon-3.png">
	    <h4 class="count">
	      3,800	    </h4>
	    <span>
	      imóveis<br>vendidos	    </span>
	  </div>
	</div>
	  
	<div class="row">
	  <div class="col-xs-12 visible-xs">
	    <br>
	    <br>
	    <br>
	    <button>
	      Encontre seu imóvel
	    </button>
      <div style="margin: 20px 15px;">
        <a class="link-more link-more-blue" href="https://seuimovelnaflorida.com/en/servicos/">
          Conheça nossos serviços        </a>
      </div>
	  </div>
	</div>
      </div>
    </div>
  </section>
  
  <script>
    var animation = false;
    $(window).scroll(function() {
      var top = $(window).scrollTop();
      
      if (($('.buy').offset().top - $(window).height()) < top && !animation) {
        animation = true;
        
        $('.count').each(function (i) {
          var counter = new Array();
          counter[i] = $(this).text();
          
          $(this).prop('Counter', 0).animate({
            Counter: $(this).text()
          },
          {
            duration: 4000,
            easing: 'swing',
            step: function (now) {
              if (now == counter[i]) {
                $(this).text(now);
              }
              else if (Math.ceil(now) <= counter[i]) {
              $(this).text(Math.ceil(now));
              }
            }
          });
        });
      }
    });
  </script>  <section class="map">
    <div class="container-fluid">
      <div class="row">
      <div class="col-md-4" style="padding: 0 15px 0 0;">
        <h2>Parceiros</h2>
          
        <p>
          Insira as suas informações abaixo para que a nossa equipe entre em contato e disponha a você um leque de oportunidades.        </p>
            
        <div class="hidden-xs">
          <strong>Nome</strong>
          <br>
          <input name="name" placeholder="Digite seu nome completo">
        </div>
        
        <div class="hidden-xs">
          <strong>Email</strong>
          <br>
          <input name="email" placeholder="Digite seu email">
        </div>
        
        <div class="row visible-xs">
          <div class="col-xs-7">
            <button class="partners-mobile">
              Quero ser parceiro            </button>
          </div>
          <div class="col-xs-5 text-left">
            <div style="margin-left: -15px;">
              <a class="link-more link-more-blue" href="https://seuimovelnaflorida.com/en/parceiros/">
                 Todos os parceiros:              </a>
            </div>
          </div>
        </div>
          
        <div class="row hidden-xs">
          <div class="col-md-12">
            <strong>Telefone</strong>
          </div>
          <div class="col-md-12">
            <input type="tel" class="mobile-number-map" id="mobile-number" style="width: 100px;" readonly>
            <input class="change-phone-map" style="float: left; width: calc(100% - 145px); margin-left: 20px;">
            <input class="phone-map" type="hidden">
            
            <input name="phone" type="hidden">
            <div style="clear: both;"></div>

            <script>
              $("#mobile-number").intlTelInput();
            </script>
          </div>

          <div class="col-md-6 col-xs-7">
            <button class="send-email-map">
              Quero ser parceiro            </button>
          </div>
          
          <div class="col-md-6 hidden-xs">
            <div style="margin-top: 15px;margin-left: -15px;">
              <a class="link-more link-more-blue" href="https://seuimovelnaflorida.com/en/parceiros/">
                Todos os parceiros:              </a>
            </div>
          </div>
          <div class="col-xs-5 text-left visible-xs">
            <div style="margin-top: 15px;margin-left: -15px;">
              <a class="link-more link-more-blue" href="https://seuimovelnaflorida.com/en/parceiros/">
                Todos os parceiros:              </a>
            </div>
          </div>
        </div>
        
      </div>

	<div class="col-md-8 col-xs-12 map-mobile" style="position: relative;">
	  <div class="map-photo">
	    	    <div class="map-pin-description text-left" map="CAN" style="left: 100px; top: 150px;">
	      <div class="map-pin-close">
          <a>
            <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/map-close.svg">
          </a>
	      </div>
	      <div class="map-pin-frame">
          <p style="font-size: 10px; margin: 0;">
                        Restam <strong>2</strong> vagas na região
                      </p>
          <div class="progress-bar-inline">
            <div class="progress-bar-inline-item" style="width: 60%;"></div>
          </div>
          <hr>
          <a href="https://seuimovelnaflorida.com/en/parceiros/" style="font-size: 10px;">
            Quero ser parceiro            <i class="fa fa-arrow-right"></i>
          </a>
	      </div>
	    </div>
	    
	    <div class="map-pin" map="CAN" style="left: 100px; top: 150px;">
	      <div class="progress" data-percentage="60">
		<span class="progress-left">
		  <span class="progress-bar"></span>
		</span>
		<span class="progress-right">
		  <span class="progress-bar"></span>
		</span>
		<div class="progress-value">
		  <div>
		    <span>CAN</span>
		    <br>
		    3		  </div>
		</div>
	      </div>
	    </div>
	    	    <div class="map-pin-description text-left" map="USA" style="left: 90px; top: 220px;">
	      <div class="map-pin-close">
          <a>
            <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/map-close.svg">
          </a>
	      </div>
	      <div class="map-pin-frame">
          <p style="font-size: 10px; margin: 0;">
                        Restam <strong>2</strong> vagas na região
                      </p>
          <div class="progress-bar-inline">
            <div class="progress-bar-inline-item" style="width: 90%;"></div>
          </div>
          <hr>
          <a href="https://seuimovelnaflorida.com/en/parceiros/" style="font-size: 10px;">
            Quero ser parceiro            <i class="fa fa-arrow-right"></i>
          </a>
	      </div>
	    </div>
	    
	    <div class="map-pin" map="USA" style="left: 90px; top: 220px;">
	      <div class="progress" data-percentage="90">
		<span class="progress-left">
		  <span class="progress-bar"></span>
		</span>
		<span class="progress-right">
		  <span class="progress-bar"></span>
		</span>
		<div class="progress-value">
		  <div>
		    <span>USA</span>
		    <br>
		    28		  </div>
		</div>
	      </div>
	    </div>
	    	    <div class="map-pin-description text-left" map="MEX" style="left: 90px; top: 300px;">
	      <div class="map-pin-close">
          <a>
            <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/map-close.svg">
          </a>
	      </div>
	      <div class="map-pin-frame">
          <p style="font-size: 10px; margin: 0;">
                        Restam <strong>4</strong> vagas na região
                      </p>
          <div class="progress-bar-inline">
            <div class="progress-bar-inline-item" style="width: 30%;"></div>
          </div>
          <hr>
          <a href="https://seuimovelnaflorida.com/en/parceiros/" style="font-size: 10px;">
            Quero ser parceiro            <i class="fa fa-arrow-right"></i>
          </a>
	      </div>
	    </div>
	    
	    <div class="map-pin" map="MEX" style="left: 90px; top: 300px;">
	      <div class="progress" data-percentage="30">
		<span class="progress-left">
		  <span class="progress-bar"></span>
		</span>
		<span class="progress-right">
		  <span class="progress-bar"></span>
		</span>
		<div class="progress-value">
		  <div>
		    <span>MEX</span>
		    <br>
		    2		  </div>
		</div>
	      </div>
	    </div>
	    	    <div class="map-pin-description text-left" map="COL" style="left: 170px; top: 360px;">
	      <div class="map-pin-close">
          <a>
            <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/map-close.svg">
          </a>
	      </div>
	      <div class="map-pin-frame">
          <p style="font-size: 10px; margin: 0;">
                        Restam <strong>4</strong> vagas na região
                      </p>
          <div class="progress-bar-inline">
            <div class="progress-bar-inline-item" style="width: 30%;"></div>
          </div>
          <hr>
          <a href="https://seuimovelnaflorida.com/en/parceiros/" style="font-size: 10px;">
            Quero ser parceiro            <i class="fa fa-arrow-right"></i>
          </a>
	      </div>
	    </div>
	    
	    <div class="map-pin" map="COL" style="left: 170px; top: 360px;">
	      <div class="progress" data-percentage="30">
		<span class="progress-left">
		  <span class="progress-bar"></span>
		</span>
		<span class="progress-right">
		  <span class="progress-bar"></span>
		</span>
		<div class="progress-value">
		  <div>
		    <span>COL</span>
		    <br>
		    2		  </div>
		</div>
	      </div>
	    </div>
	    	    <div class="map-pin-description text-left" map="BRA" style="left: 280px; top: 380px;">
	      <div class="map-pin-close">
          <a>
            <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/map-close.svg">
          </a>
	      </div>
	      <div class="map-pin-frame">
          <p style="font-size: 10px; margin: 0;">
                        Restam <strong>2</strong> vagas na região
                      </p>
          <div class="progress-bar-inline">
            <div class="progress-bar-inline-item" style="width: 90%;"></div>
          </div>
          <hr>
          <a href="https://seuimovelnaflorida.com/en/parceiros/" style="font-size: 10px;">
            Quero ser parceiro            <i class="fa fa-arrow-right"></i>
          </a>
	      </div>
	    </div>
	    
	    <div class="map-pin" map="BRA" style="left: 280px; top: 380px;">
	      <div class="progress" data-percentage="90">
		<span class="progress-left">
		  <span class="progress-bar"></span>
		</span>
		<span class="progress-right">
		  <span class="progress-bar"></span>
		</span>
		<div class="progress-value">
		  <div>
		    <span>BRA</span>
		    <br>
		    88		  </div>
		</div>
	      </div>
	    </div>
	    	    <div class="map-pin-description text-left" map="URU" style="left: 260px; top: 460px;">
	      <div class="map-pin-close">
          <a>
            <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/map-close.svg">
          </a>
	      </div>
	      <div class="map-pin-frame">
          <p style="font-size: 10px; margin: 0;">
                        Restam <strong>4</strong> vagas na região
                      </p>
          <div class="progress-bar-inline">
            <div class="progress-bar-inline-item" style="width: 30%;"></div>
          </div>
          <hr>
          <a href="https://seuimovelnaflorida.com/en/parceiros/" style="font-size: 10px;">
            Quero ser parceiro            <i class="fa fa-arrow-right"></i>
          </a>
	      </div>
	    </div>
	    
	    <div class="map-pin" map="URU" style="left: 260px; top: 460px;">
	      <div class="progress" data-percentage="30">
		<span class="progress-left">
		  <span class="progress-bar"></span>
		</span>
		<span class="progress-right">
		  <span class="progress-bar"></span>
		</span>
		<div class="progress-value">
		  <div>
		    <span>URU</span>
		    <br>
		    2		  </div>
		</div>
	      </div>
	    </div>
	    	    <div class="map-pin-description text-left" map="ARG" style="left: 200px; top: 510px;">
	      <div class="map-pin-close">
          <a>
            <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/map-close.svg">
          </a>
	      </div>
	      <div class="map-pin-frame">
          <p style="font-size: 10px; margin: 0;">
                        Restam <strong>1</strong> vagas na região
                      </p>
          <div class="progress-bar-inline">
            <div class="progress-bar-inline-item" style="width: 80%;"></div>
          </div>
          <hr>
          <a href="https://seuimovelnaflorida.com/en/parceiros/" style="font-size: 10px;">
            Quero ser parceiro            <i class="fa fa-arrow-right"></i>
          </a>
	      </div>
	    </div>
	    
	    <div class="map-pin" map="ARG" style="left: 200px; top: 510px;">
	      <div class="progress" data-percentage="80">
		<span class="progress-left">
		  <span class="progress-bar"></span>
		</span>
		<span class="progress-right">
		  <span class="progress-bar"></span>
		</span>
		<div class="progress-value">
		  <div>
		    <span>ARG</span>
		    <br>
		    4		  </div>
		</div>
	      </div>
	    </div>
	    	    <div class="map-pin-description text-left" map="POR" style="left: 370px; top: 220px;">
	      <div class="map-pin-close">
          <a>
            <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/map-close.svg">
          </a>
	      </div>
	      <div class="map-pin-frame">
          <p style="font-size: 10px; margin: 0;">
                        Restam <strong>4</strong> vagas na região
                      </p>
          <div class="progress-bar-inline">
            <div class="progress-bar-inline-item" style="width: 30%;"></div>
          </div>
          <hr>
          <a href="https://seuimovelnaflorida.com/en/parceiros/" style="font-size: 10px;">
            Quero ser parceiro            <i class="fa fa-arrow-right"></i>
          </a>
	      </div>
	    </div>
	    
	    <div class="map-pin" map="POR" style="left: 370px; top: 220px;">
	      <div class="progress" data-percentage="30">
		<span class="progress-left">
		  <span class="progress-bar"></span>
		</span>
		<span class="progress-right">
		  <span class="progress-bar"></span>
		</span>
		<div class="progress-value">
		  <div>
		    <span>POR</span>
		    <br>
		    2		  </div>
		</div>
	      </div>
	    </div>
	    	    <div class="map-pin-description text-left" map="ESP" style="left: 410px; top: 190px;">
	      <div class="map-pin-close">
          <a>
            <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/map-close.svg">
          </a>
	      </div>
	      <div class="map-pin-frame">
          <p style="font-size: 10px; margin: 0;">
                        Restam <strong>3</strong> vagas na região
                      </p>
          <div class="progress-bar-inline">
            <div class="progress-bar-inline-item" style="width: 20%;"></div>
          </div>
          <hr>
          <a href="https://seuimovelnaflorida.com/en/parceiros/" style="font-size: 10px;">
            Quero ser parceiro            <i class="fa fa-arrow-right"></i>
          </a>
	      </div>
	    </div>
	    
	    <div class="map-pin" map="ESP" style="left: 410px; top: 190px;">
	      <div class="progress" data-percentage="20">
		<span class="progress-left">
		  <span class="progress-bar"></span>
		</span>
		<span class="progress-right">
		  <span class="progress-bar"></span>
		</span>
		<div class="progress-value">
		  <div>
		    <span>ESP</span>
		    <br>
		    1		  </div>
		</div>
	      </div>
	    </div>
	    	    <div class="map-pin-description text-left" map="IND" style="left: 700px; top: 300px;">
	      <div class="map-pin-close">
          <a>
            <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/map-close.svg">
          </a>
	      </div>
	      <div class="map-pin-frame">
          <p style="font-size: 10px; margin: 0;">
                        Restam <strong>3</strong> vagas na região
                      </p>
          <div class="progress-bar-inline">
            <div class="progress-bar-inline-item" style="width: 20%;"></div>
          </div>
          <hr>
          <a href="https://seuimovelnaflorida.com/en/parceiros/" style="font-size: 10px;">
            Quero ser parceiro            <i class="fa fa-arrow-right"></i>
          </a>
	      </div>
	    </div>
	    
	    <div class="map-pin" map="IND" style="left: 700px; top: 300px;">
	      <div class="progress" data-percentage="20">
		<span class="progress-left">
		  <span class="progress-bar"></span>
		</span>
		<span class="progress-right">
		  <span class="progress-bar"></span>
		</span>
		<div class="progress-value">
		  <div>
		    <span>IND</span>
		    <br>
		    1		  </div>
		</div>
	      </div>
	    </div>
	    	    <div class="map-pin-description text-left" map="RUS" style="left: 700px; top: 100px;">
	      <div class="map-pin-close">
          <a>
            <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/map-close.svg">
          </a>
	      </div>
	      <div class="map-pin-frame">
          <p style="font-size: 10px; margin: 0;">
                        Restam <strong>2</strong> vagas na região
                      </p>
          <div class="progress-bar-inline">
            <div class="progress-bar-inline-item" style="width: 30%;"></div>
          </div>
          <hr>
          <a href="https://seuimovelnaflorida.com/en/parceiros/" style="font-size: 10px;">
            Quero ser parceiro            <i class="fa fa-arrow-right"></i>
          </a>
	      </div>
	    </div>
	    
	    <div class="map-pin" map="RUS" style="left: 700px; top: 100px;">
	      <div class="progress" data-percentage="30">
		<span class="progress-left">
		  <span class="progress-bar"></span>
		</span>
		<span class="progress-right">
		  <span class="progress-bar"></span>
		</span>
		<div class="progress-value">
		  <div>
		    <span>RUS</span>
		    <br>
		    1		  </div>
		</div>
	      </div>
	    </div>
	    	    <div class="map-pin-description text-left" map=" NZL" style="left: 940px; top: 510px;">
	      <div class="map-pin-close">
          <a>
            <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/map-close.svg">
          </a>
	      </div>
	      <div class="map-pin-frame">
          <p style="font-size: 10px; margin: 0;">
                        Restam <strong>3</strong> vagas na região
                      </p>
          <div class="progress-bar-inline">
            <div class="progress-bar-inline-item" style="width: 40%;"></div>
          </div>
          <hr>
          <a href="https://seuimovelnaflorida.com/en/parceiros/" style="font-size: 10px;">
            Quero ser parceiro            <i class="fa fa-arrow-right"></i>
          </a>
	      </div>
	    </div>
	    
	    <div class="map-pin" map=" NZL" style="left: 940px; top: 510px;">
	      <div class="progress" data-percentage="40">
		<span class="progress-left">
		  <span class="progress-bar"></span>
		</span>
		<span class="progress-right">
		  <span class="progress-bar"></span>
		</span>
		<div class="progress-value">
		  <div>
		    <span> NZL</span>
		    <br>
		    2		  </div>
		</div>
	      </div>
	    </div>
	    	  </div>
	</div>
      </div>
    </div>
  </section>
  
  <section class="modal-partners-mobile modal-mobile">
    <div class="menu-mobile-close">
      <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/mobile-modal-close.svg">
    </div>
    <div class="map" style="margin: 70px 5px 0 10px;">
      <div>
        <strong>Nome</strong>
        <br>
        <input name="name-mobile" placeholder="Digite seu nome completo">
      </div>
        
      <div>
        <strong>Email</strong>
        <br>
        <input name="email-mobile" placeholder="Digite seu email">
      </div>
          
      <div>
        <div>
          <strong>Telefone</strong>
        </div>
        <div>
          <input type="tel" id="mobile-number-partner" style="width: 100px;" readonly>
          <input class="phone-item" style="float: left; width: calc(100% - 150px);">
          
          <input name="phone-mobile" type="hidden">
          <div style="clear: both;"></div>

          <script>
            $("#mobile-number-partner").intlTelInput();
          </script>
        </div>

        <div>
          <button class="send-email-mobile">
            Quero ser parceiro          </button>
        </div>
      </div>
    </div>
  </section>
  
<script>
 $('.change-phone-map').on('keyup', function() {
     $('.phone-map').val($('.mobile-number-map').val() + ' ' + $(this).val());
   });
   
  $('.partners-mobile').click(function() {
    $('.modal-partners-mobile').show();
  });
  
  $('.modal-partners-mobile .menu-mobile-close').click(function() {
    $('.modal-partners-mobile').hide();
  });
  
  $('.map-pin-close a').click(function() {
    $('.map-pin-description').hide();
  });
  
  $('.map-pin').click(function() {
    var map = $(this).attr('map');
    $('.map-pin-description').hide();
    $('.map-pin-description[map=' + map + ']').show();
  });
  
  $('.send-email-mobile').click(function() {
    var nome = $.trim($('input[name=name-mobile]').val());
    var email = $.trim($('input[name=email-mobile]').val());
    var telefone = $.trim($('#mobile-number-partner').val() + ' ' + $('.phone-item').val());
   
        if (nome == '') {
      alert('Favor preencher o nome');
      return false;
    } 
    
    if (email == '') {
      alert('Favor preencher o email');
      return false;
    } 
    
    if ($('.phone-item').val() == '') {
      alert('Favor preencher o telefone');
      return false;
    }
        
    var parameters = 'name=' + nome + '&email=' + email + '&phone=' + telefone + '&form_type=full&sys_email=' + '';
    $('.iframe-email-map').attr('src', 'https://seuimovelnaflorida.com/wp-content/themes/golden-key/views/sendmail.php' + '?' + parameters);

      });
     
 $('.send-email-map').click(function() {
    var nome = $.trim($('.map input[name=name]').val());
    var email = $.trim($('.map input[name=email]').val());
    var telefone = $.trim($('.mobile-number-map').val() + ' ' + $('.change-phone-map').val());
   
        if (nome == '') {
      alert('Favor preencher o nome');
      return false;
    } 
    
    if (email == '') {
      alert('Favor preencher o email');
      return false;
    } 
    
    if ($('.change-phone-map').val() == '') {
      alert('Favor preencher o telefone');
      return false;
    }
        
    var parameters = 'name=' + nome + '&email=' + email + '&phone=' + telefone + '&form_type=full&sys_email=' + '';
    $('.iframe-email-map').attr('src', 'https://seuimovelnaflorida.com/wp-content/themes/golden-key/views/sendmail.php' + '?' + parameters);

      });
</script>

<div style="height: 0; overflow: hidden;">
  <iframe class="iframe-email-map"></iframe>
</div>  <footer>
    <div class="container-fluid container-footer">
      <div class="col-md-7 copyright hidden-xs">
        <div style="height: 25px;"></div>
          © 2026 Golden Key Real Estate - Todos os direitos reservados.      </div>
      <div class="col-xs-6 copyright visible-xs">
        © 2026 Golden Key Real Estate 
      </div>
      
      <div class="col-xs-6 col-md-5 copyright-right">
        <div class="row">
			
          <div class="col-md-4 text-left hidden-xs">
            <div>
              USA
            </div>
            <div>
              <img class="footer-phone" src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/footer-phone.png"> P: 407.801.8283 
            </div>
            <div style="height: 5px;"></div>
            <div>
              <img class="footer-phone" src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/footer-phone.png"> C: 407.575.7332
            </div>
          </div>
  
          <div class="col-md-4 text-left hidden-xs">
            <div>
              BRA
            </div>
            <div>
              <img class="footer-phone" src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/footer-phone.png"> SP: +55 (11) 3181-7389
            </div>
            <div style="height: 5px;"></div>
            <div>
              <img class="footer-phone" src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/footer-phone.png"> +1 (407) 406-9190
            </div>
          </div>
          
          <div class="col-md-4 text-right">
            <div style="height: 25px;" class="hidden-xs"></div>
            <a href="https://www.instagram.com/goldenkeyrealsolutions" target="_blank">
              <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/instagram.png" style="max-height: 25px; max-width: 25px;">
            </a>
            <a href="https://www.youtube.com/channel/UCb7hfi4a-hHyNqjdVYjWY6A/videos" target="_blank">
              <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/footer-youtube.svg">
            </a>
            <a href="https://www.facebook.com/gleysonpersio/" target="_blank">
              <img src="https://seuimovelnaflorida.com/wp-content/themes/golden-key/img/footer-facebook.svg">
            </a>
          </div>
        </div>
      </div>
    </div>
  </footer>{"id":3975,"date":"2021-05-19T12:05:50","date_gmt":"2021-05-19T12:05:50","guid":{"rendered":"https:\/\/seuimovelnaflorida.com\/imoveis"},"modified":"2021-05-19T12:05:50","modified_gmt":"2021-05-19T12:05:50","slug":"imoveis","status":"publish","type":"page","link":"https:\/\/seuimovelnaflorida.com\/en\/imoveis\/","title":{"rendered":"Im\u00f3veis"},"content":{"rendered":"\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-3975","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Im\u00f3veis - Im\u00f3veis em Orlando, Miami, Florida - Casas e apartamentos - Gleyson Persio Silva<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/seuimovelnaflorida.com\/imoveis\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Im\u00f3veis - Im\u00f3veis em Orlando, Miami, Florida - Casas e apartamentos - Gleyson Persio Silva\" \/>\n<meta property=\"og:url\" content=\"https:\/\/seuimovelnaflorida.com\/imoveis\/\" \/>\n<meta property=\"og:site_name\" content=\"Im\u00f3veis em Orlando, Miami, Florida - Casas e apartamentos - Gleyson Persio Silva\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/seuimovelnaflorida.com\/imoveis\/\",\"url\":\"https:\/\/seuimovelnaflorida.com\/imoveis\/\",\"name\":\"Im\u00f3veis - Im\u00f3veis em Orlando, Miami, Florida - Casas e apartamentos - Gleyson Persio Silva\",\"isPartOf\":{\"@id\":\"\/#website\"},\"datePublished\":\"2021-05-19T12:05:50+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/seuimovelnaflorida.com\/imoveis\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/seuimovelnaflorida.com\/imoveis\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/seuimovelnaflorida.com\/imoveis\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/seuimovelnaflorida.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Im\u00f3veis\"}]},{\"@type\":\"WebSite\",\"@id\":\"\/#website\",\"url\":\"\/\",\"name\":\"Im\u00f3veis em Orlando, Miami, Florida - Casas e apartamentos - Gleyson Persio Silva\",\"description\":\"Realtor\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Im\u00f3veis - Im\u00f3veis em Orlando, Miami, Florida - Casas e apartamentos - Gleyson Persio Silva","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/seuimovelnaflorida.com\/imoveis\/","og_locale":"en_US","og_type":"article","og_title":"Im\u00f3veis - Im\u00f3veis em Orlando, Miami, Florida - Casas e apartamentos - Gleyson Persio Silva","og_url":"https:\/\/seuimovelnaflorida.com\/imoveis\/","og_site_name":"Im\u00f3veis em Orlando, Miami, Florida - Casas e apartamentos - Gleyson Persio Silva","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/seuimovelnaflorida.com\/imoveis\/","url":"https:\/\/seuimovelnaflorida.com\/imoveis\/","name":"Im\u00f3veis - Im\u00f3veis em Orlando, Miami, Florida - Casas e apartamentos - Gleyson Persio Silva","isPartOf":{"@id":"\/#website"},"datePublished":"2021-05-19T12:05:50+00:00","breadcrumb":{"@id":"https:\/\/seuimovelnaflorida.com\/imoveis\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/seuimovelnaflorida.com\/imoveis\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/seuimovelnaflorida.com\/imoveis\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/seuimovelnaflorida.com\/"},{"@type":"ListItem","position":2,"name":"Im\u00f3veis"}]},{"@type":"WebSite","@id":"\/#website","url":"\/","name":"Im\u00f3veis em Orlando, Miami, Florida - Casas e apartamentos - Gleyson Persio Silva","description":"Realtor","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/seuimovelnaflorida.com\/en\/wp-json\/wp\/v2\/pages\/3975","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/seuimovelnaflorida.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/seuimovelnaflorida.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/seuimovelnaflorida.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/seuimovelnaflorida.com\/en\/wp-json\/wp\/v2\/comments?post=3975"}],"version-history":[{"count":0,"href":"https:\/\/seuimovelnaflorida.com\/en\/wp-json\/wp\/v2\/pages\/3975\/revisions"}],"wp:attachment":[{"href":"https:\/\/seuimovelnaflorida.com\/en\/wp-json\/wp\/v2\/media?parent=3975"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}