/* ==========================================================================
   SARAH VANCE LUXURY REAL ESTATE LANDING PAGE
   Warm Dark & Brushed Gold Premium UI/UX Design System
   ========================================================================== */

:root {
    /* Luxury Dark Palette */
    --bg-page: #090A0C;
    --bg-surface: #101216;
    --bg-card: #171A1F;
    --bg-card-hover: #1F2329;
    
    --text-main: #FFFFFF;
    --text-muted: #94A3B8;
    --text-light: #64748B;
    
    /* Brushed Gold / Champagne Accents */
    --gold: #D4AF37;
    --gold-dark: #B89626;
    --gold-light: #F3E5AB;
    --gold-subtle: rgba(212, 175, 55, 0.08);
    
    /* Semantic Colors */
    --red: #EF4444;
    --red-subtle: rgba(239, 68, 68, 0.08);
    --green: #10B981;
    --green-subtle: rgba(16, 185, 129, 0.08);
    
    /* Borders & Outlines */
    --border: #1E222B;
    --border-gold: rgba(212, 175, 55, 0.15);
    --border-hover: #2D3342;
    
    /* Borders Radius & Transit */
    --radius: 12px;
    --radius-sm: 6px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Global Reset & A11y Focus
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--bg-page);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

button, select, input, textarea {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    color: inherit;
}

/* Keyboard A11y Focus Ring */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-page);
}
::-webkit-scrollbar-thumb {
    background: #1E222B;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* Layout Utilities */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.gold-accent { color: var(--gold); }
.mt-4 { margin-top: 1rem; }
.btn-block { width: 100%; display: flex; }

/* ==========================================================================
   Typography Hierarchy
   ========================================================================== */
h1, h2, h3, .brand-logo, .footer-logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* ==========================================================================
   Buttons System & Shimmer Effect
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.92rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-lg {
    padding: 14px 30px;
    font-size: 1rem;
}

.btn-xl {
    padding: 18px 36px;
    font-size: 1.08rem;
    border-radius: var(--radius);
}

.btn-gold {
    background-color: var(--gold);
    color: #090A0C;
    font-weight: 600;
}

/* Elegant light reflection moving sweep across buttons */
.btn-gold::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 40%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: buttonSweep 6s infinite linear;
}

@keyframes buttonSweep {
    0% { left: -75%; }
    18%, 100% { left: 125%; }
}

.btn-gold:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);
}

.btn-outline {
    border: 1px solid var(--border-gold);
    background-color: transparent;
    color: var(--gold);
}

