.page-wrap {
    margin: 0 auto;
}

.breadcrumb {
    background: #fff;
    border-bottom: 1px solid #eeee;
    padding: 9px 0px;
    font-size: 12px;
    color: #888;
}

.breadcrumb-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.breadcrumb-inner a {
    transition: color 0.18s;
}

.breadcrumb-inner a:hover {
}

.breadcrumb-inner span {
    color: #ccc;
    font-size: 11px;
}

.breadcrumb-inner span:last-child {
    display: none;
}

.prop-title-bar {
    background: #fff;
}

.prop-title-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    padding-top: 10px;
}

.prop-h1 {
    font-size: 17px;
    font-weight: 700;
    color: #222;
    line-height: 1.35;
    text-align: center;
    margin: 0px;
}

@media (max-width: 700px) {
    .prop-title-inner {
        flex-direction: column;
    }
}

.hero-section {
    background: #fff;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 0;
    align-items: center;
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }
}

.gallery-mosaic {
    position: relative;
    background: #111;
    overflow: hidden;
}

.mosaic-grid {
    display: grid;
    grid-template-columns: 1fr 198px;
    grid-template-rows: 290px;
    gap: 3px;
}

@media (max-width: 700px) {
    .mosaic-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 260px;
    }
}

.mosaic-main {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #222;
}

.mosaic-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.mosaic-main:hover .mosaic-main-img {
    transform: scale(1.02);
}

.mosaic-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    border: none;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.18s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.mosaic-nav:hover {
    background: #fff;
    color: var(--color-1);
    cursor: pointer;
}

.mosaic-nav.prev {
    left: 10px;
}

.mosaic-nav.next {
    right: 10px;
}

/* Thumbnails column */
.mosaic-thumbs {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 3px;
}

@media (max-width: 700px) {
    .mosaic-thumbs {
        display: none;
    }
}

.mosaic-thumb {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

.mosaic-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.mosaic-thumb:hover img {
    transform: scale(1.05);
}

.mosaic-thumb.last-thumb {
    position: relative;
}

.mosaic-thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.gallery-btn-row {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    gap: 6px;
    z-index: 10;
}

.gal-pill-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.18s;
    cursor: pointer;
}

.gal-pill-btn:hover {
    background: #fff;
    color: var(--color-1);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
}

.hero-panel {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: #fff;
}

@media (max-width: 900px) {
    .hero-panel {
        border-left: none;
        border-top: 1px solid #eee;
    }
}

.prop-body {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 20px;
    padding-top: 10px;
}

@media (max-width: 900px) {
    .prop-body {
        grid-template-columns: 1fr;
    }
}

.prop-main {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.prop-sidebar {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Specs strip */
.specs-strip {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #eee;
    padding: 16px 20px;
}

.specs-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #444;
}

.spec-ico {
    font-size: 20px;
}

.spec-val {
    font-size: 15px;
    font-weight: 800;
    color: #222;
    display: block;
}

.spec-lab {
    font-size: 11px;
    color: #999;
}

.prop-card {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #eee;
    padding: 20px;
}

.prop-card-title {
    font-size: 15px;
    font-weight: 800;
    color: #222;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.prop-card-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #f2f2f2;
}

.prop-desc {
    font-size: 13.5px;
    color: #555;
    line-height: 1.8;
}

.prop-desc p+p {
    margin-top: 10px;
}

.chars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 20px;
}

.char-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: #555;
    padding: 6px 0;
    border-bottom: 1px solid #f5f5f5;
}

.char-item::before {
    content: '✓';
    color: var(--color-1);
    font-weight: 800;
    flex-shrink: 0;
}

/* Sidebar sticky card */
.sidebar-contact-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 18px;
    position: sticky;
    top: 70px;
}

.sccard-tipo {
    font-size: 11px;
    color: #aaa;
    margin-bottom: 14px;
}

.sccard-btn {
    width: 100%;
    background: #e36414;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 11px;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 8px;
    transition: background 0.2s;
    box-sizing: border-box;
    cursor: pointer;
}

.sccard-btn:hover {
    background: #c9540f;
}

.sccard-btn-wpp {
    width: 100%;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 11px;
    font-size: 14px;
    font-weight: 800;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-sizing: border-box;
    cursor: pointer;
}

.sccard-btn-wpp:hover {
    background: #1ebe5a;
}

.sccard-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 12px 0;
}

