 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
            background-color: #000000;
            color: #ffffff;
            line-height: 1.6;
        }
        
        .container {
            /* max-width: 1280px; */
            width: 100%;
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        @media (min-width: 640px) {

  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {

  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {

  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {

  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {

  .container {
    max-width: 1536px;
  }
}
.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
        /* Navigation */
        .nav {
            position: sticky;
            top: 0;
            z-index: 50;
            background-color: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }
        
        .nav-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }
        
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            cursor: pointer;
        }
        
        .nav-logo img {
            height: 48px;
            width: auto;
        }
        
        .nav-brand {
            color: #D4AF37;
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 1.25rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
        }
        
        .nav-menu {
            display: none;
            gap: 2rem;
        }
        
        @media (min-width: 1024px) {
            .nav-menu {
                display: flex;
            }
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }
        
        .nav-link:hover {
            color: #D4AF37;
        }
        
        .nav-actions {
            display: none;
            align-items: center;
            gap: 1rem;
        }
        
        @media (min-width: 1024px) {
            .nav-actions {
                display: flex;
            }
        }
        
        .btn {
            padding: 0.5rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 0.875rem;
        }
        
        .btn-primary {
            background-color: #D4AF37;
            color: #000000;
            box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
        }
        
        .btn-primary:hover {
            background-color: #E5C158;
            box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
        }
        
        .btn-outline {
            background-color: transparent;
            color: #D4AF37;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }
        
        .btn-outline:hover {
            background-color: rgba(212, 175, 55, 0.1);
            border-color: #D4AF37;
        }
        
        /* Hero Section */
        .hero {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        
        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }
        
        .hero-bg-image {
            position: absolute;
            inset: 0;
            opacity: 0.4;
            background-size: cover;
            background-position: center;
        }
        
        .hero-gradient-1 {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom right, #000000, transparent, #000000);
            opacity: 0.8;
        }
        
        .hero-gradient-2 {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top right, rgba(212, 175, 55, 0.2), transparent, rgba(212, 175, 55, 0.1));
            opacity: 0.6;
        }

                .hero-gradient-3 {
            position: absolute;
            inset: 0;
background: linear-gradient(180deg, rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 0%) 0%, rgb(0 0 0) 100%);

            opacity: 0.9;
        }
        
        .hero-orb-1 {
            position: absolute;
            top: 25%;
            left: 25%;
            width: 500px;
            height: 500px;
            background-color: rgba(0, 0, 0, 0.25);
            border-radius: 50%;
            filter: blur(100px);
            animation: pulse 2s ease-in-out infinite;
        }
        
        .hero-orb-2 {
            position: absolute;
            bottom: 25%;
            right: 25%;
            width: 400px;
            height: 400px;
            background-color: rgba(0, 0, 0, 0.2);
            border-radius: 50%;
            filter: blur(120px);
            animation: pulse 2s ease-in-out infinite;
            animation-delay: 1.5s;
        }
        
        @keyframes pulse {
            0%, 100% {
                opacity: 1;
                box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
            }
            50% {
                opacity: 0.8;
                box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
            }
        }
        
        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 64rem;
            margin: 0 auto;
        }
        
        .hero-title {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #E5C158, #D4AF37, #B8941F);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            padding-bottom: 14px;
            filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.3));
        }
        
        @media (min-width: 768px) {
            .hero-title {
                font-size: 4.5rem;
            }
        }
        
        .hero-tagline {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 48rem;
            margin: 0 auto 2rem;
            line-height: 2rem;
        }
        
        @media (min-width: 768px) {
            .hero-tagline {
                font-size: 1.5rem;
            }
        }
        
        .hero-cta {
            margin-top: 2rem;
        }
        
        .btn-lg {
            padding: 1rem 2rem;
            font-size: 1.125rem;
        }
        
        .property-types {
            margin-top: 3rem;
            display: inline-block;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            background-color: rgba(212, 175, 55, 0.05);
            border: 1px solid rgba(212, 175, 55, 0.2);
            backdrop-filter: blur(4px);
            transition: all 0.3s;
        }
        
        .property-types:hover {
            background-color: rgba(212, 175, 55, 0.1);
            border-color: rgba(212, 175, 55, 0.3);
        }
        
        .property-types p {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.8;
        }
        
        @media (min-width: 768px) {
            .property-types p {
                font-size: 1rem;
            }
        }
        
        /* Features Section */
        .section {
            padding: 6rem 0;
        }
        
        .section-gradient {
            background: linear-gradient(to bottom, #000000, rgba(212, 175, 55, 0.05), #000000);
        }
        
        .section-title {
            text-align: center;
            max-width: 48rem;
            margin: 0 auto 4rem;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1;
        }
        
        @media (min-width: 768px) {
            .section-title h2 {
                font-size: 3rem;
            }
        }
        
        .text-gold-gradient {
            background: linear-gradient(135deg, #E5C158, #D4AF37, #B8941F);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .section-title p {
            font-size: 1.125rem;
            color: rgba(255, 255, 255, 0.6);
        }
        
        .grid {
            display: grid;
            gap: 2rem;
        }
        
        .grid-cols-1 {
            grid-template-columns: repeat(1, minmax(0, 1fr));
        }
        
        @media (min-width: 768px) {
            .grid-cols-2 {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }
        
        @media (min-width: 1024px) {
            .grid-cols-4 {
                grid-template-columns: repeat(4, minmax(0, 1fr));
            }
        }
        
        .card {
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 1rem;
            padding: 2rem;
            transition: all 0.3s;
        }
        
        .card:hover {
            transform: translateY(-4px);
            border-color: rgba(212, 175, 55, 0.5);
            box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4);
        }
        
        .card-icon {
            width: 4rem;
            height: 4rem;
            border-radius: 0.75rem;
            background: linear-gradient(to bottom right, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(212, 175, 55, 0.2);
            transition: transform 0.3s;
        }
        
        .card:hover .card-icon {
            transform: scale(1.1);
        }
        
        .card-icon svg {
            width: 2rem;
            height: 2rem;
            color: #D4AF37;
        }
        
        .card-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }
        
        .card-description {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.8;
        }
        
        /* Values Section */
        .values-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
        }
        
        @media (min-width: 1024px) {
            .values-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }
        
        .values-image {
            position: relative;
            aspect-ratio: 3/2;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4);
            border: 1px solid rgba(212, 175, 55, 0.2);
        }
        
        .values-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .values-content {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        
        .value-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }
        
        .value-icon {
            flex-shrink: 0;
            width: 2rem;
            height: 2rem;
            border-radius: 50%;
            background-color: rgba(212, 175, 55, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(212, 175, 55, 0.2);
            transition: background-color 0.3s;
        }
        
        .value-item:hover .value-icon {
            background-color: rgba(212, 175, 55, 0.2);
        }
        
        .value-icon svg {
            width: 1.25rem;
            height: 1.25rem;
            color: #D4AF37;
        }
        
        .value-text h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }
        
        .value-text p {
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.8;
        }
        
        /* Footer */
        .footer {
            background-color: #000000;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
            padding: 4rem 0 2rem;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
            padding-top: 2rem;
        }
        
        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }
        
        @media (min-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(4, minmax(0, 1fr));
            }
        }
        
        .footer-section h3 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .footer-section p {
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.8;
        }
        
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        
        .footer-link {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-link:hover {
            color: #D4AF37;
        }
        
        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        
        .footer-contact a {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-contact a:hover {
            color: #D4AF37;
        }
        
        .footer-contact svg {
            width: 1.25rem;
            height: 1.25rem;
            flex-shrink: 0;
            margin-top: 0.125rem;
        }
        
        .footer-bottom {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            padding-top: 2rem;
            /* border-top: 1px solid rgba(212, 175, 55, 0.2); */
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.5);
        }
        
        @media (min-width: 768px) {
            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
            }
        }
        
        .footer-bottom a {
            color: #D4AF37;
            text-decoration: none;
            font-weight: 500;
        }
        
        .footer-bottom a:hover {
            color: #E5C158;
        }
        
        .social-links {
            display: flex;
            gap: 0.75rem;
        }
        
        .social-link {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 0.5rem;
            border: 1px solid rgba(212, 175, 55, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #D4AF37;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .social-link:hover {
            background-color: rgba(212, 175, 55, 0.1);
            border-color: #D4AF37;
        }
        
        /* Trust & Security Section */
        .trust-section {
            margin-bottom: 4rem;
        }
        
        .trust-section h2 {
            font-size: 2rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .trust-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        @media (min-width: 768px) {
            .trust-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }
        
        @media (min-width: 1024px) {
            .trust-grid {
                grid-template-columns: repeat(4, minmax(0, 1fr));
            }
        }
        
        .trust-card {
            background-color: #000000;
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 0.5rem;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s;
        }
        
        .trust-card:hover {
            border-color: rgba(212, 175, 55, 0.6);
            box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
        }
        
        .trust-card h3 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 1rem;
            transition: color 0.3s;
        }
        
        .trust-card:hover h3 {
            color: #D4AF37;
        }
        
        .trust-card p {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
        }
        
        /* Utility Classes */
        .text-center {
            text-align: center;
        }
        
        .mb-4 {
            margin-bottom: 1rem;
        }
        
        .mb-8 {
            margin-bottom: 2rem;
        }
        
        .mb-12 {
            margin-bottom: 3rem;
        }
        
        .mt-8 {
            margin-top: 2rem;
        }
        .text-brand-gold {
    color: #dca400;
}
.w-4 {
    width: 1rem;
}
.h-4 {
    height: 1rem;
}
.text-white a {
    color: rgb(255 255 255 / 0.6);
    text-decoration: none;
}
.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}
.items-center {
    align-items: center;
}
.flex {
    display: flex;
}
.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.nav-actions .inner,
.nav-actions .inner a {
    display: flex;
    align-items: center;
}