.btn-outline:hover {
    background-color: var(--gold-subtle);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* ==========================================================================
   Header Navigation
   ========================================================================== */
.header {
    background-color: rgba(9, 10, 12, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.brand-logo {
    font-size: 1.45rem;
    letter-spacing: 1.5px;
    font-weight: 700;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
}

.brand-logo-img {
    height: 110px;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.sub-brand {
    font-family: 'Manrope', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 2px;
    color: var(--text-light);
    font-weight: 600;
    margin-top: 3px;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-item {
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.nav-item:hover, .nav-item.active {
    color: var(--gold);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-btn {
    display: none;
    color: var(--text-main);
}

/* Mobile Drawer Menu */
.mobile-drawer {
    display: none;
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    background-color: rgba(9, 10, 12, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 99;
    padding: 30px 24px;
}

.mobile-drawer-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

.mobile-link {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
    width: 100%;
    padding: 8px 0;
}

.mobile-link:hover {
    color: var(--gold);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    padding: 120px 0 140px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.hero-inner {
    display: flex;
    justify-content: flex-start;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--gold-subtle);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 30px;
    letter-spacing: 1px;
    margin-bottom: 24px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

/* Dynamic pulse ring overlay animation for status dot */
.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-shadow: 0 0 6px var(--gold);
}

.status-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--gold);
    border-radius: 50%;
    animation: rippleGlow 1.8s infinite ease-in-out;
}

@keyframes rippleGlow {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.6); opacity: 0; }
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.75;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 64px;
}

.hero-highlights {
    display: flex;
    gap: 48px;
    border-top: 1px solid var(--border);
    padding-top: 40px;
}

.hh-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hh-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.hh-txt {
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ==========================================================================
   Trust Credentials Strip
   ========================================================================== */
.trust-strip {
    background-color: #070809;
    border-bottom: 1px solid var(--border);
    padding: 30px 0;
}

.trust-strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-badge-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tb-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
}

.tb-desc {
    font-size: 0.72rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   Seções Gerais
   ========================================================================== */
.section {
    padding: 120px 0;
    border-bottom: 1px solid var(--border);
}

.section-dark {
    background-color: var(--bg-surface);
}

.section-top {
    max-width: 720px;
    margin: 0 auto 64px;
}

.sub-tag {
    display: inline-block;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section-top h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-top p {
    font-size: 1.08rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* ==========================================================================
   Listings / Curated Portfolio Grid
   ========================================================================== */
.listings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.listing-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.listing-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: 0 24px 48px rgba(0,0,0,0.5), 0 0 32px rgba(212, 175, 55, 0.02);
}

.listing-img-wrap {
    height: 260px;
    position: relative;
    overflow: hidden;
}

.listing-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.listing-card:hover .listing-img {
    transform: scale(1.05);
}

/* Glassmorphic image hover overlay description */
.listing-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(9, 10, 12, 0.85), rgba(9, 10, 12, 0));
    color: #FFFFFF;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.45rem;
    font-weight: 600;
    opacity: 0;
    transition: var(--transition);
    z-index: 3;
}

.listing-card:hover .listing-overlay {
    opacity: 1;
}

.listing-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 2;
}

.badge-active { background-color: var(--gold-subtle); color: var(--gold); border: 1px solid var(--border-gold); }
.badge-offmarket { background-color: rgba(255,255,255,0.06); color: var(--text-muted); }
.badge-contract { background-color: var(--red-subtle); color: var(--red); border: 1px solid rgba(239, 68, 68, 0.15); }

.listing-body {
    padding: 28px;
}

.listing-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.listing-location {
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
    font-weight: 500;
}

.listing-trend {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
}

.listing-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    line-height: 1.25;
}

.listing-price-specs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 18px;
    margin-bottom: 24px;
}

.listing-price {
    font-size: 1.45rem;
    color: var(--gold);
    font-weight: 600;
}

.listing-specs {
    display: flex;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.listing-specs li:not(:last-child)::after {
    content: '•';
    margin-left: 12px;
    color: var(--text-light);
}

.listing-cta {
    font-size: 0.85rem;
}

/* ==========================================================================
   Interactive Home Valuation Section
   ========================================================================== */
.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.calc-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.calc-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-muted);
}

.calc-value {
    color: var(--gold);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
}

/* Range input styled custom track & gold thumb */
.calc-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: #1E222B;
    outline: none;
    transition: var(--transition);
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    box-shadow: 0 0 8px var(--gold);
    transition: var(--transition);
}

.calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calc-select {
    width: 100%;
    height: 46px;
    background-color: #090A0C;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0 16px;
    color: var(--text-main);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.calc-select:focus {
    border-color: var(--gold);
}

.slider-ticks {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: var(--text-light);
}

.calculator-results {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: space-between;
}

.result-box {
    background-color: rgba(255,255,255,0.01);
    border: 1px solid var(--border);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-sm);
    padding: 28px;
    transition: var(--transition);
}

.result-box:hover {
    transform: translateY(-2px);
    background-color: rgba(255,255,255,0.03);
}

.res-title {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.res-num {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}

.res-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 16px;
}

.progress-bar-wrap {
    width: 100%;
    height: 4px;
    background-color: rgba(255,255,255,0.04);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 2px;
    transition: width 0.3s ease-in-out;
}

.fill-gold {
    background-color: var(--gold);
    box-shadow: 0 0 6px var(--gold);
}

/* ==========================================================================
   Agent Profile Section & Press Logos
   ========================================================================== */
.about-layout {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.about-portrait {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius);
    display: block;
}

.about-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(9, 10, 12, 0.6) 0%, rgba(9, 10, 12, 0) 100%);
    pointer-events: none;
}

.about-tagline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 20px;
}

.about-text {
    font-size: 1.02rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
    margin-bottom: 40px;
}

.about-spec-box h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
}

.about-spec-box p {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.awards-bar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.awards-title {
    font-size: 0.72rem;
    color: var(--text-light);
    letter-spacing: 1px;
    font-weight: 600;
}

.awards-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-muted);
}

.awards-list span {
    border-left: 2px solid var(--gold);
    padding-left: 12px;
}

/* ==========================================================================
   Google Reviews Style Testimonials Grid
   ========================================================================== */
.testimonials-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.google-review-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.google-review-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-gold);
}

.gr-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    position: relative;
}

.gr-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #20242D;
}

.gr-info {
    display: flex;
    flex-direction: column;
}

.gr-author-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
}

