/* ============================================================
   Dr. Aluguel – style.css
   ============================================================ */

:root {
    --da-blue:        #1d5fce;
    --da-blue-dark:   #0f3d8c;
    --da-blue-light:  #e8f1fd;
    --da-blue-mid:    #4a90d9;
    --da-navy:        #0d2d5a;
    --da-text:        #1a2b4a;
    --da-muted:       #5a6a80;
    --da-bg:          #f0f4fb;
    --da-white:       #ffffff;
    --da-radius:      14px;
    --da-shadow:      0 8px 32px rgba(29, 95, 206, 0.10);
}

/* Navbar scroll state */
.da-navbar.scrolled {
    box-shadow: 0 4px 24px rgba(29, 95, 206, 0.14);
}

/* Input invalid state */
.da-search-input.is-invalid {
    outline: 2px solid #dc3545;
    border-radius: 4px;
}

/* ---- Reset / Base ---------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--da-bg);
    color: var(--da-text);
    overflow-x: hidden;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.da-navbar {
    padding: 0.75rem 0;
    box-shadow: 0 2px 16px rgba(29, 95, 206, 0.08);
    position: relative;
    z-index: 100;
}

/* Brand / Logo */
.da-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.da-logo-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--da-blue), var(--da-blue-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--da-white);
    box-shadow: 0 4px 12px rgba(29, 95, 206, 0.30);
    flex-shrink: 0;
}

.da-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.da-logo-name {
    font-size: 1.30rem;
    font-weight: 700;
    color: var(--da-blue);
    letter-spacing: -0.3px;
}

.da-logo-slogan {
    font-size: 0.68rem;
    color: var(--da-muted);
    margin-top: 3px;
    white-space: nowrap;
}

/* Nav links */
.da-nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--da-text) !important;
    padding: 0.45rem 0.75rem !important;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

.da-nav-link:hover,
.da-nav-link:focus {
    color: var(--da-blue) !important;
    background: var(--da-blue-light);
}

.da-nav-active {
    color: var(--da-blue) !important;
    font-weight: 600;
}

/* Dropdown */
.da-dropdown {
    border: none;
    border-radius: var(--da-radius);
    box-shadow: var(--da-shadow);
    padding: 0.5rem;
    min-width: 180px;
}

.da-dropdown .dropdown-item {
    border-radius: 8px;
    font-size: 0.88rem;
    padding: 0.45rem 0.85rem;
    color: var(--da-text);
    transition: background 0.15s, color 0.15s;
}

.da-dropdown .dropdown-item:hover {
    background: var(--da-blue-light);
    color: var(--da-blue);
}

/* Entrar button */
.da-btn-entrar {
    border: 2px solid var(--da-blue);
    color: var(--da-blue);
    border-radius: 50px;
    padding: 0.42rem 1.25rem;
    font-size: 0.90rem;
    font-weight: 600;
    transition: all 0.25s;
    white-space: nowrap;
}

.da-btn-entrar:hover {
    background: var(--da-blue);
    color: var(--da-white);
}

/* ============================================================
   HERO
   ============================================================ */
.da-hero {
    background: linear-gradient(135deg, #f0f4fb 0%, #e4edfb 60%, #dce8fb 100%);
    padding: 72px 0 0;
    min-height: calc(100vh - 74px);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Background blobs */
.da-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
    pointer-events: none;
}

.da-blob-1 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, #a8c8f8, transparent);
    top: -100px;
    right: -60px;
}

.da-blob-2 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, #c5d9f9, transparent);
    bottom: 40px;
    left: -80px;
}

/* ---- Left column ----------------------------------------- */
.da-hero-left {
    padding-bottom: 80px;
}

.da-hero-title {
    font-size: clamp(2rem, 3.5vw, 2.85rem);
    font-weight: 800;
    line-height: 1.18;
    color: var(--da-navy);
    margin-bottom: 1rem;
}

.da-title-accent {
    color: var(--da-blue);
}

.da-hero-sub {
    font-size: 0.97rem;
    color: var(--da-muted);
    margin-bottom: 1.75rem;
    line-height: 1.65;
}

/* Tabs */
.da-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 1rem;
    border-bottom: 2px solid #d5e2f5;
}

.da-tab {
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    padding: 0.55rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--da-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color 0.2s, border-color 0.2s;
}

.da-tab.active {
    color: var(--da-blue);
    border-bottom-color: var(--da-blue);
}

.da-tab:hover:not(.active) {
    color: var(--da-text);
}

/* Search bar */
.da-search-wrap {
    display: flex;
    align-items: center;
    background: var(--da-white);
    border-radius: 50px;
    padding: 6px 6px 6px 18px;
    box-shadow: 0 6px 24px rgba(29, 95, 206, 0.13);
    max-width: 520px;
    gap: 10px;
    position: relative; /* ancora o dropdown */
}

/* ── Autocomplete dropdown ──────────────────────────────── */
.da-autocomplete-list {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--da-white);
    border-radius: var(--da-radius);
    box-shadow: 0 12px 40px rgba(29, 95, 206, 0.16);
    list-style: none;
    margin: 0;
    padding: 6px 0;
    z-index: 9999;
    max-height: 320px;
    overflow-y: auto;
}

.da-autocomplete-list.da-ac-open {
    display: block;
}

.da-autocomplete-sep {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--da-muted);
    padding: 8px 16px 4px;
}

.da-autocomplete-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    font-size: 0.88rem;
    color: var(--da-text);
    cursor: pointer;
    transition: background 0.15s;
    line-height: 1.3;
}

.da-autocomplete-item i {
    width: 16px;
    text-align: center;
    color: var(--da-blue-mid);
    flex-shrink: 0;
}

