/* ============================================================
   Santa Clara — V3 "Editorial"
   Versão mais ousada: hero cinematográfico, eyebrows,
   accent-bars, formas angulares inspiradas no logo.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --primary: #0B1B54;
    --primary-2: #050E2D;
    --accent:  #1D4FFF;
    --accent-dark: #1640C4;
    --steel:   #7A8AA5;
    --bg-body: #F7F8FB;
    --surface: #FFFFFF;
    --ink:     #111836;
    --muted:   #6A7590;
    --border:  #E2E6EF;
    --shadow-sm: 0 2px 8px rgba(11, 27, 84, 0.06);
    --shadow-md: 0 6px 18px rgba(11, 27, 84, 0.08);
    --shadow-lg: 0 18px 42px rgba(11, 27, 84, 0.14);

    --font-display: 'Sora', 'Inter', system-ui, sans-serif;
    --font-body:    'Inter', system-ui, sans-serif;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    background-image:
        radial-gradient(circle at 12% 28%, rgba(29, 79, 255, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 88% 65%, rgba(11, 27, 84, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(29, 79, 255, 0.05) 0%, transparent 40%);
    background-attachment: fixed;
    color: var(--ink);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* Marca d'água skyline com parallax (fixed) */
body::before {
    content: '';
    position: fixed;
    left: 0; right: 0; bottom: 0;
    height: 55vh;
    background: url('../img/watermark-skyline.svg') no-repeat center bottom;
    background-size: 140vw auto;
    opacity: 0.025;
    pointer-events: none;
    z-index: 0;
}
/* Garante que o conteúdo fique acima da marca d'água */
.navbar, main, footer, section, .hero-section, .container,
.contact-container, .stats-box, .content-section {
    position: relative;
    z-index: 1;
}

h1, h2, h3, h4, h5, h6,
.section-title, .prop-title, .card-title-prop {
    font-family: var(--font-display);
    letter-spacing: -0.015em;
}

