/* PALETA - Primeira Posição */
:root {
    --ink: #0D1630;
    --ink-white: #ffffff;
    --ink-80: rgba(20,20,20,.80);
    --ink-40: rgba(20,20,20,.40);
    --ink-12: rgba(20,20,20,.12);
    --gold: #E8A020;
    --gold-d: #C48000;
    --gold-l: rgba(232,160,32,0.15);
    --cream: #f9f9f9;
    --cream-d: #f1f1f1;
    --white: #FFFFFF;
    --sans: 'Roboto', sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--sans);
    background: var(--cream);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden
}

/* TOPBAR */
.topbar {
    background: var(--ink);
    padding: 6px 0;
    font-size: 13px;
    color: rgba(245,240,232,.6)
}

    .topbar .wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        flex-wrap: wrap
    }

    .topbar a {
        color: rgba(245,240,232,.6);
        text-decoration: none
    }

        .topbar a:hover {
            color: var(--gold)
        }

.tb-links {
    display: flex;
    gap: 20px
}

.tb-apps {
    display: flex;
    gap: 12px
}

.tb-pill {
    background: rgba(245,240,232,.08);
    border: 1px solid rgba(245,240,232,.15);
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 12px;
    color: var(--cream)
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--ink-12);
    display: block !important;
}

    .navbar .wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 85px
    }

.logo {
    font-weight: 900;
    font-size: 20px;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.5px;
    cursor: pointer
}

    .logo span {
        color: var(--gold)
    }

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin-bottom: inherit;
}

    .nav-links a {
        font-size: 14px;
        font-weight: 500;
        color: var(--ink-80);
        text-decoration: none;
        transition: color .2s;
        cursor: pointer
    }

        .nav-links a:hover {
            color: var(--gold-d)
        }

.nav-cta {
    background: var(--ink);
    color: var(--cream) !important;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background .2s,transform .15s;
    cursor: pointer;
    border: none;
    display: inline-block
}

    .nav-cta:hover {
        background: var(--gold-d);
        transform: translateY(-1px)
    }

/* LAYOUT */
.wrap {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 32px
}

section {
    padding: 110px 0
}

.icon-red {
    color: #dd1c1c
}

.icon-phone {
    color: #1A2B5A
}

.icon-whatsapp {
    color: #1a9c4f
}

.icon-email {
    color: #383535
}

/* SECTION LABELS */
.sec-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold-d);
    margin-bottom: 10px
}

.sec-title {
    font-size: clamp(1.8rem,3vw,2.6rem);
    font-weight: 900;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -0.5px
}

.sec-sub {
    font-size: 16px;
    color: var(--ink-80);
    max-width: 500px;
    margin-top: 10px;
    font-weight: 300
}

/* HERO */
.hero {
    background: var(--ink);
    padding: 100px 0 80px;
    overflow: hidden;
    position: relative
}

.hero-deco {
    position: absolute;
    right: -60px;
    top: -80px;
    width: 540px;
    height: 540px;
    border-radius: 50%;
    border: 120px solid rgba(232,160,32,.06);
    pointer-events: none
}

.hero-deco2 {
    position: absolute;
    left: -100px;
    bottom: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 80px solid rgba(245,240,232,.03);
    pointer-events: none
}

.hero .wrap {
    position: relative;
    z-index: 1
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(232,160,32,.15);
    border: 1px solid rgba(232,160,32,.3);
    color: var(--gold);
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 24px;
    letter-spacing: .04em;
    text-transform: uppercase
}

.hero h1 {
    font-size: clamp(2.4rem,5vw,4rem);
    font-weight: 900;
    color: var(--cream);
    line-height: 1.12;
    letter-spacing: -1px;
    max-width: 700px;
    margin-bottom: 20px
}

    .hero h1 em {
        font-style: normal;
        color: var(--gold)
    }

.hero p {
    font-size: 18px;
    color: rgba(245,240,232,.6);
    max-width: 480px;
    margin-bottom: 40px;
    font-weight: 300
}

