/* ============================================================
   ATLAS IMÓVEIS — DESIGN SYSTEM
============================================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg-primary: #0b0d0e;
    --bg-secondary: #131719;
    --bg-card: #1a1f22;
    --bg-card-hover: #222829;
    
    --gold: #c9a961;
    --gold-light: #e0c285;
    --gold-dark: #a8894c;
    
    --cream: #f5f1e8;
    --cream-soft: #ebe4d5;
    --text: #f5f1e8;
    --text-secondary: #b5b0a3;
    --text-muted: #7a756a;
    
    --border: rgba(245, 241, 232, 0.08);
    --border-hover: rgba(201, 169, 97, 0.35);
    
    --font-display: 'Fraunces', serif;
    --font-sans: 'Inter', sans-serif;
    
    --t: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: none; }

/* ============================================================
   PRELOADER
============================================================ */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hidden { opacity: 0; visibility: hidden; }

.preloader-logo {
    font-family: var(--font-display);
    font-size: 3.5rem;
    letter-spacing: 12px;
    color: var(--gold);
    font-weight: 300;
}

.preloader-sub {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 10px;
    color: var(--text-muted);
    margin-top: 8px;
    margin-bottom: 30px;
}

.preloader-bar {
    width: 200px;
    height: 1px;
    background: rgba(201, 169, 97, 0.15);
    margin: 0 auto;
    overflow: hidden;
}

.preloader-fill {
    width: 0;
    height: 100%;
    background: var(--gold);
    animation: preloadFill 1.5s ease-in-out forwards;
}

@keyframes preloadFill { to { width: 100%; } }

.preloader-content { text-align: center; }

/* ============================================================
   PROGRESS BAR
============================================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    z-index: 9999;
    transition: width 0.1s ease;
}

/* ============================================================
   CURSOR
============================================================ */
.cursor, .cursor-dot {
    position: fixed;
    pointer-events: none;
    border-radius: 50%;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease;
}

.cursor {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(201, 169, 97, 0.5);
    transition: width 0.3s, height 0.3s, background 0.3s;
}

.cursor.hover {
    width: 55px;
    height: 55px;
    background: rgba(201, 169, 97, 0.1);
    border-color: var(--gold);
}

.cursor-dot {
    width: 4px;
    height: 4px;
    background: var(--gold);
}

/* ============================================================
   HEADER
============================================================ */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 22px 0;
    transition: var(--t);
}

#header.scrolled {
    background: rgba(11, 13, 14, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 42px;
    height: 42px;
    background: var(--gold);
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    border-radius: 2px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 3px;
    color: var(--text);
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text small {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    letter-spacing: 6px;
    color: var(--gold);
    margin-top: 4px;
}

.nav {
    display: flex;
    gap: 36px;
}

.nav a {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-secondary);
    position: relative;
    transition: var(--t);
    letter-spacing: 0.5px;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--t);
}

.nav a:hover { color: var(--gold-light); }
.nav a:hover::after { width: 100%; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: var(--t);
}

.header-phone i { color: var(--gold); }
.header-phone:hover { color: var(--gold-light); }

.btn-header {
    padding: 11px 22px;
    background: var(--gold);
    color: var(--bg-primary);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: var(--t);
}

.btn-header:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
}

.menu-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--text);
    transition: var(--t);
}

/* ============================================================
   HERO
============================================================ */
#hero {
    position: relative;
    min-height: 100vh;
    padding: 180px 0 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 30s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(11, 13, 14, 0.95) 0%, rgba(11, 13, 14, 0.75) 60%, rgba(11, 13, 14, 0.9) 100%),
        radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.08), transparent 60%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-left { max-width: 780px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 20px;
    background: rgba(201, 169, 97, 0.08);
    border: 1px solid rgba(201, 169, 97, 0.25);
    border-radius: 100px;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    color: var(--gold-light);
    margin-bottom: 34px;
    text-transform: uppercase;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.6);
    animation: pulseGold 2s infinite;
}

@keyframes pulseGold {
    0% { box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.6); }
    70% { box-shadow: 0 0 0 12px rgba(201, 169, 97, 0); }
    100% { box-shadow: 0 0 0 0 rgba(201, 169, 97, 0); }
}

#hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.8rem);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 28px;
    color: var(--cream);
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin-bottom: 50px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(245, 241, 232, 0.08);
    max-width: 700px;
}