/* ================= NAVBAR ================= */
.navbar {
    background: rgba(5, 14, 45, 0.85) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 0.9rem 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 2px 18px rgba(0,0,0,0.2);
}
.navbar-brand { font-weight: 700; letter-spacing: 0.5px; }
.nav-link {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    transition: color .25s ease;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 1rem; right: 1rem; bottom: 4px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link:hover::after { transform: scaleX(1); }
.nav-link:hover { color: #fff !important; }

.btn-warning {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    color: #fff !important;
    border-radius: var(--radius-sm) !important;
    font-family: var(--font-display);
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.78rem !important;
    padding: 10px 22px !important;
    transition: all .25s ease;
}
.btn-warning:hover {
    background: var(--accent-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(29, 79, 255, 0.4);
}

/* ================= HERO CINEMATOGRÁFICO ================= */
.hero-section { position: relative; min-height: 820px; }
.carousel-item { height: 820px; position: relative; }
.carousel-item img {
    object-fit: cover; height: 100%; width: 100%;
    filter: brightness(0.82) saturate(1.02);
}
/* Overlay gradient mais leve, dá profundidade sem pesar */
.carousel-item::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(
        180deg,
        rgba(5, 14, 45, 0.10) 0%,
        rgba(5, 14, 45, 0.35) 60%,
        rgba(5, 14, 45, 0.65) 100%
    );
    pointer-events: none;
}
.carousel-control-prev, .carousel-control-next { z-index: 15; width: 5%; }
.carousel-indicators {
    margin-bottom: 4.5rem;
}
.carousel-indicators [data-bs-target] {
    width: 32px; height: 3px; border-radius: 2px;
    background-color: rgba(255,255,255,0.4);
    border: none; opacity: 1;
    transition: all .3s ease;
}
.carousel-indicators .active {
    background-color: var(--accent);
    width: 48px;
}

/* Search Container */
.search-container {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20; width: 95%; max-width: 1180px;
    background: rgba(11, 27, 84, 0.32);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 38px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 70px rgba(0,0,0,0.4);
    position: absolute;
}
/* Barra accent no topo do search — referência ao "S" do logo */
.search-container::before {
    content: '';
    position: absolute;
    top: 0; left: 38px;
    width: 60px; height: 3px;
    background: var(--accent);
    border-radius: 0 0 2px 2px;
}

.form-label-white {
    color: #fff; font-weight: 600; font-size: 0.68rem;
    text-transform: uppercase; margin-bottom: 6px;
    display: block; letter-spacing: 0.9px;
    font-family: var(--font-display);
}

.form-select-lg, .form-control-lg, .dropdown-toggle-custom {
    height: 52px !important;
    font-size: 0.9rem !important;
    border-radius: var(--radius-sm) !important;
    border: 1px solid var(--border);
}
.form-select, .form-control {
    border-color: var(--border);
    font-size: 0.9rem;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.form-select:focus, .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(29, 79, 255, 0.15);
}

/* Multiselect */
.dropdown-multiselect .dropdown-toggle {
    background: #fff; text-align: left; width: 100%;
    color: var(--ink); position: relative;
}
.dropdown-multiselect .dropdown-toggle::after {
    position: absolute; right: 15px; top: 50%;
    transform: translateY(-50%);
}
.dropdown-menu-custom {
    width: 100%; padding: 15px;
    max-height: 250px; overflow-y: auto;
    border-radius: var(--radius-md);
    border: none;
    box-shadow: 0 14px 34px rgba(11, 27, 84, 0.2);
}
.dropdown-item-check {
    display: flex; align-items: center;
    padding: 8px 0; font-size: 0.85rem;
    cursor: pointer; color: #444;
}
.dropdown-item-check input { margin-right: 12px; accent-color: var(--accent); }

/* Botão Pesquisar */
.btn-search {
    background: var(--accent);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700; height: 52px;
    border: none;
    border-radius: var(--radius-sm);
    transition: background .2s ease, box-shadow .2s ease, transform .15s ease;
    font-size: 0.9rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}
.btn-search:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(29, 79, 255, 0.28);
    color: #fff;
}
.btn-search:active,
.btn-search.active,
.btn-search:focus {
    background: var(--accent-dark) !important;
    transform: translateY(0) !important;
    box-shadow: 0 2px 6px rgba(29, 79, 255, 0.2) !important;
    color: #fff !important;
    outline: none !important;
}

.advanced-toggle {
    color: #fff; cursor: pointer;
    font-family: var(--font-display);
    font-weight: 600; font-size: 0.8rem;
    display: inline-block; padding: 10px;
    text-decoration: none;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}
.advanced-toggle:hover { color: var(--accent); }
#advancedFilters {
    display: none;
    margin-top: 25px; padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

/* ================= SECTION TITLES COM EYEBROW ================= */
.section-title {
    color: var(--primary);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.85rem;
    margin: 70px 0 36px;
    position: relative;
    padding: 0 0 0 20px;
    border: none;
    display: block;
    letter-spacing: -0.025em;
}
/* Barra vertical accent à esquerda + eyebrow pequeno */
.section-title::before {
    content: '';
    position: absolute;
    left: 0; top: 6px; bottom: 6px;
    width: 4px;
    background: var(--accent);
    border-radius: 2px;
}
/* Eyebrow opcional — use <span class="eyebrow"> dentro do título se desejar */
.section-title .eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 6px;
    text-transform: uppercase;
}

/* ================= CARDS HOME ================= */
.card-property {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background:
        linear-gradient(180deg, #FFFFFF 0%, #FBFCFE 100%);
    box-shadow: var(--shadow-sm);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    height: 100%;
    position: relative;
}
.card-property::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
}
.card-property:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(29, 79, 255, 0.25);
}
.card-property:hover::before { transform: scaleX(1); }

.card-img-wrapper { position: relative; height: 230px; overflow: hidden; }
.card-img-wrapper img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}
.card-img-wrapper::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(11,27,84,0) 0%, rgba(11,27,84,0.35) 100%);
    pointer-events: none;
    opacity: 0.65;
    transition: opacity .4s ease;
}
.card-property:hover .card-img-wrapper img { transform: scale(1.06); }
.card-property:hover .card-img-wrapper::after { opacity: 0.9; }

.badge-tag {
    position: absolute; top: 14px; left: 14px;
    background: var(--accent); color: #fff;
    padding: 6px 14px;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    /* Corte angular chevron — referência ao logo */
    clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    padding-right: 22px;
    border-radius: 0;
}