.search-bar {
    display: flex;
    background: var(--white);
    border-radius: 50px;
    overflow: hidden;
    max-width: 620px;
    box-shadow: 0 0 0 4px rgba(232,160,32,.18)
}

    .search-bar input {
        flex: 1;
        border: none;
        outline: none;
        padding: 14px 24px;
        font-family: var(--sans);
        font-size: 15px;
        color: var(--ink);
        background: transparent
    }

        .search-bar input::placeholder {
            color: rgba(20,20,20,.4)
        }

.search-tabs {
    display: flex;
    align-items: center;
    border-left: 1px solid var(--ink-12);
    padding: 0 4px;
    gap: 2px
}

.stab {
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--ink-80);
    border-radius: 20px;
    cursor: pointer;
    transition: background .15s,color .15s;
    white-space: nowrap;
    border: none;
    background: transparent
}

    .stab.active, .stab:hover {
        background: var(--gold-l);
        color: var(--gold-d)
    }

.search-btn {
    background: var(--gold);
    color: var(--ink);
    border: none;
    padding: 12px 24px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 0 50px 50px 0;
    margin: 4px;
    transition: background .2s
}

    .search-btn:hover {
        background: var(--gold-d);
        color: var(--white)
    }

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    flex-wrap: wrap
}

.hstat {
    display: flex;
    flex-direction: column
}

    .hstat strong {
        font-size: 2rem;
        font-weight: 900;
        color: var(--cream);
        line-height: 1
    }

    .hstat span {
        font-size: 13px;
        color: rgba(245,240,232,.45);
        margin-top: 4px
    }

/* ALPHA */
.alpha-scroll {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 32px 0
}

    .alpha-scroll a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 8px;
        background: var(--white);
        border: 1px solid var(--ink-12);
        font-weight: 700;
        font-size: 13px;
        color: var(--ink-80);
        text-decoration: none;
        transition: background .15s,color .15s,border-color .15s;
        cursor: pointer
    }

        .alpha-scroll a:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--ink)
        }

/* CAT GRID */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(210px,1fr));
    gap: 16px;
    margin-top: 8px
}

.cat-card {
    min-height: 160px;
    background: var(--white);
    border: 1px solid var(--ink-12);
    border-radius: var(--radius);
    padding: 20px 20px 16px;
    cursor: pointer;
    transition: border-color .2s,transform .2s,box-shadow .2s;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-decoration: none;
    color: inherit
}

    .cat-card:hover {
        border-color: var(--gold);
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(20,20,20,.08)
    }

.cat-icon {
    width: 40px;
    height: 40px;
    background: var(--gold-l);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px
}

.cat-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.3
}

.cat-arrow {
    font-size: 18px;
    color: var(--ink-12);
    margin-top: auto;
    transition: color .2s
}

.cat-card:hover .cat-arrow {
    color: var(--gold)
}

/* SOBRE */
.sobre {
    background: var(--white)
}

    .sobre .wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center
    }

.sobre-img {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--cream-d)
}

.sobre-img-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,var(--ink) 0%,#1A2B5A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    font-weight: 900;
    color: var(--gold);
    opacity: .18;
    letter-spacing: -4px
}

.sobre-badge-float {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--gold);
    color: var(--ink);
    font-weight: 900;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 8px
}

.sobre-text .sec-title {
    margin-bottom: 20px
}

.sobre-text p {
    font-size: 15px;
    color: var(--ink-80);
    margin-bottom: 16px;
    font-weight: 300;
    line-height: 1.7
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ink);
    color: var(--cream);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 8px;
    transition: background .2s;
    cursor: pointer;
    border: none
}

    .btn-primary:hover {
        background: var(--gold-d);
        color: var(--white)
    }

/* MÉTRICAS */
.metricas {
    background: var(--ink);
    padding: 60px 0
}

    .metricas .wrap {
        display: grid;
        grid-template-columns: repeat(4,1fr);
        gap: 8px
    }

.met-card {
    text-align: center;
    padding: 32px 16px;
    border-right: 1px solid rgba(245,240,232,.08)
}

    .met-card:last-child {
        border-right: none
    }

