:root {
    --bg-black: #0A0A0A;
    --bg-card: #141414;
    --primary-yellow: #F5C400;
    --highlight-yellow: #FFD633;
    --text-white: #FFFFFF;
    --text-muted: #A3A3A3;
    --border-color: #262626;
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.3s ease;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    font-family: var(--font-main); 
    background-color: var(--bg-black); 
    color: var(--text-white); 
    line-height: 1.6; 
}

a { 
    text-decoration: none; 
    color: inherit; 
    transition: var(--transition); 
}

ul { 
    list-style: none; 
}

/* Layout */
.container { 
    max-width: 1240px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

.section-padding { 
    padding: 90px 0; 
}

.section-title-wrap { 
    text-align: center; 
    margin-bottom: 50px; 
}

.section-badge { 
    display: inline-block; 
    padding: 6px 16px; 
    background: rgba(245, 196, 0, 0.1); 
    border: 1px solid var(--primary-yellow); 
    color: var(--primary-yellow); 
    font-size: 13px; 
    font-weight: 600; 
    text-transform: uppercase; 
    border-radius: 50px; 
    margin-bottom: 15px; 
}

.section-title { 
    font-size: 36px; 
    font-weight: 800; 
    color: var(--text-white); 
    margin-bottom: 12px; 
}

.section-subtitle { 
    font-size: 16px; 
    color: var(--text-muted); 
    max-width: 600px; 
    margin: 0 auto; 
}

/* Botões */
.btn { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px; 
    padding: 14px 28px; 
    font-size: 15px; 
    font-weight: 700; 
    border-radius: 8px; 
    cursor: pointer; 
    transition: var(--transition); 
    border: none; 
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-primary { 
    background-color: var(--primary-yellow); 
    color: var(--bg-black); 
}

.btn-primary:hover { 
    background-color: var(--highlight-yellow); 
    transform: translateY(-2px); 
}

.btn-outline { 
    background-color: transparent; 
    color: var(--text-white); 
    border: 1px solid var(--border-color); 
}

.btn-outline:hover { 
    border-color: var(--primary-yellow); 
    color: var(--primary-yellow); 
}

/* Header */
.header { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    z-index: 1000; 
    transition: var(--transition); 
    background: rgba(10, 10, 10, 0.6); 
    backdrop-filter: blur(10px); 
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); 
}

.header.scrolled { 
    background: rgba(10, 10, 10, 0.95); 
    border-bottom: 1px solid var(--border-color); 
}

.header .container { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    height: 80px; 
}

.logo-name { 
    font-size: 20px; 
    font-weight: 800; 
    letter-spacing: 1.5px; 
    display: block;
}

.logo-subtitle { 
    font-size: 10px; 
    font-weight: 600; 
    letter-spacing: 3px; 
    color: var(--primary-yellow); 
    text-transform: uppercase; 
    display: block;
}

.nav-menu { 
    display: flex; 
    align-items: center; 
    gap: 30px; 
}

.nav-link { 
    font-size: 14px; 
    font-weight: 500; 
    color: var(--text-white); 
    opacity: 0.85; 
}

.nav-link:hover { 
    color: var(--primary-yellow); 
    opacity: 1; 
}

.menu-toggle {
    display: none;
}

/* Hero & Busca */
.hero { 
    position: relative; 
    min-height: 85vh; 
    display: flex; 
    align-items: center; 
    padding-top: 80px; 
    background: url('../images/hero.jpg') center/cover no-repeat; 
}

.hero-overlay { 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(180deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.95) 100%); 
}

.hero-content { 
    position: relative; 
    z-index: 2; 
    max-width: 750px; 
}

.hero-title { 
    font-size: 52px; 
    font-weight: 800; 
    line-height: 1.15; 
    margin-bottom: 20px; 
}

.hero-title span { 
    color: var(--primary-yellow); 
}