.nav-actions .inner {
    gap: 10px;
}
.nav-actions .inner a {
    gap: 5px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 80%;
}
.nv-wrap {
    gap: 10px;
}

.justify-between {
    justify-content: space-between;
}
.nav-toggle {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

.nv-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 73%;
}
.social-links a {
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 0.5rem;
    padding: 10px;
    line-height: 1;
}


.hidden {
    display: none;
}
.sk-loader {
    height: 0;
    visibility: hidden;
}
.sk-loader.hidden {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    visibility: visible;
}
.sk-loader.hidden {
    text-align: center;
}

.sk-loader.hidden span {
        background: linear-gradient(135deg, #E5C158, #D4AF37, #B8941F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}





@keyframes shimmer {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: -100% 0;
    }
}
.cookie-consent {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    font-family: inherit;
    bottom: 0px;
    position: fixed;
    display: block;
    font-size: 15px;
    margin: 0 auto;
    padding: 10px 10px;
    text-align: center;
    box-sizing: border-box;
    width: 100%;
    z-index: 9999;
    left: 0px;
    font-weight: 400;
    box-shadow: 0 -1px 10px 0 rgb(172 171 171 / 30%);
    letter-spacing: 1px;
}

.cookie-consent__agree {
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    margin-top: 5px;
    display: inline-block;
    padding: 9px 12px;
    text-decoration: none;
    position: relative;
    cursor: pointer;
    margin-left: 5px;
    text-decoration: none;
}

.cookie-consent__refuse {
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    margin-top: 5px;
    display: inline-block;
    padding: 9px 12px;
    text-decoration: none;
    position: relative;
    cursor: pointer;
    margin-left: 5px;
    text-decoration: none;
}
.whatsapp-icon {
    position: fixed;
    right: 30px;
    bottom: 90px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10000;
    opacity: 1;
    background: #fff;
    border: 2px solid var(--theme-color);
}

.whatsapp-icon a i {
    font-size: 25px;
}

.whatsapp-icon svg {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--theme-color);
    border-radius: 50%;
    background: var(--white-color);
    width: 100%;
    height: 100%;
    z-index: 0;
}