.da-autocomplete-item .da-ac-sub {
    font-size: 0.75rem;
    color: var(--da-muted);
    display: block;
    margin-top: 1px;
}

.da-autocomplete-item:hover,
.da-autocomplete-item.da-ac-active {
    background: var(--da-blue-light);
    color: var(--da-blue);
}

.da-autocomplete-item:hover i,
.da-autocomplete-item.da-ac-active i {
    color: var(--da-blue);
}

.da-search-icon {
    color: var(--da-blue-mid);
    font-size: 1rem;
    flex-shrink: 0;
}

.da-search-input {
    border: none;
    outline: none;
    background: transparent;
    flex: 1;
    font-size: 0.90rem;
    color: var(--da-text);
    min-width: 0;
}

.da-search-input::placeholder {
    color: #aab4c4;
}

.da-btn-search {
    background: linear-gradient(135deg, var(--da-blue), var(--da-blue-dark));
    color: var(--da-white);
    border-radius: 50px;
    padding: 0.6rem 1.35rem;
    font-size: 0.88rem;
    font-weight: 600;
    border: none;
    white-space: nowrap;
    transition: opacity 0.2s, transform 0.2s;
    box-shadow: 0 4px 14px rgba(29, 95, 206, 0.35);
}

.da-btn-search:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    color: var(--da-white);
}

/* ---- Right column ---------------------------------------- */
.da-hero-right {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 60px;
}

/* House SVG outline */
.da-house-svg {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 420px;
    height: 440px;
    z-index: 0;
}

/* Couple photo area */
.da-couple-wrap {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 340px;
    height: 400px;
}

.da-couple-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* clip into lower-rounded trapezoid shape matching the design */
    clip-path: polygon(12% 0%, 88% 0%, 100% 100%, 0% 100%);
    background: linear-gradient(180deg, #c5d9f7 0%, #7aaee8 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

/* Placeholder icon (remove when real photo added) */
.da-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7rem;
    color: rgba(255,255,255,0.55);
    background: linear-gradient(160deg, #a8c8f5 0%, #5a8fd8 60%, #2f6ec0 100%);
}

/* Real photo – uncomment when file is available */
/*
.da-couple-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
*/

/* Trust badge */
.da-trust-badge {
    position: absolute;
    bottom: 30px;
    right: 0;
    background: var(--da-white);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 28px rgba(29, 95, 206, 0.14);
    z-index: 4;
    max-width: 240px;
}

.da-badge-icon {
    width: 44px;
    height: 44px;
    background: var(--da-blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--da-blue);
    flex-shrink: 0;
}

.da-trust-badge p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--da-text);
}

.da-trust-badge p strong {
    color: var(--da-blue);
}

/* Plus decorators */
.da-plus {
    position: absolute;
    color: var(--da-blue-mid);
    font-size: 1.4rem;
    opacity: 0.40;
    z-index: 1;
}

.da-plus-1 { top: 18px;  right: 20px;  font-size: 1.1rem; opacity: 0.30; }
.da-plus-2 { top: 200px; right: -10px; font-size: 1.6rem; }
.da-plus-3 { top: 40px;  left: 10px;  font-size: 1.0rem; opacity: 0.25; }

/* ============================================================
   FEATURES BAR
   ============================================================ */
.da-features {
    padding: 0 0 48px;
    margin-top: -48px;
    position: relative;
    z-index: 10;
}

.da-features-card {
    background: var(--da-white);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(29, 95, 206, 0.10);
    overflow: hidden;
}

.da-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 28px 24px;
    border-right: 1px solid #e8edf5;
    height: 100%;
    transition: background 0.2s;
}

.da-feature-item:hover {
    background: var(--da-blue-light);
}

.da-feature-last {
    border-right: none;
}

.da-feat-icon {
    width: 46px;
    height: 46px;
    background: var(--da-blue-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--da-blue);
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}

.da-feature-item:hover .da-feat-icon {
    background: var(--da-blue);
    color: var(--da-white);
}

.da-feat-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--da-blue);
    margin-bottom: 4px;
}

.da-feat-desc {
    font-size: 0.80rem;
    color: var(--da-muted);
    margin: 0;
    line-height: 1.5;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    .da-hero {
        padding-top: 48px;
        min-height: auto;
    }

    .da-hero-left {
        padding-bottom: 40px;
        text-align: center;
    }

    .da-tabs { justify-content: center; }

    .da-search-wrap { max-width: 100%; }

    .da-hero-right {
        min-height: 380px;
        margin-bottom: 60px;
    }

    .da-house-svg { width: 320px; height: 340px; }
    .da-couple-wrap { width: 270px; height: 320px; }
}

@media (max-width: 767.98px) {
    .da-hero-title { font-size: 1.85rem; }

    .da-hero-right { min-height: 320px; }

    .da-house-svg { width: 280px; height: 300px; }
    .da-couple-wrap { width: 240px; height: 280px; }

    .da-trust-badge {
        right: 50%;
        transform: translateX(50%);
        bottom: -20px;
    }

    .da-feature-item { border-right: none; border-bottom: 1px solid #e8edf5; }
    .da-feature-last { border-bottom: none; }

    .da-features { margin-top: 28px; }
}

@media (max-width: 575.98px) {
    .da-logo-slogan { display: none; }
    .da-btn-search { padding: 0.55rem 0.85rem; font-size: 0.80rem; }
}

/* ============================================================
   BANNER ROTATIVO
   ============================================================ */
.da-banner-section {
    background: #0d1f3c;
    position: relative;
    overflow: hidden;
}

.da-slide {
    position: relative;
    height: 480px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Foto de fundo */
.da-slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* Overlay gradiente colorido (cor vem do inline style) */
.da-slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        105deg,
        var(--slide-color1, #4a1899) 0%,
        var(--slide-color2, #6d28d9) 38%,
        rgba(80, 30, 160, 0.55) 60%,
        transparent 100%
    );
}

/* Container do conteúdo do slide */
.da-slide-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Texto do slide */
.da-slide-text { padding: 2rem 0; }

.da-slide-title {
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 1rem;
}

.da-slide-title span {
    color: #fcd34d;
}

.da-slide-sub {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.65;
    margin-bottom: 1.75rem;
}

/* Botão CTA do banner */
.da-btn-banner {
    display: inline-block;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.72rem 1.9rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45);
    transition: transform 0.2s, box-shadow 0.2s;
}

.da-btn-banner:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(249, 115, 22, 0.55);
}