.card-body { padding: 1.3rem; }
.card-price {
    color: var(--primary);
    font-family: var(--font-display);
    font-weight: 800; font-size: 1.35rem;
    margin-bottom: 6px;
    letter-spacing: -0.015em;
}
.card-title-prop {
    font-family: var(--font-display);
    font-weight: 600; font-size: 1rem;
    color: var(--ink); display: block;
    margin-bottom: 6px; text-decoration: none;
    transition: color .2s ease;
}
.card-title-prop:hover { color: var(--accent); }
.card-location {
    font-size: 0.8rem; color: var(--steel);
    margin-bottom: 16px;
}

.property-features {
    display: flex; justify-content: space-between;
    padding-top: 14px; border-top: 1px solid var(--border);
    margin-bottom: 16px;
}
.feature-item {
    font-size: 0.75rem; color: var(--muted);
    display: flex; align-items: center; gap: 5px;
}
.feature-item i { color: var(--accent); font-size: 0.85rem; }

.btn-details {
    border: 2px solid var(--primary);
    color: var(--primary);
    font-family: var(--font-display);
    font-weight: 700; width: 100%;
    border-radius: var(--radius-sm);
    font-size: 0.78rem; padding: 10px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all .25s ease;
}
.btn-details:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(11, 27, 84, 0.25);
}

/* ================= FOOTER ================= */
footer {
    background: #1A2547;
    color: rgba(255,255,255,0.72);
    padding-top: 64px;
    margin-top: 80px;
    font-size: 0.9rem;
    position: relative;
}
/* Barra chevron no topo do footer */
footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 50%, var(--accent) 100%);
}
footer h6 {
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700; margin-bottom: 22px;
    text-transform: uppercase;
    font-size: 0.82rem; letter-spacing: 1.2px;
}
footer a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color .2s ease; }
footer a:hover { color: var(--accent); }
.footer-bottom {
    background: #121B38;
    padding: 22px 0;
    margin-top: 50px;
    font-size: 0.78rem;
}
.social-icons a {
    font-size: 1.05rem;
    margin-right: 10px;
    background: rgba(255,255,255,0.06);
    width: 42px; height: 42px;
    display: inline-flex;
    align-items: center; justify-content: center;
    border-radius: 50%; color: #fff;
    transition: all .25s ease;
    border: 1px solid rgba(255,255,255,0.08);
}
.social-icons a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(29, 79, 255, 0.35);
}
.social-icons a:hover i { color: #fff !important; }

.cardLocacao { background: #10b981 !important; }
.cardVenda   { background: var(--accent) !important; }

/* ================= DETALHE ================= */
.main-img {
    width: 100%; height: 500px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: 0 14px 36px rgba(11, 27, 84, 0.15);
}
.thumb-img {
    width: 100%; height: 100px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all .25s ease;
    opacity: 0.6;
    border: 2px solid transparent;
}
.thumb-img:hover, .thumb-img.active {
    opacity: 1;
    border-color: var(--accent);
    transform: translateY(-2px);
}

.info-block {
    background: var(--surface);
    border-radius: var(--radius-md);
    padding: 32px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--accent);
}
.prop-title {
    color: var(--primary);
    font-weight: 700; font-size: 2.1rem;
    letter-spacing: -0.025em;
}
.prop-price {
    font-family: var(--font-display);
    font-size: 2.4rem; font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.025em;
}
.badge-ref {
    background: var(--bg-body);
    color: var(--muted);
    padding: 7px 18px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    font-family: var(--font-display);
    letter-spacing: 0.5px;
    border: 1px solid var(--border);
}

.feature-box {
    text-align: center;
    padding: 20px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all .25s ease;
    background: #fff;
}
.feature-box:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(29, 79, 255, 0.12);
}
.feature-box i {
    font-size: 1.6rem;
    color: var(--accent);
    margin-bottom: 10px;
}
.feature-box span {
    display: block;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
}

.contact-sidebar {
    position: sticky; top: 100px;
    background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--accent);
}

