Tu inversión, blindada en la moneda más fuerte del mundo.

CAPITALIZA EN SAN ANTONIO, TX

San Antonio es una de las ciudades de mayor crecimiento en Estados Unidos, impulsada por una economía diversificada, alta demanda de vivienda y la llegada constante de nuevos residentes y empresas. Invertir aquí significa acceso a rendimientos de hasta 20% anual y una plusvalía sólida y constante, en un mercado estable y respaldado por leyes claras. Una oportunidad real, en moneda fuerte, lista para capitalizarse antes de que el mercado la alcance.

SABER MÁS

Conoce los beneficios:


RENDIMIENTO

Tu rendimiento, comparado con el mercado

Plusvalía anual promedio

Mientras el mercado inmobiliario promedio crece 3-4% al año, con nosotros tu inversión puede rendir hasta 20% anual — casi 6 veces más rápido que la plusvalía tradicional.

window.addEventListener('load', function() { var ctx = document.getElementById('roiChart'); if (!ctx) return; new Chart(ctx, { type: 'bar', data: { labels: ['Con nosotros', 'Mercado promedio'], datasets: [{ data: [20, 3.5], backgroundColor: ['#C9A86A', '#5C5347'], borderRadius: 4, barThickness: 36 }] }, options: { indexAxis: 'y', responsive: true, maintainAspectRatio: false, plugins: { legend: { display: false }, tooltip: { callbacks: { label: (c) => c.parsed.x + '% anual' } } }, scales: { x: { ticks: { color: '#e8e2d4', callback: (v) => v + '%' }, grid: { color: 'rgba(255,255,255,0.08)' } }, y: { ticks: { color: '#e8e2d4', font: { size: 13 } }, grid: { display: false } } } } }); });


PLUSVALÍA

La plusvalía empieza antes de construir

Modelo Egret / Glossy — precio de preventa vs. precio de lista

Cada etapa de preventa es un escalón hacia el precio final. Entrar de contado hoy significa capturar hasta $135,000 USD de diferencia antes de que la casa esté terminada.

window.addEventListener('load', function() { var ctx = document.getElementById('priceLineChart'); if (!ctx) return; new Chart(ctx, { type: 'line', data: { labels: ['Preventa de contado', 'Preventa 6 pagos', 'Precio de lista'], datasets: [{ data: [335000, 345000, 470000], borderColor: '#C9A86A', backgroundColor: 'rgba(201,168,106,0.15)', fill: true, tension: 0.3, pointRadius: 6, pointBackgroundColor: '#C9A86A', pointBorderColor: '#1a1a1a', pointBorderWidth: 2, borderWidth: 3 }] }, options: { responsive: true, maintainAspectRatio: false, plugins: { legend: { display: false }, tooltip: { callbacks: { label: (c) => '$' + c.parsed.y.toLocaleString() + ' USD' } } }, scales: { y: { ticks: { color: '#e8e2d4', callback: (v) => '$' + (v/1000) + 'k' }, grid: { color: 'rgba(255,255,255,0.08)' } }, x: { ticks: { color: '#e8e2d4', font: { size: 12 } }, grid: { display: false } } } } }); });

Detalles del proyecto:


Más cerca de lo que imaginas

Rutas aéreas directas desde México a San Antonio

Desde Monterrey, tu propiedad está a poco más de una hora de distancia. Supervisar tu inversión es tan fácil como un viaje de fin de semana.