/* ---- Indicadores ----------------------------------------- */
.da-banner-indicators {
    bottom: 18px;
    gap: 6px;
}

.da-banner-indicators [data-bs-slide-to] {
    width: 28px;
    height: 6px;
    border-radius: 3px;
    background: rgba(255,255,255,0.40);
    border: none;
    opacity: 1;
    transition: width 0.3s, background 0.3s;
}

.da-banner-indicators [data-bs-slide-to].active {
    width: 48px;
    background: #fff;
}

/* ---- Setas de controle ----------------------------------- */
.da-banner-ctrl {
    width: 52px;
    opacity: 1;
}

.da-ctrl-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    color: #fff;
    font-size: 0.95rem;
    border: 1px solid rgba(255,255,255,0.30);
    transition: background 0.2s;
}

.da-ctrl-circle:hover { background: rgba(255,255,255,0.35); }

/* ---- Mockup de celular ----------------------------------- */
.da-phone {
    width: 190px;
    height: 360px;
    background: #fff;
    border-radius: 28px;
    border: 3px solid rgba(255,255,255,0.90);
    box-shadow: 0 24px 60px rgba(0,0,0,0.45),
                0 0 0 1px rgba(255,255,255,0.12);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    margin: auto;
}

.da-phone-notch {
    width: 60px;
    height: 10px;
    background: #1a1a1a;
    border-radius: 0 0 8px 8px;
    margin: 0 auto 0;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.da-phone-screen {
    flex: 1;
    background: #f5f7fa;
    padding: 18px 10px 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.da-ph-header {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--da-navy);
    text-align: center;
    padding-top: 4px;
}

.da-ph-tabs {
    display: flex;
    gap: 3px;
    background: #e2e8f0;
    border-radius: 8px;
    padding: 3px;
}

.da-ph-tabs span {
    flex: 1;
    text-align: center;
    font-size: 0.60rem;
    font-weight: 500;
    color: var(--da-muted);
    padding: 3px 2px;
    border-radius: 6px;
}

.da-ph-tabs span.active {
    background: #fff;
    color: var(--da-blue);
    font-weight: 700;
    box-shadow: 0 1px 4px rgba(0,0,0,0.10);
}

.da-ph-filter {
    font-size: 0.60rem;
    color: var(--da-blue);
    background: var(--da-blue-light);
    border-radius: 6px;
    padding: 4px 8px;
    font-weight: 600;
}

.da-ph-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    flex: 1;
}

.da-ph-card-img {
    height: 80px;
    background: linear-gradient(135deg, #d4e8fc, #91bfef);
    background-size: cover;
}

.da-ph-card-body {
    padding: 8px;
}

.da-ph-card-title {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--da-navy);
    margin: 0 0 2px;
}

.da-ph-card-loc {
    font-size: 0.58rem;
    color: var(--da-muted);
    margin: 0 0 4px;
}

.da-ph-card-price {
    font-size: 0.70rem;
    font-weight: 700;
    color: var(--da-blue);
    margin: 0 0 4px;
}

.da-ph-card-price small { font-size: 0.55rem; font-weight: 400; }

.da-ph-card-specs {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.da-ph-card-specs span {
    font-size: 0.55rem;
    color: var(--da-muted);
    background: #f0f4fb;
    padding: 2px 5px;
    border-radius: 4px;
}

/* ============================================================
   IMÓVEIS RECENTES
   ============================================================ */
.da-properties-section {
    padding: 64px 0 72px;
    background: var(--da-bg);
    position: relative;
    overflow-x: hidden;
}

.da-section-title {
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 700;
    color: var(--da-navy);
    margin-bottom: 2rem;
}

.da-section-title span { color: var(--da-blue); }

/* Swiper container */
.da-prop-swiper {
    overflow: visible !important;
    padding-bottom: 8px;
}

/* Card de imóvel */
.da-prop-card {
    background: var(--da-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(13,45,90,0.08);
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.da-prop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(13,45,90,0.14);
}

/* Foto */
.da-prop-photo {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4 / 3;
    flex-shrink: 0;
}

.da-prop-photo a {
    display: block;
    width: 100%;
    height: 100%;
}

.da-prop-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s;
    display: block;
}

.da-prop-card:hover .da-prop-photo img { transform: scale(1.04); }

/* Placeholder sem foto */
.da-prop-photo.da-no-photo { background: #f0f2f5; }
.da-prop-photo.da-no-photo a { display: flex; align-items: center; justify-content: center; }
.da-prop-photo.da-no-photo img {
    width: 55%;
    height: auto;
    object-fit: contain;
    filter: grayscale(1) opacity(0.25);
    transform: none !important;
}

/* Badge aluguel/venda */
.da-prop-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 0.70rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    letter-spacing: 0.3px;
}

.da-badge-aluguel {
    background: var(--da-blue);
    color: #fff;
}

.da-badge-venda {
    background: #f97316;
    color: #fff;
}

/* Botão favorito */
.da-fav-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.92);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--da-muted);
    cursor: pointer;
    transition: color 0.2s, background 0.2s, transform 0.2s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.da-fav-btn:hover,