.met-num {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px
}

.met-label {
    font-size: 13px;
    color: rgba(245,240,232,.80)
}

/* VANTAGENS */
.adv-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
    margin-top: 48px
}

.adv-card {
    background: var(--white);
    border: 1px solid var(--ink-12);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: border-color .2s,box-shadow .2s
}

    .adv-card:hover {
        border-color: var(--gold);
        box-shadow: 0 6px 28px rgba(20,20,20,.07)
    }

.adv-num {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold-d);
    line-height: 1;
    margin-bottom: 16px
}

.adv-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.3
}

.adv-card p {
    font-size: 14px;
    color: var(--ink-80);
    font-weight: 300;
    line-height: 1.65
}

/* CONTATO */
.contato .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start
}

.contato-info .sec-title {
    margin-bottom: 16px
}

.contato-info p {
    font-size: 15px;
    color: var(--ink-80);
    font-weight: 300;
    margin-bottom: 32px;
    line-height: 1.7
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.ci {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--ink-80)
}

.ci-icon {
    width: 40px;
    height: 40px;
    background: #e3e3e3;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0
}

.form-card {
    background: var(--white);
    border: 1px solid var(--ink-12);
    border-radius: var(--radius-lg);
    padding: 36px
}

    .form-card h3 {
        font-weight: 700;
        font-size: 1.2rem;
        margin-bottom: 24px
    }

.form-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px
}

    .form-row label {
        font-size: 13px;
        font-weight: 500;
        color: var(--ink-80)
    }

    .form-row input, .form-row textarea {
        width: 100%;
        border: 1px solid var(--ink-12);
        border-radius: 8px;
        padding: 10px 14px;
        font-family: var(--sans);
        font-size: 14px;
        color: var(--ink);
        outline: none;
        background: var(--cream);
        transition: border-color .2s
    }

        .form-row input:focus, .form-row textarea:focus {
            border-color: var(--gold);
            background: var(--white)
        }

    .form-row textarea {
        min-height: 100px;
        resize: vertical
    }

.form-note {
    font-size: 12px;
    color: rgba(20,20,20,.35);
    margin-bottom: 16px
}

.btn-submit {
    width: 100%;
    background: var(--gold);
    color: var(--ink);
    border: none;
    padding: 14px;
    border-radius: 30px;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s,transform .15s
}

    .btn-submit:hover {
        background: var(--gold-d);
        color: var(--white);
        transform: translateY(-1px)
    }

/* ANUNCIANTES */
.clients-strip {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 40px
}

.client-logo {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--ink)
}

/* SEARCH PAGE */
.search-header {
    background: var(--ink);
    padding: 48px 0 32px;
    position: relative;
    overflow: hidden
}

    .search-header .hero-deco {
        width: 300px;
        height: 300px;
        right: -40px;
        top: -60px;
        border-width: 60px
    }

    .search-header .wrap {
        position: relative;
        z-index: 1
    }

    .search-header h2 {
        font-size: 1.5rem;
        font-weight: 900;
        color: var(--cream);
        margin-bottom: 20px
    }

    .search-header .search-bar {
        max-width: 700px;
        box-shadow: 0 0 0 3px rgba(232,160,32,.2)
    }

.results-layout {
    display: block;
    gap: 32px;
    padding: 40px 0 80px
}

/* SIDEBAR FILTERS */
.filters {
    background: var(--white);
    border: 1px solid var(--ink-12);
    border-radius: var(--radius-lg);
    padding: 24px;
    height: fit-content;
    position: sticky;
    top: 84px
}

    .filters h4 {
        font-size: 14px;
        font-weight: 700;
        color: var(--ink);
        margin-bottom: 16px;
        padding-bottom: 12px;
        border-bottom: 1px solid var(--ink-12)
    }