window.addEventListener('load', function() { var container = document.getElementById('flightMap'); var listContainer = document.getElementById('flightList'); if (!container) return; var width = 700, height = 420; var svg = d3.select(container).append('svg') .attr('viewBox', '0 0 ' + width + ' ' + height) .attr('width', '100%') .attr('height', '100%'); var projection = d3.geoMercator(); var path = d3.geoPath(projection); var sanAntonio = [-98.4936, 29.4241]; var cities = [ { name: 'Monterrey', coords: [-100.3161, 25.6866], time: '1h 7min' }, { name: 'Morelia', coords: [-101.1844, 19.7008], time: '1h 52min' }, { name: 'Guadalajara', coords: [-103.3496, 20.6597], time: '1h 59min' }, { name: 'Querétaro', coords: [-100.3899, 20.5888], time: '1h 50min' }, { name: 'León', coords: [-101.6860, 21.1250], time: '1h 50min' }, { name: 'Ciudad de México', coords: [-99.1332, 19.4326], time: '2h 8min' } ]; if (listContainer) { cities.forEach(function(city) { var item = document.createElement('div'); item.style.background = 'rgba(255,255,255,0.08)'; item.style.borderRadius = '8px'; item.style.padding = '12px 14px'; item.style.display = 'flex'; item.style.flexDirection = 'column'; item.style.gap = '4px'; var nameEl = document.createElement('div'); nameEl.style.fontSize = '13px'; nameEl.style.color = '#ffffff'; nameEl.style.fontWeight = '500'; nameEl.textContent = city.name; var timeEl = document.createElement('div'); timeEl.style.fontSize = '16px'; timeEl.style.color = '#E0B968'; timeEl.style.fontWeight = '700'; timeEl.textContent = city.time; item.appendChild(nameEl); item.appendChild(timeEl); listContainer.appendChild(item); }); } var boundsFeature = { type: 'Feature', geometry: { type: 'LineString', coordinates: [[-118, 14], [-86, 14], [-86, 33.5], [-118, 33.5], [-118, 14]] } }; d3.json('https://cdn.jsdelivr.net/npm/world-atlas@2/countries-110m.json').then(function(world) { projection.fitExtent([[20, 20], [width - 20, height - 30]], boundsFeature); var countries = topojson.feature(world, world.objects.countries).features; var mxUs = countries.filter(function(c) { return c.id === '484' || c.id === '840'; }); svg.selectAll('path.land') .data(mxUs).join('path') .attr('class', 'land') .attr('d', path) .attr('fill', 'rgba(255,255,255,0.06)') .attr('stroke', 'rgba(255,255,255,0.15)') .attr('stroke-width', 1); var saPoint = projection(sanAntonio); cities.forEach(function(city, idx) { var cityPoint = projection(city.coords); var midX = (saPoint[0] + cityPoint[0]) / 2; var midY = Math.min(saPoint[1], cityPoint[1]) - 30; var d = 'M' + cityPoint[0] + ',' + cityPoint[1] + ' Q' + midX + ',' + midY + ' ' + saPoint[0] + ',' + saPoint[1]; var routeLine = svg.append('path') .attr('d', d) .attr('fill', 'none') .attr('stroke', '#C9A86A') .attr('stroke-width', 1.2) .attr('stroke-dasharray', '4,3') .attr('opacity', 0.5); var plane = svg.append('text') .attr('font-size', 14) .attr('fill', '#C9A86A') .text('✈') .attr('text-anchor', 'middle'); var animPath = routeLine.node(); var len = animPath.getTotalLength(); var dur = 3000 + idx * 250; function animate() { var start = performance.now(); function step(now) { var elapsed = (now - start) % dur; var half = dur / 2; var t, dir; if (elapsed < half) { t = elapsed / half; dir = 1; } else { t = 1 - ((elapsed - half) / half); dir = -1; } var pt = animPath.getPointAtLength(t * len); var lookAhead = Math.max(0, Math.min(len, t * len + dir * 1)); var pt2 = animPath.getPointAtLength(lookAhead); var angle = Math.atan2(pt2.y - pt.y, pt2.x - pt.x) * 180 / Math.PI; plane.attr('x', pt.x).attr('y', pt.y).attr('transform', 'rotate(' + angle + ',' + pt.x + ',' + pt.y + ')'); requestAnimationFrame(step); } requestAnimationFrame(step); } setTimeout(animate, idx * 150); svg.append('circle') .attr('cx', cityPoint[0]).attr('cy', cityPoint[1]).attr('r', 4) .attr('fill', '#e8e2d4'); svg.append('text') .attr('x', cityPoint[0]).attr('y', cityPoint[1] - 10) .attr('text-anchor', 'middle').attr('font-size', 11).attr('font-weight', '600').attr('fill', '#ffffff') .style('paint-order', 'stroke') .attr('stroke', '#1a1a1a').attr('stroke-width', '3') .text(city.name); }); svg.append('circle') .attr('cx', saPoint[0]).attr('cy', saPoint[1]).attr('r', 6) .attr('fill', '#1a1a1a').attr('stroke', '#C9A86A').attr('stroke-width', 2); svg.append('text') .attr('x', saPoint[0]).attr('y', saPoint[1] - 14) .attr('text-anchor', 'middle').attr('font-size', 12).attr('font-weight', 'bold').attr('fill', '#fff') .style('paint-order', 'stroke') .attr('stroke', '#1a1a1a').attr('stroke-width', '3') .text('San Antonio'); }); });

