/* Variáveis de Cores - Paleta Imobiliária de Luxo */
:root {
    --primary: #1a1a1a; /* Preto Grafite */
    --secondary: #c5a059; /* Dourado */
    --accent: #333333; /* Cinza Escuro */
    --text: #4a4a4a;
    --white: #ffffff;
    --light-gray: #f4f4f4;
    --transition: all 0.4s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Prata', serif;
    font-weight: 400;
    color: var(--primary);
}

.text-white { color: var(--white); }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section { padding: 100px 0; }
.bg-dark { background-color: var(--primary); }
.text-center { text-align: center; }
.mb-50 { margin-bottom: 50px; }

.subtitle {
    display: block;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.75rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 15px;
}

/* Botões */
.btn {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--white);
    padding: 18px 45px;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    border: 1px solid var(--secondary);
    cursor: pointer;
}

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

.btn-full { width: 100%; }

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    transition: var(--transition);
}

header.scrolled {
    background-color: rgba(26, 26, 26, 0.98);
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Prata', serif;
    font-size: 1.8rem;
    color: var(--white);
}

.logo span { color: var(--secondary); font-size: 0.9rem; display: block; letter-spacing: 5px; text-transform: uppercase; margin-top: -5px; }

.nav-links { display: flex; }
.nav-links li { margin-left: 40px; }
.nav-links a {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
}

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

/* Hero */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
}

.hero-content { width: 100%; }
.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 45px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* Grids */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Stats */
.stats {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.stat-item strong { display: block; font-size: 2.5rem; color: var(--secondary); font-family: 'Prata', serif; }

/* Property Cards */
.property-card {
    background: var(--accent);
    overflow: hidden;
    transition: var(--transition);
}

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

.property-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.property-info { padding: 25px; }
.property-info h3 { color: var(--white); margin-bottom: 5px; font-size: 1.4rem; }
.property-info p { color: #999; font-size: 0.9rem; margin-bottom: 15px; }
.price { color: var(--secondary); font-weight: 700; font-size: 1.1rem; }

/* Formulário */
.real-form input, 
.real-form select, 
.real-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    background: #fcfcfc;
    font-family: inherit;
    outline: none;
}

.real-form input:focus { border-color: var(--secondary); }

/* Footer */
footer {
    background: #000;
    color: #888;
    padding: 80px 0 30px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #222;
    padding-bottom: 40px;
    margin-bottom: 30px;
}

.footer-links a { margin-left: 30px; font-size: 0.8rem; letter-spacing: 1px; }

.copyright { font-size: 0.75rem; }

/* Mobile Menu Icon */
.mobile-menu-icon { display: none; cursor: pointer; }
.mobile-menu-icon div {
    width: 25px;
    height: 2px;
    background-color: var(--secondary);
    margin: 7px;
    transition: var(--transition);
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 2.8rem; }
    .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        width: 70%;
        background: var(--primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.5s ease;
    }

    .nav-links li { margin: 25px 0; }
    .mobile-menu-icon { display: block; }
    .nav-active { transform: translateX(0); }
    .footer-grid { flex-direction: column; text-align: center; }
    .footer-links { margin-top: 30px; }
}