.hero-stat strong {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
    font-weight: 400;
}

.hero-stat span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* BUSCA */
.search-wrapper {
    position: relative;
    z-index: 3;
    margin-top: 70px;
}

.search-box {
    display: grid;
    grid-template-columns: 1.2fr 1px 1fr 1px 0.9fr 1px 1.1fr auto;
    gap: 0;
    align-items: center;
    background: rgba(26, 31, 34, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 169, 97, 0.15);
    border-radius: 4px;
    padding: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.search-field {
    padding: 10px 20px;
}

.search-field label {
    display: block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.search-field label i {
    color: var(--gold);
    margin-right: 5px;
    font-size: 0.7rem;
}

.search-field select {
    background: none;
    border: none;
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    width: 100%;
    cursor: none;
    outline: none;
}

.search-field select option {
    background: var(--bg-card);
    color: var(--text);
}

.search-divider {
    width: 1px;
    height: 40px;
    background: rgba(245, 241, 232, 0.08);
}

.search-btn {
    padding: 18px 36px;
    background: var(--gold);
    border: none;
    color: var(--bg-primary);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--t);
    border-radius: 2px;
    height: 100%;
}

.search-btn:hover {
    background: var(--gold-light);
    box-shadow: 0 0 30px rgba(201, 169, 97, 0.4);
}

.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(0.3); }
    50% { transform: scaleY(1); }
}

/* ============================================================
   TRUST BAR
============================================================ */
.section-trust {
    padding: 60px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 20px;
    border-right: 1px solid var(--border);
}

.trust-item:last-child { border-right: none; }

.trust-item i {
    font-size: 1.6rem;
    color: var(--gold);
    flex-shrink: 0;
}

.trust-item strong {
    display: block;
    color: var(--text);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.trust-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================================
   SEÇÕES GENÉRICAS
============================================================ */
section { position: relative; }

.section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 500;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: var(--cream);
}

.accent { color: var(--gold); font-style: italic; }

.section-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* ============================================================
   IMÓVEIS
============================================================ */
.section-properties { padding: 120px 0; }

.property-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 11px 26px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: var(--t);
}

.filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-primary);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.property-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--t);
    display: flex;
    flex-direction: column;
}

.property-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.property-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.property-card:hover .property-image img { transform: scale(1.08); }

.property-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: rgba(11, 13, 14, 0.9);
    backdrop-filter: blur(10px);
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 2px;
    border: 1px solid rgba(201, 169, 97, 0.3);
}

.property-badge.featured { background: var(--gold); color: var(--bg-primary); border-color: var(--gold); }
.property-badge.new { background: #22c55e; color: white; border-color: #22c55e; }
.property-badge.exclusive { background: rgba(201, 169, 97, 0.15); }

.property-type {
    position: absolute;
    top: 16px;
    right: 60px;
    padding: 6px 14px;
    background: rgba(11, 13, 14, 0.85);
    backdrop-filter: blur(10px);
    color: var(--cream);
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 2px;
}

.property-fav {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    background: rgba(11, 13, 14, 0.85);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--t);
    z-index: 2;
}

.property-fav:hover {
    background: var(--gold);
    color: var(--bg-primary);
}

.property-fav.active {
    background: #ef4444;
    color: white;
}

.property-gallery-count {
    position: absolute;
    bottom: 16px;
    right: 16px;
    padding: 5px 12px;
    background: rgba(11, 13, 14, 0.85);
    backdrop-filter: blur(10px);
    color: var(--cream);
    font-size: 0.72rem;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.property-content {
    padding: 26px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.property-location {
    font-size: 0.78rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.property-content h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--cream);
}

.property-description {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.property-features {
    display: flex;
    gap: 20px;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}

.property-features span {
    font-size: 0.82rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.property-features i { color: var(--gold); }

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    gap: 20px;
}

.property-price strong {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
    font-weight: 500;
}

.property-price span {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.property-cta {
    font-size: 0.78rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--t);
    white-space: nowrap;
}

.property-cta:hover { gap: 14px; color: var(--gold-light); }

.properties-more {
    text-align: center;
    margin-top: 60px;
}

.btn-outline-large {
    padding: 18px 40px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--t);
    border-radius: 2px;
}

.btn-outline-large:hover {
    background: var(--gold);
    color: var(--bg-primary);
    gap: 18px;
}

/* ============================================================
   SOBRE
============================================================ */
.section-about {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-image:hover img { transform: scale(1.04); }

.about-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--gold);
    color: var(--bg-primary);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 2px;
}

