        body {
            margin: 0;
            font-family: Arial, Helvetica, sans-serif;
            background: #fff;
        }

        .header-bg {
            position: relative;
            height: 810px;
            background:
                linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 70%, rgba(255, 255, 255, 1) 100%),
                url('Imagens/header.png') no-repeat center center;
            background-size: cover;
            overflow: hidden;
        }

        /* Menu Hamburguer */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #fff;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* Alterar media query existente */
        @media (max-width: 900px) {
            .header-content {
                justify-content: center;
            }

            .header-text {
                margin: 0 20px;
            }

            .hamburger {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                height: 100vh;
                background: rgba(0, 0, 0, 0.95);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.3s ease;
                z-index: 999;
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-menu li {
                margin: 20px 0;
            }

            .nav-menu li a {
                font-size: 1.5rem;
                padding: 15px 30px;
            }

            .navbar {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                padding: 18px 30px 0 30px;
            }

            .separacao {
                flex-direction: column;
                gap: 30px;
            }

            .separacao-conteudo {
                text-align: center;
                margin: 0 20px;
            }
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 18px 40px 0 30px;
            position: relative;
            z-index: 2;
        }

        .logo {
            width: 80px;
            height: auto;
            margin-top: 2px;
        }

        .nav-menu {
            display: flex;
            gap: 28px;
            list-style: none;
            margin: 0;
            padding: 0;
            align-items: center;
        }

        .nav-menu li a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.2rem;
            letter-spacing: 1px;
            padding: 8px 14px;
            transition: background 0.15s, color 0.15s;
            border-radius: 5px;
            font-weight: bold;
            display: inline-block;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.496);
        }

        .nav-menu li a:hover {
            background: rgba(202, 202, 202, 0.13);
            color: rgb(88, 55, 20);
            font-weight: bold;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.153);
        }

        .btn-contato-top {
            background: #d5b179;
            color: #fff !important;
            font-weight: bold;
            border-radius: 6px;
            box-shadow: 0 2px #b39560;
            padding: 8px 18px;
            border: none;
            margin-left: 8px;
            transition: background 0.15s, color 0.15s;
        }

        .btn-contato-top:hover {
            background: #b39560;
            color: #fff;
        }

        .header-content {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            z-index: 1;
        }

        .header-text {
            margin-left: 50px;
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-width: 290px;
            max-width: 420px;
            background: rgba(0, 0, 0, 0.329);
            padding: 32px 32px 28px 32px;
            border-radius: 10px;
            box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.11);
            text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.496);
        }

        .header-text h2,
        .header-text h3 {
            margin: 0 0 10px 0;
            font-weight: 400;
            line-height: 1.2;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
        }

        .header-text h2 {
            font-size: 1.25rem;
        }

        .header-text h3 {
            font-size: 1.2rem;
        }

        .btn-whatsapp {
            text-align: center;
            display: inline-block;
            margin-top: 18px;
            padding: 10px 25px;
            background: #d5b179;
            color: #fff;
            font-weight: bold;
            border-radius: 6px;
            text-decoration: none;
            font-size: 1rem;
            box-shadow: 0 2px #b39560;
            border: none;
            transition: background 0.15s, color 0.15s;
        }

        .btn-whatsapp:hover {
            background: #b39560;
            color: #fff;
            text-decoration: none;
        }

        .apresentacao h1 {
            font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
            text-align: center;
            font-weight: bolder;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.282);
            font-size: 40px;
            margin-top: 50px;
        }

        .separacao {
            display: flex;
            justify-content: space-around;
            align-items: center;
            margin: 15px;
        }

        .separacao-conteudo {
            font-size: 19px;
            text-indent: 10px;
            margin-left: 5px;
            line-height: 1.6;
            text-align: justify;
        }

        .separacao-imagem img {
            width: 90%;
            border: 3px solid rgb(86, 60, 3);
            border-radius: 50%;
            margin: 0px 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .separacao-imagem {
            text-align: center;
            padding: 0;
        }

        .separacao-imagem h3 {
            margin-top: 15px;
            color: #333;
            font-size: 1.3rem;
        }

        .separacao-imagem p {
            color: #666;
            font-style: italic;
        }

        /* Seção de Imóveis */
        #imoveis {
            padding: 60px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            margin-top: 50px;
        }

        #imoveis h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 40px;
            font-weight: bold;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
        }

        .carousel-inner {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .carousel-item {
            background: #fff;
        }

        .carrossel-img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .carousel-caption {
            position: static;
            background: #fff;
            color: #333;
            padding: 2rem;
            text-align: center;
        }

        .carousel-caption h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #d5b179;
            font-weight: bold;
        }

        .carousel-caption p {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 1rem;
            line-height: 1.5;
        }

        .carousel-caption .preco {
            font-size: 1.5rem;
            color: #28a745;
            font-weight: bold;
            margin-top: 10px;
        }

        /* Indicadores personalizados */
        .carousel-indicators {
            bottom: -50px;
        }

        .carousel-indicators li {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #d5b179;
            border: none;
            margin: 0 5px;
            opacity: 0.5;
            transition: all 0.3s ease;
        }

        .carousel-indicators .active {
            opacity: 1;
            transform: scale(1.2);
        }

        @media (max-width: 900px) {
            .header-content {
                justify-content: center;
            }

            .header-text {
                margin: 0 20px;
            }

            .navbar {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
                padding: 18px 12px 0 12px;
            }

            .separacao {
                flex-direction: column;
                gap: 30px;
            }

            .separacao-conteudo {
                text-align: center;
                margin: 0 20px;
            }
        }

        @media (max-width: 600px) {
            .header-bg {
                height: 370px;
            }

            .header-text {
                max-width: 90vw;
                padding: 20px 8px 20px 8px;
            }

            .navbar {
                padding: 12px 4vw 0 4vw;
            }

            .nav-menu {
                gap: 12px;
                flex-wrap: wrap;
            }

            .apresentacao h1 {
                font-size: 28px;
                margin-top: 30px;
            }

            .carrossel-img {
                height: 250px;
            }

            .carousel-caption {
                padding: 1rem;
            }

            .carousel-caption h3 {
                font-size: 1.4rem;
            }

            .carousel-caption p {
                font-size: 1rem;
            }
        }

        /* ESTILOS PARA A BUSCA INTELIGENTE */
        .busca-inteligente {
            padding: 60px 20px;
            background-color: #f8f9fa;
        }

        .busca-inteligente h2 {
            text-align: center;
            margin-bottom: 40px;
            color: #333;
            font-weight: bold;
        }

        .filtros-container {
            background: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }

        .filtro-grupo {
            margin-bottom: 20px;
        }

        .filtro-grupo h4 {
            color: #d5b179;
            border-bottom: 1px solid #eee;
            padding-bottom: 8px;
            margin-bottom: 15px;
            font-size: 18px;
        }

        .filtro-opcoes {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .filtro-opcoes li {
            margin-bottom: 10px;
        }

        .filtro-opcoes label {
            display: flex;
            align-items: center;
            cursor: pointer;
            font-size: 15px;
        }

        .filtro-opcoes input {
            margin-right: 10px;
        }

        .btn-aplicar-filtros {
            background: #d5b179;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            width: 100%;
            font-weight: bold;
            margin-top: 20px;
            transition: background 0.3s;
        }

        .btn-aplicar-filtros:hover {
            background: #b39560;
        }

        .resultados-busca {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }

        .card-imovel {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .card-imovel:hover {
            transform: translateY(-5px);
        }

        .card-imovel img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .card-content {
            padding: 20px;
        }

        .card-content h3 {
            margin-top: 0;
            color: #333;
            font-size: 20px;
        }

        .card-preco {
            color: #28a745;
            font-size: 22px;
            font-weight: bold;
            margin: 10px 0;
        }

        .card-detalhes {
            display: flex;
            justify-content: space-between;
            margin: 15px 0;
            color: #666;
            font-size: 14px;
        }

        .card-detalhes span {
            display: flex;
            align-items: center;
        }

        .card-detalhes i {
            margin-right: 5px;
            color: #d5b179;
        }

        .card-descricao {
            color: #777;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .btn-detalhes {
            background: #d5b179;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            width: 100%;
            font-weight: bold;
            transition: background 0.3s;
        }

        .btn-detalhes:hover {
            background: #b39560;
            color: white;
        }

        .busca-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .busca-input {
            flex: 1;
            max-width: 400px;
            margin-right: 20px;
        }

        .ordenar-select {
            width: 200px;
        }

        @media (max-width: 768px) {
            .busca-header {
                flex-direction: column;
                align-items: stretch;
            }

            .busca-input,
            .ordenar-select {
                max-width: 100%;
                margin-right: 0;
                margin-bottom: 15px;
            }

            .resultados-busca {
                grid-template-columns: 1fr;
            }
        }