.da-fav-btn.active {
    color: #e11d48;
    transform: scale(1.12);
}

.da-fav-btn.active i { font-weight: 900; }

/* Corpo do card */
.da-prop-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.da-prop-loc {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--da-navy);
    margin: 0 0 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.da-prop-addr {
    font-size: 0.76rem;
    color: var(--da-muted);
    margin: 0 0 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Ícones de especificações */
.da-prop-specs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
    color: var(--da-muted);
    font-size: 0.76rem;
}

.da-prop-specs span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.da-prop-specs i {
    font-size: 0.70rem;
    color: var(--da-blue-mid);
}

/* Preço */
.da-prop-price {
    font-size: 0.80rem;
    color: var(--da-text);
    margin: 0 0 4px;
}

.da-prop-price strong {
    font-size: 0.95rem;
    color: var(--da-navy);
}

.da-prop-price small {
    font-size: 0.70rem;
    font-weight: 400;
    color: var(--da-muted);
}

.da-price-venda strong {
    font-size: 1.05rem;
    color: var(--da-navy);
}

/* Cond + IPTU */
.da-prop-extras {
    font-size: 0.72rem;
    color: var(--da-muted);
    margin: 0 0 12px;
    line-height: 1.5;
    flex: 1;
}

/* Botão mensagem */
.da-btn-msg {
    width: 100%;
    background: var(--da-blue);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.52rem;
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    margin-top: auto;
}

.da-btn-msg:hover {
    background: var(--da-blue-dark);
    transform: translateY(-1px);
}

/* Navegação externa do swiper */
.da-prop-nav {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 24px;
}

.da-nav-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--da-blue);
    background: transparent;
    color: var(--da-blue);
    font-size: 0.90rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.da-nav-arrow:hover {
    background: var(--da-blue);
    color: #fff;
}

.da-nav-arrow:disabled,
.da-nav-arrow.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
.da-footer {
    background: var(--da-navy);
    padding: 56px 0 0;
}

.da-footer-city {
    font-size: 1rem;
    font-weight: 700;
    color: var(--da-blue-mid);
    margin-bottom: 1.1rem;
}

.da-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.da-footer-links a {
    font-size: 0.80rem;
    color: rgba(255,255,255,0.58);
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.4;
}

.da-footer-links a:hover { color: #fff; }

.da-footer-hr {
    border-color: rgba(255,255,255,0.10);
    margin: 40px 0 0;
}

/* Bottom bar */
.da-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 20px 0 28px;
}

.da-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.da-logo-icon-sm {
    width: 36px !important;
    height: 36px !important;
    font-size: 1.05rem !important;
    border-radius: 10px !important;
}

.da-footer-logo .da-logo-name {
    color: #fff;
    font-size: 1.05rem;
}

.da-footer-copy {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.40);
    margin: 0;
}

.da-footer-socials {
    display: flex;
    gap: 10px;
}

.da-footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.20);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.da-footer-socials a:hover {
    background: var(--da-blue);
    border-color: var(--da-blue);
    color: #fff;
}

/* ============================================================
   RESPONSIVE EXTRAS
   ============================================================ */
@media (max-width: 991.98px) {
    .da-slide { height: 380px; }
    .da-slide-title { font-size: 1.30rem; }

    .da-footer-bottom { flex-direction: column; text-align: center; }
    .da-footer-logo { justify-content: center; }
    .da-footer-socials { justify-content: center; }
}

@media (max-width: 767.98px) {
    .da-slide { height: 300px; }
    .da-slide-title { font-size: 1.10rem; }
    .da-slide-sub { font-size: 0.82rem; }
    .da-btn-banner { font-size: 0.84rem; padding: 0.6rem 1.4rem; }

    .da-properties-section { padding: 40px 0 56px; }
    .da-prop-nav { justify-content: center; }
}

/* ============================================================
   PÁGINAS DE LISTAGEM  (abre-aluguel, abre-venda…)
   ============================================================ */

/* ── Mini hero / cabeçalho da listagem ───────────────────── */
.da-listing-head {
    background: linear-gradient(120deg, var(--da-navy) 0%, var(--da-blue-dark) 60%, var(--da-blue) 100%);
    padding: 40px 0 48px;
    position: relative;
    overflow: hidden;
}

.da-listing-head::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.da-listing-head .container { position: relative; z-index: 1; }

/* Breadcrumb */
.da-listing-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.80rem;
    color: rgba(255,255,255,0.60);
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.da-listing-breadcrumb a {
    color: rgba(255,255,255,0.60);
    text-decoration: none;
    transition: color 0.2s;
}

