/* 
  Design Original: Envato User 
  Licença de Uso: Comercial (Cliente Final)
  Proibida a revenda do código fonte.
*/
/* --- CONFIGURAÇÕES GERAIS --- */
        :root {
            --bg-color: #0f1115;       /* Quase preto, sofisticado */
            --surface-color: #1a1d24;  /* Cinza escuro para cards */
            --text-primary: #ffffff;
            --text-secondary: #a0a0a0;
            --accent: #c6a87c;         /* Ouro envelhecido */
            --accent-hover: #e0c395;
            --border: rgba(255,255,255,0.1);
            --container-width: 1400px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        html { scroll-behavior: smooth; }

        body {
            font-family: 'DM Sans', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, .serif-font { font-family: 'Playfair Display', serif; }

        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }

        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 40px;
        }

        .section-padding { padding: 120px 0; }

        /* --- TIPOGRAFIA & UTILITÁRIOS --- */
        .text-accent { color: var(--accent); }
        .text-center { text-align: center; }
        
        .section-header {
            margin-bottom: 80px;
            position: relative;
        }

        .section-subtitle {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: var(--accent);
            margin-bottom: 15px;
            display: block;
            font-weight: 500;
        }

        .section-title {
            font-size: 3.5rem;
            font-weight: 400;
            line-height: 1.1;
        }

        .btn {
            display: inline-block;
            padding: 15px 40px;
            border: 1px solid var(--accent);
            color: var(--accent);
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 2px;
            font-weight: 500;
            position: relative;
            overflow: hidden;
            z-index: 1;
            transition: color 0.4s;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 0; height: 100%;
            background: var(--accent);
            z-index: -1;
            transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        }

        .btn:hover { color: var(--bg-color); }
        .btn:hover::before { width: 100%; }

        .btn-solid {
            background: var(--accent);
            color: var(--bg-color);
        }
        .btn-solid:hover {
            background: var(--accent-hover);
            border-color: var(--accent-hover);
            color: var(--bg-color);
        }

        /* --- HEADER --- */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 30px 0;
            transition: 0.4s;
            background: linear-gradient(to bottom, rgba(15,17,21,0.9), transparent);
        }

        header.scrolled {
            background: rgba(15,17,21,0.95);
            backdrop-filter: blur(10px);
            padding: 20px 0;
            border-bottom: 1px solid var(--border);
        }

        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .logo span { color: var(--accent); }

        .nav-links {
            display: flex;
            gap: 50px;
        }

        .nav-link {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            opacity: 0.8;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent);
            transition: 0.3s;
        }

        .nav-link:hover { opacity: 1; }
        .nav-link:hover::after { width: 100%; }

        /* --- HERO SECTION --- */
        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: url('../images/b23f4902fcbaeac8438103272fb85eda.jpg') no-repeat center/cover;
            filter: brightness(0.4);
            transform: scale(1.1);
            animation: zoomOut 20s infinite alternate;
        }

        @keyframes zoomOut {
            from { transform: scale(1.1); }
            to { transform: scale(1); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
        }

        .hero-title {
            font-size: 5rem;
            line-height: 1;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s forwards 0.5s;
        }

        .hero-title span {
            display: block;
            font-style: italic;
            color: var(--accent);
            font-weight: 400;
        }

        .hero-text {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.8);
            margin-bottom: 50px;
            max-width: 500px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s forwards 0.8s;
        }

        .hero-actions {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s forwards 1.1s;
        }

        @keyframes fadeUp {
            to { opacity: 1; transform: translateY(0); }
        }

        /* --- SEARCH BAR FLUTUANTE --- */
        .search-float {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 1000px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.2);
            padding: 20px;
            display: flex;
            gap: 15px;
            z-index: 10;
        }

        .search-group {
            flex: 1;
            position: relative;
        }

        .search-group input, .search-group select {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(255,255,255,0.3);
            padding: 10px 0;
            color: #fff;
            font-family: 'DM Sans', sans-serif;
            font-size: 1rem;
            outline: none;
        }
        
        .search-group select option { background: var(--bg-color); }

        .search-group label {
            position: absolute;
            top: -10px;
            left: 0;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--accent);
        }

        .btn-search-icon {
            background: var(--accent);
            border: none;
            width: 50px;
            color: var(--bg-color);
            cursor: pointer;
            transition: 0.3s;
        }
        .btn-search-icon:hover { background: #fff; }

        /* --- FEATURED PROPERTIES --- */
        .properties-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 40px;
        }

        .property-card {
            group: relative;
            cursor: pointer;
        }

        .card-image-wrapper {
            position: relative;
            overflow: hidden;
            aspect-ratio: 4/5;
            margin-bottom: 25px;
        }

        .card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .property-card:hover .card-image { transform: scale(1.05); }

        .card-overlay {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--bg-color);
            padding: 8px 15px;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 2;
        }

        .card-details {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            border-bottom: 1px solid var(--border);
            padding-bottom: 20px;
        }

        .card-title {
            font-size: 1.8rem;
            margin-bottom: 5px;
            font-weight: 400;
        }

        .card-location {
            color: var(--text-secondary);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .card-price {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--accent);
        }

        .card-specs {
            display: flex;
            gap: 20px;
            margin-top: 15px;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        /* --- ABOUT SECTION (Editorial Style) --- */
        .about-section {
            background: var(--surface-color);
            position: relative;
            overflow: hidden;
        }

        .about-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
        }

        .about-image-stack {
            position: relative;
            height: 700px;
        }

        .img-back {
            position: absolute;
            top: 0; left: 0;
            width: 80%;
            height: 80%;
            object-fit: cover;
            filter: grayscale(100%);
            opacity: 0.5;
        }

        .img-front {
            position: absolute;
            bottom: 0; right: 0;
            width: 70%;
            height: 70%;
            object-fit: cover;
            box-shadow: -20px -20px 0 var(--bg-color);
            z-index: 2;
        }

        .about-content blockquote {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-style: italic;
            color: var(--accent);
            margin: 30px 0;
            line-height: 1.4;
        }

        .signature {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-top: 30px;
        }

        /* --- SERVICES (Minimalist) --- */
        .services-list {
            border-top: 1px solid var(--border);
        }

        .service-item {
            border-bottom: 1px solid var(--border);
            padding: 40px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: 0.3s;
        }

        .service-item:hover {
            background: rgba(255,255,255,0.02);
            padding-left: 20px;
        }

        .service-number {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--accent);
            margin-right: 30px;
            opacity: 0.5;
        }

        .service-title {
            font-size: 2rem;
            font-weight: 400;
            flex: 1;
        }

        .service-arrow {
            font-size: 1.5rem;
            color: var(--accent);
            transform: rotate(-45deg);
            transition: 0.3s;
        }

        .service-item:hover .service-arrow { transform: rotate(0); }

        /* --- CONTACT --- */
        .contact-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            height: 100vh;
            min-height: 700px;
        }

        .contact-visual {
            background: url('../images/15530fcf3a99a3fa411dc36fe1120b6c.jpg') center/cover;
            position: relative;
        }

        .contact-visual::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(15,17,21,0.6);
        }

        .contact-form-wrapper {
            padding: 100px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: var(--bg-color);
        }

        .form-input {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid var(--border);
            padding: 20px 0;
            color: #fff;
            font-size: 1.1rem;
            margin-bottom: 30px;
            transition: 0.3s;
        }

        .form-input:focus {
            border-bottom-color: var(--accent);
            outline: none;
        }

        .form-input::placeholder { color: var(--text-secondary); }

        /* --- FOOTER --- */
        footer {
            padding: 80px 0 40px;
            border-top: 1px solid var(--border);
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            margin-bottom: 60px;
        }

        .footer-brand h2 {
            color: #fff;
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .social-links a {
            margin-right: 20px;
            font-size: 1.2rem;
        }
        .social-links a:hover { color: var(--accent); }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .hero-title { font-size: 3.5rem; }
            .about-wrapper { grid-template-columns: 1fr; }
            .about-image-stack { height: 500px; margin-bottom: 50px; }
            .contact-split { grid-template-columns: 1fr; height: auto; }
            .contact-visual { height: 400px; }
            .contact-form-wrapper { padding: 60px 20px; }
            .search-float { width: 95%; flex-direction: column; bottom: 20px; }
            .container { padding: 0 20px; }
        }