.hero-description { 
    font-size: 18px; 
    color: var(--text-muted); 
    margin-bottom: 35px; 
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.search-box { 
    background: var(--bg-card); 
    border: 1px solid var(--border-color); 
    border-radius: 12px; 
    padding: 25px; 
    margin-top: -50px; 
    position: relative; 
    z-index: 10; 
    display: grid; 
    grid-template-columns: 2fr 1.5fr 1.5fr 1fr; 
    gap: 15px; 
    align-items: flex-end; 
}

.form-group { 
    display: flex; 
    flex-direction: column; 
    gap: 8px; 
}

.form-group label { 
    font-size: 12px; 
    font-weight: 700; 
    text-transform: uppercase; 
    color: var(--text-muted); 
}

.form-control { 
    background: #0A0A0A; 
    border: 1px solid var(--border-color); 
    border-radius: 6px; 
    padding: 12px 14px; 
    color: var(--text-white); 
    font-size: 14px; 
    outline: none; 
}

.form-control:focus { 
    border-color: var(--primary-yellow); 
}

/* Imóveis (Cards e Grid) */
.properties-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); 
    gap: 30px; 
}

.property-card { 
    background: var(--bg-card); 
    border: 1px solid var(--border-color); 
    border-radius: 12px; 
    overflow: hidden; 
    transition: var(--transition); 
    display: flex; 
    flex-direction: column; 
}

.property-card:hover { 
    transform: translateY(-6px); 
    border-color: rgba(245, 196, 0, 0.4); 
}

.card-image-wrap { 
    position: relative; 
    height: 220px; 
    background: #1A1A1A; 
}

.card-image-wrap img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.card-badge-status { 
    position: absolute; 
    top: 15px; 
    left: 15px; 
    background: rgba(10, 10, 10, 0.85); 
    border: 1px solid var(--primary-yellow); 
    color: var(--primary-yellow); 
    font-size: 11px; 
    font-weight: 700; 
    padding: 4px 10px; 
    border-radius: 4px; 
}

.card-badge-type { 
    position: absolute; 
    top: 15px; 
    right: 15px; 
    background: rgba(255, 255, 255, 0.15); 
    backdrop-filter: blur(5px); 
    color: var(--text-white); 
    font-size: 11px; 
    font-weight: 600; 
    padding: 4px 10px; 
    border-radius: 4px; 
}

.card-body { 
    padding: 22px; 
    display: flex; 
    flex-direction: column; 
    flex-grow: 1; 
}

.card-price { 
    font-size: 22px; 
    font-weight: 800; 
    color: var(--primary-yellow); 
    margin-bottom: 8px; 
}

.card-title { 
    font-size: 18px; 
    font-weight: 700; 
    margin-bottom: 10px; 
    color: var(--text-white); 
    display: -webkit-box; 
    -webkit-line-clamp: 2; 
    line-clamp: 2; 
    -webkit-box-orient: vertical; 
    overflow: hidden; 
}

.card-location { 
    font-size: 13px; 
    color: var(--text-muted); 
    display: flex; 
    align-items: center; 
    gap: 6px; 
    margin-bottom: 18px; 
}

.card-features { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    padding: 12px 0; 
    border-top: 1px solid var(--border-color); 
    border-bottom: 1px solid var(--border-color); 
    margin-bottom: 20px; 
    font-size: 12px; 
    color: var(--text-muted); 
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-actions { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 10px; 
    margin-top: auto; 
}

/* Seção Vender */
.sell-banner {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 50px;
}

.sell-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

/* Seção Sobre - Foto 100% Inteira */
.about-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
    align-items: center;
}

.about-img-wrap {
    width: 100%;
    height: 550px; /* Altura ideal para o formato retrato da foto */
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: #000; /* Fundo escuro para caso sobre alguma margem */
}

.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Exibe a imagem completa sem cortar nada */
    object-position: center;
}

/* Footer & Floating */
.footer {
    background: #050505;
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-links h4 {
    color: var(--text-white);
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary-yellow);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
}

.whatsapp-float { 
    position: fixed; 
    bottom: 25px; 
    right: 25px; 
    width: 60px; 
    height: 60px; 
    background-color: #25D366; 
    color: #FFF; 
    border-radius: 50px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); 
    z-index: 999; 
}

.whatsapp-float:hover { 
    transform: scale(1.1); 
}