.map-wrapper {
    position: relative; width: 100%;
    height: 400px;
    background: var(--bg-body);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid var(--border);
}
.map-wrapper i { font-size: 3rem; color: #ccc; margin-bottom: 10px; }

.related-card {
    border: none;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all .35s ease;
    box-shadow: var(--shadow-sm);
}
.related-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.related-card img { height: 200px; object-fit: cover; transition: transform .5s ease; }
.related-card:hover img { transform: scale(1.05); }
.related-price {
    color: var(--primary);
    font-family: var(--font-display);
    font-weight: 800; font-size: 1.2rem;
}

@media (max-width: 768px) {
    .main-img { height: 300px; }
    .contact-sidebar { position: static; margin-top: 30px; }
    .hero-section, .carousel-item { min-height: 600px; height: 600px; }
    .section-title { font-size: 1.5rem; }
}

/* ================= LISTAGEM ================= */
.filter-sidebar {
    background: var(--surface);
    border-radius: var(--radius-md);
    padding: 26px;
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--accent);
}
.filter-group-title {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: 20px; margin-bottom: 12px;
    display: flex; align-items: center;
}
.filter-group-title i { margin-right: 8px; color: var(--accent); }
.filter-label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 5px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.results-header {
    background: var(--surface);
    padding: 16px 26px;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
    display: flex; justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm);
}
.btn-view {
    color: var(--steel);
    font-size: 1.3rem;
    border: none; background: none;
    padding: 5px 10px;
    transition: color .2s ease;
}
.btn-view.active { color: var(--accent); }

.property-item { padding: 10px; }
.property-card {
    border: none;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--surface);
    transition: all .35s ease;
    height: 100%;
    box-shadow: var(--shadow-sm);
    position: relative;
}
.property-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
}
.property-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.property-card:hover::before { transform: scaleX(1); }

.property-card .card-img-wrapper { position: relative; height: 220px; overflow: hidden; }
.property-card .card-img-wrapper img {
    width: 100%; height: 100%;
    object-fit: cover;
    max-height: 255px;
    transition: transform .6s ease;
}
.property-card:hover .card-img-wrapper img { transform: scale(1.08); }

.badge-offer {
    position: absolute; top: 14px; left: 14px;
    background: var(--accent); color: #fff;
    padding: 6px 18px 6px 12px;
    font-weight: 700; font-size: 0.7rem;
    font-family: var(--font-display);
    letter-spacing: 0.9px;
    text-transform: uppercase;
    clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    border-radius: 0;
}

.list-view .property-item { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
.list-view .property-card { flex-direction: row; display: flex; min-height: 230px; }
.list-view .card-img-wrapper { width: 360px; height: auto; }
.list-view .card-body {
    flex: 1; padding: 32px;
    display: flex; flex-direction: column;
    justify-content: center;
}

.card-body { padding: 22px; }
.card-price { font-size: 1.4rem; font-weight: 800; color: var(--primary); margin-bottom: 5px; }
.card-icons {
    display: flex; gap: 18px;
    color: var(--muted); font-size: 0.82rem;
    border-top: 1px solid var(--border);
    padding-top: 14px; margin-top: 10px;
}
.card-icons i { color: var(--accent); }

/* ================= UTILITIES ================= */
#btnBuscarHome { padding-top: 16px; }

#paginacao-top, #paginacao {
    display: flex;
    align-items: center;
    gap: 10px;
}
#paginacao-top { justify-content: flex-end; padding: 0px 15px 12px; }
#paginacao { justify-content: center; margin-top: 28px; }

.botao-paginacao {
    background: var(--accent) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50% !important;
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem !important;
    box-shadow: 0 4px 12px rgba(29, 79, 255, 0.25);
    transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
    cursor: pointer;
}
.botao-paginacao i { color: #fff !important; }
.botao-paginacao:hover {
    background: var(--accent-dark) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(29, 79, 255, 0.38);
}
.botao-paginacao:active,
.botao-paginacao:focus {
    background: var(--accent-dark) !important;
    color: #fff !important;
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(29, 79, 255, 0.22);
    outline: none;
}
#paginacao-top .botao-paginacao {
    width: 38px !important; height: 38px !important;
    font-size: 0.75rem !important;
    margin: 0 !important;
}
#paginacao .botao-paginacao {
    width: 48px !important; height: 48px !important;
    margin: 0 !important;
}

