<!DOCTYPE html>
<html lang="es">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Condominio Maria Luisa Morris</title>
  <style>
    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background-image: '/images/render.png';
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      color: white;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(0, 0, 0, 0.8);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      backdrop-filter: blur(8px);
    }

    header img {
      max-width: 160px;
    }

    
    .referidos-btn {
      background-color: #007bff;
      color: white;
      padding: 0.6rem 1.2rem;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      cursor: pointer;
    }

    .referidos-btn:hover {
      background-color: #218838;
    }

    .hero {
      padding: 6rem 2rem;
      text-align: center;
      background: rgba(0, 0, 0, 0.6);
    }

    .hero h1 {
      font-size: 2.8rem;
      margin-bottom: 1rem;
    }

    .hero p {
      font-size: 1.3rem;
      margin-bottom: 2rem;
    }

    .buttons {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .vottons a {
      padding: 0.75rem 1.5rem;
      border: none;
      background-color: #007bff;  
      color: white;
      text-decoration: none;
      border-radius: 6px;
      font-size: 1rem;
      transition: background-color 0.3s ease;
    }

    .vottons a:hover {
      background-color: #0056b3;
    }

   .vottons {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .buttons a {
      padding: 0.75rem 1.5rem;
      border: none;
      background-color: #218838;  
      color: white;
      text-decoration: none;
      border-radius: 6px;
      font-size: 1rem;
      transition: background-color 0.3s ease;
    }

    .buttons a:hover {
      background-color: #0056b3;
    }

    .imagen-responsiva {
     width: 100%;
     height: auto;
 
     max-width: 100%;
     display: block;
    }


    footer {
      background: rgba(0, 0, 0, 0.7);
      padding: 1rem;
      text-align: center;
      font-size: 0.9rem;
    }
  </style>
</head>
<body>
  <header>
    <img src="/images/Logo.png" alt="Logo Morcabe" />
    <button class="referidos-btn" onclick="abrirPopupReferidos()">📋 Programa de Referidos</button>
  </header>

  <section class="hero">
    
     <h1>Condominio Maria Luisa Morris</h1>
     <br>
    
    <img src="/images/foto_cuerpo.png" alt="Condominio MLM"  class="imagen-responsiva">
        <h1>Construye tu futuro en Tacna</h1>
        <p>En la mejor zona céntrica y 100% residencial</p>
        <p><strong>Lotes desde 128 m²</strong>, con todos los servicios y <strong>financiamiento directo sin intereses</strong></p>
    <br>
    <br>
    <div class="buttons">
      <a href="https://wa.me/51906022808" target="_blank">📞. WhatsApp</a>
    </div>  
    <br>
    <br>

    <div class="vottons">  
        <a href="https://www.facebook.com/grupomorcabe" target="_blank">Sígenos en 📘 Facebook</a>
    </div>
  </section>

  <footer>
    © 2025 Morcabe Inmobiliaria y Constructora S.A.C. | Av. Manuel A.Odria No 972 Tacna,Perú <br> Teléfonos: +51 906 022 808,  mail: ventas@morcabe.com
    
  </footer>

  <script>
    function abrirPopupReferidos() {
      window.open(
        "https://www.morcabe.com/referidos",
        "Referidos",
        "width=500,height=900,resizable=yes,scrollbars=yes"
      );
    }
  </script>
</body>
</html>