.badge-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 500;
    line-height: 1;
}

.badge-text strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.badge-text span {
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -1px;
    margin: 20px 0 28px;
    color: var(--cream);
}

.about-content .lead {
    font-size: 1.2rem;
    color: var(--cream-soft);
    margin-bottom: 24px;
    line-height: 1.6;
    font-weight: 300;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.75;
}

.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 40px 0;
}

.pillar {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: var(--t);
}

.pillar:hover {
    border-color: var(--border-hover);
    transform: translateX(6px);
}

.pillar-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pillar strong {
    display: block;
    color: var(--cream);
    font-size: 0.98rem;
    margin-bottom: 2px;
}

.pillar span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.btn-primary {
    padding: 16px 36px;
    background: var(--gold);
    color: var(--bg-primary);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--t);
    border: none;
    border-radius: 2px;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.3);
}

/* ============================================================
   REGIÕES
============================================================ */
.section-regions { padding: 120px 0; }

.regions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.region-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid var(--border);
}

.region-image {
    position: absolute;
    inset: 0;
}

.region-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.region-card:hover .region-image img { transform: scale(1.1); }

.region-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 13, 14, 0.95) 0%, rgba(11, 13, 14, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: var(--t);
}

.region-card:hover .region-overlay {
    background: linear-gradient(to top, rgba(11, 13, 14, 0.98) 0%, rgba(201, 169, 97, 0.15) 100%);
}

.region-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 6px;
}

.region-overlay p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.region-link {
    font-size: 0.78rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--t);
    opacity: 0;
}

.region-card:hover .region-link {
    opacity: 1;
    gap: 14px;
}

/* ============================================================
   CALCULADORA
============================================================ */
.section-calculator {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.calculator-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -1px;
    margin: 20px 0 24px;
    color: var(--cream);
}

.calculator-content > p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.calculator-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.calculator-benefits .benefit {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.calculator-benefits .benefit i {
    color: var(--gold);
    font-size: 1.1rem;
}

.calculator-box {
    background: var(--bg-card);
    border: 1px solid rgba(201, 169, 97, 0.15);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.calc-header {
    padding: 22px 30px;
    background: rgba(11, 13, 14, 0.5);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
}

.calc-header i {
    font-size: 1.3rem;
    color: var(--gold);
}

.calc-header h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--cream);
}

.calc-body {
    padding: 32px 30px;
}

.calc-field { margin-bottom: 22px; }

.calc-field label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.calc-input-wrap {
    display: flex;
    align-items: center;
    background: rgba(11, 13, 14, 0.6);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 12px 18px;
    transition: var(--t);
}

.calc-input-wrap:focus-within {
    border-color: var(--gold);
}

.calc-input-wrap span {
    color: var(--gold);
    font-size: 0.95rem;
    margin-right: 8px;
}

.calc-input-wrap input {
    background: none;
    border: none;
    color: var(--cream);
    font-family: var(--font-sans);
    font-size: 1rem;
    width: 100%;
    outline: none;
}

.calc-slider-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.calc-slider-wrap input[type="range"] {
    flex-grow: 1;
    -webkit-appearance: none;
    height: 3px;
    background: rgba(201, 169, 97, 0.2);
    border-radius: 3px;
    outline: none;
}

.calc-slider-wrap input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    cursor: none;
    border: 3px solid var(--bg-card);
    box-shadow: 0 0 0 1px var(--gold);
}

.calc-slider-wrap span {
    font-size: 0.85rem;
    color: var(--cream);
    white-space: nowrap;
    min-width: 100px;
    text-align: right;
}

.calc-result {
    padding: 24px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.08), rgba(201, 169, 97, 0.02));
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 4px;
    text-align: center;
    margin: 26px 0;
}

.result-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.result-value {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
    font-weight: 500;
}

.calc-result small {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.full-width {
    width: 100%;
    justify-content: center;
}

/* ============================================================
   EQUIPE
============================================================ */
.section-team { padding: 120px 0; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--t);
}

.team-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
}

.team-photo {
    height: 320px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    filter: grayscale(20%);
}

.team-card:hover .team-photo img {
    transform: scale(1.06);
    filter: grayscale(0%);
}

.team-info {
    padding: 24px;
    text-align: center;
}