.gr-location {
    font-size: 0.75rem;
    color: var(--text-light);
}

.google-logo-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background-color: #4285F4;
    color: #FFFFFF;
    font-size: 0.72rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gr-stars {
    font-size: 0.85rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.gr-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-style: italic;
}

/* ==========================================================================
   Lead Capturing Contact Form Panel
   ========================================================================== */
.contact-panel {
    max-width: 880px;
    margin: 0 auto;
    background-color: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 60px 48px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.contact-header {
    margin-bottom: 40px;
}

.contact-header h2 {
    font-size: 2.5rem;
    margin: 8px 0 12px;
}

.contact-header p {
    color: var(--text-muted);
    font-weight: 300;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.urgency-banner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--red-subtle);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: var(--red);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    max-width: 90%;
    margin: 0 auto;
}

.urgency-icon {
    font-size: 1rem;
}

.luxury-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.form-input {
    width: 100%;
    height: 48px;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0 16px;
    color: var(--text-main);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

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

textarea.form-input {
    height: auto;
    padding: 16px;
}

.form-disclaimer {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 12px;
}

.success-message {
    padding: 40px 0;
}

.success-message h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.success-message p {
    color: var(--text-muted);
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer {
    background-color: #070809;
    border-top: 1px solid var(--border);
    padding: 80px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 320px;
}

.footer-logo {
    font-size: 1.5rem;
    letter-spacing: 1px;
    font-weight: 700;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col p, .footer-col li {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 30px 0;
}

.bottom-inner {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: var(--text-light);
    flex-wrap: wrap;
    gap: 12px;
}

/* ==========================================================================
   Modais / Lightbox Leads System
   ========================================================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 10, 12, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    max-width: 500px;
    width: 90%;
    padding: 40px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.close-modal-btn {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--text-muted);
}

.close-modal-btn:hover {
    color: var(--gold);
}

.modal-content h3 {
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--gold);
}

.modal-content p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.5;
}

/* ==========================================================================
   Floating Advisor CTA Widget
   ========================================================================== */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--gold);
    color: #090A0C;
    border-radius: 50px;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    z-index: 90;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.floating-cta:hover {
    background-color: var(--gold-light);
    transform: translateY(-3px);
}

.floating-cta-pulse {
    width: 8px;
    height: 8px;
    background-color: #090A0C;
    border-radius: 50%;
    position: relative;
}

.floating-cta-pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #090A0C;
    border-radius: 50%;
    animation: floatingPulse 1.8s infinite ease-in-out;
}

@keyframes floatingPulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(2.8); opacity: 0; }
}

/* ==========================================================================
   Grid de Bolinhas e Linhas (Decorativo)
   ========================================================================== */
.texture-dots, .texture-lines {
    position: relative;
}

.texture-dots::before, .texture-lines::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.texture-dots::before {
    background-image: radial-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
}

.texture-lines::before {
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.003) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.003) 1px, transparent 1px);
    background-size: 40px 40px;
}

.texture-dots .container, .texture-lines .container {
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   Responsive Overrides
   ========================================================================== */

/* Tablets Breakpoints (up to 1024px) */
@media (max-width: 1024px) {
    .listings-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .testimonials-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .calculator-container {
        grid-template-columns: 1fr;
        padding: 32px;
        gap: 32px;
    }
    
    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-image-wrap {
        max-width: 460px;
        margin: 0 auto;
    }
    
    .about-specs-grid {
        justify-content: center;
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        max-width: 100%;
    }
}

/* Mobile Breakpoints (up to 768px) */
@media (max-width: 768px) {
    .brand-logo-img {
        height: 55px;
    }

    .header-inner {
        height: 80px;
    }
    
    .nav {
        display: none; /* Mobile Menu triggers drawer */
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .header-cta .btn {
        display: none; /* Hide header cta on mobile */
    }
    
    .hero {
        padding: 80px 0;
        text-align: center;
    }
    
    .hero-inner {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-highlights {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    
    .listings-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .listing-img-wrap {
        height: 220px;
    }
    
    .section-top h2 {
        font-size: 2.1rem;
    }
    
    .calculator-container {
        padding: 24px 16px;
    }
    
    .calc-label-row {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
    
    .calc-value {
        font-size: 1.15rem;
    }
    
    .result-box {
        padding: 20px;
        text-align: center;
    }
    
    .res-num {
        font-size: 2.1rem;
    }
    
    .contact-panel {
        padding: 30px 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .bottom-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }
    
    .floating-cta {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.8rem;
    }
}