.da-listing-breadcrumb a:hover { color: #fff; }
.da-listing-breadcrumb i { font-size: 0.65rem; }
.da-listing-breadcrumb .current { color: rgba(255,255,255,0.90); font-weight: 500; }

/* Título da listagem */
.da-listing-title {
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px;
    line-height: 1.2;
}

.da-listing-subtitle {
    font-size: 0.90rem;
    color: rgba(255,255,255,0.65);
    margin: 0;
}

.da-listing-subtitle strong {
    color: #fcd34d;
    font-weight: 700;
}

/* ── Toolbar: resultado + ordenação ─────────────────────── */
.da-listing-toolbar {
    background: var(--da-white);
    border-bottom: 1px solid #e4eaf4;
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 90;
    box-shadow: 0 2px 12px rgba(29,95,206,0.06);
}

.da-toolbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.da-toolbar-count {
    font-size: 0.88rem;
    color: var(--da-muted);
}

.da-toolbar-count strong {
    color: var(--da-blue);
    font-size: 1rem;
}

.da-sort-form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.da-sort-label {
    font-size: 0.82rem;
    color: var(--da-muted);
    white-space: nowrap;
}

.da-sort-select {
    border: 1.5px solid #d0daea;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 0.84rem;
    color: var(--da-text);
    background: var(--da-white);
    outline: none;
    cursor: pointer;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6a80' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px;
}

.da-sort-select:focus { border-color: var(--da-blue); }

/* ── Grid de imóveis ─────────────────────────────────────── */
.da-listing-section {
    padding: 36px 0 56px;
    background: var(--da-bg);
    min-height: 50vh;
}

.da-listing-grid .da-prop-card {
    height: 100%; /* iguala alturas dentro da row */
}

/* ── Paginação ───────────────────────────────────────────── */
.da-pagination-wrap {
    margin-top: 36px;
}

.da-pagination-wrap .page_numbers { margin: 0; }

.da-pagination-wrap .pagination .page-link {
    color: var(--da-blue);
    border-color: #d0daea;
    border-radius: 8px;
    margin: 0 2px;
    transition: background 0.18s, color 0.18s;
}

.da-pagination-wrap .pagination .page-item.active .page-link {
    background: var(--da-blue);
    border-color: var(--da-blue);
    color: #fff;
}

.da-pagination-wrap .pagination .page-link:hover {
    background: var(--da-blue-light);
    color: var(--da-blue);
}

/* ── Mensagem sem resultados ─────────────────────────────── */
.da-no-results {
    text-align: center;
    padding: 64px 24px;
    color: var(--da-muted);
}

.da-no-results i {
    font-size: 3.5rem;
    color: #c5d3e8;
    margin-bottom: 20px;
    display: block;
}

.da-no-results h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--da-navy);
    margin-bottom: 8px;
}

@media (max-width: 767.98px) {
    .da-listing-head { padding: 28px 0 36px; }
    .da-listing-toolbar { position: static; }
    .da-toolbar-inner { justify-content: center; flex-direction: column; align-items: flex-start; }
}

/* ── Botão "Filtro avançado" na toolbar ──────────────────── */
.da-btn-filtros {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--da-white);
    border: 1.5px solid #d0daea;
    color: var(--da-text);
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 0.84rem;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    white-space: nowrap;
}

.da-btn-filtros:hover,
.da-btn-filtros.active {
    border-color: var(--da-blue);
    color: var(--da-blue);
    background: var(--da-blue-light);
}

.da-btn-filtros i { font-size: 0.80rem; }

.da-filtros-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--da-blue);
    color: #fff;
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    line-height: 1;
}

/* ── Atalhos de tipo (links do usuário) ──────────────────── */
.atalhos {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--da-white);
    border: 1.5px solid #d0daea;
    color: var(--da-text);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    margin-bottom: 6px;
}

.atalhos:hover {
    border-color: var(--da-blue);
    color: var(--da-blue);
    background: var(--da-blue-light);
}

/* ============================================================
   PAINEL DE FILTROS  (inc-busca.php)
   ============================================================ */
.da-filter-panel {
    background: var(--da-white);
    border-bottom: 1px solid #e4eaf4;
    padding: 24px 0;
    box-shadow: inset 0 4px 12px rgba(29,95,206,0.04);
}

.da-filter-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--da-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

/* Chips de tipo (radio buttons estilizados) */
.da-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.da-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--da-bg);
    border: 1.5px solid #d0daea;
    color: var(--da-text);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    user-select: none;
}

.da-chip:hover { border-color: var(--da-blue-mid); color: var(--da-blue); }

.da-chip.active {
    background: var(--da-blue);
    border-color: var(--da-blue);
    color: #fff;
}

/* Select do filtro */
.da-filter-select {
    width: 100%;
    border: 1.5px solid #d0daea;
    border-radius: 10px;
    padding: 9px 14px;
    font-size: 0.86rem;
    color: var(--da-text);
    background: var(--da-bg);
    outline: none;
    cursor: pointer;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6a80' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-color: var(--da-bg);
    padding-right: 32px;
}

.da-filter-select:focus { border-color: var(--da-blue); background-color: var(--da-white); }

.da-filter-select:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    background-image: none;
}

/* Input de texto/número do filtro */
.da-filter-input {
    width: 100%;
    border: 1.5px solid #d0daea;
    border-radius: 10px;
    padding: 9px 14px;
    font-size: 0.86rem;
    color: var(--da-text);
    background: var(--da-bg);
    outline: none;
    transition: border-color 0.2s;
}

.da-filter-input:focus { border-color: var(--da-blue); background: var(--da-white); }
.da-filter-input::placeholder { color: #aab4c4; }

/* Botões de número (quartos, suítes, vagas) */
.da-filter-num-btns {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.da-num-btn {
    min-width: 42px;
    padding: 7px 10px;
    border: 1.5px solid #d0daea;
    border-radius: 8px;
    background: var(--da-bg);
    color: var(--da-text);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    line-height: 1;
}

.da-num-btn:hover { border-color: var(--da-blue-mid); color: var(--da-blue); }

.da-num-btn.active {
    background: var(--da-blue);
    border-color: var(--da-blue);
    color: #fff;
}

/* Toggle pet */
.da-filter-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    margin-top: 4px;
}

.da-filter-toggle input[type="checkbox"] { display: none; }

.da-toggle-track {
    width: 40px;
    height: 22px;
    border-radius: 50px;
    background: #d0daea;
    position: relative;
    flex-shrink: 0;
    transition: background 0.2s;
}

.da-toggle-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.18);
    transition: left 0.2s;
}

.da-filter-toggle input:checked ~ .da-toggle-track { background: var(--da-blue); }
.da-filter-toggle input:checked ~ .da-toggle-track .da-toggle-thumb { left: 21px; }