.team-info h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 4px;
    color: var(--cream);
}

.team-creci {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.team-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.6;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.85rem;
    transition: var(--t);
}

.team-social a:hover {
    background: var(--gold);
    color: var(--bg-primary);
    transform: translateY(-3px);
}

/* ============================================================
   DEPOIMENTOS
============================================================ */
.section-testimonials {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    padding: 36px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: var(--t);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
}

.stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 28px;
    flex-grow: 1;
    font-style: italic;
    font-family: var(--font-display);
    font-weight: 300;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}

.testimonial-author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.testimonial-author strong {
    display: block;
    color: var(--cream);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ============================================================
   FORMULÁRIO DE LEAD
============================================================ */
.section-lead { padding: 120px 0; }

.lead-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.lead-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -1px;
    margin: 20px 0 20px;
    color: var(--cream);
}

.lead-content > p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.lead-content strong { color: var(--gold); }

.lead-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.lead-benefits .benefit {
    display: flex;
    align-items: center;
    gap: 18px;
}

.lead-benefits .benefit i {
    width: 48px;
    height: 48px;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.lead-benefits .benefit strong {
    display: block;
    color: var(--cream);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.lead-benefits .benefit span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.lead-whats {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.25);
    border-radius: 4px;
    transition: var(--t);
}

.lead-whats:hover {
    background: rgba(37, 211, 102, 0.15);
    transform: translateY(-2px);
}

.lead-whats i {
    font-size: 1.6rem;
    color: #25d366;
}

.lead-whats strong {
    display: block;
    color: var(--cream);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.lead-whats span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.lead-form-wrap {
    background: var(--bg-card);
    border: 1px solid rgba(201, 169, 97, 0.15);
    border-radius: 6px;
    padding: 44px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.lead-form-wrap h3 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 400;
    margin-bottom: 6px;
    color: var(--cream);
}

.form-subtitle {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(11, 13, 14, 0.6);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--cream);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--t);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(11, 13, 14, 0.85);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.radio-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.radio-option {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    background: rgba(11, 13, 14, 0.4);
    border: 1px solid var(--border);
    border-radius: 4px;
    cursor: none;
    transition: var(--t);
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 0;
}

.radio-option input {
    display: none;
}

.radio-option:hover {
    border-color: var(--border-hover);
}

.radio-option:has(input:checked) {
    background: rgba(201, 169, 97, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.form-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 18px;
}

.form-note i { color: var(--gold); margin-right: 6px; }

/* ============================================================
   AVALIAÇÃO
============================================================ */
.section-evaluate {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.evaluate-box {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.08) 0%, rgba(11, 13, 14, 0.6) 100%);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 8px;
    overflow: hidden;
    padding: 60px;
}

.evaluate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-label-light {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 500;
}

.evaluate-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: var(--cream);
}

.accent-light { color: var(--gold); font-style: italic; }

.evaluate-content > p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.evaluate-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.eval-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--cream-soft);
}

.eval-feature i {
    color: var(--gold);
    font-size: 0.85rem;
}

.evaluate-form {
    background: rgba(11, 13, 14, 0.5);
    backdrop-filter: blur(10px);
    padding: 36px;
    border-radius: 6px;
    border: 1px solid rgba(201, 169, 97, 0.15);
}

.evaluate-form h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 24px;
    color: var(--cream);
}

.evaluate-form input,
.evaluate-form select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(11, 13, 14, 0.7);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--cream);
    font-family: var(--font-sans);
    font-size: 0.92rem;
    margin-bottom: 14px;
    transition: var(--t);
}

.evaluate-form input:focus,
.evaluate-form select:focus {
    outline: none;
    border-color: var(--gold);
}

.evaluate-form input::placeholder {
    color: var(--text-muted);
}

.btn-primary-light {
    padding: 16px 32px;
    background: var(--gold);
    color: var(--bg-primary);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--t);
    border: none;
    border-radius: 4px;
}

.btn-primary-light:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(201, 169, 97, 0.3);
}

/* ============================================================
   FAQ
============================================================ */
.section-faq { padding: 120px 0; }

.faq-list {
    max-width: 840px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    padding: 28px 0;
    background: none;
    border: none;
    color: var(--cream);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: var(--t);
}

.faq-question:hover { color: var(--gold); }

.faq-question i {
    color: var(--gold);
    font-size: 0.9rem;
    transition: var(--t);
    flex-shrink: 0;
}