.whatsapp-icon a {
    position: relative;
    z-index: 1;
    font-size: 20px;
    color: #000;
    text-align: center;
    line-height: 50px;
    background: none;
}
@media (min-width: 768px) {
    .nv-close {
        display: none;
    }
}
@media (max-width: 767.98px) {
    .nav-toggle {
        display: block;
    }

    .nv-wrap {
        position: fixed;
        top: 0;
        right: -100%;
        width: 290px;
        height: 100vh;
background: #26200a;
        display: flex;
        flex-direction: column;
        padding: 80px 20px;
        transition: right 0.3s ease;
        z-index: 999;
        display: none;
    }

    .nv-wrap a {
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 18px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        text-align: center;
    }

    .nv-wrap.active {
        right: 0;
        display: block;
    }

    .nav-actions {
        display: none;
    }
.nv-wrap .nav-menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
}
    .nv-wrap .nav-actions {
                display: flex;
        flex-direction: column;
    }
    .nv-wrap .nav-actions > div {
        flex-direction: column;
        /* align-items: flex-start; */
    }
    .nv-wrap .nav-actions > div a {
        margin-left: 0;
    }
    .section {
    padding: 3rem 0;
}
/* .nv-wrap {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #26200a;
    transition: right 0.3s ease;
    z-index: 1000;
} */



.nv-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}
.values-grid .values-content {
    /* order: -1; */
}
.footer-bottom {
    padding-top: 0;
}

}