.filter-group {
    margin-bottom: 20px
}

    .filter-group label {
        font-size: 13px;
        font-weight: 500;
        color: var(--ink-80);
        margin-bottom: 8px;
        display: block
    }

    .filter-group select, .filter-group input[type="text"] {
        width: 100%;
        border: 1px solid var(--ink-12);
        border-radius: 8px;
        padding: 8px 12px;
        font-family: var(--sans);
        font-size: 13px;
        color: var(--ink);
        background: var(--cream);
        outline: none
    }

        .filter-group select:focus, .filter-group input:focus {
            border-color: var(--gold)
        }

.filter-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--ink-80);
    margin-bottom: 8px;
    cursor: pointer
}

    .filter-check input {
        accent-color: var(--gold);
        width: 14px;
        height: 14px
    }

.btn-filter {
    width: 100%;
    background: var(--gold);
    border: none;
    border-radius: 20px;
    padding: 10px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    margin-top: 8px;
    transition: background .2s
}

    .btn-filter:hover {
        background: var(--gold-d);
        color: var(--white)
    }

/* RESULTS */
.results-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px
}

.results-count {
    font-size: 14px;
    color: var(--ink-80)
}

    .results-count strong {
        color: var(--ink);
        font-weight: 700
    }

.sort-select {
    border: 1px solid var(--ink-12);
    border-radius: 20px;
    padding: 6px 14px;
    font-family: var(--sans);
    font-size: 13px;
    color: var(--ink);
    background: var(--white);
    outline: none;
    cursor: pointer
}

.results-list {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.result-card {
    background: var(--white);
    border: 1px solid var(--ink-12);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: start;
    transition: border-color .2s,box-shadow .2s;
}

    .result-card:hover {
        border-color: var(--gold);
        box-shadow: 0 6px 24px rgba(20,20,20,.07)
    }

    .result-card h3 {
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--ink);
        margin-bottom: 6px;
        line-height: 1.3
    }

        .result-card h3 a {
            color: var(--ink);
            text-decoration: none
        }

            .result-card h3 a:hover {
                color: var(--gold-d)
            }

.result-cat-badge {
    display: inline-block;
    background: var(--gold-l);
    color: var(--gold-d);
    font-size: 11px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 12px;
    margin-bottom: 10px;
    letter-spacing: .02em
}

.result-addr {
    font-size: 13px;
    color: var(--ink-80);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px
}

.result-phone {
    font-size: 13px;
    color: var(--ink-80);
    display: flex;
    align-items: center;
    gap: 6px
}

.result-features {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap
}

.feat-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid var(--ink-12);
    color: var(--ink-80)
}

    .feat-badge.has {
        background: rgba(232,160,32,.08);
        border-color: rgba(232,160,32,.3);
        color: var(--gold-d)
    }

.result-card-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end
}

.btn-detail {
    background: var(--ink);
    color: var(--cream);
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block
}

    .btn-detail:hover {
        background: var(--gold-d);
        color: var(--white)
    }

.btn-wa {
    background: rgba(37,211,102,.12);
    color: #1a9c4f;
    border: 1px solid rgba(37,211,102,.25);
    padding: 8px 18px;
    border-radius: 20px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block
}

    .btn-wa:hover {
        background: rgba(37,211,102,.22);
        color: #1a9c4f
    }

.btn-map {
    background: rgba(26,43,90,.1);
    color: #1A2B5A;
    border: 1px solid rgba(26,43,90,.2);
    padding: 8px 18px;
    border-radius: 20px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block
}

    .btn-map:hover {
        background: rgba(26,43,90,.2);
        color: #1A2B5A
    }

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px
}

.page-btn {
    width: 90px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid var(--ink-12);
    background: var(--white);
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-80);
    cursor: pointer;
    transition: background .15s;
    text-decoration: none
}

    .page-btn.active, .page-btn:hover {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--ink)
    }

.no-results {
    text-align: center;
    padding: 80px 0
}

    .no-results h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--ink);
        margin-bottom: 12px
    }

    .no-results p {
        font-size: 15px;
        color: var(--ink-80);
        font-weight: 300
    }

.justify-content-between {
    justify-content: space-between !important;
}