.sccard-agent {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ══════════════════════════════════════
  LIGHTBOX MODAL (parte2)
══════════════════════════════════════ */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-overlay.open {
    display: flex;
}

#lightboxModal {
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
}

/* Lightbox top bar */
.lb-topbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    z-index: 20;
}

.lb-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lb-logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 900;
    color: #fff;
}

.lb-brand {
    font-size: 14px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.8);
}

.lb-counter {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
}

.lb-close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s;
}

.lb-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Lightbox main image area */
.lb-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 60px 80px;
}

.lb-img-wrap {
    position: relative;
    max-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-img {
    max-width: 100%;
    max-height: calc(100vh - 200px);
    border-radius: 10px;
    object-fit: contain;
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.6);
}

.lb-divArrow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.lb-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 26px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: background 0.18s;
    cursor: pointer;
}

.lb-arrow:hover {
    background: rgba(255, 255, 255, 0.22);
}

.lb-arrow.prev {
    left: 16px;
}

.lb-arrow.next {
    right: 16px;
}

/* Setas pequenas da aba de vídeo (escopado para não afetar o lightbox) */
.lb-divArrow .lb-arrow {
    position: static;
    transform: none;
    width: 32px;
    height: 32px;
    background: #555;
    font-size: 20px;
}

.lb-divArrow .lb-arrow:hover {
    background: #333;
}

.lb-divArrow .lb-arrow.prev i {
    padding-right: 4px;
    padding-top: 1px;
}

.lb-divArrow .lb-arrow.next i {
    padding-left: 4px;
    padding-top: 1px;
}

/* Topbar/contador da aba de vídeo (escopado para não afetar o lightbox) */
#gmVideoContent .lb-topbar {
    position: static;
    justify-content: center;
    padding: 0;
    margin: 10px 0;
    color: #555;
}

#gmVideoContent .lb-counter {
    color: #555;
}

.lb-iframe {
    display: flex;
    align-items: center;
    justify-content: center;
}

#vidIframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9; /* Automatically calculates height based on width */
    max-width: 800px;     /* Optional: Prevents the video from becoming too large on desktop */
    display: block;       /* Eliminates unwanted inline bottom spacing */
    margin: 0 auto;       /* Centers the video if max-width is applied */
    border: 0;
}

/* Lightbox thumbnail strip */
.lb-thumbstrip {
    background: rgba(0, 0, 0, 0.7);
    padding: 12px 20px;
    display: flex;
    gap: 6px;
    overflow-x: auto;
    flex-shrink: 0;
    width: 100%;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.lb-thumbstrip::-webkit-scrollbar {
    height: 4px;
}

.lb-thumbstrip::-webkit-scrollbar-track {
    background: transparent;
}

.lb-thumbstrip::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.lb-thumb {
    width: 110px;
    height: 72px;
    flex-shrink: 0;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    border: 2.5px solid transparent;
    transition: border-color 0.18s;
    position: relative;
}

.lb-thumb.active {
    border-color: #fff;
}

.lb-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lb-thumb:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

#galleryModal {
    background: #fff;
    flex-direction: column;
}

.gm-header {
    border-bottom: 1px solid #eee;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-shrink: 0;
}

.gm-title {
    font-size: 14px;
    font-weight: 700;
    color: #222;
    max-width: 600px;
    line-height: 1.3;
}

.gm-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.gm-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #ddd;
    background: #fff;
    color: #333;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.18s;
    cursor: pointer;
}

.gm-close:hover {
    background: #f5f5f5;
}

/* Tabs */
.gm-tabs {
    display: flex;
    gap: 8px;
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}

.gm-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1.5px solid #ddd;
    background: #fff;
    font-size: 13px;
    font-weight: 700;
    color: #555;
    cursor: pointer;
    transition: all 0.18s;
}

.gm-tab:hover {
    border-color: var(--color-1);
    color: var(--color-1);
}

.gm-tab.active {
    border-color: var(--color-1);
    background-color: color-mix(in srgb, var(--color-1) 5%, transparent);
    color: var(--color-1);
}

/* Gallery grid */
.gm-content {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px;
}

.gm-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

@media (max-width: 700px) {
    .gm-photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 420px) {
    .gm-photo-grid {
        grid-template-columns: 1fr;
    }
}

.gm-photo {
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gm-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gm-photo:hover img {
    transform: scale(1.04);
}

.divGmTabs {
    display: flex;
    width: 100%;
    gap: 8px;
}

