
        @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

        :root {
            --gold-primary: #D4AF37;
            --gold-light: #F4E5A1;
            --gold-dark: #B8941F;
            --grey-dark: #2C2C2C;
            --grey-medium: #5A5A5A;
            --grey-light: #F5F5F5;
            --grey-lighter: #FAFAFA;
            --white: #FFFFFF;
            --black: #1A1A1A;
            --shadow-gold: rgba(212, 175, 55, 0.3);
            --shadow-dark: rgba(44, 44, 44, 0.15);
            --gradient-gold: linear-gradient(135deg, #D4AF37, #F4E5A1);
            --gradient-dark: linear-gradient(135deg, #2C2C2C, #5A5A5A);
            --font-primary: 'Playfair Display', serif;
            --font-secondary: 'Inter', sans-serif;
            --border-radius: 16px;
            --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-secondary);
            background-color: var(--grey-lighter);
            color: var(--grey-dark);
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            padding-top: 80px;
        }

        /* SCROLL PROGRESS BAR */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 4px;
            background: var(--gradient-gold);
            z-index: 1001;
            transition: width 0.1s ease-out;
            box-shadow: 0 2px 10px var(--shadow-gold);
        }

        /* NAVIGATION */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--gradient-dark);
            color: var(--white);
            padding: 1.2rem 3rem;
            box-shadow: 0 4px 20px var(--shadow-dark);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }

        .navbar-logo {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: 700;
            font-family: var(--font-primary);
            text-decoration: none;
            color: var(--gold-primary);
            transition: var(--transition-smooth);
        }

        .navbar-logo:hover {
            transform: scale(1.05);
        }

        .navbar-logo-img {
            width: 75px;
            height: 75px;
            margin-right: 15px;
            border-radius: 50%;
            border: 2px solid var(--gold-primary);
        }

        .navbar-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .navbar-item {
            position: relative;
        }

        .navbar-link {
            color: var(--gold-primary);
            text-decoration: none;
            font-weight: 500;
            padding: 0.8rem 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            border-radius: var(--border-radius);
            transition: var(--transition-smooth);
            font-size: 1rem;
            position: relative;
        }

        .navbar-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gold-primary);
            transition: var(--transition-smooth);
            transform: translateX(-50%);
        }

        .navbar-link:hover::after {
            width: 100%;
        }

        .navbar-link:hover {
            color: var(--gold-primary);
            transform: translateY(-2px);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: #5A5A5A;
            list-style: none;
            width: 220px;
            border-radius: var(--border-radius);
            box-shadow: 0 10px 40px var(--shadow-dark);
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: var(--transition-smooth);
            z-index: 1000;
            backdrop-filter: blur(20px);
            border: 1px solid var(--gold-primary);
            padding: 0.5rem 0;
        }

        .navbar-item:hover .dropdown-menu,
        .navbar-item:focus-within .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-link {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            color: var(--white);
            text-decoration: none;
            padding: 1rem 1.5rem;
            transition: var(--transition-smooth);
            border-radius: calc(var(--border-radius) / 2);
            margin: 0.2rem 0.5rem;
            font-weight: 500;
        }

        .dropdown-link:hover {
            background: var(--gradient-gold);
            color: var(--grey-dark);
            transform: translateX(5px);
            box-shadow: 0 4px 15px var(--shadow-gold);
        }

        .dropdown-link i {
            color: var(--gold-primary);
            transition: var(--transition-smooth);
        }

        .dropdown-link:hover i {
            color: var(--grey-dark);
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--gold-primary);
            margin: 3px 0;
            transition: var(--transition-smooth);
        }

        /* HERO SECTION */
        .hero {
            background: var(--gradient-dark);
            color: var(--white);
            padding: 120px 2rem 160px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="%23D4AF37" opacity="0.1"/><circle cx="75" cy="75" r="0.3" fill="%23D4AF37" opacity="0.1"/><circle cx="50" cy="10" r="0.4" fill="%23D4AF37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero h1 {
            font-family: var(--font-primary);
            font-weight: 900;
            font-size: 3.5rem;
            margin-bottom: 2rem;
            line-height: 1.1;
            color: var(--white);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero h1 .highlight {
            color: var(--gold-primary);
            background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.4rem;
            margin-bottom: 3rem;
            color: rgba(255,255,255,0.9);
            font-weight: 300;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* SEARCH FORM */
        .search-form {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            gap: 1rem;
            background: var(--white);
            padding: 1rem;
            border-radius: var(--border-radius);
            box-shadow: 0 20px 60px var(--shadow-dark);
        }

        .search-form input[type="text"] {
            flex-grow: 1;
            padding: 1.2rem 1.5rem;
            border-radius: calc(var(--border-radius) - 4px);
            border: 2px solid var(--grey-light);
            font-size: 1rem;
            outline: none;
            transition: var(--transition-smooth);
            background: var(--grey-lighter);
        }

        .search-form input[type="text"]:focus {
            border-color: var(--gold-primary);
            background: var(--white);
            box-shadow: 0 0 0 4px var(--shadow-gold);
        }

        .search-form button {
            background: var(--gradient-gold);
            border: none;
            padding: 1.2rem 2.5rem;
            border-radius: calc(var(--border-radius) - 4px);
            font-weight: 700;
            color: var(--grey-dark);
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition-smooth);
            box-shadow: 0 4px 15px var(--shadow-gold);
        }

        .search-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px var(--shadow-gold);
        }

        /* MAIN CONTENT */
        main {
            max-width: 1400px;
            margin: -100px auto 0;
            padding: 0 2rem 4rem;
            flex-grow: 1;
            position: relative;
            z-index: 10;
        }

        .section-title {
            font-family: var(--font-primary);
            font-size: 2.8rem;
            color: var(--grey-dark);
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient-gold);
            border-radius: 2px;
        }

        /* CAROUSEL */
        .carousel {
            position: relative;
            max-width: 900px;
            margin: 0 auto 4rem;
            background: var(--white);
            border-radius: var(--border-radius);
            box-shadow: 0 20px 60px var(--shadow-dark);
            overflow: hidden;
        }

        .carousel img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
        }

        .carousel-info {
            padding: 2rem;
            text-align: center;
            background: var(--white);
        }

        .carousel-info h3 {
            font-family: var(--font-primary);
            font-weight: 700;
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            color: var(--grey-dark);
        }

        .carousel-info p {
            font-size: 1rem;
            color: var(--grey-medium);
            margin-bottom: 1rem;
        }

        .carousel-info .price {
            font-weight: 700;
            font-size: 1.4rem;
            color: var(--gold-primary);
            font-family: var(--font-primary);
        }

        .carousel-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            background: rgba(212, 175, 55, 0.9);
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition-smooth);
            backdrop-filter: blur(10px);
        }

        .carousel-button:hover {
            background: var(--gold-primary);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-prev { left: 20px; }
        .carousel-next { right: 20px; }

        /* PROPERTY CARDS */
        .properties-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
        }

        .property-card {
            background: var(--white);
            border-radius: var(--border-radius);
            box-shadow: 0 10px 30px var(--shadow-dark);
            overflow: hidden;
            cursor: pointer;
            transition: var(--transition-smooth);
            position: relative;
            display: block;
            text-decoration: none;
            color: inherit;
        }

        .property-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-gold);
            opacity: 0;
            transition: var(--transition-smooth);
            z-index: 1;
        }

        .property-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px var(--shadow-dark);
        }

        .property-card:hover::before {
            opacity: 0.1;
        }

        .property-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: var(--transition-smooth);
        }

        .property-card:hover .property-image {
            transform: scale(1.05);
        }

        .property-info {
            padding: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .property-title {
            font-family: var(--font-primary);
            font-weight: 700;
            font-size: 1.4rem;
            color: var(--grey-dark);
            margin-bottom: 0.5rem;
        }

        .property-location {
            font-size: 1rem;
            color: var(--grey-medium);
            margin-bottom: 1rem;
        }

        .property-price {
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--gold-primary);
            font-family: var(--font-primary);
        }

        /* ABOUT COMPANY */
        .about-company {
            background: var(--white);
            padding: 4rem;
            margin: 6rem auto;
            border-radius: var(--border-radius);
            box-shadow: 0 20px 60px var(--shadow-dark);
            max-width: 1000px;
            position: relative;
        }

        .about-company::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: var(--gradient-gold);
            border-radius: var(--border-radius) var(--border-radius) 0 0;
        }

        .about-company p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            color: var(--grey-medium);
        }

        .company-card {
            background: var(--gradient-gold);
            border-radius: var(--border-radius);
            padding: 2rem;
            margin-top: 2rem;
            text-align: center;
            color: var(--grey-dark);
        }

        .company-card h3 {
            font-family: var(--font-primary);
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        /* SERVICES */
        .services {
            margin: 6rem 0;
        }

        .services-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: var(--white);
            border-radius: var(--border-radius);
            box-shadow: 0 10px 30px var(--shadow-dark);
            padding: 2.5rem;
            text-align: center;
            transition: var(--transition-smooth);
            border: 3px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gradient-gold);
            opacity: 0.1;
            transition: var(--transition-smooth);
        }

        .service-card:hover::before {
            left: 0;
        }

        .service-card:hover {
            transform: translateY(-5px);
            border-color: var(--gold-primary);
            box-shadow: 0 20px 50px var(--shadow-gold);
        }

        .service-icon {
            font-size: 3.5rem;
            color: var(--gold-primary);
            margin-bottom: 1.5rem;
        }

        .service-title {
            font-family: var(--font-primary);
            font-weight: 700;
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--grey-dark);
        }

        .service-description {
            color: var(--grey-medium);
            line-height: 1.6;
        }

        /* EXPLORE SECTION */
        .explore-section {
            margin: 6rem 0;
            padding: 0 1rem;
        }

        .explore-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .explore-card {
            background: var(--white);
            border-radius: var(--border-radius);
            box-shadow: 0 15px 40px var(--shadow-dark);
            overflow: hidden;
            transition: var(--transition-smooth);
            position: relative;
        }

        .explore-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-gold);
            opacity: 0;
            transition: var(--transition-smooth);
            z-index: 1;
        }

        .explore-card:hover::before {
            opacity: 0.05;
        }

        .explore-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 60px var(--shadow-gold);
        }

        .explore-image {
            width: 100%;
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .explore-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-smooth);
        }

        .explore-card:hover .explore-image img {
            transform: scale(1.05);
        }

        .explore-content {
            padding: 2.5rem;
            position: relative;
            z-index: 2;
        }

        .explore-content h3 {
            font-family: var(--font-primary);
            font-size: 1.8rem;
            color: var(--grey-dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .explore-content p {
            color: var(--grey-medium);
            line-height: 1.7;
            margin-bottom: 1rem;
            font-size: 1rem;
        }

        .explore-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--gold-primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            margin-top: 1rem;
            transition: var(--transition-smooth);
            padding: 0.5rem 0;
        }

        .explore-link:hover {
            color: var(--gold-dark);
            transform: translateX(5px);
        }

        .explore-link i {
            font-size: 0.9rem;
            transition: var(--transition-smooth);
        }

        .explore-link:hover i {
            transform: translateX(3px);
        }

        /* CHAT */
        .chat-container {
            position: fixed;
            bottom: 30px;
            right: 20px;
            width: 320px;
            height: 500px;
            background: var(--white);
            border-radius: var(--border-radius);
            box-shadow: 0 20px 60px var(--shadow-dark);
            overflow: hidden;
            display: none;
            flex-direction: column;
            z-index: 1000;
        }

        .chat-header {
            background: var(--gradient-gold);
            color: var(--grey-dark);
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
        }

        .chat-close {
            background: none;
            border: none;
            font-size: 2rem;
            cursor: pointer;
            color: var(--grey-dark);
            line-height: 1;
        }

        .chat-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 70px;
            height: 70px;
            background: var(--gradient-gold);
            color: var(--grey-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px var(--shadow-gold);
            cursor: pointer;
            z-index: 999;
            border: none;
            transition: var(--transition-smooth);
        }

        .chat-button:hover {
            transform: scale(1.1);
        }

        .chat-messages {
            flex: 1;
            padding: 1rem;
            overflow-y: auto;
            background: var(--grey-lighter);
            display: flex;
            flex-direction: column;
        }

        .message {
            max-width: 80%;
            margin-bottom: 1rem;
            padding: 0.8rem 1rem;
            border-radius: var(--border-radius);
            font-size: 0.9rem;
            line-height: 1.4;
            position: relative;
            animation: fadeIn 0.3s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .user-message {
            background: var(--gradient-gold);
            color: var(--grey-dark);
            margin-left: auto;
            border-bottom-right-radius: 4px;
        }

        .bot-message {
            background: var(--white);
            color: var(--grey-dark);
            margin-right: auto;
            border-bottom-left-radius: 4px;
            box-shadow: 0 2px 10px var(--shadow-dark);
        }

        .message-time {
            display: block;
            font-size: 0.7rem;
            margin-top: 0.5rem;
            opacity: 0.7;
        }

        .question-buttons {
            padding: 1rem;
            background: var(--white);
            border-top: 1px solid var(--grey-light);
            display: grid;
            gap: 0.5rem;
        }

        .question-btn {
            background: var(--white);
            color: var(--grey-dark);
            border: 2px solid var(--gold-primary);
            border-radius: calc(var(--border-radius) / 2);
            padding: 0.8rem;
            font-size: 0.85rem;
            cursor: pointer;
            transition: var(--transition-smooth);
            text-align: left;
        }

        .question-btn:hover {
            background: var(--gradient-gold);
            color: var(--grey-dark);
            transform: translateX(5px);
        }

        /* FOOTER */
        .footer {
            background: var(--black);
            color: var(--white);
            padding: 4rem 0 2rem;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-gold);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            color: var(--gold-primary);
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .footer-section p {
            color: rgba(255,255,255,0.8);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.8rem;
        }

        .footer-section ul li a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            
        }

        .social-links a:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 25px var(--shadow-gold);
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .navbar { padding: 1rem; }
            .navbar-menu { 
                display: none; 
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--gradient-dark);
                flex-direction: column;
                padding: 1rem;
                box-shadow: 0 4px 20px var(--shadow-dark);
            }
            .navbar-menu.active { display: flex; }
            .mobile-menu-toggle { display: flex; }
            .search-form { flex-direction: column; }
            .properties-cards { grid-template-columns: 1fr; gap: 1.5rem; }
            .about-company { padding: 2rem; margin: 3rem 1rem; }
            .explore-cards { grid-template-columns: 1fr; gap: 2rem; }
            .explore-card { margin: 0 1rem; }
            .explore-content { padding: 2rem; }
            main { padding: 0 1rem 2rem; }
            
            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background: rgba(0,0,0,0.1);
                margin-top: 0.5rem;
            }
        }
                @media (max-width: 768px) {
            /* Melhorias para responsividade mobile completa */
            
            body {
                padding-top: 70px;
            }
            
            /* Hero Section */
            .hero {
                padding: 80px 1.5rem 120px;
            }
            
            .hero h1 { 
                font-size: 2rem;
                margin-bottom: 1.5rem;
            }
            
            .hero p {
                font-size: 1rem;
                margin-bottom: 2rem;
            }
            
            /* Navbar */
            .navbar { 
                padding: 1rem 1.5rem;
            }
            
            .navbar-logo {
                font-size: 1.4rem;
            }
            
            .navbar-logo-img {
                width: 50px;
                height: 50px;
                margin-right: 10px;
            }
            
            .navbar-menu { 
                display: none; 
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--gradient-dark);
                flex-direction: column;
                padding: 1rem;
                box-shadow: 0 4px 20px var(--shadow-dark);
                gap: 0.5rem;
            }
            
            .navbar-menu.active { 
                display: flex; 
            }
            
            .mobile-menu-toggle { 
                display: flex; 
            }
            
            /* Search Form */
            .search-form { 
                flex-direction: column; 
                padding: 0.8rem;
                gap: 0.8rem;
            }
            
            .search-form input[type="text"] {
                padding: 1rem;
                font-size: 0.95rem;
            }
            
            .search-form button {
                padding: 1rem 2rem;
                font-size: 1rem;
            }
            
            /* Main Content */
            main { 
                margin-top: -80px;
                padding: 0 1rem 2rem; 
            }
            
            /* Section Titles */
            .section-title {
                font-size: 1.8rem;
                margin-bottom: 2rem;
            }
            
            /* Carousel - reduz altura e ajusta elementos */
            .carousel {
                margin: 0 0 3rem;
            }
            
            .carousel img {
                height: 250px;
            }
            
            .carousel-info {
                padding: 1.5rem;
            }
            
            .carousel-info h3 {
                font-size: 1.4rem;
            }
            
            .carousel-info p {
                font-size: 0.9rem;
            }
            
            .carousel-info .price {
                font-size: 1.2rem;
            }
            
            .carousel-button {
                width: 45px;
                height: 45px;
                font-size: 1.2rem;
            }
            
            .carousel-prev { left: 10px; }
            .carousel-next { right: 10px; }
            
            /* Property Cards - CORRIGE O GRID */
            .properties-cards { 
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .property-card {
                margin: 0;
            }
            
            .property-image {
                height: 220px;
            }
            
            .property-info {
                padding: 1.2rem;
            }
            
            .property-title {
                font-size: 1.2rem;
            }
            
            .property-location {
                font-size: 0.9rem;
            }
            
            .property-price {
                font-size: 1.1rem;
            }
            
            /* About Company */
            .about-company { 
                padding: 2rem 1.5rem;
                margin: 3rem 0;
            }
            
            .about-company p {
                font-size: 1rem;
            }
            
            .company-card {
                padding: 1.5rem;
            }
            
            .company-card h3 {
                font-size: 1.5rem;
            }
            
            /* Services */
            .services-list {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .service-card {
                padding: 2rem;
            }
            
            .service-icon {
                font-size: 2.8rem;
            }
            
            .service-title {
                font-size: 1.3rem;
            }
            
            /* Explore Section - CORRIGE O GRID PROBLEMA */
            .explore-section {
                margin: 4rem 0;
                padding: 0;
            }
            
            .explore-cards { 
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .explore-card { 
                margin: 0;
            }
            
            .explore-image {
                height: 200px;
            }
            
            .explore-content { 
                padding: 1.5rem;
            }
            
            .explore-content h3 {
                font-size: 1.5rem;
                margin-bottom: 1rem;
            }
            
            .explore-content p {
                font-size: 0.95rem;
                margin-bottom: 0.8rem;
            }
            
            .explore-link {
                font-size: 1rem;
            }
            
            /* Chat */
            .chat-container {
                width: 100%;
                height: 100%;
                bottom: 0;
                right: 0;
                border-radius: 0;
            }
            
            .chat-button {
                width: 60px;
                height: 60px;
                bottom: 15px;
                right: 15px;
            }
            
            /* Footer */
            .footer {
                padding: 3rem 0 1.5rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .footer-section h3 {
                font-size: 1.2rem;
                margin-bottom: 1rem;
            }
            
            .footer-section p {
                font-size: 0.95rem;
            }
            
            /* Dropdown no mobile fica estﾃ｡tico */
            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background: rgba(0,0,0,0.1);
                margin-top: 0.5rem;
                width: 100%;
            }
        }
        
        /* Ajustes adicionais para telas muito pequenas */
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            
            .hero p {
                font-size: 0.9rem;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
            
            .carousel img {
                height: 200px;
            }
            
            .property-image {
                height: 180px;
            }
            
            .explore-image {
                height: 180px;
            }
            
            .about-company {
                padding: 1.5rem;
            }
            
            .service-card {
                padding: 1.5rem;
            }
            
            .navbar-logo {
                font-size: 1.2rem;
            }
            
            .navbar-logo-img {
                width: 40px;
                height: 40px;
            }
        }
        
        /* Ajuste para tablets em modo retrato */
        @media (min-width: 640px) and (max-width: 768px) {
            .properties-cards {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .services-list {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        /* Adicione esses estilos ao seu arquivo CSS existente */

.property-corretor {
    font-size: 0.85rem;
    color: #666;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #eee;
}

.property-corretor i {
    color: #2c3e50;
    margin-right: 4px;
}

.carousel-info .corretor-info {
    font-size: 0.9rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 12px;
    border-radius: 4px;
    margin-top: 10px;
    display: inline-block;
}

.corretor-info i {
    margin-right: 6px;
}
.property-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.property-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.property-card:hover .property-image {
    transform: scale(1.08);
}

/* Container para evitar overflow */
.property-card {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
}

.property-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: white;
}

.property-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-height: 1.4;
    min-height: 3.9rem;
}

.property-location {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.property-location i {
    color: #D4AF37;
    flex-shrink: 0;
}

.property-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: #D4AF37;
    margin-top: auto;
}

/* ===== CAROUSEL MELHORADO ===== */

.carousel {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

#carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}

.carousel:hover #carousel-image {
    transform: scale(1.05);
}

.carousel-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.9) 100%);
    padding: 3rem 2rem 2rem;
    color: white;
}