.d-flex {
    display: flex !important;
}

/* DETAIL PAGE */
.detail-header {
    background: var(--ink);
    padding: 40px 0 32px;
    position: relative;
    overflow: hidden
}

    .detail-header .hero-deco {
        width: 280px;
        height: 280px;
        border-width: 55px
    }

    .detail-header .wrap {
        position: relative;
        z-index: 1
    }

.back-btn {
    background: #1A2B5A;
    color: var(--cream) !important;
    padding: 8px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background .2s, transform .15s;
    cursor: pointer;
    border: none;
    display: inline-block;
}

    .back-btn:hover {
        background: var(--gold);
        color: var(--ink) !important
    }

.detail-header h1 {
    font-size: clamp(1.6rem,3vw,2.4rem);
    font-weight: 900;
    color: var(--cream);
    line-height: 1.2;
    max-width: 700px;
    margin-bottom: 8px
}

.detail-breadcrumb {
    font-size: 13px;
    color: rgba(245,240,232,.45)
}

    .detail-breadcrumb a {
        color: rgba(245,240,232,.5);
        text-decoration: none
    }

        .detail-breadcrumb a:hover {
            color: var(--gold)
        }

    .detail-breadcrumb span {
        color: rgba(245,240,232,.25);
        margin: 0 6px
    }

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 32px;
    padding: 40px 0 80px
}

.detail-card {
    background: var(--white);
    border: 1px solid var(--ink-12);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 20px
}

    .detail-card h3 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--ink);
        margin-bottom: 20px;
        padding-bottom: 12px;
        border-bottom: 1px solid var(--ink-12)
    }

.info-grid {
    display: grid;
    gap: 20px;
}

.info-padding {
    padding-bottom: 10px;
}

.info-columns {
    grid-template-columns: 1fr 1fr;
}

.info-item .info-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--ink-40);
    margin-bottom: 4px
}

.info-item .info-value {
    font-size: 14px;
    color: var(--ink-80);
    font-weight: 400;
    line-height: 1.5
}

    .info-item .info-value a {
        color: var(--gold-d);
        text-decoration: none
    }

        .info-item .info-value a:hover {
            text-decoration: underline
        }

.social-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 4px
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid;
    transition: opacity .2s
}

    .social-btn:hover {
        opacity: .8
    }

    .social-btn.ig {
        background: rgba(228,64,95,.08);
        color: #e4405f;
        border-color: rgba(228,64,95,.2)
    }

    .social-btn.fb {
        background: rgba(24,119,242,.08);
        color: #1877f2;
        border-color: rgba(24,119,242,.2)
    }

    .social-btn.yt {
        background: rgba(255,0,0,.08);
        color: #ff0000;
        border-color: rgba(255,0,0,.2)
    }

    .social-btn.li {
        background: rgba(10,102,194,.08);
        color: #0a66c2;
        border-color: rgba(10,102,194,.2)
    }

    .social-btn.site {
        background: rgba(20,20,20,.06);
        color: var(--ink);
        border-color: var(--ink-12)
    }

    .social-btn.tt {
        background: rgba(0,0,0,.06);
        color: #000;
        border-color: rgba(0,0,0,.18)
    }

    .social-btn.xt {
        background: rgba(0,0,0,.06);
        color: #000;
        border-color: rgba(0,0,0,.18)
    }

.map-placeholder {
    background: var(--cream-d);
    border-radius: var(--radius);
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--ink-40);
    font-size: 14px;
    border: 1px dashed var(--ink-12);
    margin-top: 4px
}

    .map-placeholder .map-icon {
        font-size: 32px
    }

.map-embed {
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 4px;
    width: 100%;
    height: 300px;
    border: none
}

.detail-cta-card {
    background: var(--gold);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 16px
}

    .detail-cta-card h4 {
        font-size: 1rem;
        font-weight: 900;
        color: var(--ink);
        margin-bottom: 6px;
        padding: 0px 0px 10px 0px;
    }