.btn-primary {
    background-color: var(--accent) !important;
    border-color: var(--accent) !important;
    border-radius: var(--radius-sm) !important;
    font-family: var(--font-display);
    letter-spacing: 0.4px;
    transition: all .25s ease;
}
.btn-primary:hover {
    background-color: var(--accent-dark) !important;
    border-color: var(--accent-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(29, 79, 255, 0.3);
}
.btn-outline-primary {
    color: var(--accent) !important;
    border-color: var(--accent) !important;
    border-radius: var(--radius-sm) !important;
    font-family: var(--font-display);
}
.btn-outline-primary:hover {
    background: var(--accent) !important;
    color: #fff !important;
}
.text-primary { color: var(--primary) !important; }
.campo-obrigatorio { padding-left: 5px; color: #ef4444; }
sup { margin-left: -2px; }

/* ================= CONTATO ================= */
.nav-pills-custom .nav-link {
    color: var(--steel) !important;
    font-family: var(--font-display);
    font-weight: 600;
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    letter-spacing: 0.4px;
    transition: all .2s ease;
    width: 50%;
    flex: 0 0 50%;
}
.nav-pills-custom .nav-link.active {
    background: var(--accent) !important;
    color: #fff !important;
    box-shadow: 0 6px 16px rgba(29, 79, 255, 0.3);
}

.info-sidebar {
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-2) 100%);
    color: #fff;
    padding: 44px 32px;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    height: 100%;
    position: relative;
    overflow: hidden;
}
/* Chevron decorativo sutil no info-sidebar */
.info-sidebar::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 180px; height: 180px;
    border: 2px solid rgba(29, 79, 255, 0.3);
    border-radius: 6px;
    transform: rotate(45deg);
    pointer-events: none;
}
.info-sidebar h4 { color: #fff !important; position: relative; z-index: 2; }
.info-sidebar .text-primary { color: #fff !important; }
.contact-method {
    display: flex; align-items: center;
    gap: 16px; margin-bottom: 22px;
    color: rgba(255,255,255,0.85);
    position: relative; z-index: 2;
}
.contact-method i {
    font-size: 1.2rem;
    color: #fff;
    background: var(--accent);
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 14px rgba(29, 79, 255, 0.4);
}
.contact-method h6 {
    color: #fff;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.82rem;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.contact-method p { color: rgba(255,255,255,0.7) !important; }
.info-sidebar .text-muted { color: rgba(255,255,255,0.75) !important; }
.info-sidebar h6 { color: #fff; }
.info-sidebar hr { border-color: rgba(255,255,255,0.2); opacity: 1; }

/* ================= SKELETON LOADING ================= */
@keyframes skeleton-shimmer {
    0%   { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}
.card-skeleton {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-sm);
    height: 100%;
}
.card-skeleton .sk-img,
.card-skeleton .sk-line,
.card-skeleton .sk-features span {
    background: linear-gradient(90deg, #D8DEE9 0%, #F2F4F8 50%, #D8DEE9 100%);
    background-size: 800px 100%;
    animation: skeleton-shimmer 1s linear infinite;
    border-radius: 6px;
}
.card-skeleton .sk-img { width: 100%; height: 230px; border-radius: 0; }
.card-skeleton .sk-body { padding: 1.3rem; }
.card-skeleton .sk-line { height: 14px; margin-bottom: 10px; }
.card-skeleton .sk-line-lg { height: 22px; width: 55%; }
.card-skeleton .sk-line-md { width: 85%; }
.card-skeleton .sk-line-sm { width: 45%; height: 11px; margin-bottom: 18px; }
.card-skeleton .sk-features {
    display: flex; justify-content: space-between;
    padding-top: 14px; border-top: 1px solid var(--border);
}
.card-skeleton .sk-features span {
    width: 38px; height: 14px; border-radius: 4px;
}

/* ================= GALERIA DETALHE — prev/next ================= */
.main-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}
.main-img-wrapper .main-img {
    display: block;
    width: 100%;
    height: auto;
}
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(11, 27, 84, 0.55);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    cursor: pointer;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
    z-index: 4;
}
.gallery-nav:hover {
    background: var(--accent);
    box-shadow: 0 8px 18px rgba(29, 79, 255, 0.35);
}
.gallery-nav:active { transform: translateY(-50%) scale(0.96); }
.gallery-prev { left: 14px; }
.gallery-next { right: 14px; }
.gallery-nav i { color: #fff; }