.da-toggle-label { font-size: 0.86rem; color: var(--da-text); font-weight: 500; }

/* Rodapé do painel de filtros */
.da-filter-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 8px;
    border-top: 1px solid #e8edf5;
    margin-top: 8px;
    flex-wrap: wrap;
}

.da-btn-apply {
    background: linear-gradient(135deg, var(--da-blue), var(--da-blue-dark));
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 9px 24px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
}

.da-btn-apply:hover { opacity: 0.90; transform: translateY(-1px); }

.da-btn-clear-filters {
    background: none;
    border: none;
    color: var(--da-muted);
    font-size: 0.84rem;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    padding: 0;
}

.da-btn-clear-filters:hover { color: var(--da-text); }

@media (max-width: 767.98px) {
    .da-filter-panel { padding: 20px 0; }
    .da-filter-footer { justify-content: stretch; }
    .da-btn-apply { width: 100%; justify-content: center; }
}

@media (max-width: 575.98px) {
    .da-slide-overlay {
        background: linear-gradient(
            180deg,
            var(--slide-color1, #4a1899) 0%,
            rgba(80,30,160,0.80) 60%,
            rgba(0,0,0,0.40) 100%
        ) !important;
    }
}

.atalhos {
    background: var(--da-white);
    color: var(--da-blue);
    border-radius: 20px;
    padding: 5px 10px;
    text-decoration: none;
    transition: color 0.2s;
    margin-right: 10px;
}

.atalhos:hover {
    color: var(--da-white);
    background: var(--da-blue);
}

.atalhos:hover span {
    color: var(--da-white);
    background: var(--da-blue-dark);
}

/* ============================================================
   PÁGINA DE DETALHE DO IMÓVEL  (abre-imoveis.php)
   ============================================================ */

/* ── Galeria principal ───────────────────────────────────── */
.da-imovel-galeria {
    position: relative;
    background: #111;
    height: 520px;
    overflow: hidden;
}

.da-imovel-swiper {
    width: 100%;
    height: 100%;
}

/* Todos os slides: levemente menores e escurecidos */
.da-imovel-swiper .swiper-slide {
    transition: transform 0.4s ease, opacity 0.4s ease;
    transform: scale(0.92);
    opacity: 0.55;
    cursor: pointer;
}

/* Slide central (ativo): destaque total */
.da-imovel-swiper .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
}

/* Slides adjacentes: meio-termo */
.da-imovel-swiper .swiper-slide-prev,
.da-imovel-swiper .swiper-slide-next {
    transform: scale(0.96);
    opacity: 0.75;
}

.da-imovel-slide {
    overflow: hidden;
    height: 100%;
    border-radius: 10px;
}

.da-imovel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.da-imovel-swiper .swiper-slide-active .da-imovel-slide img:hover {
    transform: scale(1.03);
}

/* Botões de navegação personalizados */
.da-imovel-swiper .swiper-button-next,
.da-imovel-swiper .swiper-button-prev {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.92);
    border-radius: 50%;
    color: var(--da-navy);
    box-shadow: 0 2px 10px rgba(0,0,0,0.25);
    transition: background 0.2s, transform 0.2s;
}

.da-imovel-swiper .swiper-button-next:hover,
.da-imovel-swiper .swiper-button-prev:hover {
    background: #fff;
    transform: scale(1.08);
}

.da-imovel-swiper .swiper-button-next::after,
.da-imovel-swiper .swiper-button-prev::after {
    font-size: 1rem;
    font-weight: 900;
}

.da-imovel-swiper .swiper-pagination-bullet {
    background: rgba(255,255,255,0.55);
    opacity: 1;
}

.da-imovel-swiper .swiper-pagination-bullet-active {
    background: #fff;
    transform: scale(1.3);
}

/* Contador de fotos */
.da-slide-count {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 50px;
    z-index: 10;
    backdrop-filter: blur(8px);
    letter-spacing: 0.4px;
    pointer-events: none;
}

/* Botão "Ver todas as fotos" */
.da-galeria-todas {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.92);
    border: none;
    border-radius: 50px;
    color: var(--da-navy);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 8px 20px;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.20);
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}

.da-galeria-todas:hover {
    background: #fff;
    transform: translateX(-50%) translateY(-2px);
}

/* Placeholder sem foto */
.da-imovel-no-foto {
    height: 320px;
    background: linear-gradient(135deg, var(--da-navy) 0%, var(--da-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.20);
    font-size: 6rem;
}

/* ── Conteúdo principal ──────────────────────────────────── */
.da-imovel-section {
    padding: 44px 0 64px;
}

/* Breadcrumb */
.da-imovel-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.79rem;
    color: var(--da-muted);
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.da-imovel-breadcrumb a {
    color: var(--da-blue);
    text-decoration: none;
}

.da-imovel-breadcrumb a:hover { text-decoration: underline; }

.da-imovel-breadcrumb .current { color: var(--da-muted); }

/* Código de referência */
.da-imovel-ref {
    display: inline-block;
    background: var(--da-bg);
    border: 1px solid #dde4ef;
    color: var(--da-muted);
    font-size: 0.70rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    padding: 3px 10px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
}

/* Título */
.da-imovel-title {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--da-navy);
    line-height: 1.22;
    margin-bottom: 8px;
}

/* Localização */
.da-imovel-location {
    font-size: 0.88rem;
    color: var(--da-muted);
    margin-bottom: 20px;
}

/* Especificações */
.da-imovel-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
    padding: 16px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 28px;
}

.da-imovel-spec {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.90rem;
    color: var(--da-navy);
    font-weight: 500;
}