.faq-item.active .faq-question i { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer { max-height: 300px; }

.faq-answer p {
    padding-bottom: 28px;
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 0.95rem;
}

/* ============================================================
   CTA FINAL
============================================================ */
.section-cta { padding: 120px 0; }

.cta-box {
    padding: 80px 60px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(11, 13, 14, 0.8));
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 8px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.12), transparent 70%);
    pointer-events: none;
}

.cta-box h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 20px;
    position: relative;
    color: var(--cream);
}

.cta-box > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
    position: relative;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
}

.btn-outline-light {
    padding: 16px 36px;
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(245, 241, 232, 0.3);
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--t);
    border-radius: 4px;
}

.btn-outline-light:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

/* ============================================================
   FOOTER
============================================================ */
footer {
    padding: 80px 0 30px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1.4fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.footer-logo .logo-mark {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: var(--cream);
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.footer-logo small {
    font-family: var(--font-sans);
    font-size: 0.55rem;
    letter-spacing: 5px;
    color: var(--gold);
    margin-top: 4px;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-col p i {
    color: var(--gold);
    margin-right: 8px;
    width: 14px;
}

.footer-creci {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--cream);
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: 0.88rem;
    padding: 6px 0;
    transition: var(--t);
}

.footer-col a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: var(--t);
    padding: 0;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--bg-primary);
    transform: translateY(-4px);
    padding: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    font-size: 0.82rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom a {
    color: var(--gold);
    transition: var(--t);
}

.footer-bottom a:hover { color: var(--gold-light); }

/* ============================================================
   WHATSAPP FLOAT
============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 62px;
    height: 62px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.7rem;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: var(--t);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 78px;
    background: var(--bg-card);
    color: var(--cream);
    padding: 10px 18px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--t);
    border: 1px solid rgba(201, 169, 97, 0.2);
    font-weight: 500;
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; visibility: visible; }

/* ============================================================
   BACK TO TOP
============================================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--t);
    opacity: 0;
    visibility: hidden;
    z-index: 998;
}

.back-to-top.visible { opacity: 1; visibility: visible; }

.back-to-top:hover {
    background: var(--gold);
    color: var(--bg-primary);
    transform: translateY(-4px);
}

/* ============================================================
   RESPONSIVO
============================================================ */
@media (max-width: 1100px) {
    .properties-grid,
    .team-grid,
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    
    .regions-grid { grid-template-columns: repeat(2, 1fr); }
    
    .search-box {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 20px;
    }
    
    .search-divider { display: none; }
    .search-btn { grid-column: 1 / -1; justify-content: center; padding: 16px; }
}

@media (max-width: 968px) {
    body { cursor: auto; }
    button, a { cursor: pointer; }
    .cursor, .cursor-dot { display: none; }
    
    .container { padding: 0 24px; }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: 0.5s ease;
        z-index: 999;
        border-left: 1px solid var(--border);
    }
    
    .nav.active { right: 0; }
    .nav a { font-size: 1.3rem; }
    
    .menu-toggle { display: flex; z-index: 1001; }
    .btn-header { display: none; }
    .header-phone span { display: none; }
    
    .hero-stats { flex-wrap: wrap; gap: 30px; }
    
    .about-grid,
    .calculator-grid,
    .lead-grid,
    .evaluate-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image img { height: 400px; }
    
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-item { border-right: none; border-bottom: 1px solid var(--border); padding: 20px 0; }
    .trust-item:nth-child(3), .trust-item:last-child { border-bottom: none; }
    
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 640px) {
    .properties-grid,
    .team-grid,
    .testimonials-grid,
    .regions-grid,
    .trust-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .radio-group { grid-template-columns: 1fr; }
    .evaluate-features { grid-template-columns: 1fr; }
    
    .lead-form-wrap,
    .evaluate-box { padding: 30px 24px; }
    
    .evaluate-form { padding: 26px 22px; }
    
    .cta-box { padding: 50px 30px; }
    
    .cta-actions { flex-direction: column; }
    .cta-actions .btn-primary-light,
    .cta-actions .btn-outline-light { width: 100%; justify-content: center; }
    
    .footer-bottom { flex-direction: column; text-align: center; }
    
    .back-to-top { display: none; }
    
    .search-box { grid-template-columns: 1fr; padding: 16px; }
    
    .properties-more .btn-outline-large { width: 100%; justify-content: center; }
}