 :root {
            --caixa-blue: #0033A0;
            --caixa-light-blue: #0066CC;
            --caixa-green: #00A859;
            --footer-dark: #002366;
        }

        html,
        body {
            max-width: 100%;
            overflow-x: hidden;
            background-color: #f8f9fa;
        }

        body {
            font-family: 'Arial', sans-serif;
            padding-top: 80px;
            /* Espaço para o navbar fixo */
        }

        /* Navbar */
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 0 0; /* 15px 0 */
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }

        .navbar-brand img {
            height: 50px;
        }

        .nav-link {
            color: var(--caixa-blue) !important;
            font-weight: 500;
            margin: 0 10px;
            padding: 8px 15px !important;
            border-radius: 5px;
        }

        .nav-link:hover,
        .nav-link.active {
            background-color: var(--caixa-blue);
            color: white !important;
        }

        .header {
            background-color: var(--caixa-blue);
            color: white;
            padding: 2rem 0;
            margin-bottom: 2rem;
        }

        /* Banner Rotativo */
        .carousel-section {
            margin-top: 20px;
        }

        .carousel-caption {
            background-color: rgba(0, 51, 160, 0.7);
            padding: 20px;
            border-radius: 8px;
        }

        .carousel-item img {
            height: 400px;
            object-fit: cover;
        }

        /* Barra de Busca - Largura total */
        .search-section {
            background-color: #f8f9fa;
            padding: 40px 0;
            margin-bottom: 30px;
        }

        .search-bar {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            max-width: 100%;
            width: 100%;
            margin: 0 auto;
        }

        .search-bar .form-control,
        .search-bar .form-select {
            height: 45px;
            border-radius: 5px;
            border: 1px solid #ddd;
        }

        .search-bar .btn-primary {
            background-color: var(--caixa-blue);
            border: none;
            height: 45px;
            font-weight: bold;
        }

        /* Seção de Imóveis - Largura total */
        .properties-section {
            background-color: #f8f9fa;
            padding: 40px 0;
        }

        .properties-container {
            max-width: 100%;
            width: 100%;
            margin: 0 auto;
            padding: 0 15px;
        }

        .property-card {
            border: 1px solid #dee2e6;
            border-radius: 8px;
            padding: 0;
            margin-bottom: 1.5rem;
            transition: transform 0.3s;
            overflow: hidden;
            background: white;
        }

        .property-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

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

        .property-body {
            padding: 0.5rem;
        }

        .property-price {
            color: var(--caixa-green);
            font-weight: bold;
            font-size: 1.2rem;
        }

        .cta-section {
            background-color: var(--caixa-light-blue);
            color: white;
            padding: 3rem 0;
            text-align: center;
            margin-top: 2rem;
            border-radius: 8px;
        }

        footer {
            background-color: var(--footer-dark);
            color: white;
            padding: 3rem 0;
            margin-top: 3rem;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
        }

        .footer-links a:hover {
            color: var(--caixa-green);
        }

        /* Ajustes para títulos */
        .section-title {
            color: var(--caixa-blue);
            margin-bottom: 30px;
            font-weight: 700;
            text-align: center;
        }

        /* Centralizar botões */
        .btn-center {
            display: flex;
            justify-content: center;
        }
        .property-card {
            height: 500px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border: 1px solid #ccc;
            border-radius: 5px;
            padding: 10px;
        }

        .property-card .carousel-inner img,
        .property-card img.single-photo {
            width: 100%;
            height: 200px;
            /* altura fixa, pode ajustar */
            object-fit: cover;
            /* recorta, centraliza e mantém proporção */
        }