.da-imovel-spec i {
    color: var(--da-blue);
    width: 16px;
    text-align: center;
    font-size: 0.88rem;
}

/* Bloco de preço */
.da-imovel-price-block {
    background: var(--da-blue-light);
    border-left: 4px solid var(--da-blue);
    border-radius: 0 14px 14px 0;
    padding: 18px 22px;
    margin-bottom: 28px;
}

.da-price-venda {
    background: #fff5ed;
    border-left-color: #f97316;
}

.da-imovel-price-label {
    font-size: 0.70rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: var(--da-muted);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.da-imovel-price-val {
    font-size: 2rem;
    font-weight: 900;
    color: var(--da-navy);
    line-height: 1;
    margin-bottom: 8px;
}

.da-imovel-price-val small {
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--da-muted);
}

.da-imovel-price-extras {
    font-size: 0.78rem;
    color: var(--da-muted);
    margin: 0;
}

/* Descrição */
.da-imovel-desc-title {
    font-size: 1.10rem;
    font-weight: 700;
    color: var(--da-navy);
    margin-bottom: 14px;
}

.da-imovel-desc {
    font-size: 0.92rem;
    color: #4a5568;
    line-height: 1.80;
    margin-bottom: 36px;
}

/* Mapa */
#gmp-map {
    width: 100%;
    height: 320px;
    border-radius: 14px;
    overflow: hidden;
    margin-top: 8px;
    margin-bottom: 32px;
    box-shadow: 0 4px 16px rgba(13,45,90,0.10);
}

/* Tour 360 */
.da-embed360 {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 14px;
    margin: 8px 0 36px;
    box-shadow: 0 4px 16px rgba(13,45,90,0.10);
}

.da-embed360 iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
}

/* ── Sidebar ─────────────────────────────────────────────── */
.da-imovel-sidebar {
    position: sticky;
    top: 80px;
}

.da-sidebar-card {
    background: var(--da-white);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(13,45,90,0.09);
    padding: 24px;
    margin-bottom: 20px;
}

.da-sidebar-card-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--da-navy);
    margin-bottom: 14px;
}

.da-form-input {
    display: block;
    width: 100%;
    border: 1.5px solid #dde4ef;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.86rem;
    color: var(--da-text);
    background: var(--da-bg);
    transition: border-color 0.2s, box-shadow 0.2s;
    margin-bottom: 12px;
    outline: none;
    font-family: inherit;
}

.da-form-input:focus {
    border-color: var(--da-blue);
    box-shadow: 0 0 0 3px rgba(29,95,206,0.10);
    background: var(--da-white);
}

.da-form-input::placeholder { color: #b0bbc9; }

.da-btn-enviar {
    display: block;
    width: 100%;
    background: var(--da-blue);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    font-family: inherit;
}

.da-btn-enviar:hover {
    background: var(--da-blue-dark);
    transform: translateY(-1px);
}

.da-btn-whats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #22c55e;
    color: #fff;
    border-radius: 10px;
    padding: 11px 16px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    margin-top: 10px;
}

.da-btn-whats i { font-size: 1.1rem; }

.da-btn-whats:hover {
    background: #16a34a;
    color: #fff;
    transform: translateY(-1px);
}

.da-btn-mellro {
    display: block;
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    color: #fff;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.88rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: filter 0.2s, transform 0.15s;
}

.da-btn-mellro:hover {
    filter: brightness(1.08);
    color: #fff;
    transform: translateY(-1px);
}

/* ── Imóveis relacionados ────────────────────────────────── */
.da-relacionados {
    background: var(--da-bg);
    padding: 52px 0 64px;
}

.da-relacionados-title {
    font-size: 1.40rem;
    font-weight: 800;
    color: var(--da-navy);
    margin-bottom: 28px;
}

/* ── Responsivo ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .da-imovel-galeria { height: 420px; }
    .da-imovel-sidebar { position: static; }
    /* No tablet (2 slides): slides inativos menos retraídos */
    .da-imovel-swiper .swiper-slide { transform: scale(0.94); opacity: 0.60; }
    .da-imovel-swiper .swiper-slide-active { transform: scale(1); opacity: 1; }
    .da-imovel-swiper .swiper-slide-prev,
    .da-imovel-swiper .swiper-slide-next { transform: scale(0.97); opacity: 0.78; }
}

@media (max-width: 575.98px) {
    .da-imovel-galeria { height: 300px; }
    .da-imovel-no-foto { height: 220px; }
    /* Mobile (1 slide): sem efeito de escala lateral */
    .da-imovel-swiper .swiper-slide { transform: scale(1); opacity: 1; }
    .da-imovel-slide { border-radius: 0; }
}

@media (max-width: 767.98px) {
    .da-imovel-title { font-size: 1.30rem; }
    .da-imovel-price-val { font-size: 1.60rem; }
    .da-galeria-todas { font-size: 0.76rem; padding: 7px 14px; }
}

/* ============================================================
   PÁGINA SOBRE  (abre-sobre.php)
   ============================================================ */

/* ── Hero — sobrepõe levemente o da-listing-head padrão ─── */
.da-sobre-hero { padding-bottom: 64px; }

/* ── Seção de conteúdo principal ────────────────────────── */
.da-sobre-section {
    padding: 64px 0 56px;
    background: var(--da-white);
}

/* Wrapper da imagem com decoração geométrica */
.da-sobre-img-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}

.da-sobre-img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    box-shadow: 0 16px 48px rgba(13,45,90,0.14);
    position: relative;
    z-index: 1;
}

.da-sobre-img-deco {
    position: absolute;
    width: 60%;
    height: 60%;
    background: var(--da-blue-light);
    border-radius: 20px;
    bottom: -18px;
    right: -18px;
    z-index: 0;
}