.carousel-info h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.carousel-info p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.carousel-info .price {
    font-size: 2rem;
    font-weight: 900;
    color: #D4AF37;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.9);
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: #1a1a1a;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-button:hover {
    background: #D4AF37;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.carousel-button:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* ===== RESPONSIVIDADE MOBILE ===== */

@media (max-width: 1024px) {
    .property-image {
        height: 250px;
    }

    .carousel {
        height: 450px;
    }

    .carousel-info h3 {
        font-size: 2rem;
    }

    .carousel-info .price {
        font-size: 1.7rem;
    }
}

@media (max-width: 768px) {
    .property-image {
        height: 220px;
    }

    .property-title {
        font-size: 1.2rem;
        min-height: 3.4rem;
    }

    .property-location {
        font-size: 0.95rem;
    }

    .property-price {
        font-size: 1.4rem;
    }

    .property-info {
        padding: 1.2rem;
    }

    /* Carousel Mobile */
    .carousel {
        height: 400px;
        border-radius: 15px;
        margin-bottom: 2rem;
    }

    #carousel-image {
        object-fit: cover;
    }

    .carousel-info {
        padding: 2rem 1.5rem 1.5rem;
    }

    .carousel-info h3 {
        font-size: 1.6rem;
    }

    .carousel-info p {
        font-size: 1rem;
    }

    .carousel-info .price {
        font-size: 1.5rem;
    }

    .carousel-button {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }

    .carousel-prev {
        left: 15px;
    }

    .carousel-next {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .property-image {
        height: 200px;
    }

    .property-title {
        font-size: 1.1rem;
        min-height: 3rem;
    }

    .property-location {
        font-size: 0.9rem;
    }

    .property-price {
        font-size: 1.3rem;
    }

    .property-info {
        padding: 1rem;
    }

    /* Carousel Mobile Pequeno */
    .carousel {
        height: 320px;
        border-radius: 12px;
    }

    .carousel-info {
        padding: 1.5rem 1rem 1rem;
    }

    .carousel-info h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .carousel-info p {
        font-size: 0.9rem;
    }

    .carousel-info .price {
        font-size: 1.3rem;
    }

    .carousel-button {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }
}

/* ===== GRID RESPONSIVO MELHORADO ===== */

.properties-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .properties-cards {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .properties-cards {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}

/* ===== LOADING STATE PARA IMAGENS ===== */

.property-image,
#carousel-image {
    background: linear-gradient(
        90deg,
        #f0f0f0 0%,
        #e8e8e8 50%,
        #f0f0f0 100%
    );
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.property-image[src],
#carousel-image[src] {
    animation: none;
}

/* ===== BADGE DE TIPO DE IMﾃ天EL ===== */

.property-card {
    position: relative;
}

.property-type-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(212, 175, 55, 0.95);
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    z-index: 5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ===== EFEITO SHIMMER AO CARREGAR ===== */

.property-card.loading {
    pointer-events: none;
}

.property-card.loading .property-image {
    background: linear-gradient(
        90deg,
        #f0f0f0 25%,
        #e8e8e8 50%,
        #f0f0f0 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* ===== SUPORTE TOUCH MELHORADO ===== */

@media (hover: none) and (pointer: coarse) {
    .property-card:active {
        transform: scale(0.98);
    }

    .carousel-button:active {
        transform: translateY(-50%) scale(0.9);
    }
}

/* ===== ACESSIBILIDADE ===== */

.property-card:focus-visible,
.carousel-button:focus-visible {
    outline: 3px solid #D4AF37;
    outline-offset: 3px;
}

/* ===== PERFORMANCE ===== */

.property-image,
#carousel-image,
.property-card {
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
  
        .properties-cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
            gap: 1.5rem;
            padding: 2rem 0;
        }

        .property-card {
            display: flex;
            flex-direction: row;
            height: 200px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background: white;
            text-decoration: none;
            color: inherit;
        }

        .property-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }

        .property-card .property-image {
            width: 300px;
            height: 100%;
            object-fit: cover;
            flex-shrink: 0;
        }

        .property-card .property-info {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            flex: 1;
            min-width: 0;
        }

        .property-card .property-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #1a1a1a;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .property-card .property-location {
            font-size: 0.95rem;
            color: #666;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* Estilo para o badge do CRECI do corretor */
        .property-card .corretor-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.85rem;
            color: #2c3e50;
            background-color: #f0f4f8;
            padding: 0.25rem 0.6rem;
            border-radius: 6px;
            margin-top: 0.5rem;
            font-weight: 500;
        }

        .property-card .corretor-badge i {
            color: #4a6580;
        }

        @media (max-width: 768px) {
            .properties-cards {
                grid-template-columns: 1fr;
            }

            .property-card {
                flex-direction: column;
                height: auto;
            }

            .property-card .property-image {
                width: 100%;
                height: 200px;
            }
        }
         .footer {
            background: var(--black);
            color: var(--white);
            padding: 4rem 0 2rem;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-gold);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            color: var(--gold-primary);
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .footer-section p {
            color: rgba(255,255,255,0.8);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.8rem;
        }

        .footer-section ul li a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: var(--gold-primary);
            transform: translateX(5px);
        }
          .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            text-align: center;
            color: rgba(255,255,255,0.6);
        }

        .footer-bottom p {
            margin-bottom: 0.5rem;
        }



        .social-icons a {
            color: var(--gold-primary);
            font-size: 1.8rem;
            margin: 0 1rem;
            transition: var(--transition-smooth);
        }
         .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            background: var(--gradient-gold);
            color: var(--black);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px var(--shadow-gold);
        }

        .social-links a:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 25px var(--shadow-gold);
        }

        .social-icons a:hover {
            color: var(--gold-light);
            transform: scale(1.2);
        }
        