El mercado sigue creciendo


Viviendas nuevas vendidas en San Antonio, 2024 vs 2023

+5%

18,500 viviendas vendidas

en 2024, más que en 2023

San Antonio no es una promesa: es un mercado que ya está creciendo, año tras año. Cada vivienda vendida es una señal de que la demanda no se detiene — y tú puedes capturar esa tendencia antes de que el precio la refleje.


Oportunidad de preventa en el desarrollo Heron Valley.


Inventario limitado, por etapas

78 casas totales en 3 etapas constructivas

78
casas totales
Etapa 1 — 40Etapa 2 — 21Etapa 3 — 17

La etapa 1 concentra más de la mitad del desarrollo. Entrar ahora significa tener acceso a la mejor selección de lotes antes de que avancen las siguientes etapas.

window.addEventListener('load', function() { var svg = document.getElementById('ringChart'); if (!svg) return; var r = 100, cx = 130, cy = 130; var circumference = 2 * Math.PI * r; var stages = [ { value: 40, color: '#C9A86A', name: 'Etapa 1' }, { value: 21, color: '#A88B52', name: 'Etapa 2' }, { value: 17, color: '#5C5347', name: 'Etapa 3' } ]; var total = 78; var offset = 0; stages.forEach(function(stage, idx) { var len = (stage.value / total) * circumference; var gap = circumference - len; var arc = document.createElementNS('http://www.w3.org/2000/svg', 'circle'); arc.setAttribute('cx', cx); arc.setAttribute('cy', cy); arc.setAttribute('r', r); arc.setAttribute('fill', 'none'); arc.setAttribute('stroke', stage.color); arc.setAttribute('stroke-width', '24'); arc.setAttribute('stroke-dasharray', len + ' ' + gap); arc.setAttribute('stroke-dashoffset', -offset); arc.setAttribute('transform', 'rotate(-90 ' + cx + ' ' + cy + ')'); arc.style.cursor = 'pointer'; arc.style.opacity = '0'; arc.style.transition = 'stroke-width 0.2s ease, opacity 0.6s ease ' + (idx * 0.2) + 's'; arc.addEventListener('mouseenter', function() { arc.setAttribute('stroke-width', '30'); document.getElementById('ringCenter').innerHTML = '
' + stage.value + '
' + '
' + stage.name + '
'; }); arc.addEventListener('mouseleave', function() { arc.setAttribute('stroke-width', '24'); document.getElementById('ringCenter').innerHTML = '
78
' + '
casas totales
'; }); svg.appendChild(arc); setTimeout(function() { arc.style.opacity = '1'; }, 50); offset += len; }); });


¡Invierte en el futuro!

Contáctanos para mayor información:

About

About

Ut euismod

Metus augue

Eget mauris pharetra ultrices neque. Porttitor leo a diam sollicitudin tempor. A consequat semper viverra nam libero. Proin fermentum leo vel orci porta pulvinar neque laoreet.

Cras eget

Ipsum luctus

Sem erat

Done

Imperdiet proin fermentum leo orci porta pulvinar neque purus amet consequat mauris nunc congue nisi vitae. Ultrices dui sapien eget mi proin sed viverra tellus ipsum faucibus vitae aliquet nec ullamcorper sit tristique senectus netus.