@import url('https://cdnjs.cloudflare.com/ajax/libs/remixicon/4.6.0/remixicon.min.css');


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

:root {
    --gold: #C9A961;
    --black: #000000;
    --white: #FFFFFF;
    --dark-gray: #1a1a1a;
    --light-gray: #f5f5f5;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Noto Serif", sans-serif !important;
    font-weight: 500;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0));
}

.header.active {
    background-color: var(--black) !important;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 40px;
    height: auto;
}

.branco {
    filter: brightness(0) invert(1);
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 400;
    font-family: "Noto Serif", sans-serif;
    color: var(--white);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-nav {
    background: var(--gold);
    color: var(--black);
    padding: 0.8rem 2rem;
    border: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.85rem;
}

.cta-nav:hover {
    background: var(--white);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-image: url('../img/bg-hero.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    gap: 4rem;
    align-items: center;
    position: relative;
    justify-content: center;
    z-index: 1;
}

.hero-text {
    padding-top: 5rem;
    text-align: center;
}

.hero-label {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 9px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    display: inline-block;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-title .gold {
    color: var(--gold);
    display: block;
}

.hero-description {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    padding: 1.2rem 3rem;
    border: none;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
}

.btn-primary:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1.2rem 3rem;
    border: 2px solid var(--white);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-logo-large {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(201, 169, 97, 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Stats Section */
.stats {
    background: var(--white);
    padding: 5rem 5%;
    border-top: 1px solid var(--gold);
}

.stats-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--black);
}

/* About Section */
.about {
    padding: 8rem 5%;
    background: var(--light-gray);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-content h2 {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-content .gold {
    color: var(--gold);
}

.about-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.about-image {
    position: relative;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--gold);
}

.about-image i {
    font-size: 6rem;
    color: var(--gold);
    opacity: 0.3;
    z-index: 1;
}

/* Services Section */
.services {
    padding: 8rem 5%;
    background: var(--black);
    color: var(--white);
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
}

.services-header h2 {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--dark-gray);
    padding: 3rem;
    border: 1px solid rgba(201, 169, 97, 0.2);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.service-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.service-link {
    color: var(--gold);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.service-card:hover .service-link {
    gap: 1rem;
}

/* Properties Section */
.properties {
    padding: 8rem 5%;
    background: var(--white);
}

.properties-header {
    text-align: center;
    margin-bottom: 5rem;
}

.properties-header h2 {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.properties-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.properties-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.property-card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: all 0.3s;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.property-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.property-image::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(201, 169, 97, 0.3);
}

.property-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--black);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.property-info {
    padding: 2rem;
    border-top: 3px solid var(--gold);
}

.property-price {
    font-size: 2rem;
    font-family: "Noto Serif", sans-serif;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.property-location {
    font-size: 1rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.property-features {
    display: flex;
    gap: 1.5rem;
    color: #555;
    font-size: 0.9rem;
}

.property-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 8rem 5%;
    background: var(--black);
    color: var(--white);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.contact-info h2 {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.contact-info .gold {
    color: var(--gold);
}

.contact-item {
    margin-bottom: 3rem;
}

.contact-item h3 {
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.contact-item p {
    font-size: 1.3rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(201, 169, 97, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.5rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-5px);
}

.contact-form {
    background: var(--dark-gray);
    padding: 3rem;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 0;
    color: var(--white);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-submit {
    width: 100%;
    background: var(--gold);
    color: var(--black);
    padding: 1.2rem;
    border: none;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-submit:hover {
    background: var(--white);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background: var(--black);
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    padding: 3rem 5%;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo img {
    width: 40px;
    height: auto;
}

.footer-text {
    font-weight: 500;
    font-family: "Noto Serif", sans-serif;
    color: var(--white);
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .hero-content,
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .services-grid,
    .properties-grid {
        grid-template-columns: 1fr;
    }
}


.nav-links {
   display: none;
}

.social-links a {
    text-decoration: none;
}

.btn-whats {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 68px;
    height: 68px;
    color: #c9a961;
    font-size: 32px;
    text-decoration: none;
    border-radius: 100%;
    background-color: #282213;
    transition: all 300ms ease .0s;
    -webkit-transition: all 300ms ease .0s;
    -ms-transition: all 300ms ease .0s;
    -o-transition: all 300ms ease .0s;
}

.btn-whats:hover {
    color: #000000;
    background-color: #c9a961;
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
}

.footer-content a {
    color: #c9a961;
    transition: all 300ms ease .0s;
    -webkit-transition: all 300ms ease .0s;
    -ms-transition: all 300ms ease .0s;
    -o-transition: all 300ms ease .0s;
}
.footer-content a:hover {
    text-decoration: none;
}

.about-content a {
    color: #000000;
    transition: all 300ms ease .0s;
    -webkit-transition: all 300ms ease .0s;
    -ms-transition: all 300ms ease .0s;
    -o-transition: all 300ms ease .0s;    
}

.about-content a:hover {
    text-decoration: none;
}


@media (max-width: 575px) {

    .hero-buttons {
        flex-direction: column;
    }

    .about-content {
        text-align: center;
    }

    .about-image img {
        max-width: 300px;
        height: auto;
    }

    .service-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .contact {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 15px;
        font-size: 14px;
    }
}