.cta-btn-dark {
    width: 100%;
    background: var(--ink);
    color: var(--cream);
    border: none;
    padding: 12px;
    border-radius: 20px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity .2s;
    margin-bottom: 8px;
    display: block;
    text-align: center;
    text-decoration: none
}

    .cta-btn-dark:hover {
        opacity: .85;
        color: var(--cream)
    }

.cta-btn-wa {
    width: 100%;
    background: #25d366;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 20px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity .2s;
    display: block;
    text-align: center;
    text-decoration: none
}

    .cta-btn-wa:hover {
        opacity: .85;
        color: white
    }

.detail-contact-card {
    background: var(--white);
    border: 1px solid var(--ink-12);
    border-radius: var(--radius-lg);
    padding: 24px
}

    .detail-contact-card h4 {
        font-size: 14px;
        font-weight: 700;
        color: var(--ink);
        margin-bottom: 16px;
        padding-bottom: 12px;
        border-bottom: 1px solid var(--ink-12)
    }

.contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px
}

    .contact-row:last-child {
        margin-bottom: 0
    }

.cr-icon {
    width: 32px;
    height: 32px;
    background: var(--gold-l);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0
}

.cr-label {
    font-size: 11px;
    color: var(--ink-40);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em
}

.cr-value {
    font-size: 13px;
    color: var(--ink-80)
}

    .cr-value a {
        color: var(--ink-80);
        text-decoration: none
    }

        .cr-value a:hover {
            color: var(--gold-d)
        }

.similar-section {
    margin-top: 32px
}

    .similar-section h4 {
        font-size: 14px;
        font-weight: 700;
        color: var(--ink);
        margin-bottom: 16px
    }

.similar-card {
    background: var(--white);
    border: 1px solid var(--ink-12);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: border-color .2s;
    text-decoration: none;
    display: block
}

    .similar-card:hover {
        border-color: var(--gold)
    }

    .similar-card h5 {
        font-size: 13px;
        font-weight: 600;
        color: var(--ink);
        margin-bottom: 4px
    }

    .similar-card p {
        font-size: 12px;
        color: var(--ink-40)
    }

/* FOOTER */
footer {
    background: var(--ink);
    padding: 56px 0 32px
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(245,240,232,.08);
    margin-bottom: 32px
}

.footer-apps {
    display: flex;
    gap: 8px;
    margin-top: 20px
}

.app-btn {
    background: rgba(245,240,232,.07);
    border: 1px solid rgba(245,240,232,.12);
    color: var(--cream);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    text-decoration: none;
    transition: background .2s;
    cursor: pointer
}

    .app-btn:hover {
        background: rgba(245,240,232,.14)
    }

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 16px
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 0px;
}

    .footer-col ul li, .footer-col ul li a {
        font-size: 13px;
        color: rgba(245,240,232,.45);
        cursor: pointer;
        transition: color .2s;
        text-decoration: none
    }

        .footer-col ul li:hover, .footer-col ul li a:hover {
            color: var(--gold)
        }

.footer-col .logo {
    display: block;
    margin-bottom: 12px;
    color: var(--cream)
}

.footer-col p {
    font-size: 13px;
    color: rgba(245,240,232,.4);
    font-weight: 300;
    line-height: 1.6;
    max-width: 220px
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(245,240,232,.3);
    flex-wrap: wrap;
    gap: 12px
}

/* WA FLOAT */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    transition: transform .2s;
    z-index: 999
}

    .wa-float:hover {
        transform: scale(1.1)
    }

/* ANIMATIONS */
/* === SLIDER CAROUSEL === */
.v3-carousel {
    position: relative;
}

ul.v3-slides {
    display: block;
    position: relative;
    height: 320px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    list-style: none;
}

    ul.v3-slides * {
        user-select: none;
        -webkit-user-select: none;
        -webkit-touch-callout: none;
    }

.v3-slide-container {
    display: block;
}

.v3-slide-image {
    display: grid;
    place-items: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    opacity: 0;
    transition: all .7s ease-in-out;
}

    .v3-slide-image img {
        display: block;
        max-width: 298px;
        max-height: 320px;
        object-fit: contain;
    }