/* Conteúdo textual (vem do banco) */
.da-sobre-content {
    font-size: 0.96rem;
    line-height: 1.82;
    color: #3d4f66;
}

.da-sobre-content h2,
.da-sobre-content h3 { color: var(--da-navy); font-weight: 700; margin-bottom: .6rem; }

.da-sobre-content p { margin-bottom: 1.1rem; }

.da-sobre-content ul,
.da-sobre-content ol { padding-left: 1.4rem; margin-bottom: 1.1rem; }

/* ── Números / estatísticas ──────────────────────────────── */
.da-sobre-stats {
    background: linear-gradient(120deg, var(--da-navy) 0%, var(--da-blue-dark) 55%, var(--da-blue) 100%);
    padding: 52px 0;
}

.da-stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.da-stat-num {
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -1px;
}

.da-stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
    text-align: center;
}

/* ── Como funciona ───────────────────────────────────────── */
.da-sobre-como {
    padding: 72px 0 64px;
    background: var(--da-bg);
}

/* Labels de seção */
.da-sobre-section-label {
    display: inline-block;
    background: var(--da-blue-light);
    color: var(--da-blue);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.da-sobre-section-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--da-navy);
    margin-bottom: 10px;
}

.da-sobre-section-sub {
    font-size: 0.94rem;
    color: var(--da-muted);
    margin-bottom: 0;
    max-width: 520px;
}

/* Cards de passo */
.da-como-card {
    background: var(--da-white);
    border-radius: 18px;
    padding: 28px 24px;
    height: 100%;
    box-shadow: 0 4px 18px rgba(13,45,90,0.07);
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
    overflow: hidden;
}

.da-como-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(13,45,90,0.12);
}

.da-como-num {
    font-size: 3rem;
    font-weight: 900;
    color: var(--da-blue-light);
    line-height: 1;
    margin-bottom: 16px;
    font-family: 'Segoe UI', sans-serif;
}

.da-como-icon {
    width: 48px;
    height: 48px;
    background: var(--da-blue-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--da-blue);
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.da-como-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--da-navy);
    margin-bottom: 10px;
}

.da-como-text {
    font-size: 0.86rem;
    color: var(--da-muted);
    line-height: 1.65;
    margin: 0;
}

/* ── Diferenciais ────────────────────────────────────────── */
.da-sobre-diffs {
    padding: 72px 0 64px;
    background: var(--da-white);
}

.da-diff-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    border: 1px solid #eaf0f8;
    border-radius: 16px;
    height: 100%;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.da-diff-item:hover {
    border-color: var(--da-blue-light);
    box-shadow: 0 4px 16px rgba(29,95,206,0.08);
}

.da-diff-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    background: var(--da-blue-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--da-blue);
    font-size: 1.15rem;
}

.da-diff-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--da-navy);
    margin-bottom: 6px;
}

.da-diff-text {
    font-size: 0.83rem;
    color: var(--da-muted);
    line-height: 1.60;
    margin: 0;
}

/* ── CTA ─────────────────────────────────────────────────── */
.da-sobre-cta {
    padding: 56px 0 64px;
    background: var(--da-bg);
}

.da-sobre-cta-inner {
    background: linear-gradient(120deg, var(--da-navy) 0%, var(--da-blue-dark) 55%, var(--da-blue) 100%);
    border-radius: 24px;
    padding: 48px 48px;
    position: relative;
    overflow: hidden;
}

.da-sobre-cta-inner::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}

.da-cta-title {
    font-size: 1.55rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.da-cta-sub {
    font-size: 0.90rem;
    color: rgba(255,255,255,0.70);
    margin: 0;
}

.da-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, filter 0.2s;
    white-space: nowrap;
}

.da-cta-btn:hover { transform: translateY(-2px); filter: brightness(1.08); }

.da-cta-btn-primary {
    background: #fff;
    color: var(--da-navy);
}

.da-cta-btn-whats {
    background: #22c55e;
    color: #fff;
}

/* ── Responsivo ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .da-sobre-img-deco { display: none; }
    .da-sobre-cta-inner { padding: 36px 28px; }
    .da-sobre-section-title { font-size: 1.45rem; }
    .da-cta-title { font-size: 1.30rem; }
}

@media (max-width: 767.98px) {
    .da-sobre-section { padding: 44px 0 36px; }
    .da-sobre-como,
    .da-sobre-diffs { padding: 48px 0 40px; }
    .da-stat-num { font-size: 2rem; }
    .da-sobre-cta-inner { padding: 28px 20px; }
    .da-cta-btn { width: 100%; justify-content: center; }
}

/*404*/
.da-404-main {
    min-height: calc(100vh - 220px);
    background: #f8f9fa;
}
.da-404-code {
    font-size: clamp(6rem, 20vw, 12rem);
    font-weight: 800;
    line-height: 1;
    color: var(--da-primary, #2563eb);
    opacity: .12;
    letter-spacing: -4px;
    user-select: none;
    margin-bottom: -1rem;
}
.da-404-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: .75rem;
}
.da-404-desc {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.7;
}
.da-btn-primary {
    background: var(--da-primary, #2563eb);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: opacity .2s;
}
.da-btn-primary:hover { opacity: .88; color: #fff; }
.da-btn-outline {
    border: 2px solid var(--da-primary, #2563eb);
    color: var(--da-primary, #2563eb);
    border-radius: 8px;
    font-weight: 600;
    background: transparent;
    transition: background .2s, color .2s;
}
.da-btn-outline:hover {
    background: var(--da-primary, #2563eb);
    color: #fff;
}
.da-footer-logo-img {
    max-width: 120px;    
    filter: brightness(0) invert(1) !important;
    transition: filter 0.2s;
}
