 /* CSS: Estilo Apple Designer Imóveis de Luxo */
        :root {
            --bg-color: #f5f5f7;
            --surface-color: #ffffff;
            --text-main: #1d1d1f;
            --text-secondary: #86868b;
            --accent-color: #0066cc;
            --border-radius: 20px;
            --shadow-subtle: 0 8px 30px rgba(0,0,0,0.04);
            --shadow-strong: 0 20px 40px rgba(0,0,0,0.08);
            --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: var(--font-family);
            background-color: var(--bg-color);
            color: var(--text-main);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
        }

        main {
            min-width: 0; 
        }

        /* Topo */
        .header-badges {
            display: flex;
            gap: 10px;
            margin-bottom: 18px;
            flex-wrap: wrap;
        }

        .badge-pill {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: -0.01em;
        }

        .badge-dark { background-color: #1d1d1f; color: #ffffff; }
        .badge-light { background-color: #ffffff; border: 1px solid #e5e5ea; color: #1d1d1f; }
        .badge-light .dot { color: #86868b; margin-right: 6px; font-size: 0.8rem; }

        h1 {
            font-size: 2.6rem;
            font-weight: 700;
            letter-spacing: -0.03em;
            line-height: 1.2;
            margin-bottom: 14px;
            color: var(--text-main);
        }

        .location {
            color: var(--text-secondary);
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 24px;
        }

        /* Preço */
        .price-container {
            display: flex;
            align-items: baseline;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 35px;
        }

        .price-currency { font-size: 1.5rem; font-weight: 500; color: var(--text-main); }
        .price-main { font-size: 3.8rem; font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
        .price-rental { font-size: 1.15rem; color: var(--text-secondary); margin-left: 4px; margin-right: 12px; }
        
        .condo-pill {
            background-color: #ffffff;
            border: 1px solid #e5e5ea;
            color: var(--text-secondary);
            padding: 8px 16px;
            border-radius: 18px;
            font-size: 0.95rem;
            font-weight: 400;
            display: inline-block;
        }

        /* Cartões */
        .card {
            background-color: var(--surface-color);
            border-radius: var(--border-radius);
            padding: 15px;
            box-shadow: var(--shadow-subtle);
            margin-bottom: 30px;
        }

     /* ========== ESTILOS PARA A SEÇÃO DE DESCRIÇÃO / CONCEITO ========== */
.card p {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-main);
    margin-bottom: 1.2rem;
}
/* ========== ESTILOS PARA A SEÇÃO DE DESCRIÇÃO / CONCEITO ========== */
/* Aplica apenas a parágrafos e títulos dentro do .card */
.card p {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-main);
    margin-bottom: 1.2rem;
}

.card p:last-of-type {
    margin-bottom: 0;
}

.card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 1.8rem 0 1rem 0;
    color: var(--text-main);
}

.card h2:first-of-type {
    margin-top: 0;
}

/* Estilo APENAS para a lista de localização (ul sem classe) */
.card ul:not(.amenities-list) {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.card ul:not(.amenities-list) li {
    font-size: 1rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-main);
}

/* Bullet discreto (sem emoji) */
.card ul:not(.amenities-list) li::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: #86868b;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsivo para telas pequenas */
@media (max-width: 768px) {
    .card p {
        font-size: 0.95rem;
        line-height: 1.45;
        margin-bottom: 1rem;
    }
    
    .card h2 {
        font-size: 1.3rem;
        margin: 1.4rem 0 0.8rem 0;
    }
    
    .card ul:not(.amenities-list) li {
        font-size: 0.93rem;
        gap: 0.6rem;
    }
    
    .card ul:not(.amenities-list) li::before {
        width: 4px;
        height: 4px;
    }
}

/* 👇 GARANTIA EXTRA: força a lista de comodidades a continuar em duas colunas */
.amenities-list {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
    list-style: none !important;
    padding-left: 0 !important;
    margin: 1rem 0 1.5rem 0 !important;
}

.amenities-list li {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: #333336 !important;
}

.amenities-list li::before {
    content: "✓" !important;
    color: #000 !important;
    font-weight: 700 !important;
    background: none !important;
    width: auto !important;
    height: auto !important;
    margin-right: 0 !important;
}




        /* Slider de Fotos */
        .slider-container {
            position: relative;
            width: 100%;
            height: 480px;
            border-radius: var(--border-radius);
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: var(--shadow-strong);
            background-color: #000;
        }

        .slider-track {
            display: flex;
            height: 100%;
            width: 100%;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .slider-track img {
            flex: 0 0 100%; 
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.75);
            border: none;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }
        .slider-btn:hover { background: rgba(255,255,255,0.95); }
        .slider-btn.prev { left: 20px; }
        .slider-btn.next { right: 20px; }

        h2 { font-size: 1.45rem; font-weight: 600; margin-bottom: 22px; letter-spacing: -0.01em; }

        /* Características */
        .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; }
        .feature-item { padding: 20px 15px; background: #fbfbfd; border-radius: 14px; text-align: center; }
        .feature-item strong { display: block; font-size: 1.3rem; font-weight: 600; color: var(--text-main); }
        .feature-item span { color: var(--text-secondary); font-size: 0.85rem; }

        /* Comodidades */
        .amenities-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
        .amenities-list li { display: flex; align-items: center; gap: 10px; color: #333336; }
        .amenities-list li::before { content: "✓"; color: #000; font-weight: 700; }

        /* Plantas Baixas */
        .tabs { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
        .tab-btn {
            padding: 10px 22px;
            border: none;
            background: #e8e8ed;
            border-radius: 20px;
            cursor: pointer;
            font-weight: 500;
            font-size: 0.9rem;
            color: var(--text-main);
            transition: all 0.2s ease;
        }
        .tab-btn.active { background: var(--text-main); color: #fff; }
        .tab-content { display: none; }
        .tab-content.active { display: block; }
        .tab-content img { 
            width: 100%; border-radius: 14px; border: 1px solid #e5e5ea; height: auto; 
            cursor: zoom-in; transition: opacity 0.2s;
        }
        .tab-content img:hover { opacity: 0.95; }

        /* Lightbox Modal */
        .lightbox {
            display: none; position: fixed; z-index: 2000; left: 0; top: 0;
            width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.65);
            backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
            justify-content: center; align-items: center; opacity: 0; transition: opacity 0.3s ease;
        }
        .lightbox.active { display: flex; opacity: 1; }
        .lightbox-content {
            max-width: 90%; max-height: 85%; border-radius: 16px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.3); transform: scale(0.95);
            transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1); background: white; padding: 10px;
        }
        .lightbox.active .lightbox-content { transform: scale(1); }
        .lightbox-close {
            position: absolute; top: 25px; right: 35px; color: #fff; font-size: 38px;
            cursor: pointer; font-weight: 300; width: 45px; height: 45px;
            background: rgba(0,0,0,0.3); display: flex; align-items: center; justify-content: center; border-radius: 50%;
        }

        /* Vídeo */
        .video-container {
            position: relative; padding-bottom: 56.25%; height: 0;
            border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-subtle);
        }
        .video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

        /* Sidebar e Botões */
        .sidebar { position: sticky; top: 40px; }
        .broker-profile { text-align: center; margin-bottom: 25px; }
        .broker-img {
            width: 110px; height: 110px; border-radius: 50%; object-fit: cover; margin: 0 auto 14px auto;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05); border: 3px solid #fff;
        }
        .broker-name { font-weight: 600; font-size: 1.3rem; letter-spacing: -0.01em; color: var(--text-main); }
        .broker-creci { color: var(--text-secondary); font-size: 0.9rem; margin-top: 2px; }

        .btn {
            display: inline-block; width: 100%; padding: 16px 20px; border-radius: 14px; text-align: center;
            text-decoration: none; font-weight: 600; font-size: 1.05rem; transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
            cursor: pointer; border: none;
        }
        .btn:hover { transform: scale(0.99); opacity: 0.92; }
        .btn-primary { background-color: var(--text-main); color: #fff; }
        .btn-secondary { background-color: #e8e8ed; color: var(--text-main); margin-top: 12px;}

        /* Rodapé */
        footer { background-color: #f5f5f7; border-top: 1px solid #e5e5ea; padding: 50px 20px; margin-top: 60px; font-size: 0.85rem; color: #6e6e73; }
        .footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
        .footer-links a { color: #424245; text-decoration: none; margin-left: 20px; }

        /* ------------------------------------------- */
        /* RESPONSIVIDADE (Telas Menores e Celulares)  */
        /* ------------------------------------------- */
        
        /* Tablets e Notebooks Pequenos */
        @media (max-width: 900px) {
            .container { grid-template-columns: 1fr; margin: 20px auto; }
            .sidebar { position: static; }
            .amenities-list { grid-template-columns: 1fr; }
            .footer-inner { flex-direction: column; text-align: center; }
            .footer-links a { margin: 0 10px; }
        }

        /* Celulares (Ajuste das Fontes) */
        @media (max-width: 768px) {
            /* Título muito menor no celular */
            h1 { font-size: 1.8rem; margin-bottom: 10px; }
            
            /* Ajuste de Preços */
            .price-main { font-size: 2.6rem; }
            .price-currency { font-size: 1.3rem; }
            .price-rental { font-size: 1rem; margin-bottom: 10px;}
            
            /* Ajuste de pílulas (badges e condomínio) */
            .condo-pill { font-size: 0.85rem; padding: 6px 12px; }
            .badge-pill { font-size: 0.8rem; padding: 6px 12px; }
            
            /* Reduz altura do slider de fotos para caber na tela mobile */
            .slider-container { height: 280px; }
            
            /* Reduz fonte de localização e cartões */
            .location { font-size: 0.95rem; }
            h2 { font-size: 1.25rem; }
            .card { padding: 20px; }
        }

         /* Estilos do banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: #2d2d2d;
            color: #f5f5f5;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            z-index: 9999;
            font-family: Arial, sans-serif;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
        }

        .cookie-banner p {
            margin: 0;
            font-size: 0.95rem;
            flex: 1;
        }

        .cookie-banner button {
            background-color: #4CAF50;
            color: white;
            border: none;
            padding: 0.6rem 1.5rem;
            font-size: 1rem;
            font-weight: bold;
            border-radius: 4px;
            cursor: pointer;
            transition: background 0.2s;
        }

        .cookie-banner button:hover {
            background-color: #45a049;
        }

        /* Estilo opcional para um link de política (não obrigatório) */
        .cookie-banner a {
            color: #ffd966;
            text-decoration: underline;
            margin-left: 0.5rem;
        }

        @media (max-width: 600px) {
            .cookie-banner {
                flex-direction: column;
                text-align: center;
                padding: 1rem;
            }
        }