.v3-carousel-controls {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
    font-size: 80px;
    line-height: 320px;
    color: #fff;
}

    .v3-carousel-controls label {
        display: none;
        position: absolute;
        padding: 0 20px;
        opacity: 0;
        transition: opacity .2s;
        cursor: pointer;
    }

.v3-slide-container:hover .v3-carousel-controls label {
    opacity: .55;
}

.v3-carousel-controls label:hover {
    opacity: 1 !important;
}

.v3-carousel-controls .prev-slide {
    width: 49%;
    text-align: left;
    left: 0;
}

.v3-carousel-controls .next-slide {
    width: 49%;
    text-align: right;
    right: 0;
}

.v3-carousel-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    z-index: 9;
    text-align: center;
}

.v3-carousel-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    opacity: .45;
    margin: 4px;
    cursor: pointer;
    transition: opacity .2s;
}

ul.v3-slides input {
    display: none;
}

    ul.v3-slides input:checked + .v3-slide-container .v3-slide-image {
        opacity: 1;
        transform: scale(1);
        transition: opacity 1s ease-in-out;
    }

    ul.v3-slides input:checked + .v3-slide-container .v3-carousel-controls label {
        display: block;
    }
/* === ABAS (Tabs) === */
.v3-tabs-nav {
    display: flex;
    border-bottom: 2px solid var(--ink-12);
    background: var(--cream-d);
}

.v3-tab-btn {
    flex: 1;
    padding: 14px 8px;
    border: none;
    background: none;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-40);
    cursor: pointer;
    transition: color .2s,border-bottom-color .2s;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    text-align: center;
    line-height: 1.3;
}

    .v3-tab-btn:hover {
        color: var(--gold);
    }

    .v3-tab-btn.v3-tab-active {
        color: var(--gold);
        border-bottom-color: var(--gold);
    }

.v3-tab-panel {
    padding: 24px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.fade-up {
    animation: fadeUp .55s ease both
}

.delay-1 {
    animation-delay: .1s
}

.delay-2 {
    animation-delay: .22s
}

.delay-3 {
    animation-delay: .34s
}

.delay-4 {
    animation-delay: .46s
}

iframe {
    width: 100%;
    overflow: hidden !important;
    height: 300px !important;
}

/* TEXT OVERFLOW FIX
   Dados anonimizados (Utils.ToDisplayAnonymous) geram sequências longas
   de "*" sem espaços, que o navegador não consegue quebrar por padrão -
   isso fazia o texto vazar para fora dos cards. */
.result-addr, .result-phone, .info-value, .info-value a, .cr-value, .cr-value a, .result-card-right p {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.result-card-left, .result-card-right, .info-item, .contact-row {
    min-width: 0;
}
/* A coluna "auto" do grid não tinha limite de largura: uma frase longa
   (ex.: aviso de login) forçava o card inteiro a ficar mais largo que a tela. */
.result-card-right {
    max-width: 480px;
}

/* RESPONSIVE */
@media(max-width:900px) {
    .sobre .wrap, .contato .wrap {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .adv-grid {
        grid-template-columns: 1fr
    }

    .metricas .wrap {
        grid-template-columns: repeat(2,1fr)
    }

    .footer-top {
        grid-template-columns: 1fr 1fr
    }

    .nav-links {
        display: none
    }

    .results-layout {
        grid-template-columns: 1fr
    }

    .filters {
        position: static
    }

    .detail-layout {
        grid-template-columns: 1fr
    }

    .info-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:600px) {
    .wrap {
        padding: 0 20px
    }

    .metricas .wrap {
        grid-template-columns: 1fr 1fr
    }

    .footer-top {
        grid-template-columns: 1fr
    }

    .hero {
        padding: 72px 0 60px
    }

    .result-card {
        grid-template-columns: 1fr
    }

    .result-card-right {
        flex-direction: row;
        flex-wrap: wrap
    }
}

.nav-toggle {
    display: none;
}