Casa Flor de Luna Villas Universidad – Paradise Vallarta Realty
+52 33 1992 0567 🇪🇸 Español 🇺🇸 English
‹ ›
[tcb-script charset=”utf-8″ type=”text/javascript” src=”//js.hsforms.net/forms/embed/v2.js”][/tcb-script] [tcb-script] hbspt.forms.create({ portalId: “44113795”, formId: “dcea99bf-bd88-47b6-a9eb-0dc7fcf0494d”, region: “na1” }); [/tcb-script]
642 Fresnos 7, Villas Universidad, Puerto Vallarta, 36045
Estado: Activa
$3,900,000 MXN
Precio de Lista MXN: 3,900,000 Precio por M²: 1,784.48 Área Construida M²: 116 Área Construida SqFt: 1,248.16 Terreno M²: 96 Terreno SqFt: 1,032.96 Habitaciones: 3 Baños Completos: 3
Vista Principal: Calle Vista Secundaria: Patio Mascotas Permitidas: Sí Estacionamiento: Cochera Tipo de Construcción: Concreto / Tabique Pisos: Loseta Cerámica Aire Acondicionado: Mini Splits Tipo de Camino: Empedrado
Esta amplia propiedad de dos niveles es una excelente oportunidad tanto para inversión como para vivienda familiar. Con una ubicación estratégica a solo 400 metros de la UNIVA, se encuentra con cercanía a servicios, escuelas y centros comerciales, además de estar en una zona tranquila.
En la planta baja, se encuentra una espaciosa sala, una cocina integral equipada con estufa de gas, un baño completo y acceso directo a la cochera techada con espacio para dos vehículos. La cocina fue remodelada. En la planta alta, la propiedad dispone de tres recámaras bien iluminadas con excelente ventilación natural, dos baños completos y acceso a una amplia terraza ideal para reuniones familiares o como espacio de relajación.
Cuenta con carta compromiso de manifestación de metros cuadrados construidos excedentes. Le corresponde el 0.602% de indiviso. Esta propiedad se vende en pesos mexicanos.
Escritura 42,177 Notario 8 Francisco Jose Ruiz Higuera 20 Enero 2016, Puerto Vallarta Jalisco.
Desde Costco tomar Av México hacia el norte y continuar hasta el semáforo con esquina en Kisko y Smart Gass, al llegar girar a la derecha en dirección a C. Universidad del Valle de Atejamac hasta llegar a la glorieta de sendero de luna y tomar dirección a la izquierda.
Electricidad: CFE | Agua: Municipal | Alcantarillado: Municipal
642 Fresnos 7, Villas Universidad, Puerto Vallarta, 36045
Status: Active
$3,900,000 MXN
List Price MXN: 3,900,000 Price per M²: 1,784.48 Total Built M²: 116 Total Built SqFt: 1,248.16 Lot M²: 96 Lot SqFt: 1,032.96 Bedrooms: 3 Full Baths: 3
Primary View: Street Secondary View: Patio Pet Friendly: Yes Parking: Garage Construction Type: Concrete / Cinder Block Flooring Types: Ceramic Tile Air Conditioning: Mini Splits Road Type: Cobblestone
This spacious two-level property is an excellent opportunity for both investment and family living. With a strategic location just 400 meters from UNIVA, it is close to services, schools, and shopping centers, in addition to being in a quiet area.
On the ground floor, there is a spacious living room, a fully equipped kitchen with gas stove, a full bathroom, and direct access to the covered garage with space for two vehicles. The kitchen has been remodeled. On the upper floor, the property has three well-lit bedrooms with excellent natural ventilation, two full bathrooms, and access to a large terrace ideal for family gatherings or as a relaxation space.
It has a commitment letter stating the excess square meters built. Corresponds to 0.602% of undivided interest. This property is sold in Mexican pesos.
Deed 42,177 Notary 8 Francisco Jose Ruiz Higuera January 20, 2016, Puerto Vallarta Jalisco.
From Costco take Av Mexico north and continue until the traffic light with the corner at Kisko and Smart Gass, turn right to C. Universidad del Valle de Atejamac until you reach the sendero de luna roundabout and turn left.
Electricity: CFE | Water: City | Sewage: City
mar baltico 126
colonia joyas vallarta
jarretaderas, Bahia de Bandera
Office Phone: (811) 212-8168
Office Phone: +52(322) 113-3257
Mobile: +52(811) 212-8168
jorge@paradisevallartarealty.com
Tu socio confiable en bienes raíces en la Riviera Nayarit
+52 811 212 8168
jorge@paradisevallartarealty.com
Propiedades
Servicios
Acerca de Nosotros
© 2025 Paradise Vallarta Realty. Todos los derechos reservados.
×
[tcb-script charset=”utf-8″ type=”text/javascript” src=”//js.hsforms.net/forms/embed/v2.js”][/tcb-script] [tcb-script] hbspt.forms.create({ portalId: “44113795”, formId: “dcea99bf-bd88-47b6-a9eb-0dc7fcf0494d”, region: “na1” }); [/tcb-script] [tcb-script] // Language switcher functionality document.addEventListener(‘DOMContentLoaded’, function() { const langButtons = document.querySelectorAll(‘.lang-btn’); langButtons.forEach(button => { button.addEventListener(‘click’, function() { // Remove active class from all buttons langButtons.forEach(btn => btn.classList.remove(‘active’)); // Add active class to clicked button this.classList.add(‘active’); // Hide all language content document.querySelectorAll(‘.lang-content’).forEach(content => { content.classList.remove(‘active’); }); // Show selected language content const lang = this.getAttribute(‘data-lang’); document.getElementById(lang).classList.add(‘active’); }); }); // Carrusel functionality const carousel = document.querySelector(‘.carousel’); const carouselItems = document.querySelectorAll(‘.carousel-item’); const prevBtn = document.querySelector(‘.carousel-btn.prev’); const nextBtn = document.querySelector(‘.carousel-btn.next’); const indicatorsContainer = document.querySelector(‘.carousel-indicators’); const thumbnailContainer = document.querySelector(‘.thumbnail-container’); const lightboxModal = document.getElementById(‘lightboxModal’); const lightboxImage = document.getElementById(‘lightboxImage’); const lightboxClose = document.getElementById(‘lightboxClose’); let currentIndex = 0; const totalItems = carouselItems.length; // Create indicators and thumbnails carouselItems.forEach((item, index) => { // Create indicator const indicator = document.createElement(‘div’); indicator.classList.add(‘indicator’); if (index === 0) indicator.classList.add(‘active’); indicator.addEventListener(‘click’, () => goToSlide(index)); indicatorsContainer.appendChild(indicator); // Create thumbnail const thumbnail = document.createElement(‘img’); thumbnail.src = item.querySelector(‘img’).src; thumbnail.alt = `Miniatura ${index + 1}`; thumbnail.classList.add(‘thumbnail’); if (index === 0) thumbnail.classList.add(‘active’); thumbnail.addEventListener(‘click’, () => goToSlide(index)); thumbnailContainer.appendChild(thumbnail); }); // Function to go to specific slide function goToSlide(index) { currentIndex = index; updateCarousel(); } // Function to update carousel position function updateCarousel() { carousel.style.transform = `translateX(-${currentIndex * 100}%)`; // Update indicators document.querySelectorAll(‘.indicator’).forEach((indicator, index) => { indicator.classList.toggle(‘active’, index === currentIndex); }); // Update thumbnails document.querySelectorAll(‘.thumbnail’).forEach((thumbnail, index) => { thumbnail.classList.toggle(‘active’, index === currentIndex); }); } // Previous button prevBtn.addEventListener(‘click’, () => { currentIndex = (currentIndex > 0) ? currentIndex – 1 : totalItems – 1; updateCarousel(); }); // Next button nextBtn.addEventListener(‘click’, () => { currentIndex = (currentIndex < totalItems – 1) ? currentIndex + 1 : 0; updateCarousel(); }); // Auto-play carousel (optional) let autoPlayInterval = setInterval(() => { currentIndex = (currentIndex < totalItems – 1) ? currentIndex + 1 : 0; updateCarousel(); }, 5000); // Pause auto-play on hover carousel.addEventListener(‘mouseenter’, () => { clearInterval(autoPlayInterval); }); carousel.addEventListener(‘mouseleave’, () => { autoPlayInterval = setInterval(() => { currentIndex = (currentIndex < totalItems – 1) ? currentIndex + 1 : 0; updateCarousel(); }, 5000); }); // Open lightbox when clicking on carousel images carouselItems.forEach((item, index) => { const img = item.querySelector(‘img’); img.addEventListener(‘click’, () => { lightboxImage.src = img.src; lightboxImage.alt = img.alt; lightboxModal.style.display = ‘block’; document.body.style.overflow = ‘hidden’; }); }); // Close lightbox lightboxClose.addEventListener(‘click’, () => { lightboxModal.style.display = ‘none’; document.body.style.overflow = ‘auto’; }); // Close lightbox when clicking outside the content lightboxModal.addEventListener(‘click’, (e) => { if (e.target === lightboxModal) { lightboxModal.style.display = ‘none’; document.body.style.overflow = ‘auto’; } }); // Close lightbox with Escape key document.addEventListener(‘keydown’, (e) => { if (e.key === ‘Escape’ && lightboxModal.style.display === ‘block’) { lightboxModal.style.display = ‘none’; document.body.style.overflow = ‘auto’; } }); }); [/tcb-script]