 :root{
      --fucsia:#ff2f92;
      --violeta:#7b2cff;
      --dorado:#f6c453;
      --plateado:#e8e8e8;
      --oscuro:#111111;
      --gris:#1d1d1d;
    }

    *{
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

    body{
      background:#0d0d0d;
      color:white;
      font-family:Arial, Helvetica, sans-serif;
      overflow-x:hidden;
    }

    a{
      text-decoration:none;
    }

    /* 🔥 NAVBAR */

    .navbar-custom{
      background:rgba(0,0,0,.85);
      backdrop-filter:blur(10px);
      border-bottom:1px solid rgba(255,255,255,.08);
      padding:15px 0;
    }

    .logo-brand{
      display:flex;
      align-items:center;
      gap:12px;
      font-size:1.2rem;
      font-weight:700;
      color:white;
    }

    .logo-brand img{
      width:45px;
      height:45px;
      object-fit:contain;
      border-radius:50%;
    }

    .btn-whatsapp{
      background:linear-gradient(45deg,var(--fucsia),var(--violeta));
      border:none;
      color:white;
      border-radius:50px;
      padding:12px 22px;
      font-weight:700;
      transition:.3s;
    }

    .btn-whatsapp:hover{
      transform:translateY(-2px);
      color:white;
    }

    /* 🔥 HERO */

    .hero{
      min-height:100vh;
      display:flex;
      align-items:center;
      position:relative;
      overflow:hidden;
      background:
      linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.85)),
      url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?q=80&w=1600&auto=format&fit=crop') center/cover;
    }

    .hero::before{
      content:'';
      position:absolute;
      width:700px;
      height:700px;
      background:radial-gradient(circle,var(--fucsia),transparent 70%);
      top:-250px;
      right:-250px;
      opacity:.25;
    }

    .hero::after{
      content:'';
      position:absolute;
      width:600px;
      height:600px;
      background:radial-gradient(circle,var(--violeta),transparent 70%);
      bottom:-250px;
      left:-250px;
      opacity:.2;
    }

    .hero-content{
      position:relative;
      z-index:5;
    }

    .badge-top{
      display:inline-block;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
      padding:10px 18px;
      border-radius:50px;
      margin-bottom:25px;
      color:var(--plateado);
      font-size:.9rem;
    }

    .hero h1{
      font-size:4.2rem;
      font-weight:900;
      line-height:1;
      margin-bottom:20px;
      text-transform:uppercase;
      color: whitesmoke;
    }

    .gradient-text{
      background:linear-gradient(45deg,var(--fucsia),var(--dorado));
      -webkit-background-clip:text;
      -webkit-text-fill-color:transparent;
    }

    .hero p{
      color:#ddd;
      max-width:700px;
      font-size:1.1rem;
      margin-bottom:30px;
    }

    .hero-buttons{
      display:flex;
      gap:15px;
      flex-wrap:wrap;
    }

    .btn-main{
      background:linear-gradient(45deg,var(--fucsia),var(--violeta));
      border:none;
      color:white;
      padding:14px 30px;
      border-radius:50px;
      font-weight:700;
    }

    .btn-outline-custom{
      border:1px solid rgba(255,255,255,.15);
      padding:14px 30px;
      border-radius:50px;
      color:white;
      background:rgba(255,255,255,.05);
    }

    /* 🔥 SERVICES */

    .section-space{
      padding:100px 0;
    }

    .title-section{
      text-align:center;
      margin-bottom:70px;
    }

    .title-section h2{
      font-size:3rem;
      font-weight:800;
      margin-bottom:15px;
    }

    .title-section p{
      color:#bdbdbd;
      max-width:700px;
      margin:auto;
    }

    .service-card{
      background:linear-gradient(180deg,#181818,#111);
      border:1px solid rgba(255,255,255,.08);
      border-radius:28px;
      padding:35px;
      transition:.3s;
      height:100%;
      overflow:hidden;
      position:relative;
    }

    .service-card::before{
      content:'';
      position:absolute;
      width:180px;
      height:180px;
      background:radial-gradient(circle,var(--fucsia),transparent 70%);
      top:-80px;
      right:-80px;
      opacity:.2;
    }

    .service-card:hover{
      transform:translateY(-10px);
      border-color:rgba(255,255,255,.2);
    }

    .service-icon{
      width:70px;
      height:70px;
      border-radius:22px;
      background:linear-gradient(45deg,var(--fucsia),var(--violeta));
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:1.7rem;
      margin-bottom:25px;
    }

    .service-card h4{
      font-weight:800;
      margin-bottom:15px;
      color: whitesmoke;
    }

    .service-card p{
      color:#bcbcbc;
      margin:0;
    }

    /* 🔥 PROPERTIES */

    .property-card{
      background:#151515;
      border-radius:28px;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.08);
      transition:.3s;
      height:100%;
    }

    .property-card:hover{
      transform:translateY(-8px);
    }

    .property-card img{
      width:100%;
      height:260px;
      object-fit:cover;
    }

    .property-body{
      padding:25px;
    }

    .price-tag{
      display:inline-block;
      background:linear-gradient(45deg,var(--fucsia),var(--violeta));
      padding:10px 18px;
      border-radius:50px;
      font-weight:700;
      margin-bottom:15px;
    }

    .property-body h5{
      font-weight:800;
      margin-bottom:10px;
    }

    .property-body p{
      color:#bcbcbc;
      margin-bottom:20px;
    }

    /* 🔥 CTA */

    .cta-section{
      background:linear-gradient(135deg,var(--violeta),var(--fucsia));
      border-radius:40px;
      padding:70px;
      text-align:center;
      position:relative;
      overflow:hidden;
    }

    .cta-section::before{
      content:'';
      position:absolute;
      width:500px;
      height:500px;
      background:radial-gradient(circle,rgba(255,255,255,.25),transparent 70%);
      top:-250px;
      right:-200px;
    }

    .cta-section h2{
      font-size:3rem;
      font-weight:900;
      position:relative;
      z-index:2;
    }

    .cta-section p{
      position:relative;
      z-index:2;
      max-width:700px;
      margin:20px auto 35px;
    }

    footer{
      padding:40px 0;
      text-align:center;
      color:#a5a5a5;
      border-top:1px solid rgba(255,255,255,.06);
    }

    @media(max-width:991px){

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

      .title-section h2{
        font-size:2.2rem;
      }

      .cta-section{
        padding:45px 25px;
      }

      .cta-section h2{
        font-size:2rem;
      }

    }
